/* ============================================================
   SŪTRA — statesman luxury design system
   sūtra = thread (Sanskrit). Ink, midnight navy, champagne gold.
   ============================================================ */
:root {
    --ink: #060a14;
    --navy: #0a0f1e;
    --navy-2: #0c1226;
    --panel: rgba(255, 255, 255, 0.035);
    --panel-2: rgba(255, 255, 255, 0.015);
    --gold: #c8a55a;
    --gold-bright: #e9c87e;
    --gold-pale: #f6e7bd;
    --gold-deep: #8f6f33;
    --ivory: #f4ecdd;
    --text: #e7e3d8;
    --muted: #a8a595;
    --muted-2: #7c7f8e;
    --hairline: rgba(200, 165, 90, 0.22);
    --hairline-soft: rgba(200, 165, 90, 0.12);
    --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
    --sans: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --gold-gradient: linear-gradient(105deg, #8f6f33 0%, #c8a55a 25%, #f2dda6 48%, #e9c87e 60%, #a8873f 85%, #8f6f33 100%);
    --max: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    font-weight: 300;
    background: var(--ink);
    color: var(--text);
    line-height: 1.7;
    font-size: 1rem;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: rgba(200, 165, 90, 0.35); color: var(--ivory); }

img { max-width: 100%; display: block; }

a { color: var(--gold-bright); text-decoration: none; }

/* Accessibility */
.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 300;
    background: var(--gold); color: var(--ink); padding: 0.75rem 1.5rem;
    font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

:focus-visible {
    outline: 1px solid var(--gold-bright);
    outline-offset: 3px;
}

/* Film grain */
.grain {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 120; opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Gold scroll progress */
.progress {
    position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 210;
    background: var(--gold-gradient);
    transform-origin: 0 50%; transform: scaleX(0);
    pointer-events: none;
}

/* Custom cursor (fine pointers, JS-enabled) */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
    body.custom-cursor, body.custom-cursor a, body.custom-cursor button { cursor: none; }
    body.custom-cursor .cursor-dot, body.custom-cursor .cursor-ring {
        display: block; position: fixed; top: 0; left: 0; z-index: 250;
        pointer-events: none; border-radius: 50%;
        will-change: transform;
    }
    body.custom-cursor .cursor-dot {
        width: 5px; height: 5px; margin: -2.5px 0 0 -2.5px;
        background: var(--gold-bright);
    }
    body.custom-cursor .cursor-ring {
        width: 34px; height: 34px; margin: -17px 0 0 -17px;
        border: 1px solid rgba(200, 165, 90, 0.55);
        transition: width 0.3s var(--ease), height 0.3s var(--ease), margin 0.3s var(--ease), border-color 0.3s var(--ease);
    }
    body.custom-cursor .cursor-ring.is-active {
        width: 56px; height: 56px; margin: -28px 0 0 -28px;
        border-color: rgba(233, 200, 126, 0.9);
    }
}

/* ---------- Typography ---------- */
.label {
    font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.42em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
}
.label::before {
    content: ""; display: inline-block; vertical-align: middle;
    width: 2.4rem; height: 1px; margin-right: 1rem;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.label-center::after {
    content: ""; display: inline-block; vertical-align: middle;
    width: 2.4rem; height: 1px; margin-left: 1rem;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.title {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    line-height: 1.12; color: var(--ivory);
    letter-spacing: 0.005em;
    margin-bottom: 1.5rem;
}
.title em { font-style: italic; font-weight: 400; }

.gold-text {
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.lede {
    font-size: 1.05rem; color: var(--muted); max-width: 620px;
    font-weight: 300; line-height: 1.85;
}
.lede-center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    position: relative; display: inline-flex; align-items: center; gap: 0.7rem;
    font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    padding: 1.15rem 2.4rem; overflow: hidden;
    transition: color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--ease);
    will-change: transform;
}
.btn svg { transition: transform 0.4s var(--ease); flex: none; }
.btn:hover svg { transform: translateX(4px); }
.btn::after {
    content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 60%;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
    transform: translateX(-160%) skewX(-18deg);
    pointer-events: none;
}
.btn:hover::after { transition: transform 0.9s var(--ease); transform: translateX(320%) skewX(-18deg); }

.btn-gold {
    background: var(--gold-gradient); background-size: 200% auto;
    color: #131008; border: none;
}
.btn-gold:hover { color: #000; }

.btn-ghost {
    background: rgba(200, 165, 90, 0.04);
    border: 1px solid var(--hairline);
    color: var(--ivory);
}
.btn-ghost:hover { border-color: rgba(233, 200, 126, 0.65); color: var(--gold-pale); }

/* ---------- Nav ---------- */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.9rem clamp(1.25rem, 4vw, 4rem);
    transition: padding 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
    border-bottom: 1px solid transparent;
}
nav.scrolled {
    padding: 0.95rem clamp(1.25rem, 4vw, 4rem);
    background: rgba(6, 10, 20, 0.72);
    -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
    border-bottom-color: var(--hairline-soft);
}
.logo {
    font-family: var(--serif); font-size: 1.55rem; font-weight: 500;
    letter-spacing: 0.34em; color: var(--ivory);
}
.nav-links { display: flex; gap: 2.6rem; list-style: none; }
.nav-links a {
    font-size: 0.7rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--muted); position: relative; padding: 0.4rem 0;
    transition: color 0.35s var(--ease);
}
.nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
    background: var(--gold); transform: scaleX(0); transform-origin: 100% 50%;
    transition: transform 0.45s var(--ease);
}
.nav-links a:hover { color: var(--gold-pale); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
.nav-cta {
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--gold-pale); border: 1px solid var(--hairline); padding: 0.75rem 1.6rem;
    transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.nav-toggle {
    display: none; background: none; border: none; width: 42px; height: 42px;
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    z-index: 220; cursor: pointer;
}
.nav-toggle span {
    display: block; width: 24px; height: 1px; background: var(--ivory);
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 190;
    background: rgba(6, 10, 20, 0.96);
    -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
    opacity: 0; visibility: hidden; transform: translateY(-2%);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
    font-family: var(--serif); font-size: 2rem; color: var(--ivory);
    letter-spacing: 0.06em;
}
.mobile-menu a:hover { color: var(--gold-bright); }
.mobile-menu .mobile-menu-cta {
    font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase;
    border: 1px solid var(--hairline); padding: 1rem 2.2rem; color: var(--gold-pale);
}

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 9rem clamp(1.25rem, 6vw, 6rem) 5rem;
    overflow: hidden; isolation: isolate;
}
.hero-backdrop {
    position: absolute; inset: 0; z-index: -2;
    background:
        radial-gradient(120% 90% at 78% 30%, rgba(200, 165, 90, 0.16) 0%, rgba(200, 165, 90, 0.045) 34%, transparent 62%),
        radial-gradient(80% 70% at 15% 85%, rgba(23, 34, 68, 0.85) 0%, transparent 60%),
        linear-gradient(168deg, #0a0f1e 0%, #060a14 55%, #05070f 100%);
}
.hero-backdrop::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(60% 45% at 70% 40%, rgba(233, 200, 126, 0.10), transparent 70%);
}
#thread-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: -1; opacity: 0; transition: opacity 2.2s ease;
}
#thread-canvas.live { opacity: 1; }
.hero-vignette {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(6,10,20,0.55) 0%, transparent 26%, transparent 62%, rgba(6,10,20,0.92) 100%);
}

