*, *::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;
      --shadow: 0 26px 60px -30px rgba(31,10,61,.45);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Roboto', sans-serif; background: var(--cream); color: var(--ink); overflow-x: clip; }
    .serif-i { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -.01em; text-transform: none; }
    img { display: block; max-width: 100%; }

    @keyframes wkFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
    @keyframes wkPop { from { opacity: 0; transform: scale(.9) translateY(20px); } to { opacity: 1; transform: none; } }

    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
    .reveal.in { opacity: 1; transform: none; }
    .reveal-d1 { transition-delay: .09s; } .reveal-d2 { transition-delay: .18s; } .reveal-d3 { transition-delay: .27s; }

    .wk-wrap { max-width: 1220px; margin: 0 auto; padding: 0 44px; }
    .wk-eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; color: var(--purple); display: flex; align-items: center; gap: 13px; }
    .wk-eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--gold); }
    .wk-sec-title { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(40px, 6vw, 82px); line-height: .94; letter-spacing: -.025em; color: var(--ink); }
    .wk-sec-title .serif-i { color: var(--purple); }
    .wk-sec-sub { font-size: 16.5px; line-height: 1.65; color: var(--gray); max-width: 560px; }
 /* ─── 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); }

    /* standard site button */
    .ahero-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--gold); color: var(--ink); padding: 15px 24px; font-family: 'Jost', sans-serif; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-decoration: none; transition: transform .25s, background .25s; }
    .ahero-cta:hover { transform: translateY(-3px); }
    .ahero-cta.alt { background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,.3); }
    .ahero-cta.alt:hover { border-color: var(--gold); color: var(--gold); }
    .ahero-cta.dark { background: transparent; color: var(--purple); border: 1px solid var(--purple); }
    .ahero-cta.dark:hover { background: var(--purple); color: #fff; border-color: var(--purple); }

    /* ─── HERO (site-standard) ─── */
    .ahero { background: var(--purple-deep); color: var(--cream); position: relative; overflow: hidden; padding: 90px 0 0; isolation: isolate; }
    .ahero-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: 64px 64px; mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%); -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%); }
    .ahero-inner { position: relative; z-index: 2; }
    .ahero-eyebrow { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 14px; opacity: 0; animation: fadeUp 1s ease .2s forwards; }
    .ahero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
    .ahero-title { font-family: 'Jost', sans-serif; font-weight: 900; text-transform: uppercase; line-height: .82; letter-spacing: -.02em; font-size: clamp(64px, 14vw, 210px); margin: 26px 0 0; }
    .ahero-title .row { display: block; overflow: hidden; padding-bottom: .12em; margin-bottom: -.1em; }
    .ahero-title .row span { display: inline-block; transform: translateY(110%); animation: rise 1.1s cubic-bezier(.22,.61,.36,1) forwards; }
    .ahero-title .row.r1 span { animation-delay: .15s; }
    .ahero-title .row.r2 span { animation-delay: .32s; }
    .ahero-title .out { color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.32); }
    .ahero-title em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); -webkit-text-stroke: 0; text-transform: lowercase; }
    @keyframes rise { to { transform: translateY(0); } }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .ahero-bottom { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end; padding: 54px 0 74px; }
    .ahero-lede { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,.78); max-width: 560px; opacity: 0; animation: fadeUp 1s ease .8s forwards; }
    .ahero-lede b { color: var(--cream); font-weight: 500; }
    .ahero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; opacity: 0; animation: fadeUp 1s ease 1s forwards; }

    /* ─── SHOWCASE (scattered floating wall) ─── */
    .wk-gallery { position: relative; padding: 92px 0 118px; }
    .wk-gal-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; }
    .wk-gal-head h2 { margin-top: 14px; }
    .wk-count { font-family: 'Jost', sans-serif; font-weight: 800; font-size: 14px; letter-spacing: .04em; color: var(--gray); text-transform: uppercase; }
    .wk-count b { color: var(--purple); font-size: 22px; }
    .wk-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 40px 0 44px; }
    .wk-chip { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .02em; padding: 11px 20px; border: 1.5px solid var(--gray-line); background: #fff; color: var(--ink); cursor: pointer; transition: background .22s, color .22s, border-color .22s; }
    .wk-chip:hover { border-color: var(--purple); color: var(--purple); }
    .wk-chip.active { background: var(--purple); border-color: var(--purple); color: #fff; }
    .wk-scatter { column-count: 4; column-gap: 30px; }
    .wk-card { position: relative; display: block; width: 100%; break-inside: avoid; margin: 0 0 40px; text-decoration: none; color: inherit; animation: wkFloat var(--dur,9s) ease-in-out var(--dly,0s) infinite; }
    .wk-card.hide { display: none; }
    .wk-card.pop .wk-card-inner { animation: wkPop .6s cubic-bezier(.34,1.56,.64,1) both; }
    .wk-card-inner { transform: none; transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
    .wk-card:hover { z-index: 6; }
    .wk-card:hover .wk-card-inner { transform: rotate(0deg) scale(1.04) translateY(-6px); }
    .wk-card-media { position: relative; aspect-ratio: var(--ar, 1); overflow: hidden; background: var(--purple-deep); box-shadow: var(--shadow); }
    .wk-card-fallback { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 900; font-size: 40px; color: rgba(255,255,255,.16); background: linear-gradient(150deg, var(--purple), var(--purple-deep)); }
    .wk-card-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.22,.61,.36,1); }
    .wk-card:hover .wk-card-media img { transform: scale(1.08); }
    .wk-card-cat { position: absolute; z-index: 2; top: 12px; left: 12px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 5px 10px; }
    .wk-card-media::after { content: ''; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(31,10,61,.8), rgba(31,10,61,.15) 55%, transparent); opacity: 0; transition: opacity .45s ease; }
    .wk-card:hover .wk-card-media::after { opacity: 1; }
    .wk-card-view { position: absolute; z-index: 3; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 8px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: 9px 15px; opacity: 0; transform: translateY(16px); transition: opacity .4s ease, transform .55s cubic-bezier(.34,1.56,.64,1); }
    .wk-card:hover .wk-card-view { opacity: 1; transform: translateY(0); }
    .wk-card-view i { font-style: normal; transition: transform .35s ease; }
    .wk-card:hover .wk-card-view i { transform: translateX(5px); }
    .wk-card-info { padding: 15px 4px 0; }
    .wk-card-title { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 17.5px; line-height: 1.16; letter-spacing: -.01em; color: var(--ink); transition: color .25s; }
    .wk-card:hover .wk-card-title { color: var(--purple); }
    .wk-card-under { display: flex; align-items: center; gap: 10px; margin-top: 9px; flex-wrap: wrap; }
    .wk-card-tag { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--purple); background: rgba(65,23,122,.08); border: 1px solid rgba(65,23,122,.2); padding: 4px 9px; }
    .wk-card-student { font-size: 12.5px; color: var(--gray); font-weight: 500; }
    .wk-empty { text-align: center; color: var(--gray); padding: 50px 0; font-size: 16px; display: none; }
    .wk-loadwrap { text-align: center; margin-top: 20px; }
    .wk-load { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; padding: 16px 30px; border: 1px solid var(--purple); background: transparent; color: var(--purple); cursor: pointer; transition: transform .25s, background .25s, color .25s; }
    .wk-load:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }
    .wk-load[hidden] { display: none; }

    /* ─── SPOTLIGHT ─── */
    .wk-spot { position: relative; overflow: hidden; background: var(--ink); color: var(--cream); padding: 104px 0 112px; }
    .wk-spot .wk-eyebrow { color: var(--gold); }
    .wk-spot .wk-eyebrow::before { background: var(--gold); }
    .wk-spot .wk-sec-title { color: var(--cream); }
    .wk-spot .wk-sec-title .serif-i { color: var(--gold); }
    .wk-spot-head { max-width: 640px; margin-bottom: 48px; }
    .wk-spot-head h2 { margin-top: 14px; }
    .wk-spot-stage { display: grid; grid-template-columns: 1.3fr 1fr; gap: 52px; align-items: center; }
    .wk-spot-media { position: relative; aspect-ratio: 16/12; overflow: hidden; background: #2A0E55; box-shadow: 0 40px 80px -40px rgba(0,0,0,.7); }
    .wk-spot-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease, transform 1.1s cubic-bezier(.22,.61,.36,1); transform: scale(1.06); }
    .wk-spot-media img.on { opacity: 1; transform: scale(1); }
    .wk-spot-info h3 { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.02; letter-spacing: -.02em; color: var(--cream); }
    .wk-spot-by { font-size: 14px; color: var(--gold); margin-top: 14px; font-family: 'Jost', sans-serif; font-weight: 600; letter-spacing: .02em; }
    .wk-spot-desc { font-size: 15.5px; line-height: 1.72; color: rgba(255,255,255,.72); margin-top: 18px; }
    .wk-spot-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
    .wk-spot-tag { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.24); padding: 6px 12px; }
    .wk-spot-thumbs { display: flex; gap: 12px; margin-top: 30px; }
    .wk-spot-thumb { width: 78px; height: 78px; flex: none; overflow: hidden; border: 2px solid transparent; opacity: .5; cursor: pointer; background: #2A0E55; transition: opacity .25s, border-color .25s, transform .25s; }
    .wk-spot-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .wk-spot-thumb:hover { transform: translateY(-3px); }
    .wk-spot-thumb.active { opacity: 1; border-color: var(--gold); }

    /* ─── FORMATS ─── */
    .wk-formats { position: relative; padding: 104px 0 112px; }
    .wk-fmt-head { max-width: 620px; }
    .wk-fmt-head h2 { margin: 14px 0 16px; }
    .wk-fmt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
    .wk-fmt { background: #fff; border: 1px solid var(--gray-line); padding: 32px 30px 36px; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
    .wk-fmt:hover { transform: translateY(-6px); border-color: var(--purple); box-shadow: var(--shadow); }
    .wk-fmt-ic { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--purple); color: var(--gold); margin-bottom: 22px; }
    .wk-fmt-ic svg { width: 25px; height: 25px; }
    .wk-fmt h3 { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 21px; letter-spacing: -.01em; color: var(--ink); }
    .wk-fmt p { font-size: 14.5px; line-height: 1.62; color: var(--gray); margin-top: 11px; }

    /* ─── VOICES ─── */
    .wk-voices { position: relative; background: var(--cream); padding: 30px 0 116px; }
    .wk-voices-head { max-width: 620px; }
    .wk-voices-head h2 { margin-top: 14px; }
    .wk-voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
    .wk-voice { background: #fff; border: 1px solid var(--gray-line); border-top: 3px solid var(--gold); padding: 32px 30px; transition: transform .35s ease, box-shadow .35s ease; }
    .wk-voice:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
    .wk-voice-q { font-size: 16px; line-height: 1.62; color: var(--ink); }
    .wk-voice-q::before { content: '\201C'; font-family: 'Instrument Serif', serif; font-size: 54px; color: var(--gold-deep); line-height: 0; display: block; height: 26px; }
    .wk-voice-who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
    .wk-voice-ava { width: 44px; height: 44px; flex: none; display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 800; font-size: 15px; color: #fff; background: var(--purple); }
    .wk-voice-name { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 14.5px; color: var(--ink); }
    .wk-voice-prog { font-size: 12.5px; color: var(--gray); margin-top: 2px; }

    /* ─── CTA ─── */
    .wk-cta { position: relative; overflow: hidden; text-align: center; color: var(--cream); padding: 104px 0 112px; background:
      radial-gradient(60% 80% at 20% 10%, rgba(175,125,243,.32), transparent 60%),
      radial-gradient(50% 70% at 85% 90%, rgba(243,198,38,.22), transparent 60%),
      var(--purple); }
    .wk-cta-inner { position: relative; z-index: 2; }
    .wk-cta h2 { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(40px, 6vw, 84px); line-height: .95; letter-spacing: -.025em; color: var(--cream); }
    .wk-cta h2 .serif-i { color: var(--gold); }
    .wk-cta p { font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,.8); max-width: 540px; margin: 24px auto 0; }
    .wk-cta-ctas { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 38px; }

    /* toast */
    .wk-toast { position: fixed; left: 50%; bottom: 34px; transform: translateX(-50%) translateY(20px); z-index: 9000; background: var(--ink); color: var(--cream); font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13.5px; padding: 14px 24px; box-shadow: 0 20px 46px -18px rgba(0,0,0,.6); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; }
    .wk-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
    .wk-toast b { color: var(--gold); }

    @media (max-width: 1180px) { .wk-scatter { column-count: 3; } }
    @media (max-width: 900px) {
      .ahero-bottom { grid-template-columns: 1fr; gap: 26px; }
      .ahero-ctas { justify-content: flex-start; }
      .wk-fmt-grid, .wk-voices-grid { grid-template-columns: repeat(2, 1fr); }
      .wk-spot-stage { grid-template-columns: 1fr; gap: 34px; }
    }
    @media (max-width: 720px) { .wk-scatter { column-count: 2; } }
    @media (max-width: 480px) { .wk-scatter { column-count: 1; } .wk-fmt-grid, .wk-voices-grid { grid-template-columns: 1fr; } }
    @media (prefers-reduced-motion: reduce) {
      .wk-card { animation: none !important; }
      .ahero-title .row span, .ahero-eyebrow, .ahero-lede, .ahero-ctas { animation: none !important; opacity: 1 !important; transform: none !important; }
      .reveal { transition: none; opacity: 1; transform: none; }
    }
  
    /* --- 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; }