 *, *::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, 96px); 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; }

    /* ─── 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: 24px; z-index: 1; }
    .ph-hint svg { width: 30px; height: 30px; 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); }
    /* real photos inside .ph (placeholder imagery for now) */
    .ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
    .ph:has(> img) { border: none; }
    .ph:hover > img { transform: scale(1.05); }
    .ph:has(> img)::before { background-image: linear-gradient(180deg, transparent 55%, rgba(15,8,20,.35)); background-size: auto; }

    /* ══════════════════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════════════════ */
    .shero { background: var(--purple-deep); color: var(--cream); position: relative; overflow: hidden; padding: 80px 44px 60px; 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: 60px 60px; mask-image: radial-gradient(circle at 50% 30%, #000 25%, transparent 75%); -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 25%, transparent 75%); }
    .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(58px, 13vw, 210px); margin: 24px 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-collage { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 50px; opacity: 0; animation: fadeUp 1.1s ease .7s forwards; }
    .shero-collage .ph { aspect-ratio: 3/4; }
    .shero-collage .ph:nth-child(1) { transform: rotate(-2.5deg); }
    .shero-collage .ph:nth-child(2) { transform: rotate(1.5deg); margin-top: 26px; }
    .shero-collage .ph:nth-child(3) { transform: rotate(-1deg); }
    .shero-collage .ph:nth-child(4) { transform: rotate(2.5deg); margin-top: 20px; }
    .shero-collage .ph:nth-child(5) { transform: rotate(-1.5deg); }
    .shero-collage .ph { transition: transform .4s cubic-bezier(.22,.61,.36,1); }
    .shero-collage .ph:hover { transform: rotate(0deg) scale(1.04); z-index: 3; }

    /* ─── VIBES MARQUEE ─── */
    .vibes { background: var(--gold); color: var(--ink); overflow: hidden; white-space: nowrap; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
    .vibes-track { display: inline-flex; align-items: center; animation: marq 32s linear infinite; }
    .vibes-track span { font-family: 'Jost', sans-serif; font-weight: 900; text-transform: uppercase; font-size: 26px; letter-spacing: -.01em; padding: 16px 26px; display: inline-flex; align-items: center; gap: 26px; }
    .vibes-track span::after { content: '✦'; color: var(--purple); font-size: 18px; }
    @keyframes marq { to { transform: translateX(-50%); } }

    /* ══════════════════════════════════════════════════════════
       GENERIC GALLERY BLOCK
    ══════════════════════════════════════════════════════════ */
    .making { background: var(--cream); }
    .gal { padding: 0 44px 100px; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
    .gal .ph { width: 100%; height: 100%; }
    .gal .ph.tall { grid-row: span 2; }
    .gal .ph.wide { grid-column: span 2; }
    .gal .ph { transition: transform .4s cubic-bezier(.22,.61,.36,1); }
    .gal .ph:hover { transform: scale(1.02); z-index: 2; }

    .display-sec { background: var(--ink); color: var(--cream); }
    .display-sec .sec-title { color: var(--cream); }
    .display-sec .sec-title .serif-i { color: var(--gold); }
    .display-sec .sec-sub { color: rgba(255,255,255,.6); }

    .home { background: var(--cream); }

    /* ══════════════════════════════════════════════════════════
       FLAGSHIP EVENTS
    ══════════════════════════════════════════════════════════ */
    .events { background: var(--purple-deep); color: var(--cream); }
    .events .sec-title { color: var(--cream); }
    .events .sec-title .serif-i { color: var(--gold); }
    .events .sec-sub { color: rgba(255,255,255,.6); }
    .ev-list { padding: 0 44px 100px; display: flex; flex-direction: column; gap: 20px; }
    .ev { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); overflow: hidden; transition: border-color .3s; }
    .ev:hover { border-color: var(--gold); }
    .ev:nth-child(even) { grid-template-columns: 1fr 1.2fr; }
    .ev:nth-child(even) .ev-media { order: 2; }
    .ev-media { position: relative; min-height: 380px; }
    .ev-media .ph { position: absolute; inset: 0; border: none; }
    .ev-body { padding: 48px 48px 44px; display: flex; flex-direction: column; justify-content: center; }
    .ev-acr { font-family: 'Jost', sans-serif; font-weight: 900; font-size: 15px; letter-spacing: .16em; color: var(--gold); }
    .ev-name { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(28px, 3.4vw, 46px); line-height: 1; letter-spacing: -.02em; color: var(--cream); margin-top: 12px; }
    .ev-name em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--gold); }
    .ev-vibe { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 22px; color: rgba(255,255,255,.8); margin-top: 16px; }
    .ev-learn { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
    .ev-learn .t { font-size: 11.5px; letter-spacing: .06em; font-weight: 600; color: var(--cream); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 7px 14px; border-radius: 100px; }
    .ev-learn .t b { color: var(--gold); font-weight: 700; }

    /* ══════════════════════════════════════════════════════════
       YOU'LL LEAVE WITH (sticker chips)
    ══════════════════════════════════════════════════════════ */
    .leave { background: var(--cream); }
    .leave-wrap { padding: 0 44px 100px; display: flex; flex-wrap: wrap; gap: 16px; }
    .chip { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(20px, 2.6vw, 34px); letter-spacing: -.01em; padding: 14px 26px; border-radius: 100px; cursor: default; transition: transform .3s cubic-bezier(.34,1.56,.64,1); }
    .chip:hover { transform: translateY(-6px) rotate(-2deg); }
    .chip.p { background: var(--purple); color: var(--cream); }
    .chip.g { background: var(--gold); color: var(--ink); }
    .chip.o { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
    .chip.i { background: var(--ink); color: var(--cream); }
    .chip em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }


    /* ══════════════════════════════════════════════════════════
       CLOSING CTA
    ══════════════════════════════════════════════════════════ */
    .closing { background: var(--gold); color: var(--ink); 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(100px, 22vw, 360px); color: rgba(15,8,20,.05); text-transform: uppercase; letter-spacing: -.04em; pointer-events: none; white-space: nowrap; }
    .closing-inner { position: relative; z-index: 2; }
    .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; }
    .closing h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; text-transform: none; }
    .closing p { font-size: 17px; line-height: 1.6; max-width: 540px; margin: 24px auto 0; color: rgba(15,8,20,.7); }
    .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(--ink); color: var(--cream); padding: 17px 30px; 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(--purple); }
    .closing-cta.alt { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
    .closing-cta.alt:hover { background: var(--ink); 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(80px, 16vw, 280px); 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) {
      .gal { grid-template-columns: repeat(2, 1fr); }
      .shero-collage { grid-template-columns: repeat(3, 1fr); }
      .shero-collage .ph:nth-child(4), .shero-collage .ph:nth-child(5) { display: none; }
    }
    @media (max-width: 920px) {
      .topbar, .nav-links { display: none; }
      .sec-header { padding: 64px 18px 32px; }
      .shero, .gal, .ev-list, .leave-wrap, .rules, .closing, .footer { padding-left: 18px; padding-right: 18px; }
      .gal, .ev-list, .leave-wrap, .rules { padding-bottom: 64px; }
      .ev, .ev:nth-child(even) { grid-template-columns: 1fr; }
      .ev:nth-child(even) .ev-media { order: 0; }
      .ev-media { min-height: 260px; }
      .ev-body { padding: 32px 24px 34px; }
      .rule { grid-template-columns: 60px 1fr; gap: 18px; }
      .vibes-track span { font-size: 20px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 560px) {
      .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; }
    }
    /* ═══ INSTAGRAM CAROUSEL (interactive) ═══ */
    .ig { position: relative; padding: 110px 0 128px; overflow: hidden; color: var(--cream);
      background: radial-gradient(125% 120% at 50% -10%, #7B44C9 0%, #4E1E96 38%, #2A0E55 78%, #1F0A3D 100%); }
    .ig::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5;
      background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 46px 46px; mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%); -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%); }
    .ig::after { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; top: -180px; right: -120px; pointer-events: none;
      background: radial-gradient(circle, rgba(243,198,38,.20), transparent 68%); }
    .ig-head { position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto 56px; padding: 0 24px; }
    .ig-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
    .ig-eyebrow svg { width: 17px; height: 17px; }
    .ig-title { font-family: 'Jost', sans-serif; font-weight: 800; font-size: clamp(42px, 6.4vw, 88px); line-height: .92; letter-spacing: -.02em; color: var(--cream); }
    .ig-title .serif-i { color: var(--gold); }
    .ig-sub { margin: 22px auto 0; max-width: 600px; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.72); }
    .ig-follow { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; padding: 13px 26px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 13.5px; letter-spacing: .02em; color: #fff; text-decoration: none; border-radius: 40px;
      background: linear-gradient(90deg, #FEDA75, #FA7E1E 26%, #D62976 55%, #962FBF 78%, #4F5BD5 100%); box-shadow: 0 14px 30px -12px rgba(214,41,118,.7); transition: transform .25s ease, box-shadow .25s ease; }
    .ig-follow::before { content: '↗'; font-weight: 800; }
    .ig-follow:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(214,41,118,.85); }

    .ig-carousel { position: relative; z-index: 2; height: clamp(452px, 62vw, 556px); display: flex; align-items: center; justify-content: center; margin-top: 8px; }
    .ig-stage { position: relative; width: 100%; max-width: 1120px; height: 100%; margin: 0 auto; }
    .ig-card { position: absolute; left: 50%; top: 50%; width: clamp(288px, 33vw, 372px);
      background: #fff; color: #14121a; border-radius: 16px; overflow: hidden; text-decoration: none;
      box-shadow: 0 34px 66px -22px rgba(0,0,0,.62); cursor: pointer; user-select: none;
      transform: translate(-50%,-50%); transition: transform .58s cubic-bezier(.4,.85,.28,1), opacity .5s ease, box-shadow .3s ease; will-change: transform, opacity; }
    .ig-card.is-active { box-shadow: 0 44px 80px -26px rgba(0,0,0,.72); }
    .ig-card-top { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
    .ig-ava { width: 34px; height: 34px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 900; font-size: 14px; color: #fff;
      background: linear-gradient(45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5); box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px #eee; }
    .ig-handle { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 13.5px; color: #14121a; line-height: 1.1; }
    .ig-handle span { display: block; font-weight: 500; font-size: 11px; color: #8a8a92; letter-spacing: .01em; }
    .ig-logo { margin-left: auto; width: 22px; height: 22px; color: #14121a; }
    .ig-media { position: relative; aspect-ratio: 1/1; overflow: hidden; background: linear-gradient(135deg, #41177A, #6E3CB0); }
    .ig-media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
    .ig-media-fallback { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 800; font-size: 15px; letter-spacing: .05em; color: rgba(255,255,255,.85); }
    .ig-badge { position: absolute; z-index: 2; top: 11px; right: 11px; width: 30px; height: 30px; border-radius: 50%; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.42); backdrop-filter: blur(3px); color: #fff; }
    .ig-card.is-video .ig-badge { display: flex; }
    .ig-badge svg { width: 15px; height: 15px; }
    .ig-actions { display: flex; align-items: center; gap: 15px; padding: 12px 14px 4px; color: #14121a; }
    .ig-actions svg { width: 23px; height: 23px; }
    .ig-actions .save { margin-left: auto; }
    .ig-actions .heart { color: #E2264D; }
    .ig-card-meta { padding: 4px 14px 15px; }
    .ig-likes { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 13px; color: #14121a; }
    .ig-cap { font-size: 12.8px; line-height: 1.5; color: #3a3a42; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .ig-cap b { color: #14121a; font-weight: 700; }

    .ig-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 30; width: 54px; height: 54px; border-radius: 50%; flex: none;
      display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.32); backdrop-filter: blur(6px); transition: background .25s, color .25s, transform .25s; }
    .ig-nav svg { width: 22px; height: 22px; }
    .ig-nav.prev { left: max(8px, calc(50% - 560px)); }
    .ig-nav.next { right: max(8px, calc(50% - 560px)); }
    .ig-nav:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-50%) scale(1.06); }
    .ig-nav:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

    .ig-dots { position: relative; z-index: 2; display: flex; gap: 9px; justify-content: center; align-items: center; margin-top: 46px; flex-wrap: wrap; padding: 0 20px; }
    .ig-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,.32); transition: background .3s, width .3s; }
    .ig-dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

    @media (max-width: 640px) {
      .ig { padding: 74px 0 90px; }
      .ig-card { width: 78vw; max-width: 330px; }
      .ig-nav { width: 44px; height: 44px; }
      .ig-nav.prev { left: 6px; }
      .ig-nav.next { right: 6px; }
    }
    @media (prefers-reduced-motion: reduce) { .ig-card { transition: opacity .3s ease; } }
  
    /* --- 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; }