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

    :root {
      --purple:      #41177A;
      --purple-deep: #1F0A3D;
      --purple-soft: #6E3CB0;
      --purple-lt:   #AF7DF3;
      --gold:        #F3C626;
      --gold-deep:   #DCAF10;
      --cream:       #F4F1EA;
      --ink:         #0F0814;
      --gray:        #7B7E86;
      --gray-line:   #D9D6CF;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Roboto', sans-serif; background: var(--cream); color: var(--ink); overflow-x: clip; }

    .display { font-family: 'Jost', sans-serif; font-weight: 900; line-height: .85; letter-spacing: -.02em; text-transform: uppercase; }
    .serif-i { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -.01em; text-transform: none; }

    /* ─── LOADER ─────────────────────────────────────────────── */
    .loader { position: fixed; inset: 0; background: var(--purple); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 40px; transition: opacity .8s ease, visibility .8s ease; }
    .loader.hide { opacity: 0; visibility: hidden; }
    .loader-mark { font-family: 'Jost', sans-serif; font-weight: 900; font-size: 64px; color: var(--gold); letter-spacing: -.04em; text-align: center; line-height: 1; }
    .loader-mark em { font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; color: var(--cream); display: inline-block; transform: translateY(2px); }
    .loader-mark .sub { display: block; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .25em; color: rgba(255,255,255,.6); text-transform: uppercase; margin-top: 14px; }
    .loader-bar { width: 280px; height: 2px; background: rgba(255,255,255,.15); overflow: hidden; }
    .loader-bar::after { content: ''; display: block; height: 100%; background: var(--gold); animation: loadbar 1.4s ease forwards; transform-origin: left; }
    @keyframes loadbar { from { transform: scaleX(0); } to { transform: scaleX(1); } }

    /* ─── TOP BAR ─────────────────────────────────────────────── */
    .topbar { background: var(--purple-deep); color: rgba(255,255,255,.7); display: flex; justify-content: space-between; align-items: center; padding: 0 44px; height: 36px; font-size: 11.5px; letter-spacing: .05em; }
    .topbar-pulse { display: inline-flex; align-items: center; gap: 8px; }
    .topbar-pulse::before { content: ''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 0 rgba(243,198,38,.7); animation: pulse 1.6s ease-in-out infinite; }
    @keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(243,198,38,0); } 100% { box-shadow: 0 0 0 0 rgba(243,198,38,0); } }
    .topbar a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
    .topbar a:hover { color: var(--gold); }
    .topbar-right { display: flex; gap: 22px; align-items: center; }
    .topbar-right .sep { width: 1px; height: 11px; background: rgba(255,255,255,.18); }

    /* ─── MAIN NAV ────────────────────────────────────────────── */
    .nav { background: var(--cream); display: flex; justify-content: space-between; align-items: center; padding: 0 44px; height: 76px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(15,8,20,.07); transition: transform .4s ease; }
    .nav.hide { transform: translateY(-100%); }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-mark { width: 38px; height: 38px; background: var(--purple); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 900; font-size: 19px; letter-spacing: -.04em; }
    .nav-logo-text { display: flex; flex-direction: column; gap: 1px; }
    .nav-logo-univ { font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gray); font-weight: 500; }
    .nav-logo-name { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 16px; letter-spacing: .02em; color: var(--ink); line-height: 1; }
    .nav-links { display: flex; list-style: none; gap: 4px; }
    .nav-links a { color: var(--ink); text-decoration: none; font-size: 13.5px; font-weight: 500; padding: 8px 14px; transition: color .2s; position: relative; }
    .nav-links a:hover { color: var(--purple); }
    .nav-links a.active { color: var(--purple); font-weight: 700; }
    .nav-links a.active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--gold); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-cta { background: var(--purple); color: var(--cream); padding: 11px 22px; font-family: 'Jost', sans-serif; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; text-decoration: none; transition: background .25s; position: relative; overflow: hidden; }
    .nav-cta:hover { background: var(--purple-deep); }
    .nav-cta::before { content: ''; position: absolute; top: 0; left: -120%; width: 50%; height: 100%; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%); transition: left .8s ease; }
    .nav-cta:hover::before { left: 220%; }

    /* ─── BREADCRUMB ────────────────────────────────────────── */
    .crumb { background: var(--cream); padding: 18px 44px; border-bottom: 1px solid rgba(15,8,20,.06); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); font-weight: 600; display: flex; align-items: center; gap: 12px; }
    .crumb a { color: var(--gray); text-decoration: none; transition: color .2s; }
    .crumb a:hover { color: var(--purple); }
    .crumb .sep { color: var(--gold); }
    .crumb .current { color: var(--ink); }

    /* ─── SECTION HEADER ─────────────────────────────────────── */
    .sec-header { padding: 100px 44px 48px; }
    .sec-title { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(44px, 6.5vw, 92px); line-height: .9; letter-spacing: -.02em; color: var(--ink); }
    .sec-title .serif-i { color: var(--purple); display: inline-block; }
    .sec-sub { font-size: 16px; line-height: 1.6; color: var(--gray); max-width: 520px; margin-top: 20px; }
    .sec-eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--gold-deep); display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
    .sec-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--gold); }

    /* ─── IMAGE PLACEHOLDER (swap for real photos later) ─────── */
    .ph { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%); border: 1.5px dashed rgba(243,198,38,.4); display: block; }
    .ph::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 16px 16px; }
    .ph-hint { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 22px; z-index: 1; }
    .ph-hint svg { width: 28px; height: 28px; color: rgba(243,198,38,.55); }
    .ph-hint .lbl { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,.55); line-height: 1.6; max-width: 92%; }
    .ph-cap { position: absolute; left: 14px; bottom: 14px; z-index: 2; background: var(--gold); color: var(--ink); font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(14px, 1.5vw, 18px); letter-spacing: -.01em; padding: 7px 14px; transform: rotate(-2deg); box-shadow: 0 6px 20px rgba(15,8,20,.25); }

    /* ══════════════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════════════ */
    .shero { background: var(--purple-deep); color: var(--cream); position: relative; overflow: hidden; padding: 84px 44px 0; isolation: isolate; }
    .shero-grid-bg { position: absolute; inset: 0; z-index: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 62px 62px; mask-image: radial-gradient(circle at 55% 36%, #000 28%, transparent 76%); -webkit-mask-image: radial-gradient(circle at 55% 36%, #000 28%, transparent 76%); }
    .shero-inner { position: relative; z-index: 2; }
    .shero-eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 14px; opacity: 0; animation: fadeUp 1s ease .2s forwards; }
    .shero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 0 rgba(243,198,38,.7); animation: pulse 1.6s ease-in-out infinite; }
    .shero-title { font-family: 'Jost', sans-serif; font-weight: 900; text-transform: uppercase; line-height: .82; letter-spacing: -.03em; font-size: clamp(52px, 11vw, 178px); margin: 22px 0 0; }
    .shero-title .row { display: block; overflow: hidden; padding-bottom: .1em; margin-bottom: -.08em; }
    .shero-title .row span { display: inline-block; transform: translateY(110%); animation: rise 1.1s cubic-bezier(.22,.61,.36,1) forwards; }
    .shero-title .row.r1 span { animation-delay: .15s; }
    .shero-title .row.r2 span { animation-delay: .32s; }
    .shero-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); text-transform: lowercase; }
    @keyframes rise { to { transform: translateY(0); } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    .shero-tagline { font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(22px, 3vw, 40px); color: rgba(255,255,255,.85); margin-top: 26px; opacity: 0; animation: fadeUp 1s ease .7s forwards; }
    .shero-tagline b { font-family: 'Jost', sans-serif; font-style: normal; font-weight: 700; color: var(--gold); }
    .shero-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; padding: 40px 0 50px; }
    .shero-ctas { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUp 1s ease .9s forwards; }
    .shero-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--gold); color: var(--ink); padding: 16px 26px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: transform .25s, background .25s; }
    .shero-cta:hover { transform: translateY(-3px); }
    .shero-cta.alt { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,.3); }
    .shero-cta.alt:hover { border-color: var(--gold); color: var(--gold); }
    .shero-sticker { font-family: 'Jost', sans-serif; font-weight: 900; text-transform: uppercase; font-size: 14px; letter-spacing: .02em; color: var(--ink); background: var(--gold); padding: 16px 22px; border-radius: 50%; width: 116px; height: 116px; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.05; transform: rotate(-8deg); animation: bob 3s ease-in-out infinite; box-shadow: 0 12px 40px rgba(243,198,38,.3); }
    @keyframes bob { 0%,100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-8deg) translateY(-8px); } }

    .shero-collage { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 8px 0 44px; opacity: 0; animation: fadeUp 1.1s ease .8s forwards; }
    .shero-collage .ph { aspect-ratio: 3/4; transition: transform .4s cubic-bezier(.22,.61,.36,1); }
    .shero-collage .ph:nth-child(1) { transform: rotate(-2.5deg); }
    .shero-collage .ph:nth-child(2) { transform: rotate(1.5deg); margin-top: 22px; }
    .shero-collage .ph:nth-child(3) { transform: rotate(-1deg); }
    .shero-collage .ph:hover { transform: rotate(0deg) scale(1.04); z-index: 3; }

    .shero-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0 -44px; border-top: 1px solid rgba(255,255,255,.12); }
    .shero-fact { padding: 24px 28px; border-right: 1px solid rgba(255,255,255,.12); opacity: 0; animation: fadeUp 1s ease 1.1s forwards; }
    .shero-fact:nth-child(2){ animation-delay: 1.2s; } .shero-fact:nth-child(3){ animation-delay: 1.3s; } .shero-fact:nth-child(4){ animation-delay: 1.4s; }
    .shero-fact:last-child { border-right: none; }
    .shero-fact .k { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 600; }
    .shero-fact .v { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 26px; margin-top: 8px; color: var(--cream); letter-spacing: -.01em; }
    .shero-fact .v .serif-i { color: var(--gold); }

    /* ══════════════════════════════════════════════════════════
       WHAT YOU'LL DO
    ══════════════════════════════════════════════════════════ */
    .dowrap { background: var(--cream); }
    .do-grid { padding: 0 44px 100px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .do-card { background: #fff; border: 1px solid var(--gray-line); padding: 34px 28px 32px; transition: transform .3s, box-shadow .3s, border-color .3s; }
    .do-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px -26px rgba(31,10,61,.35); border-color: var(--purple); }
    .do-ic { width: 52px; height: 52px; border-radius: 50%; background: var(--purple); color: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
    .do-ic svg { width: 26px; height: 26px; }
    .do-card h3 { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 19px; line-height: 1.15; color: var(--ink); }
    .do-card p { font-size: 13.5px; line-height: 1.6; color: var(--gray); margin-top: 10px; }

    /* ══════════════════════════════════════════════════════════
       WORKSHOPS
    ══════════════════════════════════════════════════════════ */
    .work { background: var(--ink); color: var(--cream); }
    .work .sec-title { color: var(--cream); }
    .work .sec-title .serif-i { color: var(--gold); }
    .work .sec-sub { color: rgba(255,255,255,.6); }
    .work .sec-eyebrow { color: var(--gold); }
    .work-grid { padding: 0 44px 100px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .wk { position: relative; overflow: hidden; padding: 40px 40px 38px; min-height: 300px; display: flex; flex-direction: column; isolation: isolate; transition: transform .35s cubic-bezier(.22,.61,.36,1); }
    .wk:hover { transform: translateY(-8px); }
    .wk.c1 { background: var(--purple); }
    .wk.c2 { background: var(--purple-soft); }
    .wk.c3 { background: var(--gold); color: var(--ink); }
    .wk.c4 { background: #16233A; }
    .wk-ghost { position: absolute; bottom: -30px; right: -6px; font-family: 'Jost', sans-serif; font-weight: 900; font-size: 180px; line-height: .7; color: rgba(255,255,255,.08); z-index: 0; pointer-events: none; }
    .wk.c3 .wk-ghost { color: rgba(15,8,20,.08); }
    .wk-ic { width: 60px; height: 60px; border-radius: 16px; background: rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; }
    .wk.c3 .wk-ic { background: rgba(15,8,20,.12); }
    .wk-ic svg { width: 30px; height: 30px; color: var(--cream); }
    .wk.c3 .wk-ic svg { color: var(--ink); }
    .wk-tag { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; margin-top: 24px; position: relative; z-index: 2; color: var(--gold); }
    .wk.c3 .wk-tag { color: var(--purple); }
    .wk h3 { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.05; letter-spacing: -.01em; margin-top: 12px; position: relative; z-index: 2; }
    .wk p { font-size: 14.5px; line-height: 1.6; margin-top: 14px; position: relative; z-index: 2; opacity: .82; max-width: 380px; }
    .wk-pick { margin-top: auto; padding-top: 24px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 10px; }
    .work-note { margin: -60px 44px 0; padding: 0 0 100px; }
    .work-note span { display: inline-flex; align-items: center; gap: 12px; font-size: 13.5px; color: rgba(255,255,255,.6); }
    .work-note b { color: var(--gold); font-family: 'Jost', sans-serif; font-weight: 700; letter-spacing: .04em; }

    /* ══════════════════════════════════════════════════════════
       PROGRAM DETAILS
    ══════════════════════════════════════════════════════════ */
    .details { background: var(--gold); color: var(--ink); padding: 90px 44px; }
    .details-head { font-family: 'Jost', sans-serif; font-weight: 900; font-size: clamp(34px, 5vw, 66px); line-height: .95; letter-spacing: -.02em; text-transform: uppercase; margin-bottom: 50px; }
    .details-head em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; text-transform: none; }
    .details-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 2px solid var(--ink); }
    .detail { padding: 32px 24px 10px; border-right: 2px solid rgba(15,8,20,.15); }
    .detail:last-child { border-right: none; }
    .detail .v { font-family: 'Jost', sans-serif; font-weight: 900; font-size: clamp(44px, 6vw, 78px); line-height: 1; letter-spacing: -.03em; color: var(--ink); }
    .detail .k { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin-top: 12px; color: rgba(15,8,20,.65); }

    /* ══════════════════════════════════════════════════════════
       WHO'S IT FOR
    ══════════════════════════════════════════════════════════ */
    .who { background: var(--cream); }
    .who-split { padding: 0 44px 100px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
    .who-quote { font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(26px, 3vw, 40px); line-height: 1.28; color: var(--ink); }
    .who-quote .hl { background: linear-gradient(transparent 62%, rgba(243,198,38,.55) 62%); padding: 0 .04em; font-style: normal; font-family: 'Jost', sans-serif; font-weight: 700; }
    .who-points { display: flex; flex-direction: column; gap: 16px; }
    .who-point { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; background: #fff; border: 1px solid var(--gray-line); transition: transform .25s, border-color .25s; }
    .who-point:hover { transform: translateX(6px); border-color: var(--purple); }
    .who-point .tick { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: var(--purple); color: var(--gold); display: flex; align-items: center; justify-content: center; }
    .who-point .tick svg { width: 18px; height: 18px; }
    .who-point .t { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 15px; color: var(--ink); }
    .who-point .s { font-size: 13px; color: var(--gray); margin-top: 3px; }

    /* ══════════════════════════════════════════════════════════
       GALLERY
    ══════════════════════════════════════════════════════════ */
    .gallery { background: var(--ink); color: var(--cream); }
    .gallery .sec-title { color: var(--cream); }
    .gallery .sec-title .serif-i { color: var(--gold); }
    .gallery .sec-sub { color: rgba(255,255,255,.6); }
    .gallery .sec-eyebrow { color: var(--gold); }
    .gal { padding: 0 44px 100px; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 16px; }
    .gal .ph { width: 100%; height: 100%; transition: transform .4s cubic-bezier(.22,.61,.36,1); }
    .gal .ph.tall { grid-row: span 2; }
    .gal .ph.wide { grid-column: span 2; }
    .gal .ph:hover { transform: scale(1.02); z-index: 2; }

    /* ══════════════════════════════════════════════════════════
       CLOSING CTA
    ══════════════════════════════════════════════════════════ */
    .closing { background: var(--purple-deep); color: var(--cream); padding: 100px 44px; text-align: center; position: relative; overflow: hidden; }
    .closing-ghost { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 900; font-size: clamp(90px, 20vw, 320px); color: rgba(255,255,255,.04); text-transform: uppercase; letter-spacing: -.04em; pointer-events: none; white-space: nowrap; }
    .closing-inner { position: relative; z-index: 2; }
    .closing .eye { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; color: var(--gold); }
    .closing h2 { font-family: 'Jost', sans-serif; font-weight: 900; font-size: clamp(40px, 6vw, 84px); line-height: .95; letter-spacing: -.02em; text-transform: uppercase; margin-top: 18px; }
    .closing h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; text-transform: none; color: var(--gold); }
    .closing p { font-size: 17px; line-height: 1.6; max-width: 560px; margin: 24px auto 0; color: rgba(255,255,255,.72); }
    .closing-ctas { display: flex; gap: 14px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
    .closing-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--gold); color: var(--ink); padding: 17px 32px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: transform .25s, background .25s; }
    .closing-cta:hover { transform: translateY(-3px); background: var(--cream); }
    .closing-cta.alt { background: transparent; color: var(--cream); border: 1.5px solid rgba(255,255,255,.4); }
    .closing-cta.alt:hover { background: rgba(255,255,255,.1); border-color: var(--gold); color: var(--gold); }

    /* ─── FOOTER ─────────────────────────────────────────────── */
    .footer { background: var(--ink); color: var(--cream); padding: 80px 44px 0; }
    .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-brand { display: flex; flex-direction: column; gap: 22px; }
    .footer-mark { display: flex; align-items: center; gap: 14px; }
    .footer-mark-icon { width: 44px; height: 44px; background: var(--purple); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: -.04em; }
    .footer-mark-name { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 22px; letter-spacing: -.005em; line-height: 1.05; }
    .footer-mark-name span { color: var(--gold); }
    .footer-addr { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,.5); }
    .footer-addr a { color: var(--gold); text-decoration: none; }
    .footer-col h4 { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 22px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13.5px; transition: color .2s; }
    .footer-col ul a:hover { color: var(--cream); }
    .footer-mega { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .footer-mega-text { font-family: 'Jost', sans-serif; font-weight: 900; font-size: clamp(70px, 15vw, 250px); line-height: .85; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.18); letter-spacing: -.03em; text-transform: uppercase; text-align: center; white-space: nowrap; overflow: hidden; }
    .footer-mega-text em { font-style: italic; font-family: 'Instrument Serif', serif; font-weight: 400; color: var(--gold); -webkit-text-stroke: 0; text-transform: lowercase; letter-spacing: -.01em; }
    .footer-bottom { display: flex; justify-content: space-between; padding: 30px 0; font-size: 11.5px; color: rgba(255,255,255,.3); letter-spacing: .05em; }
    .footer-socials { display: flex; gap: 24px; }
    .footer-socials a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    .footer-socials a:hover { color: var(--gold); }

    /* ─── REVEAL ─────────────────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); }
    .reveal.in { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: .08s; }
    .reveal-d2 { transition-delay: .18s; }
    .reveal-d3 { transition-delay: .28s; }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .do-grid { grid-template-columns: 1fr 1fr; }
      .details-grid { grid-template-columns: 1fr 1fr; }
      .detail:nth-child(2) { border-right: none; }
      .detail:nth-child(1), .detail:nth-child(2) { border-bottom: 2px solid rgba(15,8,20,.15); padding-bottom: 28px; }
      .gal { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 920px) {
      .topbar, .nav-links { display: none; }
      .shero-facts { grid-template-columns: 1fr 1fr; }
      .shero-fact:nth-child(2) { border-right: none; }
      .work-grid { grid-template-columns: 1fr; }
      .who-split { grid-template-columns: 1fr; gap: 36px; }
      .sec-header { padding: 64px 18px 32px; }
      .shero, .do-grid, .work-grid, .who-split, .gal, .closing, .footer, .details { padding-left: 18px; padding-right: 18px; }
      .do-grid, .work-grid, .who-split, .gal { padding-bottom: 64px; }
      .work-note { margin-left: 18px; margin-right: 18px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 560px) {
      .do-grid { grid-template-columns: 1fr; }
      .shero { padding-left: 20px; padding-right: 20px; }
      .shero-title { font-size: clamp(36px, 11vw, 50px); }
      .shero-facts, .details-grid { grid-template-columns: 1fr; }
      /* match the full-bleed negative margin to the reduced mobile padding */
      .shero-facts { margin-left: -20px; margin-right: -20px; }
      .shero-fact, .detail { border-right: none; }
      .gal { grid-template-columns: 1fr; grid-auto-rows: 220px; }
      .gal .ph.wide { grid-column: span 1; }
      .shero-collage { grid-template-columns: 1fr 1fr; }
      .shero-collage .ph:nth-child(3) { display: none; }
      .footer-top { grid-template-columns: 1fr; }
    }
  
    /* --- FAQ (AEO) --- */
    .faq { background: var(--ink); color: var(--cream); padding: 90px 0 96px; }
    .faq-wrap { max-width: 1160px; margin: 0 auto; padding: 0 44px; }
    .faq-eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 12px; }
    .faq-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold); }
    .faq-title { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(34px, 5vw, 64px); line-height: .98; letter-spacing: -.02em; color: var(--cream); margin: 16px 0 44px; }
    .faq-title .serif-i { color: var(--gold); }
    .faq-list { border-top: 1px solid rgba(255,255,255,.12); }
    .faq-item { border-bottom: 1px solid rgba(255,255,255,.12); }
    .faq-q { width: 100%; background: transparent; border: none; padding: 24px 0; display: grid; grid-template-columns: 44px 1fr 40px; gap: 18px; align-items: center; cursor: pointer; text-align: left; transition: padding-left .3s; }
    .faq-q:hover { padding-left: 12px; }
    .faq-q-num { font-family: 'Jost', sans-serif; font-size: 13px; color: var(--gold); font-weight: 700; letter-spacing: .12em; }
    .faq-q-text { font-family: 'Jost', sans-serif; font-size: clamp(16px, 1.4vw, 20px); font-weight: 600; line-height: 1.35; color: var(--cream); letter-spacing: -.005em; }
    .faq-q-icon { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; transition: background .3s, border-color .3s, transform .3s; justify-self: end; flex-shrink: 0; }
    .faq-q-icon::before, .faq-q-icon::after { content: ''; position: absolute; background: var(--cream); transition: transform .3s, background .3s; }
    .faq-q-icon::before { width: 14px; height: 1px; } .faq-q-icon::after { width: 1px; height: 14px; }
    .faq-item.open .faq-q-icon { background: var(--gold); border-color: var(--gold); transform: rotate(180deg); }
    .faq-item.open .faq-q-icon::before, .faq-item.open .faq-q-icon::after { background: var(--ink); }
    .faq-item.open .faq-q-icon::after { transform: scaleY(0); }
    .faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s cubic-bezier(.32,.72,0,1); }
    .faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
    .faq-a { min-height: 0; overflow: hidden; }
    .faq-a-inner { padding: 0 0 28px 62px; max-width: 880px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.72); }
    .faq-a-inner strong { color: var(--gold); font-weight: 700; }
    .faq-a-inner a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }