/* ── Variables ── */
:root {
  --ivory:   #F2EDE0;
  --navy:    #3A5A3E;
  --coral:   #D96B4F;
  --amber:   #C8821A;
  --beige:   #EAE0D0;
  --charcoal:#2C2C2C;
  --muted:   #5F5449;
  --white:   #FFFFFF;
  /* Accessible text variants — WCAG AA (4.5:1) for small/bold text.
     Base --coral/--amber stay for decorative fills, borders, and icon glyphs. */
  --coral-lo: #B8472C;  /* coral text/buttons on light backgrounds */
  --amber-lo: #96600E;  /* amber text on light backgrounds */
  --amber-hi: #EDC17A;  /* amber text on --navy / dark backgrounds */
  --grid-line: rgba(30,58,95,0.07);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1100px;
  --transition: 0.22s ease;
}

/* ── WordPress block gap override ──
   WP adds margin-block-start: 32px to all .wp-site-blocks > * via :where()
   (zero specificity by design). Our layout handles all spacing internally. */
.wp-site-blocks > * { margin-block-start: 0; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* ── Grid texture ── */
.grid-bg {
  background-color: var(--ivory);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ── Typography ── */
.display { font-family: var(--font-display); }
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-lo);
}

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(242,237,224,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30,58,95,0.1);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-name-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  text-decoration: none;
}
.site-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.site-tagline {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .site-tagline { display: none; }
}
.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}
.site-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--coral-lo); }
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}
.btn-coral {
  background: var(--coral-lo);
  color: var(--white);
  padding: 0.7rem 1.6rem;
  border: 2px solid var(--coral-lo);
}
.btn-coral:hover { background: #9c3a22; border-color: #9c3a22; color: var(--white); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 0.65rem 1.5rem;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

/* ── Marquee ── */
.marquee-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 0.75rem 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 2rem;
}
.marquee-track .dot {
  color: var(--coral-lo);
  padding: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
}
.hero-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 4rem 4.5rem 5vw;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  color: var(--navy);
  margin: 0.75rem 0 1.5rem;
}
.hero-title em {
  font-style: normal;
  color: var(--coral-lo);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-sparkle {
  font-size: 1.1rem;
  color: var(--amber-lo);
  margin-bottom: 0.25rem;
  letter-spacing: 0.5rem;
}

/* Hero social proof + urgency */
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
}
.hero-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e05252;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}
.hero-urgency a { color: var(--coral-lo); text-decoration: none; font-weight: 700; }
.hero-urgency a:hover { text-decoration: underline; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
}
.hero-proof-avatars {
  display: flex;
  align-items: center;
}
.hero-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  margin-right: -8px;
  flex-shrink: 0;
}
.hero-proof-avatars .hero-avatar:last-child { margin-right: 0; }
.hero-proof-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-left: 0.5rem;
}
.hero-proof-stars {
  color: var(--amber-lo);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1;
}
.hero-proof-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Course trust strip ── */
.trust-strip {
  background: var(--ivory);
  border-top: 1px solid rgba(58,90,62,0.12);
  border-bottom: 1px solid rgba(58,90,62,0.12);
  padding: 0.9rem 2rem;
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.trust-strip-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-right: 0.5rem;
  white-space: nowrap;
}
.trust-strip-item {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.28rem 0.85rem;
  border: 1px solid rgba(58,90,62,0.22);
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* ── Editorial pull quote ── */
.editorial-quote {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(58,90,62,0.1);
  border-bottom: 1px solid rgba(58,90,62,0.1);
}
.editorial-quote blockquote {
  max-width: 740px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  position: relative;
}
.editorial-quote blockquote::before {
  content: '\201C';
  font-size: 4.5rem;
  line-height: 0;
  vertical-align: -1.25rem;
  color: var(--coral-lo);
  opacity: 0.35;
  margin-right: 0.1rem;
  font-style: normal;
}
.editorial-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.25rem;
}

/* ── "In 30 seconds" snapshot card ── */
.snapshot-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 3rem;
}
.snapshot-inner {
  border: 1px solid rgba(58,90,62,0.16);
  border-radius: 16px;
  padding: 2.25rem 2.5rem 2rem;
}
.snapshot-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 3rem;
}
.snapshot-item-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-lo);
  margin-bottom: 0.35rem;
}
.snapshot-item-text {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.snapshot-footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(58,90,62,0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.snapshot-footer-note {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .snapshot-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .snapshot-inner { padding: 1.5rem; }
}

/* ── Inline section CTA ── */
.inline-cta {
  text-align: center;
  padding: 0.5rem 2rem 3rem;
}
.inline-cta-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.65rem;
  letter-spacing: 0.04em;
}

/* ── Sticky bottom CTA bar ── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.sticky-cta-bar.visible { transform: translateY(0); }
.sticky-cta-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.sticky-cta-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.sticky-cta-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.sticky-cta-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.3rem;
  line-height: 1;
  transition: color var(--transition);
  flex-shrink: 0;
}
.sticky-cta-dismiss:hover { color: rgba(255,255,255,0.75); }
@media (max-width: 600px) {
  .sticky-cta-bar { padding: 0.75rem 1.25rem; gap: 0.75rem; justify-content: center; }
  .sticky-cta-left { display: none; }
  .sticky-cta-actions { justify-content: center; }
  .trust-strip-label { display: none; }
}
.hero-img-col {
  position: relative;
  overflow: hidden;
}
.hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--amber-hi);
  line-height: 1;
  display: block;
}
.stat-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 0.4rem;
}

/* ── Section wrapper ── */
.section { max-width: var(--max-w); margin: 0 auto; padding: 3.5rem 2rem; }
.section-sm { max-width: 720px; margin: 0 auto; padding: 2.5rem 2rem; }
.section-head { margin-bottom: 2rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  margin: 0.4rem 0 0.75rem;
  line-height: 1.15;
}
.section-head p { color: var(--muted); max-width: 520px; margin: 0; }

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 1.75rem 2.25rem;
  border-top: 3px solid var(--coral);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.7;
}
.tag {
  display: inline-block;
  background: var(--beige);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* ── About strip ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}
