:root {
    --ink: #211c18;
    --ink-soft: #3b332d;
    --muted: #756b63;
    --paper: #f4efe7;
    --paper-deep: #e8ded1;
    --sand: #d7c2ae;
    --clay: #a85e48;
    --clay-deep: #824633;
    --sage: #657169;
    --white: #fffdf9;
    --line: rgba(33, 28, 24, 0.14);
    --line-light: rgba(255, 253, 249, 0.18);
    --shadow: 0 22px 60px rgba(48, 34, 23, 0.11);
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'Manrope', Arial, sans-serif;
    --shell: min(1180px, calc(100vw - 96px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin: 0 auto; }
.skip-link {
    position: fixed;
    z-index: 99;
    top: -100px;
    left: 24px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
}
.skip-link:focus { top: 16px; }

.announcement-bar {
    position: relative;
    z-index: 15;
    color: rgba(255, 253, 249, 0.74);
    background: var(--ink);
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.announcement-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 38px;
}
.announcement-inner a {
    margin-left: auto;
    color: var(--white);
    font-weight: 700;
}
.announcement-dot { width: 4px; height: 4px; border-radius: 99px; background: var(--clay); }

.site-header {
    position: relative;
    z-index: 10;
    background: var(--paper);
    transition: background .25s ease, box-shadow .25s ease;
}
.page-home .site-header {
    position: absolute;
    top: 38px;
    right: 0;
    left: 0;
    color: var(--white);
    background: transparent;
}
.site-header.is-scrolled {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(244, 239, 231, .94);
    box-shadow: 0 8px 28px rgba(33, 28, 24, .07);
    backdrop-filter: blur(16px);
}
.page-home .site-header.is-scrolled { color: var(--ink); }
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 94px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1;
}
.brand-copy { display: grid; gap: 0; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 25px; font-weight: 400; letter-spacing: -.03em; }
.brand-copy small { margin-top: 5px; font-size: 8px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.brand-light { color: var(--white); }
.site-menu { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
    position: relative;
    padding: 8px 0;
    color: currentColor;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .72;
}
.nav-links a::after { position: absolute; right: 0; bottom: 1px; left: 0; height: 1px; background: currentColor; content: ''; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-links a:hover, .nav-links a.is-active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 1px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, color .25s ease, border .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--clay-deep); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--clay); }
.button-ghost { border-color: currentColor; }
.button-ghost:hover { color: var(--white); background: var(--ink); }
.button-text { gap: 10px; padding: 0; min-height: auto; border: 0; border-bottom: 1px solid currentColor; }

