:root {
    --black: #070707;
    --void: #0c0c0c;
    --steel: #161616;
    --gold: #e8c36a;
    --gold-2: #f3d58a;
    --gold-deep: #c9a24a;
    --ink: #1a1408;
    --silver: #f3f0ea;
    --muted: #c9c4bb;
    --line: rgba(232, 195, 106, 0.35);
    --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
    --font-body: "Barlow", "Segoe UI", sans-serif;
    --wrap: min(1280px, calc(100% - 3rem));
    --header: 112px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--black);
    color: var(--silver);
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: underline; text-underline-offset: 0.18em; }
a:hover { color: var(--gold-2); }
a:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    color: #f4f4f4;
    line-height: 0.92;
    letter-spacing: 0.04em;
    margin: 0 0 0.6rem;
}
h1 { font-size: clamp(2.8rem, 7vw, 6.2rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.45rem; letter-spacing: 0.08em; }

.sr-only, .skip-link {
    position: absolute;
}
.sr-only {
    width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0);
}
.skip-link {
    left: 1rem; top: -5rem; background: var(--gold); color: #111; padding: 0.5rem 1rem; z-index: 80;
}
.skip-link:focus { top: 1rem; }
.wrap { width: var(--wrap); margin-inline: auto; }

.wordmark {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}
.wordmark--header {
    width: auto;
    height: auto;
    max-height: 72px;
    max-width: min(560px, 78vw);
    object-fit: contain;
    object-position: left center;
}
.wordmark--footer {
    width: auto;
    height: auto;
    max-height: 64px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 0.85rem;
}
.wordmark--hero {
    width: min(980px, 94vw);
    height: auto;
    margin: 0 auto 1.6rem;
    object-fit: contain;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.header-inner {
    width: var(--wrap);
    margin-inline: auto;
    min-height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.brand { color: inherit; display: flex; align-items: center; text-decoration: none; }
.brand:hover { color: inherit; }
.brand-tag {
    font-size: 0.58rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--muted);
}
.header-gold, .footer-gold {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-deep) 12%, var(--gold) 50%, var(--gold-2) 72%, transparent 100%);
}
.nav-toggle {
    display: none;
    width: 48px; height: 48px;
    background: transparent;
    border: 2px solid var(--gold);
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-list, .footer-nav {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 1.25rem;
}
.nav-list a, .footer-nav a {
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
}
.nav-list a:hover, .nav-list .current-menu-item a, .nav-list .is-current a { color: var(--gold); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.7rem 1.35rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1.2;
}
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--silver); border-color: var(--silver); }
.btn-ghost:hover { background: var(--silver); color: var(--ink); }
.btn-sm { min-height: 48px; padding: 0.65rem 1.2rem; font-size: 0.9375rem; }

/* Hero — visiting card geometry over cinematic bay */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: stretch;
    overflow: hidden;
    color: #fff;
}
.hero-media {
    position: absolute;
    inset: 0;
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.08);
}
.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,7,7,0.35) 0%, rgba(7,7,7,0.55) 42%, rgba(7,7,7,0.88) 78%, #070707 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 3px);
}
.hero-copy {
    position: relative;
    z-index: 2;
    align-self: end;
    padding: 8rem 0 8.5rem;
    text-align: center;
}
.hero-kicker {
    font-size: 0.875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 1.2rem;
}
.hero-tag {
    letter-spacing: 0.48em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
    margin: 0.35rem 0 1.6rem;
}
.hero-lede {
    max-width: 36rem;
    margin: 0 auto 2rem;
    color: rgba(232,232,232,0.86);
    font-size: 1.15rem;
}
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.85rem; }
.hero-gold-cut {
    position: absolute;
    z-index: 3;
    left: 0; right: 0; bottom: 0;
    height: 92px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.18), transparent 40%),
        repeating-linear-gradient(90deg, #b8944c 0 2px, #c4a056 2px 4px);
    clip-path: polygon(0 48%, 62% 48%, 74% 0, 100% 0, 100% 100%, 0 100%);
}