.about-img {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img-placeholder {
  width: 100%; height: 100%; min-height: 500px;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.875rem; text-align: center; padding: 2rem;
}
.about-text {
  background: var(--navy);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text .label { color: var(--amber-hi); }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.2;
}
.about-text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.about-text p:last-of-type { margin-bottom: 2rem; }

/* ── Why grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.why-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--coral);
}
.why-icon {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--coral-lo);
  font-family: var(--font-body);
  line-height: 1;
}
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.why-item p { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ── CTA band ── */
.cta-band {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.cta-mascot {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.chibi-sprite {
  display: block;
  width: 160px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
  transition: transform 0.35s ease;
}
.chibi-sprite:hover { transform: translateY(-6px) rotate(2deg); }
.chibi-section-accent {
  width: 110px;
  margin: 0 auto 1.25rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: transform 0.35s ease;
}
.chibi-section-accent:hover { transform: translateY(-5px) rotate(2deg); }
.chibi-hero-accent {
  width: 140px;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.2));
  transition: transform 0.35s ease;
}
.chibi-hero-accent:hover { transform: translateY(-6px) rotate(2deg); }
.chibi-celebrate {
  width: 180px;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  transition: transform 0.35s ease;
}
.chibi-celebrate:hover { transform: translateY(-8px) rotate(3deg); }
.cta-text {
  flex: 1;
}
.chibi-section-float {
  width: 160px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  transition: transform 0.35s ease;
}
.chibi-section-float:hover { transform: translateY(-6px) rotate(2deg); }
.cta-band .sparkle { font-size: 1rem; color: var(--amber-lo); letter-spacing: 0.6rem; margin-bottom: 1rem; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1rem;
}
.cta-band p { color: rgba(255,255,255,0.7); font-size: 1rem; margin: 0 auto 2.5rem; max-width: 480px; }
.cta-band .btn-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  padding: 3.5rem 2rem 2rem;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.75rem;
}
.footer-col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin: 0 0 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--coral-lo); }
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.footer-contact-info p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-contact-info a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact-info a:hover { color: var(--coral-lo); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-bottom strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55) !important;
}
.site-footer a:not(.btn) { color: var(--amber-lo); text-decoration: none; }
.site-footer a:not(.btn):hover { color: var(--white); }
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-section {
  background: var(--ivory);
  padding: 3.5rem 2rem;
}
.student-feedback-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.student-feedback-head {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.student-feedback-head .label {
  color: #A6402C;
}
.student-feedback-head > p:last-child {
  color: #62584F;
}
.testimonials-grid {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testimonials-grid-2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(58,90,62,0.18);
  border-radius: 14px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: none;
}
.testimonial-stars {
  color: var(--amber-lo);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--charcoal);
  flex: 1;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.6rem;
  color: var(--coral-lo);
  opacity: 0.5;
  margin-right: 0.15rem;
  font-family: var(--font-display);
}
.testimonial-attr {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.testimonial-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-body);
}
.testimonial-role {
  font-size: 0.72rem;
  color: var(--muted);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.testimonial-quote strong {
  background: rgba(200, 130, 26, 0.18);
  padding: 0.05em 0.3em;
  border-radius: 3px;
  font-weight: 600;
  color: inherit;
}
.testimonial-semester {
  font-size: 0.68rem;
  color: var(--amber-lo);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  display: block;
}
.testimonials-note {
  text-align: center;
  font-size: 0.72rem;
  color: #62584F;
  margin-top: 1.5rem;
  font-style: italic;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid-2col { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-section { padding: 3.5rem 1.25rem; }
  .testimonials-grid,
  .testimonials-grid-2col { grid-template-columns: 1fr; }
}

/* ── Lead Magnet Opt-in Box ──────────────────────────────────── */
.post-optin {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.75rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.post-optin-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-lo);
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
}
.post-optin h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}
.post-optin > div > p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.post-optin-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 240px;
}
.post-optin-form input[type="email"] {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  width: 100%;
  transition: border-color var(--transition);
}
.post-optin-form input[type="email"]:focus { border-color: var(--coral); }
.post-optin-form .btn { font-size: 0.72rem; padding: 0.7rem 1.2rem; text-align: center; }
.post-optin-privacy {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}
@media (max-width: 700px) {
  .post-optin { grid-template-columns: 1fr; gap: 1.25rem; }
  .post-optin-form { min-width: unset; }
}

/* ── Printable Pages ─────────────────────────────────────────── */
.printable-wrap {
  background: var(--white);
  min-height: 100vh;
}
.printable-toolbar {
  background: var(--beige);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.printable-toolbar-back {
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.printable-toolbar-back:hover { color: var(--coral-lo); }
.printable-toolbar-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-body);
}
.printable-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  font-family: var(--font-body);
}
.printable-heading {
  border-bottom: 2px solid var(--navy);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}
