/* Well Said — brand stylesheet
   Register 1 (default): playful, full colour — schools & parents
   Register 2 (.quiet on <body>): ink + teal, generous whitespace — corporate & interview prep */

:root {
  /* Brand book palette (exact values, July 2026) */
  --ivory: #F4F0E7;      /* warm cream */
  --ink: #0D1B2A;        /* deep navy */
  --muted: #55606B;
  --teal: #0E7C77;       /* curiosity */
  --coral: #EB4F4A;      /* creativity */
  --amber: #FFB21D;      /* confidence */
  --blue: #1B4FD6;       /* connection */
  --teal-dark: #0A5A56;
  --coral-dark: #B23531;
  --blue-dark: #123A9E;
  --peach: #FFD3C2;      /* soft peach */
  --aqua: #C7E5E7;       /* light aqua */
  --paper: #FFFFFF;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2 { font-family: 'Courier Prime', monospace; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.75rem; }
h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.15rem; margin-bottom: 0.5rem; }
.kicker {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 0.75rem; display: block;
}

p { margin-bottom: 1rem; color: var(--ink); }
.lead { font-size: 1.2rem; color: var(--muted); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
/* Stacked wordmark lockup: mark alongside a two-line "well / said." */
.logotype { display: inline-block; }
.logomark {
  display: grid; grid-template-columns: 1fr 1fr; width: 44px; height: 44px;
  font-family: Georgia, serif; font-size: 40px; line-height: 0.62; font-weight: 700;
}
.logomark span:nth-child(1) { color: var(--teal); }
.logomark span:nth-child(2) { color: var(--coral); }
.logomark span:nth-child(3) { color: var(--amber); }
.logomark span:nth-child(4) { color: var(--blue); }
.logotype { font-family: 'Special Elite', monospace; font-weight: 400; font-size: 1.35rem; line-height: 0.96; }
.logotype .dot { color: var(--coral); }
.quiet .logomark span { color: var(--ink); }
.quiet .logomark span:nth-child(2) { color: var(--teal); }

/* ---------- Header / nav ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31,30,28,0.08);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto; }
nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-left: auto; }
.navbar > .cta { margin-left: 22px; }
nav a {
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.92rem;
  color: var(--ink); text-decoration: none; padding-bottom: 2px;
}
nav a:hover { border-bottom: 3px solid var(--amber); }
nav a.active { border-bottom: 3px solid var(--teal); }
.cta {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.92rem;
  background: var(--coral); color: #fff !important; padding: 9px 20px; border-radius: 999px;
  text-decoration: none; transition: background 0.15s;
}
.cta:hover { background: var(--coral-dark); border-bottom: none !important; }
/* Bright call-to-action — coral, for a button that needs to stand out */
.cta-bright {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem;
  background: var(--coral); color: #fff !important; padding: 13px 26px; border-radius: 999px;
  text-decoration: none; display: inline-block; transition: background 0.15s;
}
.cta-bright:hover { background: var(--coral-dark); border-bottom: none !important; }
/* Secondary "register interest" button — outline teal, for not-yet-launched offers */
.cta-ghost {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem;
  background: transparent; color: var(--teal); border: 1.5px solid var(--teal);
  padding: 8px 17px; border-radius: 999px; text-decoration: none; display: inline-block; text-align: center;
  transition: background 0.15s, color 0.15s;
}
.cta-ghost:hover { background: var(--teal); color: #fff !important; border-bottom: 1.5px solid var(--teal) !important; }

/* ---------- Mobile menu (hamburger) — pure CSS, no JavaScript ---------- */
.nav-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nav-burger { display: none; }

@media (max-width: 880px) {
  .navbar { position: relative; padding: 12px 20px; }
  .logomark-img { height: 46px; }
  .logotype { font-size: 1.15rem; }
  /* burger button */
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 10px; border-radius: 10px;
    cursor: pointer; flex: 0 0 auto; margin-left: 6px;
  }
  .nav-burger span { display: block; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--teal); outline-offset: 2px; }
  /* keep the CTA visible in the bar, slightly compact */
  .navbar > .cta { margin-left: auto; padding: 8px 15px; font-size: 0.85rem; }
  /* links collapse into a dropdown panel under the bar */
  header nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    background: var(--ivory);
    border-bottom: 1px solid rgba(31,30,28,0.10);
    box-shadow: 0 12px 26px rgba(13,27,42,0.12);
    padding: 4px 20px 14px;
  }
  .nav-toggle:checked ~ nav { display: flex; }
  header nav a { padding: 14px 2px; font-size: 1rem; border-bottom: 1px solid rgba(31,30,28,0.08) !important; }
  header nav a:last-child { border-bottom: none !important; }
  header nav a.active { color: var(--teal); }
}

