/* ============ Base ============ */
:root {
  --green: #14403d;
  --green-dark: #0d2b29;
  --cream: #f0eee2;
  --paper: #faf8f3;
  --white: #fff;
  --ink: #1b1b18;
  --ink-2: #33332d;
  --ink-3: #44423b;
  --ink-4: #55534a;
  --muted: #6c6a60;
  --border: #e2ded2;
  --border-dash: #c9c4b4;
  --chip-border: #ddd8ca;
  --gold: #c9a95c;
  --gold-bright: #d9b45c;
  --gold-deep: #b8860b;
  --red: #c0392b;
  --brown: #8a5a3b;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Archivo', Helvetica, Arial, sans-serif;
  --hand: 'Caveat', cursive;
  --mono: ui-monospace, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
img { max-width: 100%; }

html { scroll-behavior: smooth; }

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.gold { color: var(--gold); }

.section-sub { margin: 0 0 40px; font-size: 16.5px; color: var(--muted); }

.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 3px;
  text-align: center;
  transition: background .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
}
.btn-dark {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 4px 0 #071c1a, 0 10px 18px rgba(13,43,41,.28);
}
.btn-dark:hover {
  background: var(--green-dark);
  color: var(--cream);
  transform: translateY(3px);
  box-shadow: 0 1px 0 #071c1a, 0 3px 8px rgba(13,43,41,.22);
}
.btn-dark:active { transform: translateY(4px); box-shadow: 0 0 0 #071c1a, 0 2px 5px rgba(13,43,41,.2); }
.btn-cream {
  background: var(--cream);
  color: var(--green);
  box-shadow: 0 4px 0 #b8b29b, 0 10px 18px rgba(0,0,0,.28);
}
.btn-cream:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(3px);
  box-shadow: 0 1px 0 #b8b29b, 0 3px 8px rgba(0,0,0,.22);
}
.btn-cream:active { transform: translateY(4px); box-shadow: 0 0 0 #b8b29b, 0 2px 5px rgba(0,0,0,.2); }
.btn-outline-cream {
  color: var(--cream);
  border: 1px solid rgba(240,238,226,.35);
  font-weight: 500;
  box-shadow: 0 4px 0 rgba(240,238,226,.35);
}
.btn-outline-cream:hover {
  color: var(--cream);
  border-color: var(--cream);
  transform: translateY(3px);
  box-shadow: 0 1px 0 rgba(240,238,226,.35);
}
.btn-outline-cream:active { transform: translateY(4px); box-shadow: 0 0 0 rgba(240,238,226,.35); }
.btn-outline-dark {
  border: 1.5px solid var(--green);
  color: var(--green);
  box-shadow: 0 4px 0 var(--green), 0 10px 18px rgba(20,64,61,.2);
}
.btn-outline-dark:hover {
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--green), 0 3px 8px rgba(20,64,61,.16);
}
.btn-outline-dark:active { transform: translateY(4px); box-shadow: 0 0 0 var(--green); }

.text-link {
  display: inline-block;
  margin-top: 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--green-dark); border-color: var(--green-dark); }

/* ============ Header ============ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 64px;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  position: relative;
}
.logo { height: 61px; display: block; }
.main-nav { display: flex; align-items: center; gap: 6px; font-size: 16px; font-weight: 500; }
.main-nav a { color: var(--ink-2); padding: 8px 12px; border-radius: 4px; }
.main-nav a:hover { background: transparent; color: var(--green); }

/* hand-drawn underlines: gold pencil on hover, red pen on the active page */
.main-nav > a, .nav-sub > a { position: relative; }
.main-nav > a::after, .nav-sub > a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 3px;
  height: 3px;
  background: var(--gold-deep);
  border-radius: 55% 45% 60% 40% / 80% 55% 75% 50%;
  opacity: 0;
  transform: rotate(-.7deg) scaleX(.4);
  transform-origin: left center;
  transition: opacity .15s, transform .18s;
}
.main-nav > a:hover::after, .nav-sub > a:hover::after { opacity: .9; transform: rotate(-.7deg) scaleX(1); }
.main-nav > a.active, .nav-sub > a.active { background: transparent; color: var(--ink); }
.main-nav > a.active::after, .nav-sub > a.active::after {
  opacity: 1;
  transform: rotate(-.7deg) scaleX(1);
  background: var(--red);
}
.nav-sub { position: relative; display: flex; align-items: center; }
.nav-caret { display: inline-block; font-size: 10px; margin-left: 5px; color: var(--muted); transform: translateY(-1px); }
.nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 252px;
  background: #fdfcf7;
  background-image:
    repeating-linear-gradient(0deg, rgba(20,64,61,.05) 0, rgba(20,64,61,.05) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(90deg, rgba(20,64,61,.05) 0, rgba(20,64,61,.05) 1px, transparent 1px, transparent 22px);
  border-radius: 2px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22), 0 2px 6px rgba(0,0,0,.12);
  padding: 16px 18px 8px;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) rotate(0deg);
  transition: opacity .16s, transform .18s, visibility .16s;
}
.nav-drop::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-drop::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 78px;
  height: 21px;
  background: rgba(217,180,92,.55);
  transform: translateX(-50%) rotate(-3deg);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.nav-sub:hover .nav-drop,
.nav-sub:focus-within .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) rotate(-1deg);
}
.nav-drop-head {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--muted);
  border-bottom: 2px solid var(--ink);
  padding: 0 4px 8px;
}
.nav-drop .nav-drop-head:not(:first-child) { margin-top: 14px; }
.main-nav .nav-drop a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 4px;
  border-bottom: 1px dashed var(--border-dash);
  border-radius: 0;
  transition: color .12s, padding-left .12s;
}
.main-nav .nav-drop a::after { content: "→"; font-size: 13px; color: var(--border-dash); transition: color .12s; }
.main-nav .nav-drop a:hover { background: transparent; color: var(--green); padding-left: 12px; }
.main-nav .nav-drop a:hover::after { color: var(--green); }
.main-nav .nav-drop a:last-child { border-bottom: none; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-cta { font-size: 14.5px; padding: 12px 22px; }
.call-pill, .menu-toggle { display: none; }

/* ============ Hero ============ */
.hero { background: var(--green); color: var(--cream); position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  padding: 78px 64px 90px;
  align-items: start;
}
.hero-copy { max-width: 660px; }
.eyebrow.gold { margin-bottom: 22px; }
.hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -.01em;
}
.hero-subhead {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--gold-bright);
}
.hero-lead {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(240,238,226,.85);
  max-width: 540px;
}
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin: 36px 0 0; }
.hero-ctas .btn-cream { font-size: 15.5px; padding: 16px 30px; }
.hero-ctas .btn-outline-cream { padding: 16px 22px; }
.hero-ctas a:focus-visible { outline-color: var(--cream); outline-offset: 3px; }
.hero-stars { margin: 30px 0 0; font-size: 14px; color: rgba(240,238,226,.78); }
.stars { color: var(--gold-bright); }

/* Stat strip — scannable outcome metrics above the fold */
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 34px 0 0;
  border-top: 1px solid rgba(240,238,226,.25);
  padding-top: 14px;
  max-width: 660px;
}
.stat-strip dt {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}
.stat-strip dt .stars { font-size: 16px; }
.stat-strip dd {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(240,238,226,.7);
  white-space: nowrap;
}

/* Progress sheet — hangs into the proof section */
.sheet-wrap {
  position: relative;
  z-index: 3;
  margin-bottom: -150px;
  transform: rotate(-1.6deg);
}
.sheet {
  background: #fdfcf7;
  color: var(--ink);
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(0,0,0,.32), 0 2px 6px rgba(0,0,0,.18);
  padding: 30px 34px 34px;
  background-image:
    repeating-linear-gradient(0deg, rgba(20,64,61,.055) 0, rgba(20,64,61,.055) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(20,64,61,.055) 0, rgba(20,64,61,.055) 1px, transparent 1px, transparent 24px);
}
.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
}
.sheet-muted { color: var(--muted); font-weight: 400; letter-spacing: 0; font-size: 11px; }
.sheet-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-dash);
}
.sheet-rows .sheet-row:first-child { padding-top: 16px; }
.sheet-row.last { border-bottom: none; }
.sheet-title { font-size: 14px; font-weight: 600; }
.sheet-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
.sheet-score { font-family: var(--mono); font-size: 16px; white-space: nowrap; }
.gain { color: var(--red); font-weight: 700; }
.circled { position: relative; font-weight: 700; padding: 3px 9px; }
.circle {
  position: absolute;
  inset: -3px -6px;
  border: 2.5px solid var(--red);
  border-radius: 50% 46% 52% 48% / 55% 48% 55% 45%;
  transform: rotate(-5deg);
}
.sheet-foot {
  border-top: 2px solid var(--ink);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--mono);
}
.sheet-foot .sheet-muted { font-size: 11.5px; }
.sheet-totals { font-size: 13px; font-weight: 600; }
.sheet-note {
  position: absolute;
  right: -14px;
  bottom: -34px;
  transform: rotate(-4deg);
  font-family: var(--hand);
  font-size: 23px;
  font-weight: 600;
  color: var(--red);
}