.printable-heading .label { color: var(--coral-lo); margin-bottom: 0.35rem; }
.printable-heading h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.35rem;
  line-height: 1.15;
}
.printable-heading p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.printable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  margin-bottom: 1.75rem;
}
.printable-block h2 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-lo);
  margin: 0 0 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.printable-block h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.85rem 0 0.2rem;
  line-height: 1.3;
}
.printable-block p, .printable-block li {
  font-size: 0.82rem;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 0 0 0.4rem;
}
.printable-block ul { padding-left: 1.1rem; margin: 0 0 0.5rem; }
.printable-block li { margin-bottom: 0.3rem; }
.printable-block .highlight {
  background: rgba(217,107,79,0.08);
  border-left: 3px solid var(--coral);
  padding: 0.5rem 0.75rem;
  margin: 0.5rem 0;
  font-size: 0.8rem;
  color: var(--charcoal);
  line-height: 1.55;
}
.printable-checklist { list-style: none; padding: 0; margin: 0; }
.printable-checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
  line-height: 1.5;
}
.printable-checklist li::before {
  content: '□';
  color: var(--coral-lo);
  font-size: 1rem;
  line-height: 1.2;
  flex-shrink: 0;
}
.printable-signoff {
  text-align: center;
  margin: 0.5rem 0 0;
}
.printable-signoff p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.printable-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--navy);
  margin-top: 0.2rem !important;
}
.printable-footer {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.printable-footer p {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
}
.printable-footer a {
  font-size: 0.72rem;
  color: var(--coral-lo);
  text-decoration: none;
}
@media (max-width: 600px) { .printable-grid { grid-template-columns: 1fr; } }
@media print {
  @page {
    size: letter;
    margin: 0.5in 0.65in;
  }

  /* Force colors and backgrounds to print */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Hide all chrome */
  .printable-toolbar,
  .site-header,
  .site-footer,
  .mobile-nav,
  .mobile-nav-overlay { display: none !important; }

  html, body {
    background: #F2EDE0 !important;
    margin: 0;
    padding: 0;
  }

  .printable-wrap {
    background: #F2EDE0 !important;
  }

  .printable-page {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #F2EDE0 !important;
  }

  /* Strong navy header band */
  .printable-heading {
    background: #2C3E2D !important;
    color: white !important;
    padding: 0.95rem 1.25rem 0.85rem !important;
    margin: 0 0 0.75rem !important;
    border-bottom: 3px solid #D96B4F !important;
    border-radius: 4px 4px 0 0;
  }

  .printable-heading .label {
    color: #D96B4F !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    display: block;
  }

  .printable-heading h1 {
    color: white !important;
    font-size: 1.55rem !important;
    margin-bottom: 0.2rem !important;
    line-height: 1.15 !important;
  }

  .printable-heading p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.7rem !important;
    margin: 0 !important;
    font-style: italic;
  }

  /* Two-column grid — allow natural page flow, no artificial breaks */
  .printable-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.55rem 1.25rem !important;
    page-break-inside: auto !important;
    break-inside: auto !important;
  }

  .printable-block {
    background: white !important;
    border-radius: 4px !important;
    padding: 0.75rem 1rem !important;
    page-break-inside: avoid;
    break-inside: avoid;
    border: 1px solid #e8e1d8 !important;
  }

  .printable-block h2 {
    font-size: 0.62rem !important;
    color: #D96B4F !important;
    border-bottom: 1px solid #e0d8ce !important;
    padding-bottom: 0.3rem !important;
    margin: 0 0 0.5rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
  }

  .printable-block h3 {
    font-size: 0.82rem !important;
    color: #2C3E2D !important;
    margin: 0.5rem 0 0.15rem !important;
    line-height: 1.3 !important;
  }

  .printable-block p,
  .printable-block li {
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
    color: #2C2C2C !important;
    margin: 0 0 0.3rem !important;
  }

  .printable-block ul { margin: 0 0 0.3rem !important; padding-left: 1.1rem !important; }

  .printable-block .highlight {
    background: rgba(217,107,79,0.08) !important;
    border-left: 3px solid #D96B4F !important;
    padding: 0.35rem 0.6rem !important;
    margin: 0.35rem 0 !important;
    font-size: 0.76rem !important;
    line-height: 1.45 !important;
  }

  .printable-checklist li {
    font-size: 0.78rem !important;
    line-height: 1.45 !important;
    margin-bottom: 0.28rem !important;
    gap: 0.45rem !important;
  }

  .printable-checklist li::before {
    color: #D96B4F !important;
    font-size: 0.95rem !important;
  }

  .printable-signoff { margin: 0.3rem 0 0 !important; }
  .printable-signoff p { font-size: 0.68rem !important; color: #7A6E63 !important; }
  .printable-signature {
    font-size: 1.05rem !important;
    color: #2C3E2D !important;
    margin-top: 0.1rem !important;
  }

  .printable-footer {
    margin-top: 0.65rem !important;
    border-top: 2px solid #D96B4F !important;
    padding-top: 0.4rem !important;
  }

  .printable-footer p, .printable-footer a {
    font-size: 0.62rem !important;
    color: #7A6E63 !important;
  }
}

/* ── Blog Index ─────────────────────────────────────────────── */
.blog-hero {
  background-color: var(--ivory);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: 5.5rem 2rem 4.5rem;
}
.blog-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.blog-hero-text { flex: 1; }
.blog-hero-chibi {
  height: 210px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.12));
  transition: transform 0.35s ease;
}
.blog-hero-chibi:hover { transform: translateY(-6px) rotate(2deg); }
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}
.blog-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin: 0;
}
.blog-section { background: var(--beige); padding: 3.5rem 2rem; }
.blog-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; gap: 0.6rem; }
.blog-card-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral-lo); text-decoration: none; }
a.blog-card-cat { display: inline-block; }
a.blog-card-cat:hover { text-decoration: underline; }