/* ---------- Hero ---------- */
.hero { padding: 84px 0 64px; }
.hero .lead { max-width: 620px; margin-top: 1.25rem; }
.underline-brush { position: relative; white-space: nowrap; }
.underline-brush svg, .underline-brush .stroke-img { position: absolute; left: 0; bottom: -10px; width: 100%; height: 12px; }
.stroke-img { object-fit: fill; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-alt { background: var(--paper); }
.band-peach { background: var(--peach); }
.band-aqua { background: var(--aqua); }
/* Ghost quote — oversized painted mark whispering behind a section */
.ghost-wrap { position: relative; overflow: hidden; }
.ghost-wrap > .wrap { position: relative; z-index: 1; }
.ghostq {
  position: absolute; height: 118%; width: auto;
  opacity: 0.09; pointer-events: none; user-select: none; z-index: 0;
}
.ghostq.tl { top: -9%; left: -50px; }
.ghostq.br { bottom: -9%; right: -50px; }
/* Script pull-line as a visual break */
.script-break { text-align: center; padding: 8px 24px 0; }
/* Photography */
.photo-band { border-radius: 16px; overflow: hidden; margin: 2rem 0 0.75rem; }
.photo-band img { display: block; width: 100%; max-height: 420px; object-fit: cover; }
.photo-band.natural img { max-height: none; height: auto; }
/* Hero photo that fills its column */
.photo-slot.filled.cover { height: 100%; }
.photo-slot.filled.cover img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 2rem 0 0.75rem; }
.photo-duo figure { border-radius: 16px; overflow: hidden; margin: 0; }
.photo-duo img { display: block; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .photo-duo { grid-template-columns: 1fr; } }

/* Four C cards */
.cgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 2rem; }
.ccard { background: var(--paper); border-radius: 16px; padding: 1.5rem 1.4rem; border: 1px solid rgba(31,30,28,0.07); }
.ccard .cmark { font-family: Georgia, serif; font-size: 2.6rem; line-height: 0.8; font-weight: 700; display: block; }
.ccard h3 { margin-top: 0.4rem; }
.ccard p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0; }
.ccard.teal .cmark, .ccard.teal h3 { color: var(--teal); }
.ccard.coral .cmark, .ccard.coral h3 { color: var(--coral); }
.ccard.amber .cmark { color: var(--amber); } .ccard.amber h3 { color: #9A6410; }
.ccard.blue .cmark, .ccard.blue h3 { color: var(--blue); }

/* Offer cards */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 2rem; }
.offer {
  background: var(--paper); border-radius: 16px; padding: 1.8rem 1.6rem;
  border: 1px solid rgba(31,30,28,0.07); display: flex; flex-direction: column;
}
.offer h3 { font-size: 1.25rem; }
.offer .tag {
  align-self: flex-start; font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; padding: 4px 12px; border-radius: 999px; margin-bottom: 0.9rem;
}
.tag.teal { background: #DDF0EE; color: var(--teal-dark); }
.tag.coral { background: #FADFD8; color: var(--coral-dark); }
.tag.blue { background: #DEE7FA; color: var(--blue-dark); }
.tag.amber { background: #FBEAC2; color: #8A5A0B; }
.offer a.more { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--teal); text-decoration: none; margin-top: auto; }
.offer a.more:hover { text-decoration: underline; }

/* Testimonial carousel — manual (no autoplay). 2 cards on desktop, 1 on mobile.
   Native swipe via scroll-snap; arrows + dots for desktop. Controls auto-hide
   when there aren't enough quotes to scroll. Add a quote by pasting one
   <figure class="tcard"> into .ttrack — dots and arrows update automatically. */
.tcarousel { margin-top: 2rem; }
.ttrack {
  display: flex; gap: 20px; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; padding: 2px 2px 6px;
  scrollbar-width: none;
}
.ttrack::-webkit-scrollbar { display: none; }
.tcard {
  flex: 0 0 calc(50% - 10px); scroll-snap-align: start; margin: 0;
  background: var(--paper); border-radius: 16px; padding: 1.8rem 1.6rem;
  border: 1px solid rgba(31,30,28,0.07); display: flex; flex-direction: column;
}
.tcard blockquote { margin: 0; font-family: inherit; font-weight: 400; font-size: 1.02rem; line-height: 1.65; color: var(--ink); }
.tcard figcaption { margin-top: 0.8rem; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--teal); }
@media (max-width: 720px) { .tcard { flex-basis: 100%; } }
.tnav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.3rem; }
.tbtn {
  width: 42px; height: 42px; border-radius: 999px; padding: 0;
  border: 1px solid rgba(31,30,28,0.15); background: var(--paper); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; font-size: 1.4rem; line-height: 1;
  transition: border-color .15s, color .15s;
}
.tbtn:hover { border-color: var(--teal); color: var(--teal); }
.tbtn:disabled { opacity: .35; cursor: default; border-color: rgba(31,30,28,0.15); color: var(--ink); }
.tdots { display: flex; gap: 8px; }
.tdot { width: 9px; height: 9px; border-radius: 999px; padding: 0; border: none; background: rgba(31,30,28,0.22); cursor: pointer; transition: background .15s; }
.tdot.active { background: var(--teal); }

/* Quote band */
.quoteband { background: var(--ink); color: var(--ivory); padding: 64px 0; }
.quoteband blockquote {
  font-family: 'Courier Prime', monospace; font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem); max-width: 760px; line-height: 1.35;
}
.quoteband .openq { color: var(--teal); font-family: Georgia, serif; font-size: 3rem; line-height: 0; vertical-align: -0.4em; margin-right: 6px; }
.quoteband cite { display: block; margin-top: 1.2rem; font-family: 'Poppins', sans-serif; font-style: normal; font-size: 0.95rem; color: #B8B2A4; }

/* FAQ */
details {
  background: var(--paper); border: 1px solid rgba(31,30,28,0.08); border-radius: 12px;
  padding: 1rem 1.3rem; margin-bottom: 12px;
}
details summary { font-family: 'Poppins', sans-serif; font-weight: 600; cursor: pointer; font-size: 1rem; }
details[open] summary { margin-bottom: 0.6rem; color: var(--teal-dark); }
details p { font-size: 0.97rem; color: var(--muted); margin-bottom: 0.4rem; }

/* Tables (term dates) */
table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; background: var(--paper); border-radius: 12px; overflow: hidden; }
th { font-family: 'Poppins', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; text-align: left; background: var(--ink); color: var(--ivory); padding: 12px 16px; }
td { padding: 12px 16px; border-bottom: 1px solid rgba(31,30,28,0.07); font-size: 0.97rem; }

