:root {
  --navy: #15375b;
  --navy-deep: #0d2948;
  --gold: #e8a928;
  --gold-soft: #f7d783;
  --cream: #fbf7ee;
  --paper: #fffdf8;
  --coral: #d96f55;
  --sage: #8aa487;
  --ink: #193044;
  --muted: #63707a;
  --line: #dcd7cc;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.6; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }

.announcement { background: var(--navy-deep); color: white; min-height: 36px; display: grid; place-items: center; padding: 6px 24px; text-align: center; font-size: .78rem; letter-spacing: .04em; }
.announcement p { margin: 0; }
.announcement span { color: var(--gold-soft); margin: 0 .65rem; }

.site-header { height: 92px; max-width: 1440px; margin: auto; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(24px, 5vw, 72px); background: rgba(255, 253, 248, .94); position: relative; z-index: 20; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--navy); }
.site-header > .brand { position: relative; z-index: 3; }
.brand-mark { width: 46px; height: 46px; fill: none; stroke: var(--gold); stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.brand span { display: flex; flex-direction: column; line-height: 1.1; }
.brand strong { font-family: var(--serif); font-size: .98rem; }
.brand small { margin-top: 5px; font-size: .61rem; text-transform: uppercase; letter-spacing: .18em; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 38px); font-size: .88rem; font-weight: 600; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: var(--gold); transition: right .2s; }
.site-nav > a:hover::after { right: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: var(--navy); color: white; min-height: 54px; padding: 0 25px; border-radius: 4px; font-weight: 700; font-size: .92rem; box-shadow: 0 8px 22px rgba(21,55,91,.15); transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: #1d4a79; box-shadow: 0 11px 28px rgba(21,55,91,.22); }
.button-small { min-height: 43px; padding: 0 19px; font-size: .82rem; }

.hero { max-width: 1440px; margin: auto; min-height: 695px; padding: clamp(54px, 7vw, 94px) clamp(24px, 6vw, 88px) 88px; display: grid; grid-template-columns: .91fr 1.09fr; gap: clamp(44px, 6vw, 88px); align-items: center; overflow: hidden; }
.eyebrow { color: var(--coral); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin: 0 0 18px; }
.eyebrow > span { width: 27px; height: 2px; background: currentColor; }
.hero h1 { font-family: var(--serif); font-size: clamp(3.15rem, 5.3vw, 5.65rem); line-height: 1.02; letter-spacing: -.045em; color: var(--navy-deep); margin: 0; max-width: 660px; }
.hero h1 em { color: var(--coral); font-style: italic; font-weight: 600; }
.hero-lede { max-width: 580px; font-size: clamp(1rem, 1.5vw, 1.18rem); color: var(--muted); margin: 26px 0 30px; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.text-link { color: var(--navy); font-weight: 700; font-size: .9rem; border-bottom: 1px solid #aab4bc; padding: 8px 0 5px; }
.trust-row { display: flex; gap: 27px; border-top: 1px solid var(--line); margin-top: 38px; padding-top: 25px; }
.trust-row > div { display: flex; align-items: center; gap: 11px; }
.trust-row > div > span { width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; background: #e8f0e5; color: #557451; font-size: .75rem; font-weight: 700; }
.trust-row p { margin: 0; display: flex; flex-direction: column; line-height: 1.35; }
.trust-row strong { font-size: .78rem; }
.trust-row small { color: var(--muted); font-size: .7rem; }

.hero-visual { position: relative; }
.image-wrap { position: relative; }
.image-wrap::before { content: ""; position: absolute; inset: -17px 24px 17px -17px; border: 1px solid var(--gold); z-index: -1; }
.image-wrap img { aspect-ratio: 1.17 / 1; object-fit: cover; border-radius: 55% 45% 46% 54% / 39% 47% 53% 61%; box-shadow: 0 22px 60px rgba(21,55,91,.16); }
.progress-note { position: absolute; left: -35px; bottom: 20px; background: white; padding: 14px 18px 14px 14px; display: flex; align-items: center; gap: 12px; box-shadow: 0 13px 35px rgba(24,48,68,.18); border-radius: 6px; }
.note-icon { width: 36px; height: 36px; border-radius: 50%; background: #fbecc1; color: #a86a00; display: grid; place-items: center; }
.progress-note p { margin: 0; display: flex; flex-direction: column; line-height: 1.35; }
.progress-note strong { font-size: .75rem; }.progress-note small { font-size: .64rem; color: var(--muted); }
.doodle { position: absolute; color: var(--gold); font-size: 2.4rem; }.doodle-one { right: -23px; top: 8%; }.doodle-two { right: -10px; bottom: -15px; transform: rotate(-18deg); font-size: 4rem; color: var(--coral); }

.section-pad { padding: 110px clamp(24px, 7vw, 105px); }
.intro { text-align: center; background: var(--cream); }
.centered { justify-content: center; }.centered > span:last-child { display: block; }
.intro h2, .section-heading h2, .approach h2, .about h2, .booking h2, .faq h2 { font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4rem); color: var(--navy-deep); line-height: 1.12; letter-spacing: -.035em; margin: 0; }
.intro h2 { max-width: 850px; margin: 0 auto 24px; }
.intro > p:last-child { color: var(--muted); max-width: 700px; margin: auto; font-size: 1.05rem; }

.services { max-width: 1440px; margin: auto; }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.section-heading > p { color: var(--muted); margin: 0 0 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { min-height: 520px; padding: 34px; position: relative; border: 1px solid var(--line); border-radius: 7px; transition: transform .25s, box-shadow .25s; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(21,55,91,.1); }
.service-card::after { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 50%; right: -70px; bottom: -80px; opacity: .15; }
.reading { background: #f7eee7; }.reading::after { background: var(--coral); }
.math { background: #eff3eb; }.math::after { background: var(--sage); }
.esol { background: #edf2f6; }.esol::after { background: var(--navy); }
.service-number { position: absolute; right: 25px; top: 22px; font-family: var(--serif); color: rgba(21,55,91,.3); }
.service-icon { height: 75px; width: 75px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 30px; background: white; color: var(--navy); font-family: var(--serif); font-size: 1.55rem; box-shadow: 0 8px 20px rgba(21,55,91,.08); }
.service-type { display: inline-flex; align-items: center; min-height: 25px; margin-bottom: 11px; padding: 4px 9px; border-radius: 99px; background: rgba(255,255,255,.72); color: var(--coral); font-size: .62rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.service-card h3 { font-family: var(--serif); color: var(--navy); font-size: 1.6rem; margin: 0 0 13px; }
.service-card p { color: var(--muted); font-size: .91rem; }
.service-card ul { list-style: none; padding: 0; margin: 24px 0 0; }
.service-card li { margin: 8px 0; font-size: .82rem; font-weight: 600; }.service-card li::before { content: "✓"; margin-right: 9px; color: var(--coral); }
.service-booking { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; color: var(--navy); border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 800; }
.service-booking:hover { color: var(--coral); }

.approach { background: var(--navy-deep); color: white; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 130px); align-items: center; overflow: hidden; }
.approach h2 { color: white; }.approach-copy > p:not(.eyebrow) { color: #bdc9d4; max-width: 600px; }
.approach-art { min-height: 500px; position: relative; display: grid; place-items: center; }
.big-heart { font-size: clamp(11rem, 23vw, 21rem); color: var(--coral); line-height: 1; filter: drop-shadow(0 25px 25px rgba(0,0,0,.15)); }
.orbit { position: absolute; border: 1px solid rgba(247,215,131,.45); border-radius: 50%; }.orbit-one { width: 450px; height: 450px; }.orbit-two { width: 330px; height: 530px; transform: rotate(55deg); }
.word { position: absolute; background: var(--cream); color: var(--navy); padding: 7px 13px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }.word-one { left: 4%; top: 20%; transform: rotate(-8deg); }.word-two { right: 2%; top: 45%; transform: rotate(7deg); }.word-three { left: 12%; bottom: 18%; transform: rotate(4deg); }
.steps { margin-top: 34px; }
.steps > div { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); }
.steps > div > span { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--gold-soft); color: var(--gold-soft); display: grid; place-items: center; font-family: var(--serif); }
.steps p { margin: 0; display: flex; flex-direction: column; }.steps strong { font-family: var(--serif); font-size: 1.05rem; }.steps small { color: #aebdca; margin-top: 4px; }

.about { background: var(--cream); }
.about-card { max-width: 1200px; margin: auto; display: grid; grid-template-columns: .75fr 1.25fr; background: var(--paper); box-shadow: 0 20px 60px rgba(21,55,91,.11); }
.about-kicker { padding: clamp(42px, 6vw, 75px); background: var(--gold); color: var(--navy-deep); display: flex; flex-direction: column; justify-content: center; }
.about-kicker span { font-family: var(--serif); font-size: 7rem; line-height: .5; opacity: .5; }.about-kicker p { font-family: var(--serif); font-size: clamp(1.45rem, 2.3vw, 2rem); line-height: 1.35; }
.about-copy { padding: clamp(42px, 6vw, 75px); }.about-copy > p:not(.eyebrow):not(.signature) { color: var(--muted); }
.signature { font-family: var(--serif); font-style: italic; color: var(--coral); font-size: 1.25rem; margin: 26px 0 20px; }
.credential-row { display: flex; flex-wrap: wrap; gap: 9px; }.credential-row span { background: #eaf0f4; color: var(--navy); padding: 7px 11px; border-radius: 2px; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

.booking { background: var(--coral); color: white; display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.booking > div { max-width: 800px; }.booking h2 { color: white; }.booking p:not(.eyebrow) { max-width: 670px; opacity: .86; }
.eyebrow.light { color: var(--gold-soft); }.button-light { background: white; color: var(--navy); white-space: nowrap; }.button-light:hover { background: var(--cream); color: var(--navy); }

.faq { max-width: 1200px; margin: auto; }.faq .section-heading { grid-template-columns: 1fr; margin-bottom: 35px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 0 4px; }
summary { list-style: none; cursor: pointer; padding: 25px 0; font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; gap: 20px; }
summary::-webkit-details-marker { display: none; } summary span { transition: transform .2s; } details[open] summary span { transform: rotate(45deg); }
details p { color: var(--muted); max-width: 760px; margin: -6px 0 26px; }

footer { background: var(--navy-deep); color: white; padding: 75px clamp(24px, 7vw, 105px) 25px; }
.footer-main { text-align: center; max-width: 760px; margin: auto; }.footer-brand { justify-content: center; color: white; }.footer-main > p { color: #afbdc9; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 26px; margin-top: 24px; font-size: .82rem; }.footer-links a { color: var(--gold-soft); }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); margin-top: 55px; padding-top: 22px; color: #91a4b5; font-size: .7rem; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }.js .reveal { opacity: 1; transform: none; transition: none; } }

@media (max-width: 920px) {
  .site-header { height: 78px; }.menu-toggle { display: block; z-index: 2; }
  .site-nav { position: fixed; inset: 114px 0 0; background: var(--paper); flex-direction: column; align-items: stretch; padding: 35px 28px; gap: 0; transform: translateX(100%); transition: transform .25s; }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }.site-nav .button { margin-top: 20px; }
  .menu-open .site-nav { transform: translateX(0); }.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 55px; }.hero-copy { max-width: 700px; }.hero-visual { max-width: 700px; margin: 20px auto 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }.service-grid { grid-template-columns: 1fr; }.service-card { min-height: 0; }
  .approach { grid-template-columns: 1fr; }.approach-art { min-height: 420px; }.orbit-one { width: 370px; height: 370px; }.orbit-two { width: 290px; height: 430px; }
  .booking { flex-direction: column; align-items: flex-start; gap: 28px; }.about-card { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .announcement { font-size: .67rem; }.brand strong { font-size: .85rem; }.brand small { font-size: .52rem; }.brand-mark { width: 39px; }
  .hero { padding-bottom: 65px; }.hero h1 { font-size: clamp(2.85rem, 15vw, 4rem); }.hero-actions { align-items: stretch; flex-direction: column; gap: 14px; }.text-link { align-self: flex-start; }
  .trust-row { flex-direction: column; gap: 15px; }.progress-note { left: -10px; bottom: -20px; }.doodle { display: none; }
  .section-pad { padding-top: 80px; padding-bottom: 80px; }.intro h2, .section-heading h2, .approach h2, .about h2, .booking h2, .faq h2 { font-size: 2.3rem; }
  .service-card { padding: 28px; }.approach-art { min-height: 350px; }.big-heart { font-size: 13rem; }.orbit-one { width: 300px; height: 300px; }.orbit-two { width: 240px; height: 350px; }
  .about-kicker, .about-copy { padding: 40px 28px; }.booking .button { width: 100%; white-space: normal; }.footer-bottom { flex-direction: column; text-align: center; align-items: center; }
}