/* ── Chemistry Notes category filter ── */
.chemnotes-cat-filter {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.chemnotes-cat-filter a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1.5px solid rgba(58,90,62,0.22);
  border-radius: 100px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.chemnotes-cat-filter a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.chemnotes-cat-filter a.cat-active {
  background: var(--coral-lo);
  color: var(--white);
  border-color: var(--coral-lo);
}
#cn-grid.cn-loading {
  opacity: 0.4;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.blog-card-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; margin: 0; }
.blog-card-title a { color: inherit; text-decoration: none; transition: color var(--transition); }
.blog-card-title a:hover { color: var(--coral-lo); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.7; flex: 1; margin: 0; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
.blog-card-read-time { font-size: 0.72rem; color: var(--muted); }
.blog-card-link { font-size: 0.75rem; font-weight: 700; color: var(--navy); text-decoration: none; letter-spacing: 0.04em; transition: color var(--transition); }
.blog-card-link:hover { color: var(--coral-lo); }

/* ── Single Post ─────────────────────────────────────────────── */
.post-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: 4.5rem 2rem 4rem;
}
.post-hero-inner { max-width: 720px; margin: 0 auto; }
.post-breadcrumb { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.post-breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color var(--transition); }
.post-breadcrumb a:hover { color: var(--coral-lo); }
.post-breadcrumb span { margin: 0 0.4rem; opacity: 0.4; }
.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin: 0.5rem 0 0;
}
.post-meta { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.post-meta-dot { opacity: 0.3; }
.post-body-wrap {
  background: var(--beige);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: 4rem 2rem;
}
.post-body {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.85;
  color: var(--charcoal);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 40px rgba(44,62,45,0.08);
  padding: 3.25rem 3.75rem;
}
.post-body h2 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--navy); margin: 3rem 0 0.85rem; line-height: 1.25; }
.post-body h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin: 2.25rem 0 0.6rem; }
.post-body p { margin: 0 0 1.5rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin: 0 0 1.5rem; }
.post-body li { margin-bottom: 0.6rem; line-height: 1.8; }
.post-body strong { font-weight: 700; }
.post-table-wrap { overflow-x: auto; margin: 0 0 2rem; }
.post-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  line-height: 1.55;
}
.post-table thead tr {
  background: var(--navy);
  color: var(--white);
}
.post-table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.post-table tbody tr:nth-child(even) { background: var(--beige); }
.post-table tbody tr:nth-child(odd) { background: var(--white); }
.post-table tbody td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
}
.post-table tbody tr:last-child td { border-bottom: none; }
.post-table-note {
  font-size: 0.72rem;
  color: var(--muted);
  margin: -1.5rem 0 2rem;
  font-style: italic;
}
.post-pull-quote {
  position: relative;
  text-align: center;
  padding: 3.5rem 3.75rem 3.75rem;
  margin: 3.5rem -3.75rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.post-pull-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--coral-lo);
  opacity: 0.55;
  margin-bottom: 0.5rem;
  font-style: normal;
}
.post-author-box {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  margin: 3.5rem 0 0;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.post-author-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 600; font-style: italic; color: var(--white);
}
.post-author-chibi {
  width: 72px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
  transition: transform 0.35s ease;
  align-self: flex-end;
}
.post-author-chibi:hover { transform: translateY(-5px) rotate(2deg); }
.post-author-info h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy); margin: 0 0 0.25rem; }
.post-author-info p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin: 0; }
/* ── Related Posts ── */
.post-related {
  background: var(--beige);
  padding: 3.5rem 2rem;
  border-top: 1px solid var(--border);
}
.post-related-inner {
  max-width: 860px;
  margin: 0 auto;
}
.post-related-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.post-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 760px) {
  .blog-hero-chibi { height: 160px; }
}
@media (max-width: 640px) {
  .post-related-grid { grid-template-columns: 1fr; }
  .blog-hero-chibi { display: none; }
}

.post-cta {
  background: var(--navy);
  padding: 5rem 2rem;
  text-align: center;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
}
.post-cta-inner { max-width: 560px; margin: 0 auto; }
.post-cta .label { color: var(--amber-hi); }
.post-cta h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 600; font-style: italic; color: var(--white); margin: 0.5rem 0 1rem; line-height: 1.2; }
.post-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.75; margin: 0 0 2rem; }
@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 3.5rem 1.25rem; }
  .post-author-box { flex-direction: column; gap: 1rem; }
  .post-body { padding: 2rem 1.5rem; border-radius: 12px; }
  .post-body-wrap { padding: 2.5rem 1rem; }
  .post-pull-quote { margin: 3rem -1.5rem; padding: 3rem 1.5rem; }
}

/* ── Fade-in ── */
.fade-in { animation: fadeIn 0.7s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ── Outline sage button (alias) ── */
.btn-outline-sage {
  background: transparent;
  color: var(--navy);
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--navy);
}
.btn-outline-sage:hover { background: var(--navy); color: var(--white); }

