:root {
  --ink: #102238;
  --forest: #536d4d;
  --forest-dark: #31472f;
  --paper: #f6f1e9;
  --paper-light: #fcfaf6;
  --peach: #e9ad95;
  --blue: #bfcedc;
  --lilac: #d6cbe0;
  --line: rgba(16, 34, 56, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; width: 100%; }
a { color: inherit; }
button { font: inherit; }
::selection { color: var(--ink); background: var(--peach); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  background: white;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 5.5rem;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.brand-mark {
  width: 2.15rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: italic 1rem var(--serif);
  letter-spacing: 0;
}
.desktop-nav { display: flex; gap: clamp(1.2rem, 2vw, 2.2rem); font-size: .83rem; }
.desktop-nav a, .header-cta { text-decoration: none; }
.desktop-nav a { position: relative; opacity: .82; transition: opacity .25s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.4rem; height: 1px; background: currentColor; transition: right .25s; }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { padding: .65rem 1.2rem; border: 1px solid rgba(255,255,255,.55); border-radius: 100px; font-size: .8rem; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  padding: 7rem var(--gutter) 4rem;
}
.hero-image, .final-image { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero-image { object-position: 52% 50%; animation: heroZoom 1.8s cubic-bezier(.2,.75,.2,1) both; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 24, 37, .82) 0%, rgba(8, 24, 37, .56) 34%, rgba(8, 24, 37, .07) 68%, rgba(8, 24, 37, .1) 100%);
}
.hero-content { position: relative; z-index: 2; width: min(40rem, 54vw); }
.eyebrow, .section-kicker { margin: 0 0 1.2rem; color: var(--forest); font-size: .72rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.hero .eyebrow { color: #e7c1ad; }
.hero h1 {
  margin: 0;
  max-width: 11ch;
  font: normal clamp(3.7rem, 7.1vw, 7.7rem)/.92 var(--serif);
  letter-spacing: -.065em;
  text-wrap: balance;
}
.hero-lead { max-width: 33rem; margin: 2rem 0 0; color: rgba(255,255,255,.84); font-size: clamp(1rem, 1.5vw, 1.25rem); }
.hero-price { display: flex; align-items: baseline; gap: 1rem; margin-top: 1.25rem; }
.hero-price strong { color: #f5d3c1; font: normal clamp(2rem, 3.4vw, 3.4rem)/1 var(--serif); letter-spacing: -.04em; }
.hero-price span { max-width: 19rem; color: rgba(255,255,255,.7); font-size: .72rem; line-height: 1.35; white-space: nowrap; }
.hero-actions { margin-top: 1.65rem; display: flex; align-items: center; gap: 1.8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3.4rem;
  padding: .85rem 1.45rem;
  border-radius: 100px;
  font-size: .83rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .25s, background .25s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: #f2d5c5; }
.button-primary:hover { background: white; }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: var(--forest-dark); }
.text-link { display: inline-flex; gap: .65rem; align-items: center; font-size: .82rem; font-weight: 750; text-decoration: none; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translateX(.3rem); }
.text-link.light { color: white; }
.scroll-cue { position: absolute; z-index: 2; right: var(--gutter); bottom: 2.2rem; display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,.72); text-decoration: none; font-size: .66rem; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-cue i { display: block; width: 1px; height: 3rem; background: rgba(255,255,255,.5); animation: pulseLine 1.8s infinite; transform-origin: top; }
.hero-reveal { animation: riseIn .8s both; }
.hero-reveal:nth-child(2) { animation-delay: .1s; }
.hero-reveal:nth-child(3) { animation-delay: .2s; }
.hero-reveal:nth-child(4) { animation-delay: .3s; }
.hero-reveal:nth-child(5) { animation-delay: .4s; }

.section { padding: clamp(5rem, 10vw, 10rem) var(--gutter); }
.display { margin: 0; font: normal clamp(3rem, 6.3vw, 7rem)/1.02 var(--serif); letter-spacing: -.055em; }
.display em { color: var(--forest); font-weight: normal; }
.intro { background: var(--paper-light); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(17rem, .55fr); align-items: end; gap: clamp(3rem, 10vw, 10rem); }
.intro-copy { padding-bottom: .4rem; }
.intro-copy p { margin: 0 0 2rem; font-size: clamp(1rem, 1.45vw, 1.22rem); }
.facts { margin-top: clamp(5rem, 9vw, 9rem); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.fact { padding: 1.8rem 1rem 0 0; display: flex; flex-direction: column; gap: .2rem; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; padding-left: 1.5rem; }
.fact:not(:first-child) { padding-left: 1.5rem; }
.fact strong { font: normal clamp(2.6rem, 5vw, 5.2rem)/1 var(--serif); }
.fact.links strong { font-size: clamp(2rem, 3.6vw, 4rem); letter-spacing: -.04em; }
.fact span { color: var(--forest-dark); font-size: .78rem; }

.navigation-story { display: grid; grid-template-columns: minmax(17rem, .72fr) minmax(0, 1.28fr); gap: clamp(3rem, 7vw, 8rem); align-items: center; background: #dfe7dc; }
.story-copy > p:not(.section-kicker) { max-width: 30rem; margin: 2rem 0; font-size: 1.05rem; }
.feature-lines { list-style: none; margin: 2.5rem 0 0; padding: 0; border-top: 1px solid rgba(16,34,56,.18); }
.feature-lines li { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(16,34,56,.18); font-size: .88rem; }
.feature-lines span { color: var(--forest); font: italic .84rem var(--serif); }
.story-visual { margin: 0; }
.story-visual img { height: auto; object-fit: contain; box-shadow: 0 2rem 5rem rgba(38, 56, 37, .15); }

.planning { background: var(--paper-light); }
.planning-head { max-width: 72rem; margin: 0 auto clamp(3rem, 6vw, 6rem); text-align: center; }
.wide-image { max-width: 78rem; margin: 0 auto; }
.wide-image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; box-shadow: 0 2rem 6rem rgba(16,34,56,.1); }
.planning-notes { max-width: 78rem; margin: 3rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.planning-notes p { margin: 0; padding: 1.5rem 2rem 0 0; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.planning-notes p:not(:first-child) { padding-left: 2rem; }
.planning-notes p:last-child { border: 0; }
.planning-notes strong { font: normal 1.3rem var(--serif); }
.planning-notes span { margin-top: .45rem; color: #647063; font-size: .8rem; }
.calendar-callout {
  max-width: 78rem;
  margin: 3.5rem auto 0;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: auto minmax(0, 45rem);
  justify-content: center;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.calendar-icons {
  display: grid;
  place-items: center;
  width: 4.2rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--forest-dark);
  background: #dfe7dc;
  font: 700 .9rem var(--sans);
}
.calendar-callout p { margin: 0; color: #596659; font-size: .9rem; }
.calendar-callout strong { display: block; margin-bottom: .35rem; color: var(--ink); font: normal 1.35rem var(--serif); }
.calendar-integration { display: block; margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.calendar-integration b { display: block; margin-bottom: .25rem; color: var(--forest-dark); font-size: .78rem; letter-spacing: .02em; }

.teacher-section { display: grid; grid-template-columns: 1fr 1fr; background: #162c2a; color: #f9f5ee; }
.teacher-image-wrap { display: flex; align-items: flex-start; min-height: 100%; overflow: hidden; background: #162c2a; }
.teacher-image { height: auto; aspect-ratio: 1; object-fit: contain; }
.teacher-content { padding: clamp(5rem, 9vw, 9rem) var(--gutter); align-self: center; }
.teacher-content .section-kicker { color: #e7b7a1; }
.teacher-content .display em { color: #c9d6bc; }
.accordion-list { margin-top: clamp(3rem, 5vw, 5rem); border-top: 1px solid rgba(255,255,255,.25); }
.accordion-list details { border-bottom: 1px solid rgba(255,255,255,.25); }
.accordion-list summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 0; cursor: pointer; list-style: none; font: normal 1.25rem var(--serif); }
.accordion-list summary::-webkit-details-marker { display: none; }
.accordion-list summary i { font: normal 1.1rem var(--sans); transition: transform .3s; }
.accordion-list details[open] summary i { transform: rotate(45deg); }
.accordion-list details p { max-width: 31rem; margin: -.25rem 0 1.4rem; color: rgba(255,255,255,.66); font-size: .87rem; }

.gallery { background: var(--paper); }
.gallery-head { display: flex; justify-content: space-between; gap: 3rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 6rem); }
.gallery-head > p { max-width: 16rem; margin: 0; color: #667265; font-size: .85rem; }
.gallery-grid { display: grid; grid-template-columns: .705fr repeat(3, 1fr); align-items: start; gap: 1.1rem; }
.gallery-item { position: relative; margin: 0; padding: 0; border: 0; overflow: hidden; background: #ddd; cursor: zoom-in; text-align: left; }
.gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
.gallery-item img { height: auto; object-fit: contain; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item span { position: absolute; left: 1rem; bottom: 1rem; padding: .55rem .8rem; background: rgba(252,250,246,.9); backdrop-filter: blur(8px); border-radius: 100px; font-size: .7rem; font-weight: 700; }

.details { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(4rem, 10vw, 10rem); background: #ebc4b2; }
.spec-list { margin: 0; align-self: center; border-top: 1px solid rgba(16,34,56,.24); }
.spec-list div { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(16,34,56,.24); }
.spec-list dt { color: rgba(16,34,56,.65); font-size: .78rem; }
.spec-list dd { margin: 0; font-weight: 700; font-size: .85rem; }
.fine-print { grid-column: 2; max-width: 37rem; margin: -3rem 0 0; color: rgba(16,34,56,.64); font-size: .74rem; }

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 11rem);
  background: #dfe7dc;
}
.offer-lead { max-width: 42rem; margin: 2rem 0 0; color: #566455; font-size: clamp(1rem, 1.45vw, 1.2rem); }
.value-lines { margin-top: 3rem; border-top: 1px solid rgba(16,34,56,.18); }
.value-lines p { display: grid; grid-template-columns: 9rem 1fr; gap: 1.5rem; margin: 0; padding: 1rem 0; border-bottom: 1px solid rgba(16,34,56,.18); }
.value-lines strong { font: normal 1.12rem var(--serif); }
.value-lines span { color: #617060; font-size: .82rem; }
.price-lockup { padding: clamp(2rem, 4vw, 4rem) 0 clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem); border-left: 1px solid rgba(16,34,56,.2); }
.price-lockup > span { display: block; color: var(--forest-dark); font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.price-lockup > strong { display: block; margin: 1rem 0; font: normal clamp(4.8rem, 8vw, 8.5rem)/.8 var(--serif); letter-spacing: -.065em; white-space: nowrap; }
.price-lockup > strong small { font: normal .22em var(--sans); letter-spacing: .04em; text-transform: uppercase; }
.price-lockup > p { max-width: 29rem; margin: 0 0 2rem; color: #526151; font-size: .9rem; }
.price-lockup > small { display: block; margin-top: 1rem; color: #687667; font-size: .68rem; }

.faq {
  display: grid;
  grid-template-columns: minmax(18rem, .78fr) minmax(0, 1.22fr);
  gap: clamp(4rem, 10vw, 10rem);
  background: var(--paper-light);
}
.faq-intro { align-self: start; position: sticky; top: 3rem; }
.faq-intro > p:last-child { max-width: 28rem; margin: 2rem 0 0; color: #657164; font-size: .9rem; }
.faq-list { align-self: center; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.55rem 0;
  cursor: pointer;
  list-style: none;
  font: normal clamp(1.15rem, 1.8vw, 1.45rem) var(--serif);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { flex: 0 0 auto; font: normal 1.1rem var(--sans); transition: transform .3s; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 46rem; margin: -.25rem 3rem 1.6rem 0; color: #657164; font-size: .9rem; }
.app-recommendations { margin: -.25rem 0 1.6rem; }
.app-recommendations > p { margin: 0 3rem 0 0; }

.final-cta { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; color: white; background: #0f2425; overflow: hidden; }
.final-image { position: relative; inset: auto; height: auto; aspect-ratio: 1; object-fit: contain; }
.final-shade { display: none; }
.final-content { align-self: center; max-width: 46rem; padding: clamp(5rem, 9vw, 9rem) var(--gutter); }
.final-content .section-kicker { color: #f0c8b5; }
.final-content h2 { margin: 0; font: normal clamp(3.3rem, 5.6vw, 6.3rem)/.98 var(--serif); letter-spacing: -.06em; }
.final-content p:not(.section-kicker) { margin: 1.7rem 0 2rem; color: rgba(255,255,255,.72); }
.email-fallback {
  display: block;
  width: fit-content;
  margin: 1rem 0 0;
  color: rgba(255,255,255,.72);
  font-size: .76rem;
  text-underline-offset: .25rem;
}

.footer { min-height: 9rem; padding: 2rem var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: #0f2425; color: rgba(255,255,255,.68); font-size: .7rem; }
.footer-brand { color: white; }
.footer a:last-child { text-decoration: none; }

.lightbox { width: min(92vw, 75rem); max-width: none; height: min(90vh, 58rem); padding: 0; border: 0; background: transparent; overflow: visible; }
.lightbox::backdrop { background: rgba(8,20,25,.92); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-close { position: fixed; z-index: 2; top: 1rem; right: 1rem; width: 3rem; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: transparent; color: white; font-size: 1.8rem; cursor: pointer; }

.js .reveal, .js .reveal-image { opacity: 0; transform: translateY(2rem); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.js .reveal-image { transform: translateY(2rem) scale(.98); }
.js .reveal.is-visible, .js .reveal-image.is-visible { opacity: 1; transform: none; }

@keyframes riseIn { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: none; } }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes pulseLine { 0%,100% { transform: scaleY(.25); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .hero-content { width: min(33rem, 75vw); }
  .hero-shade { background: linear-gradient(90deg, rgba(8,24,37,.82), rgba(8,24,37,.38) 72%, rgba(8,24,37,.18)); }
  .intro-grid, .navigation-story, .details, .offer, .faq { grid-template-columns: 1fr; }
  .intro-copy { max-width: 38rem; }
  .facts { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(3) { padding-left: 0; }
  .navigation-story { gap: 4rem; }
  .teacher-section { grid-template-columns: 1fr; }
  .teacher-image-wrap { min-height: 0; max-height: none; }
  .teacher-content { padding-left: var(--gutter); padding-right: var(--gutter); }
  .fine-print { grid-column: 1; margin: -1rem 0 0; }
  .price-lockup { padding-left: 0; border-top: 1px solid rgba(16,34,56,.2); border-left: 0; }
  .faq-intro { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); align-items: start; }
  .final-cta { grid-template-columns: 1fr; }
  .final-image { width: 100%; }
}

@media (max-width: 600px) {
  .site-header { height: 4.6rem; }
  .brand { font-size: .62rem; letter-spacing: .1em; }
  .brand-mark { width: 1.8rem; }
  .header-cta { padding: .55rem .85rem; font-size: .7rem; }
  .hero { align-items: flex-end; min-height: 100svh; padding-bottom: 5rem; }
  .hero-image { object-position: 59% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,24,37,.92) 0%, rgba(8,24,37,.67) 48%, rgba(8,24,37,.12) 78%); }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(3.35rem, 16.5vw, 4.9rem); }
  .hero-lead { margin-top: 1.2rem; font-size: .92rem; }
  .hero-price { align-items: center; margin-top: .9rem; }
  .hero-price strong { font-size: 2rem; }
  .hero-price span { max-width: 10rem; font-size: .64rem; }
  .hero-price span { white-space: normal; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: .9rem; margin-top: 1.2rem; }
  .scroll-cue { display: none; }
  .section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .display { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .intro-grid { gap: 2rem; }
  .facts { margin-top: 4rem; }
  .fact { padding-top: 1rem; }
  .fact strong { font-size: 2.9rem; }
  .fact.links strong { font-size: 2.25rem; }
  .fact span { max-width: 8rem; }
  .story-visual img { aspect-ratio: auto; }
  .planning-head { text-align: left; }
  .wide-image { margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); }
  .planning-notes { grid-template-columns: 1fr; border: 0; }
  .planning-notes p, .planning-notes p:not(:first-child) { padding: 1.2rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .calendar-callout { grid-template-columns: 1fr; justify-items: start; gap: 1.2rem; margin-top: 2.5rem; }
  .teacher-image-wrap { min-height: 0; }
  .teacher-content { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .gallery-head { display: block; }
  .gallery-head > p { margin-top: 1.5rem; }
  .gallery-grid { display: flex; margin-right: calc(var(--gutter) * -1); overflow-x: auto; gap: .8rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item, .gallery-item.tall, .gallery-item.wide { flex: 0 0 82vw; height: auto; scroll-snap-align: start; }
  .details { gap: 3rem; }
  .spec-list div { grid-template-columns: .75fr 1.25fr; }
  .value-lines p { grid-template-columns: 7rem 1fr; gap: 1rem; }
  .price-lockup > strong { font-size: clamp(4.3rem, 23vw, 6rem); }
  .final-content { padding-top: 4rem; padding-bottom: 4rem; }
  .final-content h2 { font-size: clamp(2.9rem, 11.5vw, 4rem); }
  .final-content p:not(.section-kicker) { margin: 1.25rem 0 1.5rem; }
  .footer { align-items: flex-start; flex-direction: column; }
.footer p { margin: 0; }
.footer p a { color: inherit; text-underline-offset: .2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal, .js .reveal-image { opacity: 1; transform: none; }
}