/* ============ Proof ============ */
.proof {
  background: var(--paper);
  padding: 74px 64px 64px;
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.rating-line { display: flex; align-items: baseline; gap: 12px; }
.rating-number { font-family: var(--serif); font-size: 68px; font-weight: 500; line-height: 1; }
.rating-stars { color: var(--gold-deep); font-size: 21px; letter-spacing: 2px; }
.proof-rating p { margin: 10px 0 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
.review-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 2px;
}
.review-link:hover { color: var(--green-dark); border-color: var(--green-dark); }
.proof blockquote { margin: 0; border-left: 2px solid var(--green); padding-left: 24px; }
.proof blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
}
.proof blockquote footer {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ About ============ */
.about {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 84px 64px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.about h2 { margin: 0; font-size: 38px; line-height: 1.15; }
.about-copy > p:not(.eyebrow) {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-3);
}
.about-copy h2 + p { margin-top: 22px; }
.about-photos { position: relative; padding: 0 30px 30px 0; max-width: 90%; justify-self: center; }
.about-photos-sm { max-width: 75%; justify-self: center; }
.about-headshot {
  width: 100%;
  height: auto;
  border-radius: 3px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
.about-inset {
  position: absolute;
  right: -6px;
  bottom: -8px;
  width: 46%;
  height: auto;
  border-radius: 3px;
  display: block;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
  transform: rotate(2deg);
  border: 5px solid var(--white);
}
.about-badge {
  position: absolute;
  left: 12px;
  bottom: 2px;
  background: var(--green);
  color: var(--cream);
  padding: 12px 16px;
  border-radius: 3px;
}
.badge-name { font-family: var(--serif); font-size: 17px; font-weight: 600; }
.badge-title {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(240,238,226,.78);
  margin-top: 2px;
}

/* ============ Fit ============ */
.fit { background: var(--paper); border-top: 1px solid var(--border); padding: 78px 64px; }
.fit h2 { margin: 0 0 8px; font-size: 36px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fit-card { border-radius: 4px; padding: 36px 40px; }
.fit-yes { background: var(--white); border: 1px solid var(--border); }
.fit-no { border: 1px dashed var(--border-dash); }
.fit-card h3 { margin: 0 0 20px; font-weight: 600; font-size: 22px; }
.fit-yes h3 { color: var(--green); }
.fit-no h3 { color: var(--brown); }
.fit-card ul {
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  font-size: 16px; line-height: 1.55;
}
.fit-yes ul { color: var(--ink-2); }
.fit-no ul { color: var(--ink-4); }
.fit-card li { display: flex; gap: 12px; }
.fit-yes li span { color: var(--green); font-weight: 700; }
.fit-no li span { color: var(--brown); font-weight: 700; }

/* ============ Services ============ */
.services { background: var(--paper); border-top: 1px solid var(--border); padding: 78px 64px; }
.services h2 { margin: 0 0 8px; font-size: 36px; }
.services .section-sub { margin-bottom: 36px; }
.services-hint { margin: 0 0 30px; }
.services .card-grid { row-gap: 24px; }
.list-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.card-grid { display: grid; gap: 16px; }
.list-label::after { content: ""; flex: 1; height: 1px; background: var(--border-dash); }
.card-grid-5 { grid-template-columns: repeat(5, 1fr); margin-bottom: 40px; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
  display: block;
  position: relative;
  background: var(--white);
  background-image:
    linear-gradient(rgba(20,64,61,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,64,61,.045) 1px, transparent 1px);
  background-size: 22px 22px;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 24px 22px;
  box-shadow: 0 6px 14px rgba(27,27,24,.05);
  transform: rotate(-.55deg);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card-grid .service-card:nth-child(even) { transform: rotate(.5deg); }
.service-card::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 62px;
  height: 20px;
  transform: translateX(-50%) rotate(-2.4deg);
  background: rgba(217,180,92,.45);
  border-left: 1px dashed rgba(0,0,0,.1);
  border-right: 1px dashed rgba(0,0,0,.1);
}
.card-grid .service-card:nth-child(3n)::before { left: 32%; transform: translateX(-50%) rotate(2.2deg); }
.card-grid .service-card:nth-child(3n+1)::before { left: 66%; transform: translateX(-50%) rotate(1.6deg); }
.service-card:hover {
  border-color: var(--green);
  transform: rotate(0) translateY(-5px);
  box-shadow: 0 14px 26px rgba(20,64,61,.13);
}
.subject-card { padding: 22px; }
.card-name { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.service-card .card-name::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 7px;
  border-radius: 3px;
  background: var(--gold-bright);
  transform: rotate(-1.2deg);
  transition: width .18s ease, background .18s ease;
}
.service-card:hover .card-name::after { width: 58px; background: var(--red); }
.subject-card .card-name { font-size: 20px; }
.card-note { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
.card-more { font-size: 13px; font-weight: 600; color: var(--green); margin-top: 14px; }

/* ============ Schools ============ */
.schools { background: var(--green); color: var(--cream); padding: 80px 64px; }
.schools-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 72px;
  align-items: start;
}
.schools-intro h2 { margin: 0; font-size: 36px; line-height: 1.15; }
.schools-intro p {
  margin: 20px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(240,238,226,.82);
}
.handwritten {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--hand);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-bright);
  transform: rotate(-2deg);
}
.schools-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.list-label-light {
  margin: 0 0 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(240,238,226,.68);
}
.school-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(240,238,226,.16);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 20px;
  transition: color .15s, padding-left .15s;
}
.school-link:hover { color: var(--gold-bright); padding-left: 10px; }
.school-link:focus-visible { outline-color: var(--cream); }
.school-link span:last-child { font-size: 16px; }

/* ============ Service area ============ */
.area {
  background: var(--paper);
  padding: 74px 64px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.area h2 { margin: 0 0 8px; font-size: 34px; }
.area-lead { margin: 0 0 26px; font-size: 16.5px; line-height: 1.6; color: var(--ink-3); max-width: 560px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; max-width: 640px; }
.chip {
  background: var(--white);
  border: 1px solid var(--chip-border);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  transition: border-color .15s, color .15s, background .15s;
}
.chip:hover { border-color: var(--green); color: var(--green); }
.chip-primary { background: var(--green); border-color: var(--green); color: var(--cream); font-weight: 600; }
.chip-primary:hover { background: var(--green-dark); color: var(--cream); }
.hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 34px;
}
.hours-title { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.25; }
.hours-card p { margin: 12px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-3); }
.hours-mono { margin-top: 18px; font-family: var(--mono); font-size: 13px; color: var(--muted); }

/* ============ FAQ ============ */
.faq { background: var(--white); border-top: 1px solid var(--border); padding: 78px 64px; }
.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}
.faq-intro h2 { margin: 0; font-size: 36px; }
.faq-intro p { margin: 18px 0 0; font-size: 16px; line-height: 1.6; color: var(--muted); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--ink);
}
.faq-q:hover { color: var(--green); }
.faq-q:focus-visible { outline-offset: -2px; }
.faq-mark { font-size: 18px; color: var(--green); flex: none; font-family: var(--sans); }
.faq-a { padding: 0 4px 24px; max-width: 640px; }
.faq-lead { margin: 0; font-size: 16px; font-weight: 600; line-height: 1.6; color: var(--ink); }
.faq-more { margin: 10px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-4); }

/* ============ Footer / conversion ============ */
.footer { background: var(--green); color: var(--cream); padding: 80px 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: start;
  padding-bottom: 70px;
}
.footer-copy h2 { margin: 0; font-size: 40px; line-height: 1.12; }
.footer-copy > p {
  margin: 20px 0 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(240,238,226,.82);
  max-width: 460px;
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin: 34px 0 0; font-size: 16px; }
.footer-phone { color: var(--cream); font-weight: 600; font-size: 22px; font-family: var(--serif); }
.footer-phone:hover { color: var(--gold-bright); }
.footer-email { color: rgba(240,238,226,.8); }
.footer-email:hover { color: var(--gold-bright); }
.footer-meta { color: rgba(240,238,226,.78); font-size: 14px; }

.booking-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  padding: 38px 40px;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.booking-card form { display: flex; flex-direction: column; gap: 18px; }
.form-title { font-family: var(--serif); font-size: 24px; font-weight: 600; }
.booking-card label, .form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-3);
}
.booking-card input, .booking-card select {
  border: 1px solid var(--border-dash);
  border-radius: 3px;
  padding: 13px 14px;
  font-size: 15.5px;
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
}
.booking-card select { padding: 13px 10px; font-size: 15px; }
.booking-card input:focus-visible, .booking-card select:focus-visible {
  border-color: var(--green);
  outline: 2px solid var(--green);
  outline-offset: 1px;
}
.select-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px; }
.name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.human-check,
.booking-card label.human-check {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  cursor: pointer;
  user-select: none;
}
.human-check input {
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--green);
  cursor: pointer;
  flex: none;
}
.form-error { margin: 0; font-size: 14px; font-weight: 600; color: var(--red); }
.form-submit { border: none; cursor: pointer; font-family: var(--sans); font-size: 15.5px; padding: 16px; transition: background .15s, opacity .15s; }
.form-submit:disabled { opacity: .65; cursor: progress; }
.form-done { text-align: center; padding: 30px 0; animation: done-in .35s ease-out; }
@keyframes done-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.form-note { margin: 0; font-size: 12.5px; font-weight: 400; color: var(--muted); }
.done-title { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--green); }
.form-done p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-3); }