/* Brushwork logo mark (hand-drawn PNG, replaces the CSS glyph mark) */
.logomark-img { height: 56px; width: auto; display: block; }
footer .logomark-img { height: 54px; }

/* Large brand lockup — home hero (mark BESIDE a two-line wordmark, tagline centred under) */
.brand-hero { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; margin: 0 auto 2.6rem; }
.brand-lockup { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.brand-lockup img { height: clamp(140px, 16vw, 190px); width: auto; display: block; }
.brand-lockup .logotype-lg { font-family: 'Special Elite', monospace; font-size: clamp(3.4rem, 7vw, 5rem); line-height: 0.86; color: var(--ink); }
.brand-lockup .logotype-lg .dot { color: var(--coral); }
.brand-tagline { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: clamp(0.82rem, 1.4vw, 1.02rem); letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); }
@media (max-width: 560px) { .brand-lockup { gap: 16px; } .brand-lockup img { height: 108px; } .brand-lockup .logotype-lg { font-size: 2.9rem; } }
img.cmark-img { height: 40px; width: auto; display: block; }
.ccard .lvl {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
  background: rgba(13,27,42,0.06); border-radius: 999px; padding: 2px 9px;
  vertical-align: 2px; margin-left: 6px; white-space: nowrap;
}
.quotemark-img { height: 96px; width: auto; display: block; }
/* Actor's-annotation kit — Mackey's hand-painted Procreate marks */
.hl { position: relative; padding: 0 2px; isolation: isolate; white-space: nowrap; }
.hl::before {
  content: ""; position: absolute; z-index: -1;
  left: -0.25em; right: -0.3em; top: -0.55em; bottom: -0.5em;
  background: url("images/hl-amber-flat.png") no-repeat;
  background-size: 100% 100%;
}
/* Amber mark only — sits flat across the phrase. Colour classes (.hl.teal/coral/blue)
   are retained in markup but all resolve to the same amber highlight. */