.hero-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; width: 100%; }
.hero-eyebrow {
    display: flex; align-items: center; gap: 1.2rem;
    font-size: 0.7rem; font-weight: 500; letter-spacing: 0.5em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2.4rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: ""; height: 1px; width: 3rem; flex: none;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero h1 {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(2.5rem, 6.4vw, 5.4rem);
    line-height: 1.08; letter-spacing: 0.002em;
    color: var(--ivory); max-width: 21ch;
    margin-bottom: 2.2rem;
}
.hero h1 em { font-style: italic; }

.hero-lede {
    font-size: 1.08rem; line-height: 1.9; color: var(--muted);
    max-width: 560px; margin-bottom: 3rem;
}
.hero-lede strong { color: var(--text); font-weight: 400; }

.hero-cta { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 4.5rem; }

.hero-stats {
    display: flex; gap: clamp(2rem, 5vw, 4.5rem); flex-wrap: wrap;
    border-top: 1px solid var(--hairline-soft);
    padding-top: 2.2rem; max-width: 720px;
}
.hero-stat .num {
    font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 2.9rem); line-height: 1;
    font-weight: 500;
}
.hero-stat .cap {
    font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase;
    color: var(--muted-2); margin-top: 0.6rem;
}

.hero-scroll {
    position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
    z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
    font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--muted-2);
}
.hero-scroll::after {
    content: ""; width: 1px; height: 3.4rem;
    background: linear-gradient(180deg, var(--gold), transparent);
}