.footer-bar {
  border-top: 1px solid rgba(240,238,226,.18);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: rgba(240,238,226,.72);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(240,238,226,.72); }
.footer-links a:hover { color: var(--cream); }

/* ============ Booking modal ============ */
.booking-modal {
  border: none;
  padding: 0;
  background: transparent;
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: visible;
}
.booking-modal::backdrop {
  background: rgba(13, 43, 41, .6);
  backdrop-filter: blur(3px);
}
.booking-modal[open] .booking-card-modal { animation: modal-in .22s ease-out; }
.booking-card-modal {
  position: relative;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: #efece2;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--border); color: var(--ink); }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .booking-modal[open] .booking-card-modal, .form-done { animation: none; }
}

/* Info / service-area modal content */
.area-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}
.area-title { margin: 8px 0 0; font-family: var(--serif); font-size: 32px; font-weight: 600; line-height: 1.1; }
.area-intro { margin: 14px 0 4px; font-size: 15.5px; line-height: 1.65; color: var(--ink-3); }
.area-rows { margin: 10px 0 0; }
.area-rows .prox-row:first-child { border-top: 1px dashed var(--border-dash); margin-top: 8px; }
.area-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 4px; }
.area-links .chip { font-size: 13.5px; padding: 9px 15px; }
.area-cta { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.area-cta .form-note { text-align: center; }

/* ============ Sticky call bar (mobile only) ============ */
.sticky-bar { display: none; }

/* ============ Responsive ============ */
@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr 440px; }
  .hero h1 { font-size: 46px; }
  .card-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .proof { grid-template-columns: 1fr 1fr; }
  .proof-rating { grid-column: 1 / -1; }
  .schools-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 440px; gap: 48px; }
}

@media (max-width: 900px) {
  /* Header */
  .site-header { padding: 14px 18px; }
  .logo { height: 45px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 8px 10px 14px;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 12px; font-size: 16px; border-radius: 0; border-bottom: 1px dashed var(--border-dash); }
  .main-nav > a:last-child { border-bottom: none; }
  .main-nav {
    background-image:
      repeating-linear-gradient(0deg, rgba(20,64,61,.045) 0, rgba(20,64,61,.045) 1px, transparent 1px, transparent 22px),
      repeating-linear-gradient(90deg, rgba(20,64,61,.045) 0, rgba(20,64,61,.045) 1px, transparent 1px, transparent 22px);
  }
  .main-nav > a::after, .nav-sub > a::after { display: none; }
  .main-nav.open a.active { background: transparent; color: var(--green); font-weight: 700; }
  .nav-drop, .nav-caret { display: none; }
  .nav-sub { position: static; }
  .nav-sub > a { display: block; border-bottom: 1px dashed var(--border-dash); }
  .header-cta { display: none; }
  .header-actions { gap: 10px; }
  .call-pill {
    display: inline-block;
    border: 1px solid var(--green);
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 13px;
    border-radius: 999px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4.5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .menu-toggle span { width: 20px; height: 2px; background: var(--ink); }
  .menu-toggle span.short { width: 14px; }

  /* Hero */
  .hero-grid { grid-template-columns: 1fr; gap: 0; padding: 36px 22px 84px; }
  .hero h1 { font-size: 32px; line-height: 1.12; }
  .eyebrow.gold { margin-bottom: 14px; font-size: 11px; }
  .hero-subhead { font-size: 19px; margin-top: 10px; }
  .hero-lead { margin-top: 16px; font-size: 15.5px; line-height: 1.6; }
  .hero-ctas { margin-top: 24px; }
  .hero-ctas .btn-cream { flex: 1 1 100%; }
  .hero-ctas .btn-outline-cream { display: none; }
  .hero-stars { margin-top: 16px; font-size: 13px; text-align: center; }

  .hero-grid { padding-bottom: 0; }
  .sheet-wrap {
    width: 100%;
    max-width: 560px;
    margin: 28px auto -190px;
    transform: rotate(-1.2deg);
  }
  .sheet { padding: 20px 20px 22px; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
  .sheet-head { font-size: 10px; letter-spacing: .1em; padding-bottom: 8px; }
  .sheet-title { font-size: 13px; }
  .sheet-sub { display: none; }
  .sheet-row { padding: 11px 0; }
  .sheet-score { font-size: 13px; }
  .sheet-foot { padding-top: 9px; }
  .sheet-foot .sheet-muted { display: none; }
  .sheet-totals { font-size: 11px; margin-left: auto; }
  .sheet-note {
    position: static;
    text-align: right;
    margin: 10px 6px 0;
    font-size: 19px;
    transform: rotate(-2deg);
  }

  /* Sections */
  .proof { grid-template-columns: 1fr; gap: 18px; padding: 34px 22px 42px; }
  .rating-number { font-size: 46px; }
  .rating-stars { font-size: 16px; }
  .proof blockquote { padding-left: 16px; }
  .proof blockquote p { font-size: 15.5px; }

  .about { grid-template-columns: 1fr; gap: 20px; padding: 34px 22px; }
  .about h2 { font-size: 25px; line-height: 1.18; }
  .about-copy > p:not(.eyebrow) { font-size: 14.5px; }
  .about-photos { order: 2; padding: 0 20px 18px 0; }
  .about-copy .text-link { margin-top: 16px; font-size: 14px; }

  .fit { padding: 34px 22px; }
  .fit h2 { font-size: 25px; margin-bottom: 18px; }
  .fit .section-sub { display: none; }
  .fit-grid { grid-template-columns: 1fr; gap: 14px; }
  .fit-card { padding: 20px 22px; }
  .fit-card h3 { font-size: 18px; margin-bottom: 12px; }
  .fit-card ul { gap: 10px; font-size: 14px; line-height: 1.5; }

  .services { padding: 34px 22px; }
  .services h2 { font-size: 25px; margin-bottom: 18px; }
  .services .section-sub { display: none; }
  .card-grid-5, .card-grid-4 { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-grid-5 { margin-bottom: 22px; }
  .service-card { padding: 16px; }
  .card-name { font-size: 18px; }
  .subject-card .card-name { font-size: 17px; }
  .card-note { font-size: 12px; margin-top: 3px; }
  .card-more { display: none; }

  .schools { padding: 36px 22px; }
  .schools-intro h2 { font-size: 25px; line-height: 1.2; }
  .schools-intro p, .handwritten { display: none; }
  .schools-grid { gap: 18px; }
  .schools-lists { grid-template-columns: 1fr; }
  .school-link { padding: 13px 2px; font-size: 17px; min-height: 44px; }
  .list-label-light { padding-top: 12px; }

  .area { grid-template-columns: 1fr; gap: 24px; padding: 34px 22px; }
  .area h2 { font-size: 25px; }
  .area-lead { font-size: 14.5px; margin-bottom: 16px; }
  .chips { gap: 8px; }
  .chip { padding: 9px 14px; font-size: 13px; }
  .hours-card { padding: 24px 22px; }

  .faq { padding: 34px 22px; }
  .faq-intro h2 { font-size: 25px; }
  .faq-intro p { display: none; }
  .faq-grid { gap: 14px; }
  .faq-q { font-size: 17px; padding: 17px 2px; min-height: 44px; }
  .faq-a { padding-bottom: 18px; }
  .faq-lead { font-size: 14px; }
  .faq-more { font-size: 13.5px; }

  .footer { padding: 36px 22px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; padding-bottom: 40px; }
  .footer-copy h2 { font-size: 26px; line-height: 1.15; }
  .footer-copy > p { margin-top: 12px; font-size: 14.5px; }
  .footer-contact { margin-top: 20px; text-align: center; font-size: 13px; }
  .footer-phone { font-size: 18px; }
  .booking-card { padding: 24px 22px; }
  .booking-card form { gap: 14px; }
  .form-title { font-size: 20px; }
  .footer-bar { flex-direction: column; text-align: center; padding-bottom: 110px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px 20px; }

  /* Sticky call bar */
  .sticky-bar {
    display: flex;
    gap: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: rgba(250,248,243,.97);
    border-top: 1px solid var(--border);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 16px));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .sticky-bar .btn { flex: 1; font-size: 14.5px; padding: 13px; min-height: 44px; }
}

/* ============ Test-prep pages ============ */
.main-nav a.active { background: transparent; color: var(--ink); }

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  margin: 0 0 20px;
  color: rgba(240,238,226,.72);
}
.breadcrumb a { color: rgba(240,238,226,.82); }
.breadcrumb a:hover { color: var(--cream); }
.crumb-here { color: var(--gold); font-weight: 600; }

@media (min-width: 901px) {
  .hero-grid-flip { grid-template-columns: 500px 1fr; gap: 60px; padding: 70px 64px 84px; }
  .hero-grid-flip .hero-copy { grid-column: 2; grid-row: 1; max-width: 680px; justify-self: end; text-align: right; }
  .hero-grid-flip .sheet-wrap { grid-column: 1; grid-row: 1; margin-bottom: -140px; }
  .hero-grid-flip h1 { font-size: 52px; line-height: 1.1; }
  .hero-grid-flip .breadcrumb { justify-content: flex-end; }
  .hero-grid-flip .hero-lead { margin-left: auto; }
  .hero-grid-flip .hero-ctas { justify-content: flex-end; }
}
.hero-grid-flip .hero-lead b { color: var(--cream); font-weight: 600; }

.mechanics { background: var(--paper); padding: 88px 64px 70px; }
.mechanics-grid { display: grid; grid-template-columns: 420px 1fr; gap: 72px; align-items: start; }
.mechanics h2 { margin: 0; font-size: 36px; line-height: 1.15; }
.mechanics-grid > div:first-child p { margin: 14px 0 0; font-size: 16.5px; line-height: 1.7; color: var(--ink-3); }
.mechanics-grid > div:first-child h2 + p { margin-top: 20px; }
.mech-table { background: var(--white); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.mech-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 2px solid var(--ink);
}
.mech-title { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.mech-time { font-family: var(--mono); font-size: 11.5px; color: var(--muted); white-space: nowrap; }
.mech-row {
  display: grid;
  grid-template-columns: 1.4fr .5fr .5fr 1.6fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 28px;
  border-bottom: 1px solid #efece2;
  font-size: 14.5px;
}
.mech-name { font-weight: 600; }
.mech-q, .mech-t { font-family: var(--mono); color: var(--ink-3); }
.mech-desc { color: var(--muted); line-height: 1.5; }
.mech-note { padding: 14px 28px; font-size: 13px; color: var(--muted); background: var(--paper); }

.isee-schools { background: var(--white); border-top: 1px solid var(--border); padding: 70px 64px; }
.isee-schools-grid { display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: start; }
.isee-schools h2 { margin: 0; font-size: 34px; line-height: 1.18; }
.isee-schools-grid > div:first-child p { margin: 18px 0 0; font-size: 16px; line-height: 1.65; color: var(--ink-3); }
.school-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.school-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 20px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  transition: border-color .15s, color .15s, transform .15s, box-shadow .15s;
}
.school-card:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20,64,61,.1);
}
.school-card span:last-child { font-size: 15px; }