.eyebrow {
    margin: 0 0 18px;
    color: var(--clay);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .2em;
    line-height: 1.4;
    text-transform: uppercase;
}
.eyebrow-light { color: var(--sand); }
.display {
    margin: 0;
    max-width: 850px;
    font-family: var(--serif);
    font-size: clamp(48px, 7.7vw, 104px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .95;
}
.display em, h1 em, h2 em { color: var(--clay); font-style: italic; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; }
h2 { font-family: var(--serif); font-size: clamp(40px, 5.5vw, 70px); letter-spacing: -.045em; line-height: .98; }
h3 { font-family: var(--serif); font-size: 29px; letter-spacing: -.03em; line-height: 1.05; }
.lede { max-width: 575px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 42px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; max-width: 650px; }
.section-heading > p { max-width: 320px; margin-bottom: 4px; color: var(--muted); }

/* Home */
.home-hero {
    position: relative;
    display: flex;
    min-height: min(790px, calc(100vh - 38px));
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(110deg, rgba(30, 23, 18, .86) 0%, rgba(37, 28, 22, .48) 48%, rgba(37, 28, 22, .22) 100%), url('https://images.unsplash.com/photo-1600334089648-b0d9d3028eb2?auto=format&fit=crop&w=2200&q=90') center/cover;
}
.home-hero::after { position: absolute; right: -4%; bottom: -31%; width: 50vw; height: 76%; border: 1px solid rgba(255, 253, 249, .24); border-radius: 50%; content: ''; transform: rotate(-18deg); }
.home-hero-inner { position: relative; z-index: 1; width: 100%; padding-top: 175px; padding-bottom: 80px; }
.home-hero .display { max-width: 760px; }
.home-hero .display em { color: var(--sand); }
.hero-note { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: 44px; }
.hero-note p { max-width: 390px; margin-bottom: 0; color: rgba(255, 253, 249, .72); font-size: 14px; }
.hero-note .button { flex: none; }
.hero-stamp { position: absolute; top: 35%; right: 8%; display: grid; width: 126px; height: 126px; place-items: center; border: 1px solid rgba(255, 253, 249, .42); border-radius: 50%; color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .16em; line-height: 1.5; text-align: center; text-transform: uppercase; transform: rotate(12deg); }
.hero-stamp::before { width: 10px; height: 10px; margin-bottom: -9px; border: 1px solid var(--sand); border-radius: 50%; content: ''; }
.hero-scroll { display: flex; align-items: center; gap: 12px; margin-top: 68px; color: rgba(255, 253, 249, .62); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero-scroll::before { width: 42px; height: 1px; background: currentColor; content: ''; }

.ritual-marquee { overflow: hidden; color: var(--white); background: var(--clay); }
.marquee-track { display: flex; width: max-content; gap: 42px; padding: 15px 0; animation: marquee 28s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: 42px; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; }
.marquee-track span::after { width: 5px; height: 5px; border: 1px solid currentColor; border-radius: 50%; content: ''; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 122px 0; }
.section-tight { padding: 82px 0; }
.section-sand { background: var(--paper-deep); }
.section-dark { color: var(--white); background: var(--ink); }
.intro-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 10%; align-items: center; }
.intro-split .lede { margin-bottom: 32px; }
.image-frame { position: relative; overflow: hidden; background: var(--paper-deep); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.image-frame:hover img { transform: scale(1.04); }
.intro-image { height: 565px; }
.intro-image::after { position: absolute; right: -28px; bottom: -28px; width: 110px; height: 110px; border: 1px solid var(--clay); border-radius: 50%; content: ''; }
.number-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; color: var(--clay); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.number-kicker::before { width: 30px; height: 1px; background: currentColor; content: ''; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { position: relative; min-height: 330px; overflow: hidden; color: var(--white); background: var(--ink); }
.service-card::before { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25, 20, 16, .05), rgba(25, 20, 16, .88)); content: ''; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: transform .8s ease, opacity .4s ease; }
.service-card:hover img { opacity: .92; transform: scale(1.05); }
.service-card-body { position: relative; z-index: 1; display: flex; min-height: 330px; flex-direction: column; justify-content: flex-end; padding: 28px; }
.service-card h3 { margin-bottom: 8px; font-size: 31px; }
.service-card p { max-width: 270px; margin-bottom: 21px; color: rgba(255, 253, 249, .7); font-size: 12px; line-height: 1.6; }
.service-card a { display: inline-flex; align-items: center; gap: 9px; width: max-content; color: var(--sand); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-card a span { font-size: 16px; transition: transform .2s ease; }
.service-card a:hover span { transform: translateX(4px); }
.service-card:nth-child(4) { grid-column: span 2; }
.service-card:nth-child(4) .service-card-body { min-height: 280px; }

.experience-section { padding: 110px 0 125px; color: var(--white); background: var(--sage); }
.experience-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 14%; }
.experience-grid h2 { max-width: 420px; margin-bottom: 28px; }
.experience-grid .lede { color: rgba(255, 253, 249, .72); }
.experience-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 42px; }
.step { padding-top: 18px; border-top: 1px solid rgba(255, 253, 249, .22); }
.step-number { color: var(--sand); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.step h3 { margin: 28px 0 9px; font-size: 25px; }
.step p { margin-bottom: 0; color: rgba(255, 253, 249, .65); font-size: 13px; line-height: 1.7; }

.quote-section { text-align: center; }
.quote-section blockquote { max-width: 875px; margin: 0 auto 28px; font-family: var(--serif); font-size: clamp(35px, 5vw, 63px); letter-spacing: -.04em; line-height: 1; }
.quote-section cite { color: var(--clay); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }

.location-feature { display: grid; grid-template-columns: 1fr 1.05fr; min-height: 515px; color: var(--white); background: var(--ink); }
.location-feature-image { min-height: 450px; background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1300&q=85') center/cover; }
.location-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 65px 11%; }
.location-feature-copy h2 { max-width: 450px; margin-bottom: 22px; }
.location-feature-copy p { max-width: 440px; color: rgba(255, 253, 249, .68); }
.location-feature-copy .button { align-self: flex-start; margin-top: 17px; }

/* Inner page intro */
.page-hero { padding: 90px 0 98px; background: var(--paper-deep); }
.page-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 70px; }
.page-hero h1 { max-width: 730px; margin: 0; font-family: var(--serif); font-size: clamp(56px, 8vw, 106px); letter-spacing: -.06em; line-height: .9; }
.page-hero h1 em { color: var(--clay); }
.page-hero-copy { max-width: 315px; margin-bottom: 3px; color: var(--muted); font-size: 14px; }
.page-hero-copy p { margin-bottom: 0; }
.page-hero-copy .button { margin-top: 23px; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 52px; }
.stat { padding: 22px 24px; border: 1px solid var(--line); }
.stat strong { display: block; margin-bottom: 2px; font-family: var(--serif); font-size: 37px; font-weight: 400; letter-spacing: -.04em; }
.stat span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