/* Circled word — wrap text in <span class="circled"><img class="circle-img" src="images/circle-teal.png" alt="" aria-hidden="true">word</span> */
.circled { position: relative; display: inline-block; padding: 0 0.3em; }
.circled .circle-img {
  position: absolute; left: -1.1em; top: -0.8em;
  width: calc(100% + 2.2em); height: calc(100% + 1.6em);
  object-fit: fill; pointer-events: none;
  transform-origin: 0 50%; /* anchor the left, let the right swing */
  transform: rotate(5deg); /* right-hand side dips below the word */
}
.annot-arrow { height: 54px; width: auto; display: inline-block; vertical-align: middle; }
.annot-dot { height: 14px; width: auto; display: inline-block; }
.quoteband .openq-img { height: 42px; width: auto; display: inline-block; vertical-align: -10px; margin-right: 12px; }
.quoteband .closeq-img { height: 34px; width: auto; display: inline-block; vertical-align: -18px; margin-left: 12px; }

/* ---------- Brand graphic language (from brand book) ---------- */

/* Handwritten teal accent (Patrick Hand) — used for section pull-lines */
.script {
  font-family: 'Nothing You Could Do', cursive;
  color: var(--teal);
  /* +15% size compensation for NYCD's small body, plus a hairline
     text-shadow to thicken its thin strokes on low-res screens */
  font-size: 1.85rem; line-height: 1.3; display: inline-block;
  text-shadow: 0 0 0.4px currentColor;
}
.script.lg { font-size: clamp(2.1rem, 4.6vw, 3rem); }

/* Brush-stroke underline beneath section headings */
.brush { position: relative; display: inline-block; }
.brush svg, .brush .stroke-img { position: absolute; left: 0; bottom: -14px; width: 100%; height: 14px; }

/* Big four-colour quotation-mark cluster (hero motif) */
.quotemark {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  width: 96px; height: 96px;
  font-family: Georgia, serif; font-size: 82px; line-height: 0.6; font-weight: 700;
}
.quotemark span:nth-child(1) { color: var(--teal); }
.quotemark span:nth-child(2) { color: var(--coral); }
.quotemark span:nth-child(3) { color: var(--amber); }
.quotemark span:nth-child(4) { color: var(--blue); }

/* Documentary photo slots — deep-navy blocks until real photos arrive */
.photo-slot {
  background: var(--ink); color: #8FA0B0; border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem; min-height: 220px;
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; line-height: 1.5;
  border: 1px dashed rgba(199,229,231,0.35);
}
.photo-slot .ps-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--aqua); margin-bottom: 6px; }
.photo-slot.tall { min-height: 100%; }
.photo-slot img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }

/* Hero split: text + portrait photo slot */
.hero-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
@media (max-width: 760px) { .hero-split { grid-template-columns: 1fr; } }

/* Tag colour variants for peach/aqua */
.tag.peach { background: var(--peach); color: var(--coral-dark); }
.tag.aqua { background: var(--aqua); color: var(--teal-dark); }

/* Team bio photo (placeholder monogram until real photos supplied) */
img.bio-photo { object-fit: cover; }
.photo-slot.filled { padding: 0; border: none; background: none; min-height: 0; display: block; }
.photo-slot.filled img { display: block; width: 100%; height: auto; }
.bio-photo {
  width: 120px; height: 120px; border-radius: 50%; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--aqua); color: var(--teal-dark);
  font-family: 'Courier Prime', monospace; font-weight: 700; font-size: 2.2rem;
}

