@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap');

:root {
  --ink: #25332d;
  --ink-soft: #59665f;
  --cream: #f7f1e7;
  --paper: #fffdf8;
  --sage: #6f8873;
  --sage-light: #dce5d6;
  --coral: #d97a62;
  --coral-light: #f2d7ca;
  --sun: #e8b95b;
  --sun-light: #f4e2ae;
  --line: rgba(37, 51, 45, .14);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(49, 57, 45, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: .7rem 1rem; transform: translateY(-140%); background: var(--ink); color: white; border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.site-header { height: 86px; padding: 0 clamp(1.25rem, 4vw, 4.5rem); display: flex; align-items: center; justify-content: space-between; background: rgba(255,253,248,.94); border-bottom: 1px solid var(--line); position: relative; z-index: 20; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark { width: 45px; height: 36px; display: flex; align-items: flex-end; justify-content: center; position: relative; }
.brand-mark span { position: absolute; bottom: 0; border: 3px solid; border-bottom: 0; border-radius: 50px 50px 0 0; }
.brand-mark span:nth-child(1) { width: 44px; height: 35px; color: var(--coral); }
.brand-mark span:nth-child(2) { width: 31px; height: 25px; color: var(--sun); }
.brand-mark span:nth-child(3) { width: 18px; height: 15px; color: var(--sage); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.brand-copy small { margin-top: .3rem; color: var(--ink-soft); font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.main-nav a { text-decoration: none; font-size: .91rem; font-weight: 600; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -.35rem; width: 100%; height: 2px; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .72rem 1.2rem; color: white; background: var(--ink); border-radius: 99px; }
.menu-button { display: none; }

.hero { min-height: calc(100vh - 86px); position: relative; isolation: isolate; display: flex; align-items: center; overflow: hidden; background: var(--cream); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -3; }
.hero-wash { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(248,242,231,.98) 0%, rgba(248,242,231,.91) 31%, rgba(248,242,231,.25) 58%, rgba(248,242,231,.04) 100%); }
.hero-content { width: min(650px, 53vw); margin-left: clamp(1.5rem, 8vw, 9rem); padding: 6rem 0 10rem; }
.eyebrow { margin: 0 0 1rem; color: #9e4d3e; font-size: .73rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.03em; }
h1 { margin-bottom: 1.6rem; font-size: clamp(3rem, 5.4vw, 5.8rem); }
h1 em { color: #a04f42; font-weight: inherit; }
.hero-lead { max-width: 570px; margin: 0 0 2rem; color: #45534c; font-size: clamp(1.05rem, 1.35vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; padding: .95rem 1.4rem; border-radius: 99px; font-weight: 700; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--coral); color: white; box-shadow: 0 12px 30px rgba(180, 92, 70, .25); }
.button-primary:hover { background: #c86750; box-shadow: 0 16px 36px rgba(180, 92, 70, .33); }
.text-link { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; text-underline-offset: .35rem; text-decoration-thickness: 1px; }
.hero-facts { position: absolute; left: 0; bottom: 0; display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)); width: min(660px, 57vw); padding: 1.4rem clamp(1.5rem, 3vw, 3.5rem); color: white; background: rgba(37,51,45,.94); border-radius: 0 22px 0 0; backdrop-filter: blur(8px); }
.hero-facts div { display: grid; padding: .2rem 1rem; border-right: 1px solid rgba(255,255,255,.16); }
.hero-facts div:last-child { border: 0; }
.hero-facts strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.hero-facts span { color: rgba(255,255,255,.7); font-size: .75rem; }

.trust-strip { min-height: 82px; padding: 1rem clamp(1.5rem, 8vw, 9rem); display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 6vw, 6rem); background: var(--sun-light); }
.trust-strip p { margin: 0; font-size: .85rem; font-weight: 600; }
.trust-strip span { color: var(--coral); margin-right: .5rem; }
.section { max-width: 1220px; margin: 0 auto; padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 5vw, 4rem); }
.section-narrow { max-width: 1120px; margin-inline: auto; }
.intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
h2 { margin-bottom: 1.3rem; font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.large-copy { margin-top: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.35rem); line-height: 1.3; }
.intro-copy > p:last-child { max-width: 650px; color: var(--ink-soft); font-size: 1.05rem; }
.values-grid { padding: 0 2rem clamp(5rem, 10vw, 10rem); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.value-card { min-height: 390px; padding: 2rem; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 8px 70px 8px 8px; }
.value-sun { background: var(--sun-light); }
.value-sage { background: var(--sage-light); }
.value-coral { background: var(--coral-light); }
.card-number { position: absolute; top: 1.5rem; right: 1.6rem; color: rgba(37,51,45,.45); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.value-icon { width: 78px; height: 78px; margin-bottom: auto; display: grid; place-items: center; color: var(--ink); font-family: var(--serif); font-size: 3.2rem; border: 1px solid rgba(37,51,45,.2); border-radius: 50%; }
.value-card h3 { margin: 2rem 0 .8rem; font-family: var(--serif); font-size: 1.75rem; font-weight: 600; }
.value-card p { margin: 0; color: #4e5b54; }

.team-section { max-width: 1380px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(6rem, 11vw, 11rem); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.team-image-wrap { min-height: 660px; position: relative; overflow: hidden; border-radius: 90px 8px 8px 8px; background: var(--cream); box-shadow: var(--shadow); }
.team-image-wrap img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: 73% center; transform: scale(1.35); }
.team-badge { width: 150px; height: 150px; position: absolute; right: 1.5rem; bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: .65rem; color: white; background: var(--coral); border: 8px solid rgba(255,255,255,.75); border-radius: 50%; }
.team-badge strong { font-family: var(--serif); font-size: 2.6rem; font-weight: 500; }
.team-badge span { font-size: .65rem; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.team-copy h2 { font-size: clamp(2.5rem, 4.3vw, 4.25rem); }
.team-lead { max-width: 650px; color: var(--ink-soft); font-size: 1.05rem; }
.team-principles { margin: 2.5rem 0; border-top: 1px solid var(--line); }
.team-principles > div { padding: 1rem 0; display: grid; grid-template-columns: 42px 1fr; gap: .7rem; border-bottom: 1px solid var(--line); }
.team-principles span { color: var(--coral); font-size: .65rem; font-weight: 700; }
.team-principles p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.team-principles strong { display: block; color: var(--ink); font-size: .95rem; }
.team-contact { display: grid; grid-template-columns: auto 1fr auto; gap: 1rem; align-items: center; }
.team-initials { width: 54px; aspect-ratio: 1; display: grid; place-items: center; color: white; background: var(--sage); border-radius: 50%; font-family: var(--serif); }
.team-contact p { margin: 0; display: grid; line-height: 1.35; }
.team-contact small { color: var(--ink-soft); font-size: .65rem; letter-spacing: .06em; text-transform: uppercase; }
.team-contact a { font-size: .85rem; font-weight: 700; text-underline-offset: .3rem; }

.team-overview { max-width: none; padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 6vw, 6rem); display: block; background: var(--cream); }
.team-heading { max-width: 760px; margin: 0 auto 3.5rem; }
.team-heading > p:last-child { color: var(--ink-soft); }
.team-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.team-card { min-height: 345px; padding: 2.2rem; position: relative; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: 8px 55px 8px 8px; transition: transform .25s ease, box-shadow .25s ease; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-number { width: 52px; height: 52px; margin-bottom: 3.5rem; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; font-family: var(--serif); }
.team-card:nth-child(3n+2) .team-number { color: var(--ink); background: var(--sun-light); }
.team-card:nth-child(3n) .team-number { background: var(--sage); }
.team-role { margin: 0 0 .4rem; color: var(--coral); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.team-card h3 { margin-bottom: .55rem; font-family: var(--serif); font-size: 1.8rem; }
.team-training { margin: 0 0 1rem; padding-bottom: .9rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: .76rem; font-weight: 700; }
.team-about { margin: auto 0 0; color: var(--ink-soft); font-size: .9rem; }

.day-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 800px; background: var(--ink); color: white; }
.day-visual { min-height: 740px; position: relative; overflow: hidden; background: #e8d7bb; }
.paper-sun { position: absolute; top: 12%; left: 14%; width: 120px; aspect-ratio: 1; border-radius: 50%; background: var(--sun); box-shadow: 0 0 0 25px rgba(232,185,91,.12); }
.paper-cloud { position: absolute; width: 130px; height: 42px; background: #f8f1e5; border-radius: 99px; box-shadow: 35px -25px 0 8px #f8f1e5; }
.cloud-one { top: 18%; right: 16%; }
.cloud-two { top: 33%; left: 9%; transform: scale(.65); opacity: .75; }
.paper-hill { position: absolute; bottom: -25%; border-radius: 50% 50% 0 0; }
.hill-one { left: -20%; width: 110%; height: 68%; background: #8da084; transform: rotate(8deg); }
.hill-two { right: -45%; width: 110%; height: 58%; background: #607a68; transform: rotate(-9deg); }
.paper-house { position: absolute; left: 34%; bottom: 16%; width: 180px; height: 170px; background: #eaa07c; box-shadow: var(--shadow); }
.paper-house::before { content: ""; position: absolute; left: -20px; top: -105px; border-left: 110px solid transparent; border-right: 110px solid transparent; border-bottom: 110px solid #b85f4c; }
.paper-house::after { content: ""; position: absolute; left: 68px; bottom: 0; width: 48px; height: 82px; border-radius: 30px 30px 0 0; background: #425b4c; }
.paper-house span { position: absolute; left: 25px; top: 35px; width: 38px; aspect-ratio: 1; border-radius: 50%; background: var(--sun-light); }
.paper-path { position: absolute; left: 36%; bottom: -20%; width: 115px; height: 45%; background: #f0d7a8; transform: perspective(300px) rotateX(12deg) rotate(-7deg); clip-path: polygon(34% 0, 68% 0, 100% 100%, 0 100%); opacity: .9; }
.day-content { padding: clamp(5rem, 8vw, 8rem); align-self: center; }
.day-content .eyebrow { color: #e9af96; }
.day-content h2 { font-size: clamp(2.5rem, 4vw, 4.2rem); }
.timeline { margin: 3rem 0 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 68px 1fr; gap: 1.2rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.timeline li > span { color: #eab099; font-size: .76rem; font-weight: 700; letter-spacing: .08em; }
.timeline strong { display: block; margin-bottom: .2rem; font-size: .98rem; }
.timeline p { margin: 0; color: rgba(255,255,255,.64); font-size: .87rem; }
.fine-print { margin-top: 1.5rem; color: rgba(255,255,255,.48); font-size: .75rem; font-style: italic; }

.gallery-section { max-width: 1380px; margin: 0 auto; padding: clamp(6rem, 10vw, 10rem) clamp(1.5rem, 5vw, 4rem); }
.gallery-heading { margin-bottom: 3.5rem; display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; }
.gallery-heading h2 { margin-bottom: 0; }
.gallery-heading > p { max-width: 470px; margin: 0 0 .8rem; color: var(--ink-soft); }
.photo-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 320px 320px; grid-auto-rows: 320px; gap: 1rem; }
.photo { margin: 0; position: relative; overflow: hidden; background: var(--cream); border-radius: 8px; }
.photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.photo:hover img { transform: scale(1.04); }
.photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(25,35,30,.72)); pointer-events: none; }
.photo figcaption { position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.3rem; z-index: 1; display: grid; color: white; }
.photo figcaption span { font-size: .62rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; opacity: .72; }
.photo figcaption strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }
.photo-wide { grid-row: 1 / 3; }
.photo-wide img { object-position: 54% center; }
.photo-tall { grid-row: 1 / 3; }
.photo-tall img { object-position: 9% center; transform: scale(1.15); }
.photo-tall:hover img { transform: scale(1.2); }
.photo-small img { object-position: 92% 30%; transform: scale(1.3); }
.photo-small:hover img { transform: scale(1.36); }
.photo-last img { object-position: 65% 85%; }
.gallery-note { margin: 1rem 0 0; color: var(--ink-soft); font-size: .72rem; text-align: right; }

.info-section { max-width: 1320px; }
.centered { text-align: center; }
.centered > p:last-child { color: var(--ink-soft); }
.info-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.info-card { min-height: 410px; padding: clamp(2rem, 3vw, 3rem); display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 8px 50px 8px 8px; }
.info-card.featured { color: white; background: var(--coral); border: 0; transform: translateY(-18px); box-shadow: var(--shadow); }
.info-kicker { margin-bottom: 2.5rem; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .68; }
.info-card h3 { font-family: var(--serif); font-size: 1.8rem; }
.info-card dl { margin: 1rem 0 0; }
.info-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-top: 1px solid var(--line); }
.info-card dt { color: var(--ink-soft); }
.info-card dd { margin: 0; font-weight: 700; }
.card-note { margin-top: auto; padding-top: 1.5rem; color: var(--ink-soft); font-size: .78rem; }
.featured .card-note, .featured p { color: rgba(255,255,255,.78); }
.price { display: grid; margin: 0 0 1.5rem; }
.price strong { color: white; font-family: var(--serif); font-size: clamp(2.2rem, 3vw, 3.1rem); font-weight: 500; }
.price span { font-size: .85rem; }
.featured .text-link { margin-top: auto; }
.check-list { margin: 1rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 1rem 0 1rem 1.8rem; border-top: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.check-list strong { display: block; }

.parent-section { padding: clamp(5rem, 8vw, 8rem) 1.5rem clamp(6rem, 10vw, 10rem); background: #edf0e8; }
.parent-heading { max-width: 800px; margin: 0 auto 4rem; text-align: center; }
.parent-heading > p:last-child { max-width: 610px; margin-inline: auto; color: var(--ink-soft); }
.parent-signs { margin-bottom: 5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.parent-signs article { padding: 2.4rem; background: var(--paper); border-radius: 8px 45px 8px 8px; }
.parent-signs article > span { width: 50px; height: 50px; margin-bottom: 3rem; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; font-family: var(--serif); font-size: 1.4rem; }
.parent-signs article:nth-child(2) > span { background: var(--sun); }
.parent-signs article:nth-child(3) > span { background: var(--sage); }
.parent-signs h3 { font-family: var(--serif); font-size: 1.45rem; }
.parent-signs p { margin-bottom: 0; color: var(--ink-soft); font-size: .9rem; }
.testimonial-grid { margin-bottom: 1rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.testimonial-card { min-height: 350px; margin: 0; padding: clamp(1.8rem, 3vw, 2.8rem); display: flex; flex-direction: column; justify-content: space-between; background: var(--paper); border-radius: 8px 55px 8px 8px; box-shadow: 0 18px 50px rgba(49,57,45,.08); }
.testimonial-dark { color: white; background: var(--ink); }
.stars { color: var(--sun); font-size: .82rem; letter-spacing: .17em; }
.testimonial-card > p { margin: 2rem 0; font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.3rem); line-height: 1.35; }
.testimonial-card footer { display: flex; align-items: center; gap: .9rem; }
.testimonial-card footer > span { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; font-family: var(--serif); font-size: .78rem; }
.testimonial-card footer div { display: grid; }
.testimonial-card footer strong { font-size: .82rem; }
.testimonial-card footer small { color: var(--ink-soft); font-size: .66rem; }
.testimonial-dark footer small { color: rgba(255,255,255,.55); }
.testimonial-themes { max-width: 1120px; margin: 0 auto 5rem; display: flex; justify-content: center; gap: .65rem; flex-wrap: wrap; }
.testimonial-themes span { padding: .55rem .9rem; color: var(--ink-soft); background: rgba(255,255,255,.58); border: 1px solid rgba(37,51,45,.09); border-radius: 99px; font-size: .7rem; font-weight: 600; }
.reassurance { padding: clamp(3rem, 7vw, 6rem); text-align: center; background: var(--cream); border-radius: 80px 8px 80px 8px; }
.reassurance-mark { height: 55px; color: var(--coral); font-family: var(--serif); font-size: 5rem; line-height: 1; }
.reassurance blockquote { max-width: 800px; margin: 0 auto; }
.reassurance blockquote p { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 3rem); line-height: 1.3; }
.reassurance-note { margin-bottom: 0; color: var(--ink-soft); font-size: .8rem; }

.contact-section { padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 9rem); display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; background: var(--sun-light); }
.contact-copy { max-width: 760px; }
.contact-copy > p:not(.eyebrow) { max-width: 650px; color: var(--ink-soft); font-size: 1.05rem; }
.contact-actions { margin-top: 2rem; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.button-dark { color: white; background: var(--ink); }
.button-dark:hover { background: #384940; box-shadow: 0 12px 30px rgba(37,51,45,.2); }
.contact-actions span { color: var(--ink-soft); font-size: .78rem; }
.address-card { margin: 0; padding: clamp(2rem, 4vw, 3.5rem); display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; font-style: normal; background: var(--paper); border-radius: 8px 60px 8px 8px; box-shadow: var(--shadow); }
.pin { width: 52px; height: 52px; display: grid; place-items: center; color: white; background: var(--coral); border-radius: 50%; font-size: 1.6rem; }
.address-card small { display: block; margin-bottom: 1.2rem; color: var(--ink-soft); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.address-card strong { font-family: var(--serif); font-size: 1.4rem; }
.address-card p { color: var(--ink-soft); }
.address-card a { font-weight: 700; text-underline-offset: .3rem; }

.site-footer { padding: 3.5rem clamp(1.5rem, 8vw, 9rem); display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem 4rem; align-items: center; color: white; background: #1d2823; }
.footer-brand .brand-copy small { color: rgba(255,255,255,.55); }
.site-footer > p { color: rgba(255,255,255,.6); font-size: .85rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .8rem; }
.site-footer > small { grid-column: 1 / -1; padding-top: 1.2rem; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.1); font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .menu-button { width: 44px; height: 44px; display: grid; place-content: center; gap: 5px; border: 0; border-radius: 50%; background: var(--cream); }
  .menu-button > span:not(.sr-only) { width: 19px; height: 2px; display: block; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: 85px; left: 0; right: 0; padding: 1.2rem 1.5rem 1.7rem; display: none; align-items: stretch; flex-direction: column; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 15px 30px rgba(37,51,45,.08); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .5rem 0; }
  .nav-cta { text-align: center; }
  .hero { min-height: 830px; align-items: flex-start; }
  .hero-image { object-position: 64% center; }
  .hero-wash { background: linear-gradient(180deg, rgba(248,242,231,.98) 0%, rgba(248,242,231,.92) 39%, rgba(248,242,231,.18) 70%); }
  .hero-content { width: auto; max-width: 620px; margin: 0; padding: 5rem 1.5rem 12rem; }
  .hero-facts { width: 100%; grid-template-columns: repeat(3, 1fr); border-radius: 20px 20px 0 0; }
  .trust-strip { justify-content: flex-start; overflow-x: auto; }
  .trust-strip p { white-space: nowrap; }
  .intro, .team-section, .day-section, .contact-section { grid-template-columns: 1fr; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 330px; }
  .team-image-wrap { min-height: 560px; }
  .day-visual { min-height: 590px; }
  .gallery-heading { grid-template-columns: 1fr; gap: 1rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 280px; grid-auto-rows: 280px; }
  .photo-wide { grid-row: 1; grid-column: 1 / -1; }
  .photo-tall { grid-row: 2; }
  .photo-small { grid-row: auto; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card.featured { transform: none; }
  .parent-signs { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-self: end; }
}

@media (max-width: 600px) {
  .site-header { height: 74px; }
  .brand-mark { transform: scale(.85); transform-origin: left center; margin-right: -.3rem; }
  .brand-copy strong { font-size: 1.15rem; }
  .brand-copy small { font-size: .58rem; }
  .main-nav { top: 73px; }
  .hero { min-height: 780px; }
  .hero-content { padding-top: 3.5rem; }
  h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-facts { padding: 1.1rem .35rem; }
  .hero-facts div { min-width: 0; padding: 0 .65rem; }
  .hero-facts strong { font-size: 1.15rem; }
  .hero-facts span { font-size: .62rem; line-height: 1.3; }
  .intro { gap: 1rem; }
  .values-grid { padding-inline: 1rem; }
  .team-section { padding-inline: 1rem; }
  .team-image-wrap { min-height: 430px; border-radius: 55px 8px 8px 8px; }
  .team-badge { width: 125px; height: 125px; right: .8rem; bottom: .8rem; }
  .team-contact { grid-template-columns: auto 1fr; }
  .team-contact a { grid-column: 2; }
  .day-visual { min-height: 450px; }
  .paper-house { left: 29%; bottom: 11%; transform: scale(.75); }
  .day-content { padding-inline: 1.5rem; }
  .timeline li { grid-template-columns: 57px 1fr; gap: .7rem; }
  .gallery-section { padding-inline: 1rem; }
  .photo-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 330px; }
  .photo-wide, .photo-tall, .photo-small { grid-column: 1; grid-row: auto; }
  .gallery-note { text-align: left; }
  .parent-section { padding-inline: 1rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .reassurance { margin-inline: 1rem; border-radius: 50px 8px 50px 8px; }
  .contact-section { padding-inline: 1.25rem; }
  .address-card { padding: 1.5rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
}

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