/* ── Who This Is For ── */
.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.for-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.5rem 2rem 2.25rem;
  border-top: 3px solid var(--coral);
}
.for-icon {
  font-size: 2rem;
  line-height: 1;
  margin: 0 0 0.75rem;
}
.for-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1rem;
}
.for-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.for-list li {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}
.for-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  color: var(--coral-lo);
  top: 0.35em;
}
.for-note {
  font-size: 0.875rem;
  color: var(--muted);
  border-top: 1px solid rgba(30,58,95,0.1);
  padding-top: 1.25rem;
  margin: 0;
  line-height: 1.7;
  font-style: italic;
}

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 11px;
  margin-left: 0.5rem;
  z-index: 300;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.22s ease;
}

/* ── Mobile nav drawer ── */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--ivory);
  z-index: 500;
  padding: 5rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0,0,0,0.08);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav ul li a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color 0.2s;
}
.mobile-nav ul li a:hover { color: var(--coral-lo); }
.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--muted);
  cursor: pointer;
  padding: 10px 12px;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--coral-lo); }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text-col { padding: 4rem 2rem 3rem; }
  .hero-img-col { min-height: 55vw; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .about-strip { grid-template-columns: 1fr; }
  .about-text { padding: 3rem 2rem; }
  .header-inner { padding: 0 1.25rem; }
  .site-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cta-inner { flex-direction: column; align-items: center; gap: 1.5rem; }
  .cta-mascot { order: 2; }
  .cta-text { order: 1; }
  .chibi-sprite { width: 130px; }
  .chibi-section-float { width: 100px; }
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .nav-cta { display: none !important; }
}
@media (max-width: 600px) {
  .hero-text-col { padding: 3rem 1.5rem 2.5rem; }
  .section { padding: 3.5rem 1.25rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .chibi-section-float { display: none; }
}

/* ══════════════════════════════════════
   SERVICES & PRICING PAGE
   ══════════════════════════════════════ */

/* ── Page Hero ── */
.services-hero {
  background: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  padding: 5.5rem 2rem 5rem;
  text-align: center;
}
.services-hero-inner { max-width: 660px; margin: 0 auto; }
.services-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin: 0.5rem 0 1rem;
  line-height: 1.1;
}
.services-hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}
.founding-badge {
  display: inline-block;
  border: 1.5px solid var(--amber-hi);
  color: var(--amber-hi);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

/* ── Two-Track Services ── */
.track-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.track-col {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(44,44,44,0.07);
}
.track-header { padding: 1.75rem 2rem 1.6rem; }
.track-header.track-hs      { background: var(--navy); }
.track-header.track-college { background: var(--charcoal); }
.track-icon { font-size: 0.85rem; display: block; margin-bottom: 0.65rem; line-height: 1; color: var(--amber-lo); letter-spacing: 0.2em; }
.track-header h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin: 0 0 0.25rem;
}
.track-header p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}
.track-courses { padding: 0.25rem 0; }
.course-row {
  padding: 1.3rem 2rem;
  border-bottom: 1px solid rgba(44,44,44,0.06);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.course-row:last-child { border-bottom: none; }
.course-row-featured { background: rgba(242,237,224,0.5); }
.course-info { flex: 1; min-width: 0; }
.course-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.25rem;
}
.course-info p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.tag-coral {
  background: rgba(217,107,79,0.1);
  color: var(--coral-lo);
  border: 1px solid rgba(217,107,79,0.2);
  flex-shrink: 0;
}

/* ── Partnership list (inside .about-text) ── */
.partnership-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.partnership-list li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.5;
}
.partnership-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.45rem;
  color: var(--amber-lo);
  top: 0.42em;
}

/* ── Summer Section ── */
.summer-section {
  background: linear-gradient(160deg, #FEF8EE 0%, #FDF0DC 100%);
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
}
.summer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 740px;
  margin: 0 auto;
}
.summer-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.25rem 2rem 2.5rem;
  border-top: 3px solid var(--coral);
  text-align: center;
}
.summer-card-featured {
  background: var(--navy);
  border-top-color: var(--amber);
}
.summer-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0.75rem 0 0;
}
.summer-card-featured h3 { color: var(--white); }
.summer-card .price-display { color: var(--coral-lo); margin: 0.75rem 0 0; }
.summer-card-featured .price-display { color: var(--amber-hi); }
.summer-card .price-meta { color: var(--muted); margin: 0.35rem 0 1rem; }
.summer-card-featured .price-meta { color: rgba(255,255,255,0.45); }
.card-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.75rem; }
.summer-card .card-desc { color: var(--muted); }
.summer-card-featured .card-desc { color: rgba(255,255,255,0.7); }

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: 8px;
  border-top: 3px solid rgba(58,90,62,0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(44,44,44,0.06);
}
.pricing-card-featured {
  background: var(--navy);
  border-top-color: var(--coral);
  box-shadow: 0 8px 40px rgba(44,44,44,0.18);
}
.pricing-header {
  padding: 2rem 2rem 1.25rem;
  border-bottom: 1px solid rgba(44,44,44,0.06);
}
.pricing-card-featured .pricing-header { border-bottom-color: rgba(255,255,255,0.1); }
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0.5rem 0 0.3rem;
}
.pricing-card-featured h3 { color: var(--white); }
.pricing-header > p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
.pricing-card-featured .pricing-header > p { color: rgba(255,255,255,0.5); }
.pricing-body { padding: 1.75rem 2rem; flex: 1; }
.price-display {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1;
  display: block;
}
.pricing-card-featured .price-display { color: var(--amber-hi); }
.price-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.4rem 0 1.5rem;
  display: block;
}
.pricing-card-featured .price-meta { color: rgba(255,255,255,0.4); }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.price-list li {
  font-size: 0.84rem;
  color: var(--charcoal);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.price-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.42rem;
  color: var(--coral-lo);
  top: 0.4em;
}
.pricing-card-featured .price-list li { color: rgba(255,255,255,0.8); }
.pricing-card-featured .price-list li::before { color: var(--amber-hi); }
.pricing-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(44,44,44,0.06);
}
.pricing-card-featured .pricing-footer { border-top-color: rgba(255,255,255,0.1); }
.pricing-btn { width: 100%; text-align: center; display: block; }