/* ---------- Marquee ---------- */
.marquee {
    border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft);
    padding: 1.4rem 0; overflow: hidden; background: rgba(255, 255, 255, 0.012);
}
.marquee-track {
    display: flex; width: max-content;
    animation: marquee 46s linear infinite;
    will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
    font-family: var(--serif); font-size: 0.95rem; letter-spacing: 0.5em;
    text-transform: uppercase; color: var(--muted-2);
    white-space: nowrap; padding: 0 1.6rem;
    display: inline-flex; align-items: center; gap: 3.2rem;
}
.marquee-track span::after { content: "\00B7"; color: var(--gold); font-size: 1.2rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { position: relative; padding: clamp(5.5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6rem); }
.wrap { max-width: var(--max); margin: 0 auto; }

/* Thread interstitial */
.thread-band { text-align: center; }
.thread-band .sanskrit {
    font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.4rem);
    letter-spacing: 0.55em; text-transform: uppercase; color: var(--gold);
    margin-bottom: 2.4rem;
}
.thread-band blockquote {
    font-family: var(--serif); font-weight: 300; font-style: italic;
    font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.35;
    color: var(--ivory); max-width: 26ch; margin: 0 auto;
}
.thread-band blockquote em { color: var(--gold-bright); }
.thread-line {
    width: 1px; height: 5rem; margin: 3rem auto 0;
    background: linear-gradient(180deg, var(--gold), transparent);
}

/* About */
.about-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center; margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}
.about-media { position: relative; overflow: hidden; }
.about-media img {
    width: 100%; height: 100%; min-height: 380px; object-fit: cover;
    filter: saturate(0.75) contrast(1.05) brightness(0.88);
    transform: scale(1.06); transition: transform 1.6s var(--ease);
}
.about-media:hover img { transform: scale(1.0); }
.about-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6,10,20,0.55));
    box-shadow: inset 0 0 0 1px var(--hairline-soft);
}
.frame {
    position: absolute; inset: 1rem; border: 1px solid rgba(233, 200, 126, 0.22);
    pointer-events: none; z-index: 2;
}

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* Glass card + gold edge light */
.glass {
    position: relative;
    background: linear-gradient(158deg, var(--panel), var(--panel-2));
    border: 1px solid var(--hairline-soft);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    padding: 2.6rem 2.2rem;
    overflow: hidden;
    transition: border-color 0.5s var(--ease);
    will-change: transform;
}
.glass::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, -20%), rgba(233, 200, 126, 0.13), transparent 65%);
    opacity: 0; transition: opacity 0.5s var(--ease);
}
.glass:hover { border-color: var(--hairline); }
.glass:hover::before { opacity: 1; }
.glass h3 {
    font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 1rem;
}
.glass p { color: var(--muted); font-size: 0.95rem; }
.glass .card-num {
    font-family: var(--serif); font-style: italic; font-size: 0.95rem;
    color: var(--gold); display: block; margin-bottom: 1.4rem; letter-spacing: 0.2em;
}

/* ---------- Roster (calibre) ---------- */
.roster { background: linear-gradient(180deg, var(--ink) 0%, var(--navy) 45%, var(--ink) 100%); }
.roster-head { max-width: 720px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.roster-grid {
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}
.roster-index { list-style: none; }
.roster-item { border-bottom: 1px solid var(--hairline-soft); }
.roster-item:first-child { border-top: 1px solid var(--hairline-soft); }
.roster-item button {
    display: grid; grid-template-columns: 3.4rem 1fr auto; align-items: baseline; gap: 1.2rem;
    width: 100%; background: none; border: none; text-align: left;
    padding: 1.9rem 0.4rem; cursor: pointer; font: inherit; color: inherit;
}
.roster-item .numeral {
    font-family: var(--serif); font-style: italic; font-size: 0.95rem;
    color: var(--muted-2); letter-spacing: 0.15em;
    transition: color 0.4s var(--ease);
}
.roster-item .name {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.15;
    color: var(--muted);
    transition: color 0.4s var(--ease), transform 0.5s var(--ease);
    will-change: transform;
}
.roster-item .mark {
    font-family: var(--serif); font-size: 1.4rem; color: var(--gold);
    opacity: 0; transform: translateX(-8px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.roster-item.active .numeral { color: var(--gold); }
.roster-item.active .name {
    transform: translateX(10px);
    background: var(--gold-gradient); background-size: 200% auto;
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
}
.roster-item.active .mark { opacity: 1; transform: none; }
.roster-item .roster-note {
    grid-column: 2 / -1; font-size: 0.9rem; color: var(--muted);
    max-width: 46ch; padding-top: 0.5rem; display: none; line-height: 1.6;
}

.roster-stage { position: sticky; top: 7.5rem; }
.roster-visual { position: relative; overflow: hidden; aspect-ratio: 4 / 4.6; }
.roster-visual img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.7) contrast(1.06) brightness(0.82);
    opacity: 0; transform: scale(1.07);
    transition: opacity 0.9s var(--ease), transform 1.4s var(--ease);
}
.roster-visual img.show { opacity: 1; transform: scale(1); }
.roster-visual::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,10,20,0.15), transparent 40%, rgba(6,10,20,0.78));
    box-shadow: inset 0 0 0 1px var(--hairline-soft);
}
.roster-caption {
    position: absolute; left: 1.8rem; right: 1.8rem; bottom: 1.6rem; z-index: 2;
}
.roster-caption .cap-num {
    font-family: var(--serif); font-style: italic; color: var(--gold-bright);
    font-size: 0.9rem; letter-spacing: 0.2em; display: block; margin-bottom: 0.5rem;
}
.roster-caption p {
    font-size: 0.92rem; color: var(--text); line-height: 1.6;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.6s var(--ease) 0.15s, transform 0.6s var(--ease) 0.15s;
}
.roster-caption p.show { opacity: 1; transform: none; }