.method { background: var(--green); color: var(--cream); padding: 78px 64px; }
.method-grid { display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start; }
.method h2 { margin: 0; font-size: 36px; line-height: 1.15; }
.method-grid > div:first-child p { margin: 18px 0 0; font-size: 16.5px; line-height: 1.65; color: rgba(240,238,226,.78); }
.method .handwritten { margin-top: 24px; }
.method-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.method-step { border-top: 1px solid rgba(240,238,226,.25); padding-top: 18px; }
.step-head { display: flex; align-items: baseline; gap: 14px; }
.step-n { font-family: var(--mono); font-size: 13px; color: var(--gold-bright); }
.method-step h3 { margin: 0; font-size: 22px; font-weight: 600; }
.method-step p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.65; color: rgba(240,238,226,.78); }

@media (max-width: 900px) {
  .breadcrumb { font-size: 12px; margin-bottom: 14px; }
  .hero-grid-flip h1 { font-size: 30px; line-height: 1.14; }

  .mechanics { padding: 30px 22px 34px; }
  .mechanics-grid { grid-template-columns: 1fr; gap: 18px; }
  .mechanics h2 { font-size: 24px; line-height: 1.2; }
  .mechanics-grid > div:first-child p { font-size: 14.5px; line-height: 1.65; }
  .mech-head { padding: 14px 18px; }
  .mech-title { font-size: 16px; }
  .mech-time { font-size: 10px; }
  .mech-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 18px; font-size: 13px; }
  .mech-q, .mech-t { flex: none; font-size: 12.5px; }
  .mech-desc { display: none; }
  .mech-note { padding: 12px 18px; }

  .isee-schools { padding: 30px 22px; }
  .isee-schools-grid { grid-template-columns: 1fr; gap: 14px; }
  .isee-schools h2 { font-size: 24px; }
  .isee-schools-grid > div:first-child p { display: none; }
  .school-cards { grid-template-columns: 1fr 1fr; gap: 9px; }
  .school-card { padding: 13px 14px; font-size: 15.5px; min-height: 44px; }
  .school-card span:last-child { font-size: 13px; }

  .method { padding: 32px 22px 36px; }
  .method-grid { grid-template-columns: 1fr; gap: 20px; }
  .method h2 { font-size: 24px; }
  .method-grid > div:first-child p { font-size: 14px; }
  .method-steps { grid-template-columns: 1fr; gap: 20px; }
  .method-step { padding-top: 14px; }
  .method-step h3 { font-size: 18px; }
  .method-step p { font-size: 13.5px; line-height: 1.6; }

  /* section that follows the hanging progress sheet clears it */
  .after-sheet { padding-top: 230px; }
}

/* ============ School pages ============ */
@media (min-width: 901px) {
  .hero-grid-hw { grid-template-columns: 1fr 460px; gap: 56px; padding: 70px 64px 80px; }
  .hero-grid-hw .hero-copy { max-width: 700px; }
  .hero-grid-hw h1 { font-size: 50px; line-height: 1.1; }
  .hero-grid-hw .sheet-wrap { margin-bottom: -130px; transform: rotate(1.4deg); }
}
.hero-grid-hw .hero-lead b { color: var(--cream); font-weight: 600; }

.prox-block { padding: 16px 0 14px; border-bottom: 1px dashed var(--border-dash); }
.prox-line { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.prox-name { font-size: 14px; font-weight: 600; }
.prox-val { font-family: var(--mono); font-size: 15px; font-weight: 700; white-space: nowrap; }
.prox-sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.prox-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--border-dash);
}
.prox-row.last { border-bottom: none; }
.prox-row .prox-val { font-weight: 400; font-size: 14px; }
.prox-row .prox-val a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.sheet-foot-single {
  border-top: 2px solid var(--ink);
  padding-top: 11px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.disclaimer { background: var(--paper); border-bottom: 1px solid var(--border); padding: 30px 64px 14px; }
.disclaimer p {
  margin: 0;
  padding: 14px 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.wall { background: var(--paper); padding: 74px 64px 70px; }
.wall-grid { display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: start; }
.wall h2 { margin: 0; font-size: 36px; line-height: 1.15; }
.wall-grid > div:first-child p { margin: 20px 0 0; font-size: 16.5px; line-height: 1.7; color: var(--ink-3); }
.wall-cards { display: flex; flex-direction: column; gap: 16px; }
.wall-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 4px;
  padding: 26px 30px;
}
.wall-card h3 { margin: 0; font-size: 22px; font-weight: 600; }
.wall-card p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-4); }