.about-values { display: grid; grid-template-columns: .84fr 1.16fr; gap: 11%; }
.about-values h2 { margin: 0; }
.value-list { border-top: 1px solid var(--line); }
.value-item { display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.value-item span { color: var(--clay); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.value-item h3 { margin: 0 0 8px; font-size: 28px; }
.value-item p { max-width: 470px; margin: 0; color: var(--muted); font-size: 13px; }
.about-image-band { display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px; }
.about-image-band .large { height: 510px; }
.about-image-band .small { height: 510px; margin-top: 72px; }
.about-note { padding: 80px 0; color: var(--white); background: var(--clay); }
.about-note-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.about-note h2 { max-width: 630px; margin: 0; }

/* Services */
.services-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: 12%; align-items: end; }
.services-intro h2 { margin: 0; }
.services-intro p { max-width: 460px; margin: 0; color: var(--muted); font-size: 15px; }
.service-category { display: grid; grid-template-columns: .78fr 1.22fr; gap: 8%; align-items: start; padding: 100px 0; border-top: 1px solid var(--line); }
.service-category:first-child { border-top: 0; }
.service-category:nth-child(even) { grid-template-columns: 1.22fr .78fr; }
.service-category:nth-child(even) .service-category-media { order: 2; }
.service-category-media { position: sticky; top: 120px; }
.service-category-image { height: 470px; }
.service-category-content h2 { margin: 0 0 17px; font-size: clamp(43px, 5vw, 66px); }
.service-category-content > p { max-width: 490px; color: var(--muted); }
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; margin-top: 34px; border-top: 1px solid var(--line); }
.service-list-item { padding: 19px 0 17px; border-bottom: 1px solid var(--line); }
.service-list-item h3 { margin: 0 0 6px; font-family: var(--sans); font-size: 13px; font-weight: 800; letter-spacing: -.01em; }
.service-list-item p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