/* ── Badge pill ── */
.badge-pill {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.badge-coral { background: var(--coral-lo); color: var(--white); }
.badge-amber { background: var(--amber-lo); color: var(--white); }

/* ── Top-up block ── */
.topup-block {
  margin: 2.5rem auto 0;
  padding: 1.75rem 2.25rem;
  background: var(--beige);
  border-radius: 6px;
  border-left: 4px solid var(--amber);
  max-width: 100%;
}
.topup-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.topup-star {
  font-size: 1.1rem;
  color: var(--amber-lo);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.topup-block h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.3rem 0 0.6rem;
}
.topup-block p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* ── How It Works Steps ── */
.process-intro {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  color: #62584f;
  font-size: 1rem;
  line-height: 1.7;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin: 2.25rem auto 0;
}
.step-item {
  position: relative;
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  column-gap: 1rem;
  row-gap: 0.5rem;
  align-items: start;
  min-height: 190px;
  padding: 1.6rem 1.7rem;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(58,90,62,0.18);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(44,44,44,0.05);
}
.step-num {
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
.step-item h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.15rem 0 0;
  line-height: 1.2;
}
.step-item p {
  grid-column: 2;
  font-size: 0.95rem;
  color: #62584f;
  margin: 0;
  line-height: 1.65;
}

/* ── For Teachers section ── */
.teacher-band {
  background: var(--navy);
  padding: 5.5rem 2rem;
  border-top: none;
  border-bottom: none;
}
.teacher-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.teacher-text .label { color: var(--amber-hi); }
.teacher-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  margin: 0.4rem 0 1.25rem;
  line-height: 1.15;
}
.teacher-text p {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0 0 1rem;
}
.teacher-bullets {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.teacher-bullets li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.5;
}
.teacher-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 0.45rem;
  color: var(--coral-lo);
  top: 0.42em;
}
.teacher-form-col {}
.teacher-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--coral);
  border-radius: 8px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 4px 24px rgba(44,62,45,0.07);
}
.teacher-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.teacher-form-card > p {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  line-height: 1.6;
}
.teacher-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.teacher-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.teacher-field input {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  width: 100%;
  transition: border-color var(--transition);
}
.teacher-field input::placeholder { color: var(--muted); opacity: 0.6; }
.teacher-field input:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
}
.teacher-signup-btn {
  margin-top: 0.5rem;
  background: var(--coral-lo);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--transition);
}
.teacher-signup-btn:hover:not(:disabled) { background: #9c3a22; }
.teacher-signup-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.teacher-signup-status {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  min-height: 1.2em;
}
.status-error { color: var(--coral-lo); }
.status-info  { color: var(--amber-lo); }
.teacher-signup-confirmed {
  font-size: 0.95rem;
  color: var(--amber-lo);
  text-align: center;
  padding: 1rem 0;
  margin: 0;
  line-height: 1.7;
}
.teacher-fine-print {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin: 1rem 0 0;
  line-height: 1.6;
  text-align: center;
}

/* ══════════════════════════════════════
   BOOKING PAGE
   ══════════════════════════════════════ */

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 2.5rem 2rem 0;
  max-width: 520px;
  margin: 0 auto;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  position: relative;
}
.step-dot:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 2px;
  background: rgba(44,44,44,0.12);
}
.step-dot.dot-done::after  { background: var(--coral); }
.step-dot-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(44,44,44,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700;
  color: var(--muted);
  background: var(--ivory);
  position: relative; z-index: 1;
  transition: all var(--transition);
}
.step-dot.dot-done  .step-dot-num { background: var(--coral-lo); border-color: var(--coral-lo); color: var(--white); }
.step-dot.dot-active .step-dot-num { background: var(--navy); border-color: var(--navy); color: var(--white); }
.step-dot-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.step-dot.dot-active .step-dot-label { color: var(--navy); }

/* Booking form wrapper */
.booking-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.book-step { display: none; }
.book-step.active { display: block; }
.book-step-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 0.5rem;
}
.book-step-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}

/* Type selection cards */
.type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.type-card {
  background: var(--white);
  border: 2px solid rgba(44,44,44,0.1);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.type-card:hover { border-color: var(--navy); }
.type-card.selected { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(217,107,79,0.12); }
.type-card-icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; line-height: 1; }
.type-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.type-card p { font-size: 0.84rem; color: var(--muted); margin: 0; line-height: 1.6; }
.type-price {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-lo);
}

/* Package cards */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.pkg-card {
  background: var(--white);
  border: 2px solid rgba(44,44,44,0.1);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
}
.pkg-card:hover { border-color: var(--navy); }
.pkg-card.selected { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(217,107,79,0.12); }
.pkg-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.4rem 0 0.1rem;
}
.pkg-sessions { font-size: 0.78rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.pkg-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin: 0.6rem 0 0.1rem;
  line-height: 1;
}
.pkg-per { font-size: 0.78rem; color: var(--muted); }
.pkg-save {
  display: inline-block;
  margin-top: 0.5rem;
  background: rgba(200,130,26,0.12);
  color: var(--amber-lo);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}