.paths { background: var(--white); border-top: 1px solid var(--border); padding: 74px 64px; }
.paths h2 { margin: 0 0 8px; font-size: 36px; }
.paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.path { border-radius: 4px; padding: 38px 42px; display: flex; flex-direction: column; }
.path-dark { background: var(--green); color: var(--cream); }
.path-light { background: var(--paper); border: 1px solid var(--border); }
.path-eyebrow {
  margin: 0 0 12px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.path-dark .path-eyebrow { color: var(--gold); }
.path-light .path-eyebrow { color: var(--brown); }
.path h3 { margin: 0; font-size: 26px; font-weight: 600; line-height: 1.2; }
.path p { margin: 14px 0 0; font-size: 15.5px; line-height: 1.65; }
.path-dark p { color: rgba(240,238,226,.82); }
.path-light p { color: var(--ink-4); }
.path-links { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.path-links-grid { margin-top: auto; padding-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.path-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 3px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  transition: background .15s, border-color .15s, color .15s;
}
.path-dark .path-link {
  background: rgba(240,238,226,.12);
  border: 1px solid rgba(240,238,226,.25);
  color: var(--cream);
}
.path-dark .path-link:hover { background: rgba(240,238,226,.2); color: var(--cream); }
.path-dark .path-link:focus-visible { outline-color: var(--cream); }
.path-light .path-link {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 14.5px;
}
.path-light .path-link:hover { border-color: var(--green); color: var(--green); }

.method-light { background: var(--paper); color: var(--ink); border-top: 1px solid var(--border); }
.method-light .method-grid > div:first-child p { color: var(--ink-3); }
.method-light .method-step { border-top-color: var(--chip-border); }
.method-light .step-n { color: var(--brown); }
.method-light .method-step p { color: var(--ink-4); }

.siblings { background: var(--white); border-top: 1px solid var(--border); padding: 60px 64px; }
.siblings-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 24px;
}
.siblings h2 { margin: 0; font-size: 30px; }
.chip-school { font-family: var(--serif); font-size: 16.5px; font-weight: 600; padding: 11px 20px; }

.footer-disclaimer {
  display: block;
  padding-bottom: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(240,238,226,.72);
}

@media (max-width: 900px) {
  .stat-strip { max-width: none; }
  .stat-strip > div { padding: 12px 18px 0 0; }
  .stat-strip dt { font-size: 19px; }
  .stat-strip dd { font-size: 10.5px; }

  .name-row { grid-template-columns: 1fr; gap: 14px; }

  .hero-grid-hw h1 { font-size: 29px; line-height: 1.16; }

  .disclaimer { padding: 18px 22px 6px; }
  .disclaimer p { font-size: 12.5px; }

  .wall { padding: 30px 22px 34px; }
  .wall-grid { grid-template-columns: 1fr; gap: 18px; }
  .wall h2 { font-size: 24px; line-height: 1.2; }
  .wall-grid > div:first-child p { font-size: 14.5px; line-height: 1.65; margin-top: 14px; }
  .wall-card { padding: 18px 20px; }
  .wall-card h3 { font-size: 17.5px; }
  .wall-card p { font-size: 13.5px; }

  .paths { padding: 30px 22px 34px; }
  .paths h2 { font-size: 24px; }
  .paths .section-sub { margin-bottom: 18px; }
  .paths-grid { grid-template-columns: 1fr; gap: 14px; }
  .path { padding: 22px; }
  .path h3 { font-size: 20px; }
  .path p { font-size: 14px; }
  .path-links, .path-links-grid { padding-top: 18px; }
  .path-links-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .path-light .path-link { padding: 12px 14px; font-size: 13.5px; }

  .siblings { padding: 30px 22px; }
  .siblings-head { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
  .siblings h2 { font-size: 22px; }
  .chip-school { font-size: 14.5px; padding: 9px 15px; }

  /* proximity card hangs less than the taller progress sheets */
  .hero-grid-hw .sheet-wrap { margin-bottom: -120px; }
  .after-sheet-hw { padding-top: 150px; }
}

/* ============ Announcement bar ============ */
.announce {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  background: var(--green-dark);
  color: var(--cream);
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
}
.announce a { color: var(--gold-bright); font-weight: 600; }
.announce a:hover { color: #fff; }
.announce .announce-tel { color: var(--cream); font-weight: 600; white-space: nowrap; }
.announce .announce-tel:hover { color: var(--gold-bright); }
.announce-label { opacity: .68; font-weight: 500; }
.announce::before,
.announce::after {
  content: "|";
  color: rgba(240,238,226,.45);
  font-weight: 400;
}
.announce .announce-tel + .announce-tel::before {
  content: "·";
  color: rgba(240,238,226,.45);
  font-weight: 400;
  margin-right: 22px;
}

/* ============ Hand-drawn ring accent ============ */
.hand-ring { position: relative; display: inline-block; padding: 0 .06em; }
.hand-ring::after {
  content: "";
  position: absolute;
  inset: -.06em -.22em -.16em;
  border: 3px solid var(--gold-bright);
  border-radius: 50% 46% 52% 48% / 55% 48% 55% 45%;
  transform: rotate(-2.5deg);
  pointer-events: none;
}

/* ============ Availability line ============ */
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  border: 1px solid rgba(217,180,92,.45);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-bright);
}
.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  flex: none;
  animation: avail-pulse 2.4s ease-in-out infinite;
}
@keyframes avail-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.availability-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}
.availability-card .avail-dot { background: var(--green); }

/* ============ Pain points ============ */
.pain { background: var(--paper); padding: 70px 64px 66px; }
.pain h2 { margin: 0; font-size: 34px; }
.pain-sub { margin: 6px 0 0; font-family: var(--hand); font-size: 21px; font-weight: 600; color: var(--red); transform: rotate(-.8deg); transform-origin: left; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.pain-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 3px;
  padding: 0 20px 46px;
  font-family: var(--serif);
  font-size: 18.5px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(27,27,24,.05);
}
.pain-card::before {
  content: "WHILE YOU WERE OUT";
  display: block;
  margin: 0 -20px 16px;
  padding: 9px 20px 8px;
  background: #fdf3f0;
  border-bottom: 1px dashed var(--border-dash);
  font-family: var(--mono);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--red);
}
.pain-card::after {
  content: "✓ please call back";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 12px;
  padding-top: 7px;
  border-top: 1px dashed var(--border-dash);
  font-family: var(--hand);
  font-style: normal;
  font-size: 17.5px;
  font-weight: 600;
  color: var(--red);
  opacity: .85;
}
.pain-cta { margin: 30px 0 0; font-size: 16.5px; color: var(--ink-3); }
.pain-cta a { font-weight: 600; border-bottom: 2px solid var(--green); padding-bottom: 1px; }

/* ============ How it works strip ============ */
.steps { background: var(--green); color: var(--cream); padding: 78px 64px; }
.steps-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.steps h2 { margin: 0; font-size: 36px; }
.steps-sub { margin: 0; font-size: 16.5px; color: rgba(240,238,226,.75); }
.steps-grid {
  display: grid;
  grid-template-columns: 300px 1fr 1fr 1fr;
  gap: 44px;
  margin-top: 40px;
  align-items: start;
}
.step { border-top: 1px solid rgba(240,238,226,.25); padding-top: 18px; }
.step-num { font-family: var(--mono); font-size: 13px; color: var(--gold-bright); }
.step h3 { margin: 8px 0 0; font-size: 22px; font-weight: 600; }
.step p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.65; color: rgba(240,238,226,.8); }

/* Duotone photo treatment */
.duotone-tile { position: relative; border-radius: 4px; overflow: hidden; }
.duotone-tile img { display: block; width: 100%; height: auto; filter: grayscale(1) contrast(1.05); }
.duotone-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  mix-blend-mode: color;
}
.steps-cap {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--hand);
  font-size: 21px;
  font-weight: 600;
  color: var(--gold-bright);
  transform: rotate(-2deg);
}

/* ============ Sticky Google badge ============ */
.google-badge {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
}
.google-badge:hover { border-color: var(--green); color: var(--green); }

/* Floating scroll arrow (injected by script.js) */
.scroll-arrow {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--green);
  border: 1px solid var(--chip-border);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(27,27,24,.14);
  cursor: pointer;
  padding: 0;
  transition: transform .15s, border-color .15s, opacity .2s;
}
.scroll-arrow:hover { border-color: var(--green); transform: translateY(-2px); }
.scroll-arrow svg { width: 20px; height: 20px; transition: transform .25s; }
.scroll-arrow.up svg { transform: rotate(180deg); }
.scroll-arrow.hidden { opacity: 0; pointer-events: none; }
@media (max-width: 900px) {
  .scroll-arrow {
    right: 14px;
    width: 42px;
    height: 42px;
    bottom: 84px;
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
  }
}

/* ============ Rates page ============ */
.hero-simple { padding: 70px 64px 74px; max-width: 900px; }
.hero-simple h1 { margin: 0; font-size: 46px; line-height: 1.12; letter-spacing: -.01em; }
.hero-compact { padding: 46px 64px 54px; }

/* Two-column hub hero with a taped photo */
.hero-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
  padding-right: 64px;
}
.hero-duo .hero-simple { padding-right: 0; }
.hero-photo { margin: 0; width: 100%; }
.photo-frame {
  position: relative;
  background: var(--white);
  padding: 10px 10px 12px;
  border-radius: 3px;
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  transform: rotate(1.6deg);
}
.photo-frame::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 96px;
  height: 26px;
  transform: translateX(-50%) rotate(-2.5deg);
  background: rgba(217,180,92,.5);
  border-left: 1px dashed rgba(0,0,0,.12);
  border-right: 1px dashed rgba(0,0,0,.12);
  z-index: 1;
}
.photo-frame img { display: block; width: 100%; height: auto; border-radius: 2px; }
.photo-frame .duotone-tile { border-radius: 2px; }
.photo-cap {
  margin: 14px 4px 0;
  font-family: var(--hand);
  font-size: 21px;
  font-weight: 600;
  color: var(--gold-bright);
  transform: rotate(-1.2deg);
}
@media (max-width: 1180px) {
  .hero-duo { grid-template-columns: minmax(0, 1fr) 350px; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-duo { display: block; padding-right: 0; }
  .hero-photo { max-width: 440px; margin: -18px auto 0; padding: 0 22px 46px; }
}

.included { background: var(--paper); padding: 70px 64px; }
.included h2 { margin: 0 0 26px; font-size: 30px; }
.included ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 44px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 900px;
}
.included li { display: flex; gap: 12px; }
.included li span { color: var(--green); font-weight: 700; }
.rates-note { margin: 30px 0 0; font-size: 13.5px; color: var(--muted); }

/* ============ Subject pages (math) ============ */
.hero-math {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 60px;
  padding: 70px 64px 78px;
  align-items: center;
}
.hero-math .hero-copy { max-width: 640px; }
.hero-math h1 { font-size: 50px; line-height: 1.1; }
.curve-fig { position: relative; }
.curve-fig svg { display: block; width: 100%; height: auto; }
.curve-cap {
  display: block;
  text-align: right;
  margin-top: 6px;
  font-family: var(--hand);
  font-size: 21px;
  font-weight: 600;
  color: var(--gold-bright);
  transform: rotate(-2deg);
}

.fig-sheet { position: relative; max-width: 430px; margin-left: auto; transform: rotate(1.8deg); }

.symbol-strip {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(20px, 5vw, 64px);
  padding: 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 27px;
  color: rgba(20, 64, 61, .38);
  user-select: none;
}