/* Locations */
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.location-card { display: flex; min-height: 252px; flex-direction: column; justify-content: space-between; padding: 31px; border: 1px solid var(--line); background: rgba(255, 253, 249, .28); transition: background .25s ease, transform .25s ease; }
.location-card:hover { background: var(--white); transform: translateY(-4px); }
.location-card:nth-child(3) { background: var(--sage); color: var(--white); }
.location-card:nth-child(3):hover { background: var(--sage); }
.location-card:nth-child(4) { background: var(--clay); color: var(--white); }
.location-card:nth-child(4):hover { background: var(--clay); }
.location-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.location-card-number { color: var(--clay); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.location-card:nth-child(n+3) .location-card-number { color: var(--sand); }
.location-card h3 { margin: 22px 0 4px; font-size: 34px; }
.location-card .area { margin: 0; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.location-card:nth-child(n+3) .area { color: rgba(255, 253, 249, .7); }
.location-card address { max-width: 360px; margin: 24px 0 17px; color: var(--muted); font-size: 13px; font-style: normal; line-height: 1.6; }
.location-card:nth-child(n+3) address, .location-card:nth-child(n+3) .location-note { color: rgba(255, 253, 249, .7); }
.location-note { max-width: 350px; margin: 0 0 20px; color: var(--muted); font-size: 12px; }
.location-link { display: inline-flex; align-items: center; gap: 9px; width: max-content; border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.location-link span { font-size: 16px; }
.location-map { min-height: 380px; background: linear-gradient(rgba(101, 113, 105, .26), rgba(101, 113, 105, .26)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1500&q=85') center/cover; }
.location-map-copy { display: flex; min-height: 380px; align-items: center; justify-content: center; padding: 40px; color: var(--white); text-align: center; }
.location-map-copy > div { max-width: 340px; }
.location-map-copy h2 { margin: 0 0 17px; font-size: 49px; }
.location-map-copy p { color: rgba(255, 253, 249, .77); }

/* Contact, academy & careers */
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 12%; }
.contact-details { border-top: 1px solid var(--line); }
.contact-detail { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-detail small { display: block; margin-bottom: 7px; color: var(--clay); font-size: 9px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.contact-detail a, .contact-detail p { margin: 0; font-family: var(--serif); font-size: 26px; line-height: 1.1; }
.contact-detail p { max-width: 260px; }
.faqs { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 0; border: 0; background: transparent; cursor: pointer; font-family: var(--serif); font-size: 25px; line-height: 1.15; text-align: left; }
.faq-item button span { display: grid; width: 27px; height: 27px; flex: none; place-items: center; border: 1px solid var(--clay); border-radius: 50%; color: var(--clay); font-family: var(--sans); font-size: 17px; font-weight: 400; transition: transform .2s ease; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 570px; margin: -2px 0 24px; color: var(--muted); font-size: 13px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open button span { transform: rotate(45deg); }

.academy-hero, .careers-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8%; align-items: stretch; }
.academy-hero .hero-image, .careers-hero .hero-image { min-height: 480px; }
.academy-hero .hero-copy, .careers-hero .hero-copy { display: flex; flex-direction: column; justify-content: center; }
.academy-hero .hero-copy h2, .careers-hero .hero-copy h2 { margin: 0 0 20px; }
.academy-hero .hero-copy p, .careers-hero .hero-copy p { max-width: 470px; color: var(--muted); }
.academy-hero .button, .careers-hero .button { align-self: flex-start; margin-top: 15px; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.program-card { padding: 31px 28px; border: 1px solid var(--line); }
.program-card:nth-child(2) { margin-top: 40px; }
.program-card:nth-child(3) { margin-top: 80px; background: var(--sage); color: var(--white); }
.program-card .index { color: var(--clay); font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.program-card:nth-child(3) .index { color: var(--sand); }
.program-card h3 { margin: 46px 0 13px; font-size: 30px; }
.program-card p { margin: 0; color: var(--muted); font-size: 12px; }
.program-card:nth-child(3) p { color: rgba(255, 253, 249, .7); }
.career-list { border-top: 1px solid var(--line); }
.career-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 22px; align-items: center; padding: 23px 0; border-bottom: 1px solid var(--line); }
.career-row h3 { margin: 0; font-family: var(--sans); font-size: 16px; font-weight: 800; }
.career-row p { margin: 0; color: var(--muted); font-size: 12px; }
.career-row span { color: var(--clay); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }

/* Booking placeholder */
.booking-shell { display: grid; grid-template-columns: .82fr 1.18fr; gap: 10%; align-items: start; }
.booking-card { padding: 38px; background: var(--white); box-shadow: var(--shadow); }
.booking-card .booking-icon { display: grid; width: 54px; height: 54px; margin-bottom: 24px; place-items: center; border: 1px solid var(--clay); border-radius: 50%; color: var(--clay); font-family: var(--serif); font-size: 27px; }
.booking-card h2 { margin: 0 0 17px; font-size: 47px; }
.booking-card p { color: var(--muted); font-size: 13px; }
.booking-card .button { margin-top: 14px; }
.booking-checklist { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line); }
.booking-check { display: flex; align-items: flex-start; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.booking-check i { display: grid; width: 23px; height: 23px; flex: none; place-items: center; border-radius: 50%; color: var(--white); background: var(--clay); font-size: 12px; font-style: normal; }
.booking-check p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.booking-form { padding: 35px 0; border-top: 1px solid var(--line); }
.booking-form label { display: block; margin-bottom: 8px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.booking-form input, .booking-form select { width: 100%; height: 49px; padding: 0 13px; border: 1px solid var(--line); border-radius: 0; color: var(--muted); background: transparent; outline: none; }
.booking-form input:focus, .booking-form select:focus { border-color: var(--clay); }
.booking-form .field { margin-bottom: 22px; }
.booking-form .button { margin-top: 4px; }
.booking-note { margin-top: 15px; color: var(--muted); font-size: 11px; }

/* Footer */
.footer-cta { color: var(--white); background: var(--clay-deep); }
.footer-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 72px 0; }
.footer-cta h2 { max-width: 550px; margin: 0; font-size: clamp(42px, 5.4vw, 67px); }
.site-footer { color: rgba(255, 253, 249, .71); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.7fr .8fr .9fr 1.1fr; gap: 45px; padding: 74px 0 66px; }
.footer-brand p { max-width: 235px; margin: 22px 0 22px; font-size: 13px; line-height: 1.7; }
.social-links { display: flex; gap: 8px; }
.social-links a { display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid rgba(255, 253, 249, .28); border-radius: 50%; font-size: 10px; font-weight: 800; transition: border .2s ease, color .2s ease; }
.social-links a:hover { border-color: var(--sand); color: var(--sand); }
.footer-column { display: grid; align-content: start; gap: 10px; }
.footer-column a { width: max-content; font-size: 12px; transition: color .2s ease; }
.footer-column a:hover { color: var(--sand); }
.footer-label { margin: 0 0 10px; color: var(--sand); font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.footer-contact a { font-family: var(--serif); font-size: 19px; line-height: 1.05; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0 23px; border-top: 1px solid rgba(255, 253, 249, .13); color: rgba(255, 253, 249, .42); font-size: 10px; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    :root { --shell: min(100% - 48px, 700px); }
    .announcement-inner span:nth-child(3), .announcement-dot { display: none; }
    .nav-wrap { min-height: 78px; }
    .menu-toggle { display: inline-flex; align-items: center; gap: 10px; border: 0; color: currentColor; background: transparent; cursor: pointer; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
    .menu-toggle i, .menu-toggle i::after { display: block; width: 22px; height: 1px; background: currentColor; content: ''; transition: transform .2s ease; }
    .menu-toggle i::after { transform: translateY(6px); }
    .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
    .menu-toggle[aria-expanded="true"] i::after { transform: translateY(0) rotate(-90deg); }
    .site-menu { position: fixed; z-index: -1; top: 0; right: 0; left: 0; display: block; height: 100vh; padding: 128px 24px 40px; color: var(--ink); background: var(--paper); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; }
    .site-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .nav-links { display: grid; gap: 0; }
    .nav-links a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 31px; letter-spacing: -.03em; opacity: 1; text-transform: none; }
    .nav-links a::after { display: none; }
    .nav-cta { margin-top: 28px; }
    .page-home .site-header.is-scrolled { color: var(--ink); }
    .home-hero { min-height: 730px; }
    .hero-stamp { top: 30%; right: 5%; width: 93px; height: 93px; font-size: 7px; }
    .hero-note { align-items: flex-start; flex-direction: column; }
    .hero-note .button { margin-top: 2px; }
    .section { padding: 85px 0; }
    .intro-split, .experience-grid, .location-feature, .contact-grid, .booking-shell { grid-template-columns: 1fr; gap: 46px; }
    .intro-image { height: 470px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(4) { grid-column: span 1; }
    .service-card:nth-child(4) .service-card-body { min-height: 330px; }
    .location-feature-image { min-height: 330px; }
    .location-feature-copy { padding: 60px 10%; }
    .page-hero { padding: 72px 0 82px; }
    .page-hero-inner { display: block; }
    .page-hero-copy { margin-top: 34px; }
    .service-category, .service-category:nth-child(even) { grid-template-columns: 1fr; gap: 35px; }
    .service-category:nth-child(even) .service-category-media { order: initial; }
    .service-category-media { position: static; }
    .service-category-image { height: 380px; }
    .about-values, .academy-hero, .careers-hero { grid-template-columns: 1fr; gap: 45px; }
    .about-image-band { grid-template-columns: 1fr 1fr; }
    .about-image-band .large, .about-image-band .small { height: 390px; }
    .program-grid { grid-template-columns: 1fr; }
    .program-card:nth-child(2), .program-card:nth-child(3) { margin-top: 0; }
    .academy-hero .hero-image, .careers-hero .hero-image { min-height: 390px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 560px) {
    :root { --shell: calc(100% - 36px); }
    .announcement-inner { min-height: 34px; font-size: 8px; }
    .announcement-inner a { font-size: 8px; }
    .brand-mark { width: 35px; height: 35px; font-size: 19px; }
    .brand-copy strong { font-size: 22px; }
    .brand-copy small { font-size: 7px; }
    .home-hero { min-height: 720px; }
    .home-hero-inner { padding-top: 125px; padding-bottom: 51px; }
    .home-hero .display { font-size: clamp(52px, 16vw, 78px); }
    .hero-stamp { top: auto; right: 0; bottom: 185px; width: 78px; height: 78px; }
    .hero-scroll { margin-top: 46px; }
    .section { padding: 72px 0; }
    .section-heading { display: block; margin-bottom: 30px; }
    .section-heading > p { margin-top: 20px; }
    h2 { font-size: 47px; }
    .lede { font-size: 15px; }
    .intro-image { height: 360px; }
    .service-grid, .location-grid, .service-list, .stat-row { grid-template-columns: 1fr; }
    .service-card, .service-card-body { min-height: 350px; }
    .experience-steps { grid-template-columns: 1fr; }
    .location-feature-image { min-height: 250px; }
    .location-feature-copy { padding: 48px 9%; }
    .page-hero { padding: 63px 0 70px; }
    .page-hero h1 { font-size: 64px; }
    .service-category { padding: 70px 0; }
    .service-category-image { height: 305px; }
    .about-image-band { gap: 8px; }
    .about-image-band .large, .about-image-band .small { height: 260px; }
    .about-image-band .small { margin-top: 35px; }
    .about-note-inner, .footer-cta-inner { display: block; }
    .about-note .button, .footer-cta .button { margin-top: 28px; }
    .contact-detail a, .contact-detail p { font-size: 23px; }
    .faq-item button { font-size: 22px; }
    .career-row { grid-template-columns: 1fr auto; }
    .career-row p { grid-column: 1 / -1; grid-row: 2; }
    .booking-card { padding: 28px 22px; }
    .booking-card h2 { font-size: 42px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
    .footer-brand { grid-column: span 2; }
    .footer-contact a { font-size: 16px; }
    .footer-bottom { display: grid; gap: 5px; }
}

/* Booking form */
.booking-form-card > h2 { margin-bottom: 4px; font-size: 45px; }
.booking-form-card .booking-form { margin-top: 14px; padding-top: 23px; border-top: 1px solid var(--line); }
.booking-inline-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.booking-form .field { min-width: 0; }
.booking-form .field label span { color: var(--muted); font-size: 9px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.booking-form textarea { width: 100%; min-height: 82px; padding: 13px; resize: vertical; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: transparent; outline: none; }
.booking-form textarea:focus { border-color: var(--clay); }
.field-hint { display: block; margin-top: 8px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.booking-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 23px 0; padding: 17px; border: 1px solid var(--line); background: var(--paper); }
.booking-summary div { display: grid; gap: 4px; }
.booking-summary div:last-child { grid-column: span 2; padding-top: 13px; border-top: 1px solid var(--line); }
.booking-summary span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.booking-summary strong { font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.15; }
.booking-summary div:last-child strong { color: var(--clay-deep); font-size: 25px; }
.booking-payment { display: grid; gap: 4px; margin: 23px 0 20px; padding: 15px 17px; border-left: 2px solid var(--clay); background: rgba(215, 194, 174, .24); }
.booking-payment strong { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.booking-payment span { color: var(--muted); font-size: 11px; line-height: 1.55; }
.booking-alert { margin: 17px 0 4px; padding: 13px 15px; font-size: 12px; line-height: 1.55; }
.booking-alert-error { border-left: 2px solid var(--clay); color: var(--clay-deep); background: rgba(168, 94, 72, .1); }
.booking-alert-success { border-left: 2px solid var(--sage); color: var(--sage); background: rgba(101, 113, 105, .12); }
.booking-alert-warning { border-left: 2px solid var(--clay); color: var(--clay-deep); background: rgba(215, 194, 174, .24); }
.booking-result-summary { margin-top: 28px; }
.booking-result-card .button { margin-top: 8px; }
.booking-result-card .button + .button { margin-left: 8px; }
@media (max-width: 560px) {
    .booking-inline-grid { grid-template-columns: 1fr; gap: 0; }
    .booking-summary { gap: 12px; }
    .booking-result-card .button { width: 100%; }
    .booking-result-card .button + .button { margin-top: 10px; margin-left: 0; }
}