.ticker {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: #0a0a0a;
    white-space: nowrap;
}
.ticker-track {
    display: inline-flex;
    gap: 2.5rem;
    padding: 0.85rem 0;
    animation: ticker 28s linear infinite;
    font-family: var(--font-display);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-size: 0.95rem;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.centre {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 78vh;
}
.centre-copy {
    padding: 5.5rem 6% 5rem;
    background: var(--void);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.centre-copy .lede { max-width: 36rem; font-size: 1.18rem; color: #cfcfcf; }
.lanes { margin-top: 2.4rem; display: grid; gap: 0; }
.lane {
    display: grid;
    grid-template-columns: 4.2rem 1fr;
    gap: 1rem;
    padding: 1.15rem 0;
    border-top: 1px solid var(--line);
}
.lane strong {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 0.12em;
}
.lane h3 { margin: 0 0 0.25rem; font-size: 1.35rem; }
.lane p { margin: 0; color: var(--muted); }
.centre-photo { position: relative; min-height: 420px; }
.centre-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.centre-photo figcaption {
    position: absolute;
    left: 1.25rem; bottom: 1.25rem;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0.45);
    padding: 0.4rem 0.7rem;
}

.facility {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid var(--line);
}
.facility article {
    padding: 1.8rem 1.4rem 1.9rem;
    border-right: 1px solid var(--line);
    background: #0b0b0b;
}
.facility article:last-child { border-right: 0; }
.facility span {
    display: block;
    font-family: var(--font-display);
    color: var(--gold);
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    margin-bottom: 0.45rem;
}
.facility p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.programmes { padding: 5rem 0 2rem; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.2rem;
}
.section-head p { max-width: 28rem; color: var(--muted); margin: 0; }
.eyebrow {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.7rem;
}

.feature-programme {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    min-height: 560px;
    margin-bottom: 1.25rem;
    border: 1px solid var(--line);
}
.feature-programme img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.feature-body {
    padding: 2.5rem 2.2rem;
    background: var(--steel);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.feature-body .meta-line { margin: 0.4rem 0 1.1rem; }
.rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.programme-tile {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid var(--line);
    isolation: isolate;
}
.programme-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: -1;
    filter: brightness(0.45) saturate(0.8);
    transition: transform 0.6s ease;
}
.programme-tile:hover img { transform: scale(1.06); }
.programme-tile .tile-copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.25rem 1.1rem 1.3rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.92));
}
.card-code {
    font-family: var(--font-display);
    letter-spacing: 0.24em;
    color: var(--gold);
    font-size: 0.8rem;
    margin: 0 0 0.35rem;
}

.meta-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
}
.gold { color: var(--gold); }
.text-link {
    font-family: var(--font-display);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.process {
    padding: 4.5rem 0 5rem;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 1.5rem;
}
.process-grid::before {
    content: "";
    position: absolute;
    top: 1.15rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.process-grid article { position: relative; }
.process-grid strong {
    display: inline-flex;
    width: 2.2rem; height: 2.2rem;
    align-items: center; justify-content: center;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-display);
    background: var(--black);
    margin-bottom: 1rem;
}

.founder-stage {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #0a0a0a;
    border-block: 1px solid var(--line);
}
.founder-stage .card-art {
    margin: 0;
    min-height: 460px;
    position: relative;
    background: #111;
}
.founder-stage .card-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 2rem;
}
.founder-copy { padding: 4.5rem 8% 4.5rem; display: flex; flex-direction: column; justify-content: center; }
.pullquote {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.15;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 1.4rem;
}