.track { background: var(--white); padding: 78px 64px 84px; }
@media (min-width: 901px) {
  .track-line.track-5 { grid-template-columns: repeat(5, 1fr); }
}
.track h2 { margin: 0 0 8px; font-size: 36px; }
.track-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  margin-top: 50px;
  position: relative;
}
.track-line::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--border);
}
.track-step { position: relative; padding-top: 30px; }
.track-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green);
}
.track-step.milestone::before { background: var(--gold-bright); border-color: var(--green); }
.track-step h3 { margin: 0; font-size: 19.5px; font-weight: 600; }
.track-step p { margin: 7px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.track-break {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--hand);
  font-size: 18.5px;
  font-weight: 600;
  color: var(--red);
  transform: rotate(-2deg);
}

.principles { background: var(--green); color: var(--cream); padding: 78px 64px; }
.principles-head { max-width: 720px; }
.principles h2 { margin: 0; font-size: 36px; line-height: 1.15; }
.principles-head p { margin: 16px 0 0; font-size: 16.5px; line-height: 1.65; color: rgba(240,238,226,.8); }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 46px;
}
.principle { border-top: 1px solid rgba(240,238,226,.25); padding-top: 22px; }
.principle .sym {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-bright);
}
.principle h3 { margin: 14px 0 0; font-size: 22px; font-weight: 600; }
.principle p { margin: 10px 0 0; font-size: 15.5px; line-height: 1.65; color: rgba(240,238,226,.8); }

.grade-jump {
  background: var(--paper);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
.cton { display: flex; align-items: baseline; gap: 26px; font-family: var(--serif); justify-content: center; }
.cton .from {
  font-size: 96px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
}
.cton .from::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 52%;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  transform: rotate(-8deg);
  opacity: .85;
}
.cton .arrow { font-size: 40px; color: var(--muted); }
.cton .to { font-size: 112px; font-weight: 600; color: var(--green); position: relative; padding: 0 22px; }
.cton .to .circle { border-width: 4px; inset: 2px -2px; }
.cton-cap {
  margin: 18px 0 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
}
.grade-jump blockquote { margin: 0; border-left: 2px solid var(--green); padding-left: 28px; }
.grade-jump blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  line-height: 1.5;
}
.grade-jump blockquote footer {
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}
.grade-jump .review-link { margin-top: 18px; }

.levels { background: var(--white); border-top: 1px solid var(--border); padding: 64px; }
.levels h2 { margin: 0 0 22px; font-size: 30px; }
.chips-hint {
  margin: -14px 0 16px;
  font-family: var(--hand);
  font-size: 21px;
  font-weight: 600;
  color: var(--gold-deep);
  transform: rotate(-1deg);
  transform-origin: left;
}
.levels-note { margin: 26px 0 0; font-size: 15px; color: var(--ink-4); }
.levels-note a { font-weight: 600; border-bottom: 2px solid var(--green); padding-bottom: 1px; }

@media (max-width: 900px) {
  .hero-math { grid-template-columns: 1fr; gap: 30px; padding: 36px 22px 44px; }
  .fig-sheet { margin: 0 auto; max-width: 480px; transform: rotate(1.2deg); }
  .hero-math h1 { font-size: 30px; line-height: 1.16; }
  .curve-cap { font-size: 18px; }
  .symbol-strip { font-size: 20px; padding: 16px 12px; }
  .track { padding: 34px 22px 40px; }
  .track h2 { font-size: 24px; }
  .track-line { grid-template-columns: 1fr; gap: 22px; margin-top: 28px; }
  .track-line::before { top: 8px; bottom: 8px; left: 5px; right: auto; width: 2px; height: auto; }
  .track-step { padding: 0 0 0 30px; }
  .track-step::before { top: 4px; }
  .principles { padding: 34px 22px 40px; }
  .principles h2 { font-size: 24px; }
  .principles-head p { font-size: 14.5px; }
  .principles-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 26px; }
  .principle { padding-top: 16px; }
  .principle .sym { font-size: 36px; }
  .principle h3 { font-size: 18px; margin-top: 10px; }
  .principle p { font-size: 14px; }
  .grade-jump { grid-template-columns: 1fr; gap: 30px; padding: 36px 22px; }
  .cton .from { font-size: 64px; }
  .cton .arrow { font-size: 28px; }
  .cton .to { font-size: 76px; padding: 0 16px; }
  .grade-jump blockquote { padding-left: 18px; }
  .grade-jump blockquote p { font-size: 17px; }
  .levels { padding: 34px 22px; }
  .levels h2 { font-size: 22px; }
  .levels-note { font-size: 13.5px; }
}

/* ============ Results page — wall of notes ============ */
.wall-of-notes { background: var(--paper); padding: 64px 64px 84px; }
.tcolumns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; max-width: 1240px; margin: 0 auto; }
.tcol { display: flex; flex-direction: column; }
.tcard {
  position: relative;
  background: #fdfcf7;
  background-image:
    repeating-linear-gradient(0deg, rgba(20,64,61,.05) 0, rgba(20,64,61,.05) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(20,64,61,.05) 0, rgba(20,64,61,.05) 1px, transparent 1px, transparent 24px);
  border-radius: 2px;
  box-shadow: 0 10px 26px rgba(0,0,0,.13), 0 2px 5px rgba(0,0,0,.08);
  padding: 30px 28px 24px;
  margin: 14px 0 30px;
  transition: transform .2s;
}
.tcolumns .tcard:nth-child(odd) { transform: rotate(-.9deg); }
.tcolumns .tcard:nth-child(even) { transform: rotate(.8deg); }
.tcolumns .tcard:hover { transform: rotate(0) translateY(-3px); }
.tape {
  position: absolute;
  top: -11px;
  left: 50%;
  width: 92px;
  height: 24px;
  background: rgba(217,180,92,.5);
  transform: translateX(-50%) rotate(-2.5deg);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.tcard-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 9px;
}
.tcard blockquote { margin: 16px 0 0; }
.tcard blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-2);
}
.tcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-top: 18px;
}
.tcard-sig {
  font-family: var(--hand);
  font-size: 26px;
  font-weight: 600;
  color: var(--green);
}
.tcard-outcome {
  font-family: var(--hand);
  font-size: 19px;
  font-weight: 600;
  color: var(--red);
  text-align: right;
  transform: rotate(-2deg);
}
.tcard-green { background: var(--green); background-image: none; }
.tcard-green .tcard-tag { color: rgba(240,238,226,.65); border-bottom-color: rgba(240,238,226,.5); }
.tcard-green blockquote p { color: rgba(240,238,226,.92); }
.tcard-green .tcard-sig { color: var(--gold-bright); }
.tcard-green .tcard-outcome { color: var(--gold-bright); }
.tcard-cta {
  background: transparent;
  background-image: none;
  border: 2px dashed var(--border-dash);
  box-shadow: none;
  text-align: center;
  padding: 40px 28px;
}
.tcard-cta .tcard-cta-title {
  font-family: var(--hand);
  font-size: 27px;
  font-weight: 600;
  color: var(--muted);
  transform: rotate(-2deg);
  display: inline-block;
}
.tcard-cta p { margin: 12px 0 20px; font-size: 14.5px; line-height: 1.55; color: var(--muted); }

@media (max-width: 1100px) {
  .tcolumns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .wall-of-notes { padding: 30px 22px 44px; }
  .tcolumns { grid-template-columns: 1fr; }
  .tcard { padding: 24px 22px 20px; margin: 12px 0 24px; }
  .tcard blockquote p { font-size: 15px; }
  .tcard-sig { font-size: 22px; }
  .tcard-outcome { font-size: 17px; }
}

/* ============ About page ============ */
.split { padding: 78px 64px; background: var(--paper); }
.split-white { background: var(--white); border-top: 1px solid var(--border); }
.split-grid { display: grid; grid-template-columns: 400px 1fr; gap: 72px; align-items: start; }
.split h2 { margin: 0; font-size: 34px; line-height: 1.18; }
.split-body { max-width: 720px; }
.split-body p { margin: 0 0 18px; font-size: 17px; line-height: 1.7; color: var(--ink-3); }
.split-body p:last-child { margin-bottom: 0; }

.quote-band { background: var(--green); color: var(--cream); padding: 74px 64px; text-align: center; }
.quote-band blockquote {
  margin: 0 auto;
  max-width: 840px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
}
.quote-sig {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--hand);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-bright);
  transform: rotate(-2deg);
}

@media (max-width: 900px) {
  .announce { font-size: 12px; padding: 7px 14px; gap: 2px 14px; flex-wrap: wrap; }
  .announce::before,
  .announce::after,
  .announce .announce-tel + .announce-tel::before { content: none; }
  .google-badge { display: none; }
  .hand-ring::after { border-width: 2px; }
  .availability { margin-top: 20px; font-size: 12.5px; }

  .pain { padding: 34px 22px; }
  .pain.after-sheet { padding-top: 230px; }
  .pain h2 { font-size: 24px; }
  .pain-sub { font-size: 14.5px; }
  .pain-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 22px; }
  .pain-card { padding: 0 16px 42px; font-size: 16.5px; }
  .pain-card::before { margin: 0 -16px 12px; padding: 8px 16px 7px; }
  .pain-card::after { left: 16px; right: 16px; bottom: 10px; font-size: 16px; }
  .pain-cta { margin-top: 22px; font-size: 14.5px; }

  .steps { padding: 34px 22px; }
  .steps h2 { font-size: 24px; }
  .steps-sub { font-size: 14.5px; }
  .steps-grid { grid-template-columns: 1fr; gap: 22px; margin-top: 24px; }
  .step h3 { font-size: 18px; }
  .step p { font-size: 14px; }

  /* About page photos: larger portrait, no corner inset on mobile */
  .about-photos-sm { max-width: 90%; padding: 0 0 6px; }
  .about-photos-sm .about-inset { display: none; }

  .split { padding: 34px 22px; }
  .split-grid { grid-template-columns: 1fr; gap: 16px; }
  .split h2 { font-size: 24px; }
  .split-body p { font-size: 14.5px; line-height: 1.65; margin-bottom: 14px; }
  .quote-band { padding: 40px 22px; }
  .quote-band blockquote { font-size: 23px; }
  .quote-sig { font-size: 21px; margin-top: 12px; }

  .hero-simple { padding: 36px 22px 44px; }
  .hero-simple h1 { font-size: 30px; }
  .hero-compact { padding: 24px 22px 30px; }
  .included { padding: 34px 22px; }
  .included h2 { font-size: 22px; }
  .included ul { grid-template-columns: 1fr; gap: 10px; font-size: 14.5px; }
}