.roster-discretion {
    margin-top: clamp(3rem, 6vw, 4.5rem); padding-top: 2.6rem;
    border-top: 1px solid var(--hairline-soft);
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.roster-discretion p {
    font-family: var(--serif); font-style: italic;
    font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--ivory); max-width: 42ch;
}
.roster-discretion p span { color: var(--gold-bright); }

/* ---------- Speaker tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.tier {
    position: relative; overflow: hidden;
    border: 1px solid var(--hairline-soft);
    background: linear-gradient(180deg, var(--panel), var(--panel-2));
    transition: border-color 0.5s var(--ease);
    will-change: transform;
}
.tier:hover { border-color: var(--hairline); }
.tier-media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.tier-media img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.7) contrast(1.05) brightness(0.85);
    transform: scale(1.04); transition: transform 1.4s var(--ease);
}
.tier:hover .tier-media img { transform: scale(1.12); }
.tier-media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6,10,20,0.85));
}
.tier-body { padding: 2rem 2rem 2.4rem; }
.tier-tag {
    font-size: 0.64rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.9rem;
}
.tier-body h3 {
    font-family: var(--serif); font-size: 1.65rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 0.9rem;
}
.tier-body p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.service { padding: 2.4rem 1.9rem; }
.service .icon {
    width: 52px; height: 52px; display: grid; place-items: center;
    border: 1px solid var(--hairline); border-radius: 50%;
    color: var(--gold-bright); margin-bottom: 1.6rem;
}
.service h4 {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 0.7rem;
}
.service p { font-size: 0.88rem; color: var(--muted); }

/* ---------- Statement band ---------- */
.statement {
    text-align: center;
    background:
        radial-gradient(70% 90% at 50% 110%, rgba(200,165,90,0.10), transparent 65%),
        var(--navy);
    border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft);
}
.statement blockquote {
    font-family: var(--serif); font-weight: 300; font-style: italic;
    font-size: clamp(1.6rem, 3.4vw, 2.7rem); line-height: 1.4;
    color: var(--ivory); max-width: 30ch; margin: 0 auto;
}
.statement blockquote em { color: var(--gold-bright); }

/* ---------- Gallery ---------- */
.gallery { padding: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.gallery-item { overflow: hidden; position: relative; aspect-ratio: 3 / 3.7; }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.6) contrast(1.08) brightness(0.72);
    transform: scale(1.02);
    transition: transform 1.4s var(--ease), filter 1.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); filter: saturate(0.85) contrast(1.05) brightness(0.9); }
.gallery-item::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6,10,20,0.3), transparent 40%, rgba(6,10,20,0.4));
    pointer-events: none;
}