.pkg-popular {
  position: absolute;
  top: -1px; right: 14px;
  background: var(--coral-lo);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 0 0 6px 6px;
}

/* Calendar */
.cal-wrap { margin-bottom: 2rem; }
.cal-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-nav-bar span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
}
.cal-nav {
  background: none;
  border: 1px solid rgba(44,44,44,0.15);
  border-radius: 4px;
  width: 34px; height: 34px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--navy);
  transition: background var(--transition);
}
.cal-nav:hover { background: var(--beige); }
#cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-head-cell {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.cal-empty   { }
.cal-unavail { color: rgba(44,44,44,0.25); cursor: not-allowed; }
.cal-avail   { color: var(--navy); cursor: pointer; background: var(--white); border: 1.5px solid rgba(58,90,62,0.15); }
.cal-avail:hover  { background: var(--beige); border-color: var(--navy); }
.cal-today   { font-weight: 700; }
.cal-avail.cal-today { border-color: var(--amber-lo); color: var(--amber-lo); }
.cal-selected { background: var(--coral-lo) !important; color: var(--white) !important; border-color: var(--coral-lo) !important; }

/* Time slots */
.slots-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 1.5rem 0 0.75rem; }
.slots-loading, .slots-empty { font-size: 0.875rem; color: var(--muted); font-style: italic; }
.slot-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.slot-btn {
  background: var(--white);
  border: 1.5px solid rgba(58,90,62,0.18);
  border-radius: 4px;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.slot-btn:hover    { border-color: var(--navy); background: var(--beige); }
.slot-selected     { background: var(--navy) !important; color: var(--white) !important; border-color: var(--navy) !important; }

/* Detail form */
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; margin-bottom: 1.5rem; }
.booking-field { display: flex; flex-direction: column; gap: 0.4rem; }
.booking-field.full-width { grid-column: 1 / -1; }
.booking-field label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.booking-field label span { color: var(--coral-lo); }
.booking-field input,
.booking-field select,
.booking-field textarea {
  background: var(--white);
  border: 1.5px solid rgba(44,44,44,0.15);
  border-radius: 4px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  width: 100%;
  transition: border-color var(--transition);
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { outline: none; border-color: var(--navy); }
.booking-field textarea { resize: vertical; min-height: 90px; }
.field-error { color: var(--coral-lo); font-size: 0.8rem; margin-top: 0.5rem; }

/* Review */
.review-panel {
  background: var(--white);
  border-radius: 8px;
  border: 1.5px solid rgba(44,44,44,0.1);
  overflow: hidden;
  margin-bottom: 1.75rem;
}
.review-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid rgba(44,44,44,0.06);
}
.review-row:last-child { border-bottom: none; }
.review-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); flex: 0 0 110px; }
.review-val { font-size: 0.88rem; color: var(--charcoal); line-height: 1.5; }

/* Policy box */
.policy-box {
  background: var(--beige);
  border-left: 4px solid var(--amber);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
}
.policy-box h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--navy); margin: 0 0 0.6rem; }
.policy-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.policy-box li { font-size: 0.84rem; color: var(--charcoal); padding-left: 1.1rem; position: relative; line-height: 1.55; }
.policy-box li::before { content: '✦'; position: absolute; left: 0; font-size: 0.42rem; color: var(--amber-lo); top: 0.4em; }

/* Step navigation */
.step-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 1.5rem;
}
.btn-back {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}
.btn-back:hover { color: var(--navy); }

/* Confirmation step */
.confirm-wrap { text-align: center; padding: 3rem 1rem; }
.confirm-icon { font-size: 3rem; margin-bottom: 1rem; }
.confirm-wrap h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 1rem;
}
.confirm-wrap p { font-size: 0.95rem; color: var(--muted); max-width: 460px; margin: 0 auto 2rem; line-height: 1.8; }

/* Booking page responsive */
@media (max-width: 700px) {
  .type-grid  { grid-template-columns: 1fr; }
  .pkg-grid   { grid-template-columns: 1fr; }
  .booking-fields { grid-template-columns: 1fr; }
  .booking-field.full-width { grid-column: 1; }
  .step-dot-label { display: none; }
}

/* ══════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════ */

/* ── About page hero (Photo 3 + intro) ── */
.about-page-hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 88vh;
  align-items: stretch;
  overflow: hidden;
}
.about-photo-col {
  position: relative;
  overflow: hidden;
}
.about-photo-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-intro-col {
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4.5rem 5rem 4rem;
}
.about-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0.5rem 0 0;
  line-height: 1.1;
}
.about-title-stack {
  border-left: 3px solid var(--coral);
  padding-left: 1.25rem;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.about-title-stack span {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.45;
}
.about-title-stack strong { color: var(--charcoal); font-weight: 700; }
.credential-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}
.credential-pill {
  display: inline-block;
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.38rem 0.85rem;
  border-radius: 100px;
}
.credential-pill.pill-amber {
  background: var(--amber);
  color: var(--white);
}
.credential-pill.pill-coral {
  background: var(--coral-lo);
  color: var(--white);
}

/* ── Story chapters ── */
.story-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.story-intro {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 0 4.5rem;
  font-style: italic;
}
.story-chapter {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2.75rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(44,44,44,0.08);
}
.story-chapter:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.chapter-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 0.4rem;
  gap: 0.15rem;
}
.chapter-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-lo);
  display: block;
  text-align: right;
  white-space: nowrap;
}
.chapter-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: rgba(58,90,62,0.14);
  line-height: 1;
  display: block;
  text-align: right;
}
.chapter-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.2;
}
.chapter-body p {
  color: var(--charcoal);
  font-size: 0.94rem;
  line-height: 1.88;
  margin: 0 0 0.85rem;
}
.chapter-body p:last-child { margin-bottom: 0; }
.pull-quote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--coral);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.4rem 0;
  line-height: 1.55;
}