@media (max-width: 420px) {
  .card-grid-5, .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .select-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .service-card, .chip, .school-link { transition: none; }
}

/* ============ Premium layer (pages with body.premium) ============ */

/* Hero: paper grain + soft gold light behind the headline */
.premium .hero { isolation: isolate; }
.premium .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 760px 460px at 26% 28%, rgba(217,180,92,.10), transparent 65%),
    radial-gradient(ellipse 900px 620px at 88% 95%, rgba(7,28,26,.6), transparent 72%);
}
.premium .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Hero entrance: copy rises line by line, the sheet follows, the ring lands last */
.premium .hero-copy > * { animation: rise .55s ease backwards; }
.premium .hero-copy > *:nth-child(1) { animation-delay: .05s; }
.premium .hero-copy > *:nth-child(2) { animation-delay: .13s; }
.premium .hero-copy > *:nth-child(3) { animation-delay: .21s; }
.premium .hero-copy > *:nth-child(4) { animation-delay: .29s; }
.premium .hero-copy > *:nth-child(5) { animation-delay: .37s; }
.premium .hero-copy > *:nth-child(6) { animation-delay: .43s; }
.premium .hero-copy > *:nth-child(7) { animation-delay: .49s; }
.premium .sheet-wrap { animation: rise .7s ease .4s backwards; }
.premium .hand-ring::after { animation: ring-in .5s ease .8s backwards; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
}
@keyframes ring-in {
  from { opacity: 0; }
}

/* Scroll reveals (elements tagged by script.js) */
.premium .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease var(--rd, 0s), transform .6s ease var(--rd, 0s);
}
.premium .reveal.in { opacity: 1; transform: none; }

/* Depth: pain cards join the service cards in lifting on hover */
.premium .pain-card { transition: transform .18s ease, box-shadow .18s ease; }
.premium .pain-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(27,27,24,.08); }

/* Social proof at the decision point: taped note beside the booking form */
.footer-quote {
  margin: 34px 0 0;
  max-width: 430px;
  position: relative;
  background: var(--paper);
  background-image:
    linear-gradient(rgba(20,64,61,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,64,61,.05) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--ink-2);
  border-radius: 3px;
  padding: 20px 22px 15px;
  transform: rotate(-1.2deg);
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}
.footer-quote::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 26px;
  width: 84px;
  height: 22px;
  background: rgba(217,180,92,.55);
  transform: rotate(-3deg);
  border-left: 1px dashed rgba(0,0,0,.12);
  border-right: 1px dashed rgba(0,0,0,.12);
}
.footer-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15.5px;
  line-height: 1.6;
}
.footer-quote figcaption {
  margin-top: 8px;
  font-family: var(--hand);
  font-size: 19px;
  font-weight: 600;
  color: var(--green);
}

@media (max-width: 900px) {
  .footer-quote { margin-top: 26px; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .premium .reveal { opacity: 1; transform: none; transition: none; }
  .premium .hero-copy > *,
  .premium .sheet-wrap,
  .premium .hand-ring::after { animation: none; }
}

/* ============ Blueprint theme (pages with body.blueprint) ============
   Preview-1 "drafting table" look, gated like .premium: add the class
   per page at rollout. Greens remap to the logo navy, golds to the logo
   cyan; paper stays warm so the physical props keep reading as paper.
   Stars and red-pen marks are props, not palette — they stay warm/red. */

body.blueprint {
  --navy-950: #02202d;
  --navy-900: #042b3c;
  --navy-800: #06435c;   /* logo navy */
  --navy-700: #0a5a78;
  --cyan-300: #7ee2f0;
  --cyan-400: #47d0e4;   /* logo cyan */
  --cyan-500: #1eaec7;
  --cyan-600: #0d7387;   /* darkest cyan that still reads as cyan; 4.79:1 on paper */

  /* Role remaps — every var(--green/--gold*) use in the file follows. */
  --green: var(--navy-800);
  --green-dark: var(--navy-900);
  --gold: var(--cyan-400);
  --gold-bright: var(--cyan-400);
  --gold-deep: var(--cyan-600);

  --mono: 'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;
}

/* Stars are a prop — pin them back to their original golds */
body.blueprint .stars { color: #d9b45c; }
body.blueprint .rating-stars { color: #b8860b; }

/* ---- Blueprint ground: navy + two-scale drafting grid (hero + footer;
       other dark sections join in the section pass) ---- */
body.blueprint .hero,
body.blueprint .footer {
  background-color: var(--navy-900);
  background-image:
    linear-gradient(rgba(71,208,228,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,208,228,.09) 1px, transparent 1px),
    linear-gradient(rgba(71,208,228,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,208,228,.04) 1px, transparent 1px);
  background-size: 140px 140px, 140px 140px, 28px 28px, 28px 28px;
}
body.blueprint .footer {
  background-image:
    radial-gradient(760px 460px at 82% 0%, rgba(71,208,228,.12), transparent 62%),
    linear-gradient(rgba(71,208,228,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,208,228,.09) 1px, transparent 1px),
    linear-gradient(rgba(71,208,228,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,208,228,.04) 1px, transparent 1px);
  background-size: auto, 140px 140px, 140px 140px, 28px 28px, 28px 28px;
}
/* Premium glow layers sit above the grid — re-tint gold light to cyan */
body.blueprint.premium .hero::before {
  background:
    radial-gradient(ellipse 760px 460px at 26% 28%, rgba(71,208,228,.10), transparent 65%),
    radial-gradient(ellipse 900px 620px at 88% 95%, rgba(2,32,45,.62), transparent 72%);
}

/* Focus rings need cyan on the dark grounds */
body.blueprint .hero a:focus-visible,
body.blueprint .hero button:focus-visible,
body.blueprint .footer a:focus-visible,
body.blueprint .footer button:focus-visible { outline-color: var(--cyan-400); }

/* ---- Announcement bar: drafting-desk utility strip ---- */
body.blueprint .announce {
  font-family: var(--mono);
  font-size: 12.5px;
  background: var(--navy-950);
}
body.blueprint .announce-label {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .14em;
}

/* ---- Header: thin rule, drafted (straight) nav underlines ----
   The pencil-squiggle hover becomes a ruled cyan line; the red-pen
   active marker stays red — it's a prop. */
body.blueprint .site-header { border-bottom: 1px solid var(--border); }
body.blueprint .main-nav > a::after,
body.blueprint .nav-sub > a::after {
  height: 2px;
  border-radius: 0;
  background: var(--cyan-600);
  transform: rotate(0) scaleX(.4);
}
body.blueprint .main-nav > a:hover::after,
body.blueprint .nav-sub > a:hover::after { opacity: 1; transform: rotate(0) scaleX(1); }
body.blueprint .main-nav > a.active::after,
body.blueprint .nav-sub > a.active::after { transform: rotate(0) scaleX(1); background: var(--red); }
body.blueprint .nav-drop {
  background-image:
    repeating-linear-gradient(0deg, rgba(6,67,92,.05) 0, rgba(6,67,92,.05) 1px, transparent 1px, transparent 22px),
    repeating-linear-gradient(90deg, rgba(6,67,92,.05) 0, rgba(6,67,92,.05) 1px, transparent 1px, transparent 22px);
}
body.blueprint .nav-drop::after { background: rgba(71,208,228,.28); }

/* ---- 3D buttons: press mechanics untouched, faces re-inked.
       Primary action = cyan face on a deep-teal edge, everywhere. ---- */
body.blueprint .btn-dark,
body.blueprint .btn-cream {
  background: var(--cyan-400);
  color: var(--navy-950);
  box-shadow: 0 4px 0 var(--cyan-600), 0 10px 18px rgba(2,32,45,.32);
}
body.blueprint .btn-dark:hover,
body.blueprint .btn-cream:hover {
  background: var(--cyan-300);
  color: var(--navy-950);
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--cyan-600), 0 3px 8px rgba(2,32,45,.26);
}
body.blueprint .btn-dark:active,
body.blueprint .btn-cream:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--cyan-600), 0 2px 5px rgba(2,32,45,.24);
}
body.blueprint .btn-outline-cream {
  color: var(--cream);
  border-color: rgba(126,226,240,.45);
  box-shadow: 0 4px 0 rgba(126,226,240,.35);
}
body.blueprint .btn-outline-cream:hover {
  color: #fff;
  border-color: var(--cyan-400);
  box-shadow: 0 1px 0 rgba(126,226,240,.35);
}
body.blueprint .btn-outline-cream:active { box-shadow: 0 0 0 rgba(126,226,240,.35); }