/* ---------- Principles ---------- */
.principles { background: linear-gradient(180deg, var(--ink), var(--navy-2) 60%, var(--ink)); }
.principles-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--hairline-soft); border-left: 1px solid var(--hairline-soft);
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.principle {
    padding: 2.6rem 2.2rem;
    border-right: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft);
    position: relative; overflow: hidden;
}
.principle::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%), rgba(233,200,126,0.08), transparent 65%);
    opacity: 0; transition: opacity 0.5s var(--ease); pointer-events: none;
}
.principle:hover::before { opacity: 1; }
.principle .p-num {
    font-family: var(--serif); font-style: italic; font-size: 1rem;
    color: var(--gold); letter-spacing: 0.25em; display: block; margin-bottom: 1.6rem;
}
.principle h4 {
    font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 0.8rem;
}
.principle p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Split layouts ---------- */
.split {
    display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}
.split-media { position: relative; overflow: hidden; }
.split-media img {
    width: 100%; height: 100%; min-height: 400px; object-fit: cover;
    filter: saturate(0.7) contrast(1.05) brightness(0.85);
}
.split-media::after {
    content: ""; position: absolute; inset: 0;
    box-shadow: inset 0 0 0 1px var(--hairline-soft);
    background: linear-gradient(180deg, transparent 55%, rgba(6,10,20,0.5));
}
.split-text .lede { margin-bottom: 2.2rem; }

/* ---------- Bootcamp ---------- */
.bootcamp { background: linear-gradient(180deg, var(--ink), var(--navy) 40%, var(--ink)); }
.bootcamp-head { text-align: center; max-width: 760px; margin: 0 auto clamp(3rem, 6vw, 5rem); }
.bootcamp-why { margin-bottom: clamp(3rem, 6vw, 5rem); }
.bootcamp-why h3, .program h3, .process-block h3, .blog-split h3 {
    font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400;
    color: var(--ivory); margin-bottom: 1.4rem;
}
.bootcamp-why p, .blog-split p { color: var(--muted); margin-bottom: 1.2rem; font-size: 0.98rem; }
.bootcamp-why blockquote {
    font-family: var(--serif); font-style: italic; font-size: 1.45rem; line-height: 1.5;
    color: var(--gold-bright); border-left: 1px solid var(--gold);
    padding-left: 1.6rem; margin: 2rem 0;
}

.stats-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-bottom: clamp(3.5rem, 6vw, 5.5rem); }
.stat-card { text-align: center; padding: 3rem 1.8rem; }
.stat-card .num {
    font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 1;
    display: block; margin-bottom: 1.1rem;
}
.stat-card p { font-size: 0.86rem; color: var(--muted); max-width: 30ch; margin: 0 auto; }

.program { max-width: 860px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); text-align: center; }
.program .reveal > p { color: var(--muted); max-width: 60ch; margin: 0 auto 3rem; }
.modules { text-align: left; border-top: 1px solid var(--hairline-soft); }
.module {
    display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.6rem; align-items: start;
    padding: 1.9rem 0.4rem; border-bottom: 1px solid var(--hairline-soft);
}
.module .m-num {
    font-family: var(--serif); font-style: italic; font-size: 1.9rem; line-height: 1;
    color: var(--gold); padding-top: 0.2rem;
}
.module h4 {
    font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
    color: var(--ivory); margin-bottom: 0.5rem;
    transition: color 0.4s var(--ease);
}
.module:hover h4 { color: var(--gold-pale); }
.module p { font-size: 0.92rem; color: var(--muted); max-width: 62ch; }

.bootcamp-cta { text-align: center; }
.bootcamp-cta h3 {
    font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 400;
    color: var(--ivory); margin-bottom: 0.9rem;
}
.bootcamp-cta > p { color: var(--muted); margin-bottom: 2.2rem; }
.gold-note { color: var(--gold-bright); font-style: italic; font-family: var(--serif); font-size: 1.05rem; }

/* ---------- Blog service ---------- */
.blog-head { text-align: center; max-width: 760px; margin: 0 auto clamp(3rem, 6vw, 5rem); }
.blog-split { margin-bottom: clamp(3rem, 6vw, 5rem); }
.blog-split ul { list-style: none; margin-top: 1.6rem; }
.blog-split li {
    display: flex; gap: 0.9rem; align-items: baseline;
    padding: 0.7rem 0; color: var(--text); font-size: 0.95rem;
    border-bottom: 1px solid var(--hairline-soft);
}
.blog-split li::before { content: "\2014"; color: var(--gold); flex: none; }

.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-bottom: clamp(3rem, 6vw, 5rem); }