/* ── Action photo strip (Photo 1) ── */
.action-strip {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.action-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.action-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30,58,62,0.65) 0%,
    transparent 60%
  );
  display: flex;
  align-items: center;
  padding: 3rem 5vw;
}
.action-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  max-width: 480px;
  line-height: 1.3;
}
.action-quote em {
  font-style: normal;
  color: var(--amber-hi);
}

/* ── Dr. Penullar milestone band ── */
.milestone-band {
  background: var(--amber-lo);
  padding: 4.5rem 2rem;
  text-align: center;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}
.milestone-band .label { color: rgba(255,255,255,0.65); }
.milestone-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 600;
  color: var(--white);
  margin: 0.5rem 0 1.25rem;
  line-height: 1.1;
}
.milestone-band p {
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* ── Personality traits ── */
.personality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.personality-card {
  background: var(--white);
  border-radius: 6px;
  padding: 2.25rem 1.75rem;
  border-top: 3px solid var(--coral);
}
.personality-icon {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.85rem;
  display: block;
}
.personality-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.personality-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Responsive — About Page additions ── */
@media (max-width: 900px) {
  .about-page-hero { grid-template-columns: 1fr; min-height: auto; }
  .about-photo-col { min-height: 65vw; }
  .about-intro-col { padding: 3.5rem 2rem; }
  .story-chapter   { grid-template-columns: 90px 1fr; gap: 1.75rem; }
  .personality-grid { grid-template-columns: 1fr; }
  .action-strip { height: 300px; }
}
@media (max-width: 600px) {
  .story-section  { padding: 4rem 1.25rem; }
  .story-chapter  { grid-template-columns: 1fr; gap: 0.75rem; }
  .chapter-marker { flex-direction: row; align-items: center; gap: 0.75rem; }
  .chapter-num    { text-align: left; }
  .chapter-year   { text-align: left; font-size: 1.5rem; }
  .action-strip   { height: 240px; }
  .action-strip-overlay { padding: 2rem; }
}

/* ══════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 0.6rem;
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 2rem;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-detail-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-detail-icon {
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.contact-detail-text span,
.contact-detail-text a {
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
}
.contact-detail-text a:hover { color: var(--coral-lo); }
.contact-booking-nudge {
  background: var(--beige);
  border-left: 4px solid var(--coral);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}
.contact-booking-nudge p {
  font-size: 0.84rem;
  color: var(--charcoal);
  margin: 0 0 0.85rem;
  line-height: 1.65;
}
.contact-booking-nudge p:last-child { margin: 0; }

.contact-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 2px 24px rgba(44,44,44,0.07);
}
.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 0.35rem;
}
.contact-form-card > p {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  line-height: 1.6;
}
.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-field { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-field label span { color: var(--coral-lo); }
.contact-field input,
.contact-field select,
.contact-field textarea {
  background: var(--ivory);
  border: 1.5px solid rgba(44,44,44,0.13);
  border-radius: 4px;
  padding: 0.72rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  width: 100%;
  transition: border-color var(--transition);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { outline: none; border-color: var(--navy); background: var(--white); }
.contact-field textarea { resize: vertical; min-height: 110px; }
.contact-submit-btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.85rem;
}
.contact-status {
  margin-top: 0.75rem;
  font-size: 0.84rem;
  min-height: 1.2em;
  text-align: center;
}
.contact-status.status-success { color: var(--navy); font-style: italic; }
.contact-status.status-error   { color: var(--coral-lo); }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Responsive — Services Page additions ── */
@media (max-width: 900px) {
  .track-grid    { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .summer-grid   { grid-template-columns: 1fr; max-width: 420px; }
  .teacher-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .services-hero { padding: 3.5rem 1.5rem; }
  .steps-grid    { grid-template-columns: 1fr; }
  .step-item     { min-height: 0; padding: 1.35rem; grid-template-columns: 2.75rem 1fr; }
  .step-num      { width: 2.75rem; height: 2.75rem; }
  .step-item h4  { font-size: 1.2rem; }
  .step-item p   { font-size: 0.9rem; }
  .course-row    { flex-direction: column; gap: 0.5rem; }
  .summer-grid   { max-width: 100%; }
  .teacher-band  { padding: 3.5rem 1.25rem; }
}

/* ══════════════════════════════════════
   THANK YOU PAGE
   ══════════════════════════════════════ */
.thankyou-wrap {
  background: var(--ivory);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
}
.thankyou-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
}
.thankyou-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-style: italic;
  font-weight: 700;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}
.thankyou-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 auto 3rem;
  max-width: 500px;
}
.thankyou-steps {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 0 0 2.5rem;
}
.thankyou-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.thankyou-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.thankyou-step-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--charcoal);
}
.thankyou-step-text strong {
  font-weight: 700;
  color: var(--navy);
}
.thankyou-step-text a {
  color: var(--coral-lo);
  text-decoration: none;
}
.thankyou-step-text a:hover { text-decoration: underline; }
.thankyou-policy {
  background: var(--beige);
  border-left: 3px solid var(--amber);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  text-align: left;
  margin: 0 0 2.5rem;
}
.thankyou-policy strong { color: var(--charcoal); }
.thankyou-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 2.5rem;
}
.thankyou-sign {
  font-size: 0.84rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
}