.cta-slab {
    position: relative;
    padding: 4.5rem 0 5rem;
    color: #1a1408;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.12), transparent 35%),
        repeating-linear-gradient(90deg, #b38a3e 0 2px, #c4a056 2px 4px);
    clip-path: polygon(0 18%, 70% 18%, 78% 0, 100% 0, 100% 100%, 0 100%);
    padding-top: 6rem;
}
.cta-slab h2, .cta-slab .eyebrow { color: #1a1408; }
.cta-slab .eyebrow { opacity: 0.7; }
.cta-slab p { max-width: 36rem; }
.cta-slab .btn-ghost { border-color: #1a1408; color: #1a1408; }
.cta-slab .btn-ghost:hover { background: #1a1408; color: var(--gold); }

.page-hero {
    position: relative;
    min-height: 42vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 7rem 0 2.8rem;
}
.page-hero--photo { min-height: 52vh; }
.page-hero-media {
    position: absolute;
    inset: 0;
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.38); }
.page-hero .wrap { position: relative; z-index: 1; }
.lede { max-width: 40rem; font-size: 1.15rem; }

.split {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.8rem;
    padding: 3.2rem 0 5.5rem;
}
.prose p, .prose li { max-width: 42rem; }
.booking-form { display: grid; gap: 1rem; }
.booking-form label { display: grid; gap: 0.35rem; }
.booking-form span {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.68rem;
    color: var(--muted);
}
.booking-form input, .booking-form select, .booking-form textarea {
    background: #0a0a0a;
    color: #f0f0f0;
    border: 1px solid var(--line);
    padding: 0.8rem 0.9rem;
    font: inherit;
    min-height: 46px;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
    outline: 2px solid var(--gold);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { color: var(--muted); font-size: 0.9rem; }
.form-alert { color: #e8b4b4; border: 1px solid #8a3a3a; padding: 0.8rem 1rem; }
.form-ok { color: #c6e8b4; border: 1px solid #3a6a3a; padding: 0.8rem 1rem; }
.booking-wide { max-width: 640px; padding: 2.5rem 0 5rem; }
.booking-panel, .contact-card {
    background: var(--steel);
    border: 1px solid var(--line);
    padding: 1.6rem 1.45rem;
}
.faq-list { padding: 2rem 0 5.5rem; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq-list summary {
    cursor: pointer;
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1.25rem;
    color: #f2f2f2;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.confirm-dl { display: grid; gap: 1rem; margin: 1.5rem 0; }
.confirm-dl div { border-left: 3px solid var(--gold); padding-left: 1rem; }
.confirm-dl dt { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; }
.confirm-dl dd { margin: 0.2rem 0 0; color: #fff; font-size: 1.25rem; }

.service-card {
    background: var(--steel);
    border: 1px solid var(--line);
    overflow: hidden;
}
.service-card img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.service-card .card-pad { padding: 1.2rem 1.2rem 1.35rem; }

.site-footer { background: #0a0a0a; border-top: 1px solid var(--line); }
.footer-shell {
    width: var(--wrap);
    margin-inline: auto;
    padding: 2.6rem 0 2rem;
}
.footer-logo { display: inline-block; text-decoration: none; margin-bottom: 2rem; }
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: start;
    padding: 0 0 2rem;
}
.footer-inner h2 {
    font-size: 1.15rem;
    margin: 0 0 0.85rem;
    letter-spacing: 0.08em;
}
.footer-inner p {
    margin: 0 0 0.55rem;
    color: var(--silver);
    font-size: 1rem;
}
.footer-cta { display: grid; gap: 0.75rem; justify-items: start; }
.footer-cta .btn { width: auto; min-width: 12rem; }
.footer-links { padding: 1.2rem 0 1rem; border-top: 1px solid var(--line); }
.footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    margin-top: 0;
}
.copyright {
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 1rem;
}

@media (max-width: 980px) {
    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute;
        left: 0; right: 0; top: 100%;
        background: #0d0d0d;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 1.25rem 1.5rem;
        border-bottom: 1px solid var(--line);
    }
    .is-open .site-nav { display: flex; }
    .nav-list { flex-direction: column; }
    .centre, .feature-programme, .split, .footer-inner, .form-grid, .process-grid, .facility, .rail {
        grid-template-columns: 1fr;
    }
    .facility article { border-right: 0; border-bottom: 1px solid var(--line); }
    .hero-gold-cut { clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%); }
    .section-head { flex-direction: column; align-items: start; }
    .hero-copy { text-align: left; padding-bottom: 7rem; }
    .hero-lede { margin-left: 0; }
    .hero-actions { justify-content: flex-start; }
}