.process-block { text-align: center; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.6rem; text-align: left; }
.step { padding: 2.2rem 1.8rem; }
.step .s-num {
    font-family: var(--serif); font-style: italic; font-size: 2.2rem; line-height: 1;
    color: var(--gold); display: block; margin-bottom: 1.2rem;
}
.step h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--ivory); margin-bottom: 0.6rem; }
.step p { font-size: 0.88rem; color: var(--muted); }
.blog-cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ---------- Founders ---------- */
.founders-head { text-align: center; max-width: 720px; margin: 0 auto clamp(3rem, 6vw, 5rem); }
.founders-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 460px)); gap: 1.6rem; justify-content: center;
}
.founder { text-align: center; padding: 3rem 2.4rem; }
.founder-photo {
    width: 168px; height: 168px; margin: 0 auto 1.8rem; border-radius: 50%;
    padding: 5px; position: relative;
    background: conic-gradient(from 210deg, var(--gold-deep), var(--gold-bright), rgba(200,165,90,0.15), var(--gold-deep));
}
.founder-photo img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
    border: 4px solid var(--ink);
    filter: saturate(0.9);
}
.founder h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: var(--ivory); margin-bottom: 0.3rem; }
.founder .role {
    font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.3rem;
}
.founder .bio { font-size: 0.92rem; color: var(--muted); max-width: 40ch; margin: 0 auto; }

/* ---------- Trusted by ---------- */
.trusted { text-align: center; padding-top: clamp(3.5rem, 6vw, 5rem); padding-bottom: clamp(3.5rem, 6vw, 5rem); }
.trusted .t-label {
    font-size: 0.66rem; letter-spacing: 0.42em; text-transform: uppercase;
    color: var(--muted-2); margin-bottom: 2.4rem;
}
.trusted-logos {
    display: flex; justify-content: center; align-items: baseline;
    gap: clamp(1.8rem, 5vw, 4.5rem); flex-wrap: wrap;
}
.trusted-logos span {
    font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.35rem);
    letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
    opacity: 0.75; transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
}
.trusted-logos span:hover { opacity: 1; color: var(--gold-pale); }

/* ---------- Contact ---------- */
.contact {
    text-align: center;
    background:
        radial-gradient(65% 80% at 50% 115%, rgba(200,165,90,0.14), transparent 65%),
        linear-gradient(180deg, var(--ink), var(--navy));
    border-top: 1px solid var(--hairline-soft);
}
.contact .title { margin-left: auto; margin-right: auto; }
.contact .lede { margin-bottom: 3rem; }
.contact-email {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(1.7rem, 4.5vw, 3.2rem);
    display: inline-block; margin-bottom: 2.2rem;
    position: relative; padding-bottom: 0.4rem;
}
.contact-email::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: var(--gold-gradient);
    transform: scaleX(0.35); transform-origin: 50% 50%;
    transition: transform 0.6s var(--ease);
}
.contact-email:hover::after { transform: scaleX(1); }
.contact-cities {
    font-size: 0.72rem; letter-spacing: 0.42em; text-transform: uppercase;
    color: var(--muted-2);
}

/* ---------- Footer ---------- */
footer {
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
    padding: 2.4rem clamp(1.25rem, 6vw, 6rem);
    border-top: 1px solid var(--hairline-soft);
    background: var(--ink);
}
.footer-logo { font-family: var(--serif); font-size: 1.2rem; letter-spacing: 0.34em; }
footer .footer-text { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--muted-2); }

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
    transition-delay: var(--d, 0s);
    will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .services-grid, .benefits, .process { grid-template-columns: repeat(2, 1fr); }
    .principles-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .about-grid, .split, .roster-grid { grid-template-columns: 1fr; }
    .roster-stage { position: static; }
    .roster-visual { aspect-ratio: 16 / 10; }
    .cards-3, .tiers, .stats-3 { grid-template-columns: 1fr; }
    .founders-grid { grid-template-columns: minmax(0, 460px); }
    .split-media { order: -1; }
    .split-media img { min-height: 280px; }
    .roster-item .roster-note { display: block; }
}
@media (max-width: 560px) {
    .services-grid, .benefits, .process, .principles-grid { grid-template-columns: 1fr; }
    .module { grid-template-columns: 3rem 1fr; gap: 1rem; }
    .hero { padding-top: 7.5rem; padding-bottom: 6rem; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .roster-item button { grid-template-columns: 2.4rem 1fr auto; gap: 0.8rem; padding: 1.4rem 0.2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { aspect-ratio: 1 / 1.15; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001s !important;
    }
    .reveal { opacity: 1; transform: none; }
    .marquee-track { animation: none; }
    #thread-canvas { display: none; }
    .hero-scroll::after { background: var(--hairline); }
}