/* ---- Hand-drawn ring → drafted underline (ruled, slight tilt) ---- */
body.blueprint .hand-ring { color: var(--cyan-300); }
body.blueprint .hand-ring::after {
  inset: auto -.08em -.1em -.06em;
  height: .09em;
  border: 0;
  background: var(--cyan-400);
  border-radius: 999px;
  transform: rotate(-1.2deg);
}
body.blueprint.premium .hand-ring::after {
  transform-origin: left center;
  animation: underline-draw .55s cubic-bezier(.22,.61,.36,1) .85s backwards;
}
@keyframes underline-draw {
  from { transform: rotate(-1.2deg) scaleX(0); }
}

/* ---- Small chrome retints (hardcoded golds/greens) ---- */
body.blueprint .availability { border-color: rgba(71,208,228,.4); }
body.blueprint .booking-modal::backdrop { background: rgba(2,32,45,.65); }
body.blueprint .footer-quote::before { background: rgba(71,208,228,.30); }
body.blueprint .footer-quote {
  background-image:
    linear-gradient(rgba(6,67,92,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,67,92,.06) 1px, transparent 1px);
}

@media (prefers-reduced-motion: reduce) {
  body.blueprint.premium .hand-ring::after { animation: none; }
}

/* ---- Phase 2: section grounds, markers, prop re-inks ---- */

/* Numbered section markers (hidden unless the page is blueprint) */
.bp-mark, .bp-mark-num { display: none; }
body.blueprint .bp-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan-600);
}
body.blueprint .bp-mark::after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: .35; }
body.blueprint .bp-mark-num {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
  letter-spacing: .1em;
}
/* Existing eyebrows join the marker system (hero 01, about 04) */
body.blueprint .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .18em;
}
body.blueprint .eyebrow::after { content: ""; flex: 1; height: 1px; background: currentColor; opacity: .3; }
body.blueprint .about .eyebrow { color: var(--cyan-600); }
/* Markers on dark grounds read in the brighter cyan */
body.blueprint .proof .bp-mark,
body.blueprint .steps .bp-mark,
body.blueprint .schools .bp-mark,
body.blueprint .footer .bp-mark { color: var(--cyan-400); }
/* .proof is itself a grid — the marker spans the full row */
body.blueprint .proof .bp-mark { grid-column: 1 / -1; margin-bottom: 0; }
body.blueprint .proof { row-gap: 26px; }

/* Dark sections join the blueprint ground (hero + footer already have it) */
body.blueprint .proof,
body.blueprint .steps,
body.blueprint .schools {
  background-color: var(--navy-900);
  background-image:
    linear-gradient(rgba(71,208,228,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,208,228,.09) 1px, transparent 1px),
    linear-gradient(rgba(71,208,228,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(71,208,228,.04) 1px, transparent 1px);
  background-size: 140px 140px, 140px 140px, 28px 28px, 28px 28px;
}

/* Proof flips paper -> navy: re-ink its text and rules */
body.blueprint .proof { color: var(--cream); }
body.blueprint .proof .rating-number { color: #fff; }
body.blueprint .proof .rating-stars { color: #d9b45c; }   /* brighter gold for the dark ground */
body.blueprint .proof-rating p { color: rgba(240,238,226,.75); }
body.blueprint .review-link { color: var(--cyan-400); border-color: rgba(71,208,228,.5); }
body.blueprint .review-link:hover { color: var(--cyan-300); border-color: var(--cyan-300); }
body.blueprint .proof blockquote { border-left-color: rgba(71,208,228,.4); }
body.blueprint .proof blockquote footer { color: var(--cyan-400); }

/* Focus rings on the newly dark sections */
body.blueprint .proof a:focus-visible,
body.blueprint .steps a:focus-visible,
body.blueprint .schools a:focus-visible { outline-color: var(--cyan-400); }

/* Progress sheet: paper prop keeps its warmth, ink goes navy.
   Red pen (circled 8, gains) stays red — it has contrast on paper. */
body.blueprint .sheet {
  background-image:
    repeating-linear-gradient(0deg, rgba(6,67,92,.055) 0, rgba(6,67,92,.055) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(6,67,92,.055) 0, rgba(6,67,92,.055) 1px, transparent 1px, transparent 24px);
}
body.blueprint .sheet-head { border-bottom-color: var(--navy-800); color: var(--navy-800); }
body.blueprint .sheet-foot { border-top-color: var(--navy-800); }
body.blueprint .sheet-totals { color: var(--navy-800); }
/* IBM Plex Mono runs wider than the old system mono — keep the foot on one line */
body.blueprint .sheet-foot .sheet-muted { font-size: 10px; letter-spacing: .01em; }
body.blueprint .sheet-totals { font-size: 12px; }
body.blueprint .sheet-head { font-size: 11px; letter-spacing: .08em; }
/* Nico's margin note sits on navy, not paper — cyan for legibility */
body.blueprint .sheet-note { color: var(--cyan-300); }

/* Service cards: tape goes cyan, graph paper tints navy (cards otherwise untouched) */
body.blueprint .service-card {
  background-image:
    linear-gradient(rgba(6,67,92,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,67,92,.045) 1px, transparent 1px);
}
body.blueprint .service-card::before { background: rgba(71,208,228,.32); }


/* ---- Intake log rows (replaces the phone-slip grid on blueprint pages) ---- */
.call-list { border-top: 1px solid var(--border); margin-top: 34px; }
.call-row {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: background-color .25s ease, padding-left .25s ease;
}
.call-idx {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--green);
}
.call-quote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}
.call-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
body.blueprint .call-idx { color: var(--cyan-600); }
body.blueprint .call-row:hover { background: rgba(71,208,228,.06); padding-left: 10px; }
@media (max-width: 640px) {
  .call-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .call-tag { white-space: normal; }
}

/* ---- Phase 4 sweep: subpage artifact re-tints ---- */

/* Inline SVG artifacts (math FBD, test-prep sheets): gold accents follow
   the gold->cyan remap. Red pen strokes are props and stay red. */
body.blueprint [stroke="#d9b45c"] { stroke: var(--cyan-400); }
body.blueprint [fill="#d9b45c"] { fill: var(--cyan-400); }

/* Hub-hero taped polaroid + results wall of notes */
body.blueprint .photo-frame::before { background: rgba(71,208,228,.32); }
body.blueprint .tape { background: rgba(71,208,228,.32); }
body.blueprint .tcard {
  background-image:
    repeating-linear-gradient(0deg, rgba(6,67,92,.05) 0, rgba(6,67,92,.05) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(6,67,92,.05) 0, rgba(6,67,92,.05) 1px, transparent 1px, transparent 24px);
}

/* Mobile nav drawer graph paper tints navy (matches the desktop dropdown) */
@media (max-width: 900px) {
  body.blueprint .main-nav {
    background-image:
      repeating-linear-gradient(0deg, rgba(6,67,92,.045) 0, rgba(6,67,92,.045) 1px, transparent 1px, transparent 22px),
      repeating-linear-gradient(90deg, rgba(6,67,92,.045) 0, rgba(6,67,92,.045) 1px, transparent 1px, transparent 22px);
  }
}

/* Progress sheet straightens under the cursor, like the preview */
body.blueprint .sheet-wrap { transition: transform .4s cubic-bezier(.22,.61,.36,1); }
body.blueprint .sheet-wrap:hover { transform: rotate(-.35deg); }
@media (prefers-reduced-motion: reduce) {
  body.blueprint .sheet-wrap { transition: none; }
}

/* ---- Schools hub: drafted coverage-map sheet (hero right column) ---- */
.map-sheet {
  position: relative;
  background: #fdfcf7;
  border-radius: 2px;
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
  padding: 18px 20px 10px;
  transform: rotate(1.6deg);
  background-image:
    repeating-linear-gradient(0deg, rgba(6,67,92,.055) 0, rgba(6,67,92,.055) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(6,67,92,.055) 0, rgba(6,67,92,.055) 1px, transparent 1px, transparent 24px);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.map-sheet:hover { transform: rotate(.4deg); }
.map-sheet::before {   /* tape */
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 96px;
  height: 26px;
  transform: translateX(-50%) rotate(-2.5deg);
  background: rgba(71,208,228,.32);
  border-left: 1px dashed rgba(0,0,0,.12);
  border-right: 1px dashed rgba(0,0,0,.12);
  z-index: 1;
}
.map-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  padding-bottom: 8px;
}
.map-muted { color: var(--muted); font-weight: 400; font-size: 9.5px; }
.map-sheet svg { display: block; width: 100%; height: auto; margin-top: 4px; }
.mp-cluster {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  fill: #0d7387;
}
.mp-name { font-family: var(--mono); font-size: 10.5px; fill: #123c50; }
.mp-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  fill: #0d7387;
}
@media (prefers-reduced-motion: reduce) {
  .map-sheet { transition: none; }
}