/* Placeholder flag for content Mackey must supply */
.todo { background: #FCF3D7; border: 1px dashed var(--amber); border-radius: 8px; padding: 2px 8px; font-size: 0.9em; }

/* ---------- Quiet register ---------- */
.quiet { background: #FCFAF6; }
.quiet .hero { padding: 110px 0 80px; }
.quiet h1, .quiet h2 { font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: -0.02em; }
.quiet .kicker { color: var(--teal); }
.quiet section { padding: 72px 0; }
.quiet .offer { border: 1px solid rgba(31,30,28,0.1); }
.quiet .offer h3 { color: var(--ink); }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: #B8B2A4; padding: 48px 0 36px; margin-top: 40px; }
footer .wrap { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
footer a { color: var(--ivory); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .foot-logo .logotype { color: var(--ivory); }
footer nav { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
footer nav a { color: #B8B2A4; font-size: 0.92rem; padding: 0; }
footer nav a:hover { border: none; color: var(--ivory); }
footer .fineprint { width: 100%; margin-top: 28px; font-size: 0.82rem; border-top: 1px solid rgba(250,246,239,0.15); padding-top: 18px; }

/* ---------- School roadmap (For parents) ---------- */
/* Breadcrumb / back-link above a hero */
.crumb { font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.9rem; margin-bottom: 1rem; }
.crumb a { color: var(--teal); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

/* Three-column term roadmap — bold banners + tinted zones (matches the PDF handouts) */
.roadmap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2rem; align-items: start; }
/* Each column is a tinted zone with a strong colour bar on top */
.term { border-radius: 14px; overflow: hidden; padding-bottom: 1.2rem; }
.term.autumn { background: #E6F2F1; }
.term.spring { background: #E9EEFB; }
.term.summer { background: #FDEBE9; }
.term-head { padding: 1rem 1.1rem; color: var(--ivory); text-align: center; }
.term-head .season { font-family: 'Courier Prime', monospace; font-weight: 700; font-size: 1.25rem; letter-spacing: 0.03em; text-transform: uppercase; display: block; }
.term-head .months { font-family: 'Poppins', sans-serif; font-size: 0.85rem; opacity: 0.95; }
.term.autumn .term-head { background: var(--teal); }
.term.spring .term-head { background: var(--blue); }
.term.summer .term-head { background: var(--coral); }
/* Stage block: a filled colour header bar with bullets on the tint below */
.stage, .milestone { margin: 1.1rem 1.1rem 0; }
.stage h3 { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; border-radius: 9px; padding: 8px 13px; margin-bottom: 0.65rem; }
.stage h3 > span { color: rgba(255,255,255,0.82) !important; font-weight: 400 !important; }
.term.autumn .stage h3 { background: var(--teal); }
.term.spring .stage h3 { background: var(--blue); }
.term.summer .stage h3 { background: var(--coral); }
.stage ul, .milestone ul { list-style: none; padding: 0 4px; margin: 0; }
.stage li, .milestone li { position: relative; padding-left: 15px; font-size: 0.95rem; color: #2A3742; margin-bottom: 0.4rem; line-height: 1.5; }
.stage li:last-child, .milestone li:last-child { margin-bottom: 0; }
.stage li::before, .milestone li::before { content: ""; position: absolute; left: 3px; top: 0.6em; width: 6px; height: 6px; border-radius: 50%; }
.term.autumn .stage li::before { background: var(--teal); }
.term.spring .stage li::before { background: var(--blue); }
.term.summer .stage li::before { background: var(--coral); }
/* Exam milestone: navy bar + amber heading; celebration variant = amber bar */
.milestone h3 { background: var(--ink); color: var(--amber); text-align: center; font-family: 'Courier Prime', monospace; font-weight: 700; font-size: 1rem; letter-spacing: 0.02em; border-radius: 9px; padding: 8px 13px; margin-bottom: 0.65rem; }
.milestone h3 .star { margin: 0 5px; }
.milestone.celebrate h3 { background: var(--amber); color: var(--ink); }
.milestone li::before { background: var(--amber); }
.milestone .close { font-family: 'Poppins', sans-serif; font-weight: 600; font-style: italic; font-size: 0.82rem; color: var(--coral-dark); margin: 0.5rem 0 0; padding-left: 4px; }
@media (max-width: 780px) { .roadmap { grid-template-columns: 1fr; } }

/* Download button (branded PDF) */
.dl-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
  background: var(--ink); color: var(--ivory) !important; padding: 12px 22px; border-radius: 999px;
  text-decoration: none; transition: background 0.15s;
}
.dl-btn:hover { background: var(--teal); }
.dl-btn .dl-ico { font-size: 1.05rem; line-height: 1; }

/* School picker cards on the Parents page */
.offer.school { border-top: 4px solid var(--teal); }
.offer.school.beacon { border-top-color: var(--coral); }
.offer.school.challoners { border-top-color: var(--blue); }
.offer.school.holyport { border-top-color: var(--amber); }
.offer .soon { align-self: flex-start; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.85rem; color: var(--muted); margin-top: auto; }
/* Stacked buttons on a school card: outlined roadmap + solid sign-up */
.offer .card-actions { margin-top: auto; display: flex; flex-direction: column; gap: 0.6rem; padding-top: 0.9rem; }
.offer .card-actions a {
  display: block; text-align: center;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.92rem;
  padding: 10px 16px; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.offer .card-actions a.roadmap { background: transparent; color: var(--teal); border-color: var(--teal); }
.offer .card-actions a.roadmap:hover { background: var(--teal); color: var(--ivory); }
.offer .card-actions a.signup { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.offer .card-actions a.signup:hover { background: var(--teal); border-color: var(--teal); }

@media (max-width: 720px) {
  nav { gap: 14px; }
  .hero { padding: 56px 0 40px; }
}
