/* =================================================================
   Self-hosted web fonts · summerbreezems.com
   Latin subsets only. Files committed at src/fonts/
   ================================================================= */

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('/fonts/jost-300-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Niconne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/niconne-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/fonts/fraunces-300-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 500;
  font-display: swap;
  src: url('/fonts/fraunces-italic-300-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Summer Breeze Mississippi — shared styles */

/* ---------- design tokens ---------- */
  :root {
    --ink:        #140A24;
    --purple:     #5C169C;
    --purple-2:   #3E0E6B;
    --purple-3:   #220640;
    --lilac:      #E8DCF2;
    --lilac-soft: #F3ECF9;
    --cream:      #F7F1E6;
    --paper:      #FDFBF6;
    --gold:       #C9A961;
    --gold-deep:  #8C6F2F;
    --rule:       rgba(20, 10, 36, 0.12);

    --display: 'Jost', 'Futura', 'Avenir Next', system-ui, sans-serif;
    --serif:   'Fraunces', 'Iowan Old Style', Georgia, serif;
    --script:  'Niconne', 'Brush Script MT', cursive;
    --sans:    'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --maxw: 1240px;
    --gutter: clamp(20px, 4vw, 56px);
    --radius: 4px;

    --ease: cubic-bezier(.2,.7,.2,1);
  }

  *, *::before, *::after { box-sizing: border-box; }
  /* Anchor clicks jump instantly instead of animating — feels snappier on mobile */
  html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    font-weight: 400;
    font-size: clamp(15px, 1.02vw, 17px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

  /* ---------- skip-to-content (accessibility) ---------- */
  .skip-link {
    position: absolute;
    left: 12px;
    top: -999px;
    z-index: 9999;
    background: var(--ink);
    color: var(--paper);
    padding: 10px 16px;
    border-radius: 4px;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .03em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
  }
  .skip-link:focus,
  .skip-link:focus-visible {
    top: 12px;
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .container {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }

  .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 500;
    color: var(--gold-deep);
  }
  .script {
    font-family: var(--script);
    font-weight: 400;
    color: var(--purple);
    line-height: 1;
  }
  /* reusable gold micro-eyebrow used inside sections */
  .eyebrow--gold {
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
  }
  /* inline link style used in prose (e.g. tier bullets) */
  .link-inline {
    color: var(--purple);
    text-decoration: underline;
  }

  /* ---------- buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
    /* magnetic vars set by JS */
    --mx: 0;
    --my: 0;
    transform: translate3d(calc(var(--mx) * 1px), calc(var(--my) * 1px), 0);
    position: relative;
    overflow: hidden;
  }
  .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle 120px at var(--px, 50%) var(--py, 50%), rgba(255,255,255,.14), transparent 60%);
    opacity: 0;
    transition: opacity .25s var(--ease);
    pointer-events: none;
  }
  .btn:hover::after { opacity: 1; }
  @media (prefers-reduced-motion: reduce) {
    .btn { transform: none; }
  }
  .btn--primary {
    background: var(--gold);
    color: var(--purple-3);
    box-shadow: 0 12px 30px -12px rgba(201,169,97,.55);
  }
  .btn--primary:hover { background: #d6b670; transform: translateY(-2px); }
  .btn--ghost {
    background: transparent;
    color: var(--paper);
    border-color: rgba(253,251,246,.35);
  }
  .btn--ghost:hover { border-color: var(--paper); background: rgba(253,251,246,.08); }
  /* Light-background adaptation — cream/paper sections invert ghost contrast */
  .section--cream .btn--ghost,
  .section--paper .btn--ghost {
    color: var(--purple-3);
    border-color: rgba(46, 16, 94, .4);
  }
  .section--cream .btn--ghost:hover,
  .section--paper .btn--ghost:hover {
    border-color: var(--purple-3);
    background: rgba(46, 16, 94, .06);
    color: var(--purple-3);
  }
  .btn--dark {
    background: var(--purple-3);
    color: var(--paper);
  }
  .btn--dark:hover { background: var(--purple); }
  .btn .arrow { transition: transform .3s var(--ease); }
  .btn:hover .arrow { transform: translateX(4px); }

  /* ---------- topbar ---------- */
  .topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 52;
    background: var(--ink);
    color: rgba(253,251,246,.78);
    padding: 10px 0;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201,169,97,.22);
    transition: transform .45s var(--ease);
  }
  .topbar.is-hidden { transform: translateY(-100%); }
  .topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .topbar__left {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .topbar__left .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    animation: pulse 2s infinite var(--ease);
  }
  .topbar__right {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    font-weight: 500;
  }
  .topbar__right a { transition: color .2s var(--ease); }
  .topbar__right a:hover { color: var(--gold); }
  .topbar__right .sep { opacity: .3; }
  .topbar__left .label-mid,
  .topbar__left .label-short { display: none; }
  /* Prevent date labels and countdown chip from word-wrapping into multiple lines */
  .topbar__left .label-full,
  .topbar__left .label-mid,
  .topbar__left .label-short,
  .countdown { white-space: nowrap; }
  @media (max-width: 900px) {
    .topbar__left .label-full { display: none; }
    .topbar__left .label-mid  { display: inline; }
    /* hide email (the last link + its separator) */
    .topbar__right .sep:last-of-type,
    .topbar__right a:last-of-type { display: none; }
  }
  @media (max-width: 560px) {
    .topbar__left .label-mid   { display: none; }
    .topbar__left .label-short { display: inline; font-size: 10px; }
    .topbar__inner { gap: 12px; }
    .topbar__left { gap: 10px; }
    /* keep only Donate + Instagram; hide Facebook + email + separators */
    .topbar__right a:nth-of-type(n+3),
    .topbar__right .sep { display: none; }
  }
  /* Below 440px: hide the static date label entirely — countdown chip carries the date message */
  @media (max-width: 440px) {
    .topbar__left .label-short { display: none; }
  }
  /* Below 380px: shorten countdown chip and drop @ig handle */
  @media (max-width: 380px) {
    .countdown__pre { display: none; }
    .topbar__right a:nth-of-type(n+2),
    .topbar__right .sep { display: none; }
  }

  /* =============================================================
     Social wall (#SBMS26)
     ============================================================= */
  .social__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 44px;
  }
  @media (min-width: 780px) {
    .social__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  }
  .social__card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 28px 26px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  }
  .social__card:hover {
    transform: translateY(-3px);
    border-color: rgba(92, 22, 156, .5);
    box-shadow: 0 18px 44px rgba(20, 10, 36, .08);
  }
  .social__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    background: linear-gradient(135deg, #c13584 0%, #e1306c 45%, #fd1d1d 72%, #f77737 100%);
    margin-bottom: 4px;
  }
  .social__icon svg { width: 26px; height: 26px; }
  .social__icon--hash {
    font-family: var(--serif);
    font-style: italic;
    font-size: 34px;
    line-height: 1;
    padding-top: 4px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--gold) 100%);
  }
  .social__card--fb .social__icon { background: #1877F2; }
  .social__handle {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -.005em;
    line-height: 1.15;
  }
  .social__p {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(20,10,36,.72);
    flex: 1;
  }
  .social__cta {
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    margin-top: 6px;
  }
  .social__cta--copy {
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: var(--purple);
  }
  .social__card:hover .social__cta,
  .social__cta--copy:hover { color: var(--gold-deep); }
  .social__cta.is-copied { color: var(--gold-deep); }
  .social__cta.is-copied::after { content: "— copied ✓"; margin-left: 10px; font-family: var(--serif); font-style: italic; letter-spacing: 0; font-size: 12px; text-transform: none; }

  /* =============================================================
     Press / Media (archive.html)
     ============================================================= */
  .press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 44px;
  }
  @media (min-width: 780px) {
    .press-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  }
  .press-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px 28px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    text-decoration: none;
    color: inherit;
  }
  .press-card:hover {
    transform: translateY(-3px);
    border-color: rgba(92, 22, 156, .5);
    box-shadow: 0 18px 44px rgba(20, 10, 36, .08);
  }
  .press-card__eyebrow {
    font-family: var(--display);
    font-size: 10.5px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 14px;
  }
  .press-card__h {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 12px;
  }
  .press-card__p {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.55;
    color: rgba(20,10,36,.72);
    margin: 0 0 22px;
    flex: 1;
  }
  .press-card__cta {
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .press-card:hover .press-card__cta { color: var(--gold-deep); }
  .press-credit {
    margin-top: 36px;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: rgba(20,10,36,.55);
  }

  /* =============================================================
     2025 Recap — cinematic editorial video frame
     ============================================================= */
  .recap {
    position: relative;
    padding: 96px 0 112px;
    background:
      radial-gradient(ellipse 900px 600px at 20% 20%, rgba(201, 169, 97, .10), transparent 70%),
      radial-gradient(ellipse 700px 500px at 80% 90%, rgba(92, 22, 156, .18), transparent 70%),
      linear-gradient(180deg, #0e0520 0%, #1a0831 55%, #0e0520 100%);
    color: var(--paper);
    overflow: hidden;
    isolation: isolate;
  }
  .recap::before {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(246, 238, 216, .025) 1px, transparent 1px);
    background-size: 3px 3px;
    pointer-events: none;
    z-index: 0;
  }
  .recap > .container { position: relative; z-index: 1; }

  .recap__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 40px;
  }
  .recap__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .95;
    margin-bottom: 20px;
  }
  .recap__eyebrow .tick {
    width: 28px; height: 1px; background: var(--gold);
  }
  .recap__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(34px, 4.8vw, 60px);
    line-height: 1.02;
    letter-spacing: -.015em;
    margin: 0 0 18px;
    color: var(--paper);
  }
  .recap__title em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
  }
  .recap__dek {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(15px, 1.4vw, 17px);
    color: rgba(246, 238, 216, .78);
    margin: 0;
  }

  .recap__frame {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow:
      0 30px 80px -20px rgba(0, 0, 0, .65),
      0 0 0 1px rgba(201, 169, 97, .18) inset;
    background: #000;
  }
  .recap__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
  }
  .recap__play {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: linear-gradient(
      180deg,
      rgba(10, 4, 24, .15) 0%,
      rgba(10, 4, 24, .10) 45%,
      rgba(10, 4, 24, .55) 100%
    );
    border: 0;
    color: var(--paper);
    cursor: pointer;
    font: inherit;
    padding: 0;
    transition: opacity .4s var(--ease), background .4s var(--ease);
    z-index: 2;
  }
  .recap__play:hover { background: linear-gradient(180deg, rgba(10,4,24,.05) 0%, rgba(10,4,24,.0) 45%, rgba(10,4,24,.45) 100%); }
  .recap__play.is-hidden { opacity: 0; pointer-events: none; }

  .recap__play-ring {
    width: 104px; height: 104px;
    border-radius: 50%;
    background: rgba(246, 238, 216, .10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 238, 216, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  }
  .recap__play-ring::after {
    content: "";
    position: absolute; inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, .28);
    animation: pulse-ring 2.2s infinite var(--ease);
  }
  .recap__play:hover .recap__play-ring {
    background: rgba(201, 169, 97, .18);
    border-color: rgba(201, 169, 97, .65);
    transform: scale(1.05);
  }
  .recap__play-ico {
    font-size: 34px;
    color: var(--gold);
    margin-left: 6px; /* optical centering for triangle */
    line-height: 1;
  }
  .recap__play-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
  }
  .recap__play-meta {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: .22em;
    color: rgba(246, 238, 216, .72);
  }
  @keyframes pulse-ring {
    0%   { transform: scale(1);    opacity: .6; }
    70%  { transform: scale(1.25); opacity: 0;  }
    100% { transform: scale(1.25); opacity: 0;  }
  }

  .recap__caption {
    margin-top: 28px;
    text-align: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: rgba(246, 238, 216, .62);
  }

  @media (prefers-reduced-motion: reduce) {
    .recap__play-ring::after { animation: none; }
  }
  @media (max-width: 640px) {
    .recap { padding: 72px 0 80px; }
    .recap__play-ring { width: 78px; height: 78px; }
    .recap__play-ico { font-size: 26px; }
    .recap__play-label { font-size: 11px; letter-spacing: .22em; }
  }

  /* ---------- countdown chip (topbar) — scoped under .topbar to avoid colliding
     with the hero <aside class="countdown"> card styles defined later in the file ---------- */
  .topbar .countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    letter-spacing: .08em;
    /* reset the hero card styles that would otherwise cascade down */
    background: transparent;
    border: 0;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .topbar .countdown__sep { opacity: .4; margin-right: 2px; }
  .topbar .countdown__pre, .topbar .countdown__post {
    opacity: .75;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 10px;
  }
  .topbar .countdown__num {
    font-family: var(--serif);
    font-weight: 400;
    color: var(--gold);
    font-size: 15px;
    line-height: 1;
    font-feature-settings: "tnum" 1;
    letter-spacing: -.01em;
  }
  .topbar .countdown.is-today .countdown__num { color: var(--paper); }
  .topbar .countdown.is-today .countdown__pre::after { content: "today"; }
  .topbar .countdown.is-today .countdown__pre > *,
  .topbar .countdown.is-today .countdown__num,
  .topbar .countdown.is-today .countdown__post { display: none; }
  .topbar .countdown.is-past { opacity: .6; }
  @media (max-width: 900px) {
    .topbar .countdown__pre, .topbar .countdown__post { letter-spacing: .18em; }
  }
  @media (max-width: 560px) {
    .countdown__pre { display: none; }
    .countdown__post { font-size: 9px; }
    .countdown__num { font-size: 13px; }
  }

  /* ---------- nav ---------- */
  .nav {
    position: fixed;
    top: 38px;
    left: 0; right: 0;
    z-index: 50;
    padding: 20px 0;
    transition: top .45s var(--ease), padding .35s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
    border-bottom: 1px solid transparent;
    background: linear-gradient(180deg, rgba(20,10,36,.55), rgba(20,10,36,0));
  }
  .nav.is-scrolled {
    top: 0;
    padding: 14px 0;
    background: rgba(20,10,36,.88);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom-color: rgba(201,169,97,.18);
    box-shadow: 0 10px 32px -18px rgba(0,0,0,.55);
  }

  /* Anchor scroll offset so section titles don't land under the fixed nav */
  :target,
  [id^="weekend"],
  [id^="impact"],
  [id^="food"],
  [id^="recap"],
  [id^="title-sponsor"],
  [id^="social"],
  [id^="faq"],
  [id^="tickets"] {
    scroll-margin-top: 90px;
  }
  .nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: var(--paper);
  }

  /* ---------- logo ---------- */
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
  }
  .logo__mark {
    position: relative;
    width: 44px; height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .logo__mark::before {
    content: "";
    position: absolute; inset: 0;
    border: 1px solid var(--gold);
    border-radius: 50%;
    transition: transform .7s var(--ease);
  }
  .logo:hover .logo__mark::before { transform: rotate(180deg); }
  .logo__mark::after {
    content: "";
    position: absolute;
    top: -2px; left: 50%;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateX(-50%);
  }
  /* Stacked SB / MS lockup — matches the app icon layout */
  .logo__mono {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 2px;
  }
  .logo__mono-top {
    font-family: var(--display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .02em;
    color: var(--paper);
    line-height: 1;
  }
  .logo__mono-btm {
    font-family: var(--display);
    font-weight: 600;
    font-size: 8.5px;
    letter-spacing: .18em;
    color: var(--gold);
    line-height: 1;
  }
  .logo__word {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
  }
  .logo__title {
    font-family: var(--display);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--paper);
  }
  .logo__sub {
    font-family: var(--sans);
    font-size: 9.5px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .88;
  }
  @media (max-width: 520px) {
    .logo__sub { display: none; }
    .logo__title { font-size: 12px; letter-spacing: .18em; }
    .logo__mark { width: 38px; height: 38px; }
    .logo__mono-top { font-size: 14px; }
    .logo__mono-btm { font-size: 7.5px; letter-spacing: .16em; }
    .logo { gap: 10px; }
  }

  /* ---------- nav links ---------- */
  .nav__links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0; padding: 0;
  }
  .nav__links a {
    position: relative;
    display: inline-block;
    padding: 6px 0;
    font-family: var(--sans);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(253,251,246,.88);
    transition: color .2s var(--ease);
  }
  .nav__links a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: 0;
    height: 1px;
    background: var(--gold);
    transition: right .4s var(--ease);
  }
  .nav__links a:hover { color: var(--paper); }
  .nav__links a:hover::after { right: 0; }
  .nav__links a.is-active { color: var(--gold); }
  .nav__links a.is-active::after { right: 0; }

  .nav__cta { display: inline-flex; align-items: center; gap: 10px; }
  .nav__cta .btn { padding: 12px 22px; font-size: 11px; letter-spacing: .22em; }

  /* ---------- mobile toggle ---------- */
  .nav__toggle { display: none; }
  @media (max-width: 960px) {
    .nav__links, .nav__cta { display: none; }
    .nav__toggle {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--paper);
      font-size: 11px;
      letter-spacing: .26em;
      text-transform: uppercase;
      padding: 8px 0;
    }
    .nav__toggle-lines {
      position: relative;
      width: 26px; height: 14px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .nav__toggle-lines span {
      display: block;
      height: 1px;
      width: 100%;
      background: currentColor;
      transition: width .3s var(--ease);
    }
    .nav__toggle-lines span:nth-child(2) { width: 65%; align-self: flex-end; }
    .nav__toggle:hover .nav__toggle-lines span:nth-child(2) { width: 100%; }
  }

  /* ---------- mobile menu ---------- */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--purple-3);
    color: var(--paper);
    z-index: 60;
    transform: translateY(-100%);
    transition: transform .5s var(--ease);
    padding: 28px var(--gutter) 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .mobile-menu.is-open { transform: translateY(0); }
  .mobile-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 56px;
  }
  .mobile-menu__close {
    font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--paper);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .mobile-menu ul { list-style: none; padding: 0; margin: 0; flex: 1; }
  .mobile-menu li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(253,251,246,.1);
  }
  .mobile-menu li a {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(28px, 6vw, 38px);
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color .25s var(--ease), padding-left .3s var(--ease);
  }
  .mobile-menu li a:hover { color: var(--gold); padding-left: 8px; }
  .mobile-menu li a .arrow { color: var(--gold); opacity: .45; font-size: 22px; }
  .mobile-menu__foot {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(253,251,246,.12);
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(253,251,246,.6);
  }
  .mobile-menu__foot a { color: rgba(253,251,246,.85); transition: color .2s var(--ease); }
  .mobile-menu__foot a:hover { color: var(--gold); }

  /* ---------- hero ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    color: var(--paper);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 80px;
    isolation: isolate;
  }
  /* Plum gradient base */
  .hero__bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(1200px 900px at 20% 20%, rgba(92,22,156,.55), transparent 60%),
      radial-gradient(1400px 900px at 80% 100%, rgba(10,4,22,.6), transparent 60%),
      linear-gradient(168deg, #1a0831 0%, #2f0f58 40%, #4a1684 100%);
    z-index: -2;
  }
  /* Full-bleed photo — original hero image, with a soft dark scrim for text readability */
  .hero__image {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(180deg, rgba(20,10,36,.62), rgba(20,10,36,.94) 80%),
      url('/hero/seersuckers.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat;
    z-index: -1;
    transform-origin: 50% 50%;
    animation: kenBurns 22s ease-in-out infinite alternate;
    will-change: transform;
  }
  @keyframes kenBurns {
    0%   { transform: scale(1.04) translate3d(-1%, -.5%, 0); }
    50%  { transform: scale(1.09) translate3d(1%, .5%, 0); }
    100% { transform: scale(1.06) translate3d(-.5%, 1%, 0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero__image { animation: none; }
    .hero__video { display: none; }
  }
  /* Mobile: reframe so the couple sits centered, with a stronger scrim
     so the photo reads as backdrop (not focal point) and the title
     stays the dominant element. */
  @media (max-width: 860px) {
    .hero__image {
      background-image:
        linear-gradient(180deg,
          rgba(20,10,36,.55) 0%,
          rgba(20,10,36,.78) 45%,
          rgba(20,10,36,.96) 85%),
        url('/hero/seersuckers.jpg');
      background-position: center, center 38%;
    }
  }
  /* Smaller phones: center the couple cleaner and tighten scrim further */
  @media (max-width: 480px) {
    .hero__image {
      background-image:
        linear-gradient(180deg,
          rgba(20,10,36,.62) 0%,
          rgba(20,10,36,.82) 50%,
          rgba(20,10,36,.97) 88%),
        url('/hero/seersuckers.jpg');
      background-position: center, center 40%;
    }
  }
  /* Hero video loop — silent 12s scene behind the photo layer, fades in after first paint */
  .hero__video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    filter: saturate(1.05) contrast(1.02);
    pointer-events: none;
  }
  .hero__video.is-ready { opacity: .55; }
  /* When the video is playing, hide the photo entirely — it was bleeding
     through (especially the white tent / sky in the seersuckers shot). The
     video IS the hero visual; photo only shows as a fallback when the video
     can't autoplay or hasn't loaded. */
  .hero.has-video .hero__image {
    opacity: 0;
    mix-blend-mode: normal;
    transition: opacity 1.2s var(--ease);
  }
  /* Mobile: drop the video to save bandwidth & battery */
  @media (max-width: 720px) {
    .hero__video { display: none; }
  }
  /* ---------- subtle grain texture on paper/cream sections ---------- */
  .section--paper, .section--cream {
    position: relative;
  }
  .section--paper::before,
  .section--cream::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .035;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.06  0 0 0 0 0.21  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    background-size: 160px 160px;
    z-index: 0;
  }
  .section--paper > *, .section--cream > * { position: relative; z-index: 1; }
  .hero__ornament {
    position: absolute;
    z-index: -1;
    opacity: .18;
    pointer-events: none;
  }
  .hero__ornament--tl { top: 90px; left: var(--gutter); width: 140px; transform: rotate(-18deg); }
  .hero__ornament--br { bottom: 40px; right: var(--gutter); width: 180px; transform: rotate(12deg); }

  .hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100%;
  }
  /* Force grid items to honor parent width — default min-width:auto would
     allow long uppercase title to push the column wider than the viewport */
  .hero__grid > * { min-width: 0; }
  @media (min-width: 900px) {
    .hero__grid { grid-template-columns: 1.3fr .8fr; align-items: end; gap: 72px; }
  }

  .hero__eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--gold);
    margin-bottom: 26px;
  }
  .hero__eyebrow .line { width: 38px; height: 1px; background: var(--gold); display: inline-block; }

  .hero__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(48px, 12vw, 148px);
    line-height: .92;
    letter-spacing: -0.01em;
    margin: 0 0 28px;
    text-transform: uppercase;
    word-break: keep-all;
    overflow-wrap: anywhere; /* never let one long word force horizontal scroll */
  }
  @media (max-width: 380px) {
    .hero__title { font-size: 42px; }
  }
  .hero__title .and {
    font-family: var(--script);
    font-weight: 400;
    font-size: 0.45em;
    color: var(--gold);
    text-transform: none;
    letter-spacing: 0;
    display: inline-block;
    transform: translateY(-0.12em);
    padding: 0 0.1em;
  }
  .hero__lede {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.5;
    color: rgba(253,251,246,.86);
    max-width: 540px;
    margin: 0 0 40px;
  }
  .hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
  }

  .hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(253,251,246,.18);
  }
  .hero__meta .chunk { min-width: 140px; }
  .hero__meta .label {
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(253,251,246,.72);
    margin-bottom: 6px;
  }
  .hero__meta .val {
    font-family: var(--display);
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
    overflow-wrap: anywhere; /* allow long venue name to wrap on mobile */
  }
  /* Mobile: each chunk gets full row so venue name doesn't get clipped */
  @media (max-width: 560px) {
    .hero__meta { gap: 22px 28px; }
    .hero__meta .chunk { min-width: 100%; }
    .hero__meta .val { letter-spacing: .04em; font-size: 15px; }
  }

  /* countdown */
  .countdown {
    background: rgba(253,251,246,.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(253,251,246,.14);
    padding: 28px 28px 24px;
    border-radius: 6px;
  }
  .countdown__label {
    display: flex; align-items: center; gap: 10px;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .countdown__label::before {
    content:""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(201,169,97,.5);
    animation: pulse 2s infinite var(--ease);
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0    rgba(201,169,97,.6); }
    70%  { box-shadow: 0 0 0 12px rgba(201,169,97,0);  }
    100% { box-shadow: 0 0 0 0    rgba(201,169,97,0);  }
  }
  .countdown__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    text-align: center;
  }
  .countdown__cell {
    background: rgba(20,10,36,.28);
    border: 1px solid rgba(253,251,246,.08);
    padding: 16px 6px 12px;
    border-radius: 4px;
  }
  .countdown__num {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1;
    color: var(--paper);
    font-variant-numeric: tabular-nums;
  }
  .countdown__unit {
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(253,251,246,.55);
    margin-top: 8px;
  }

  /* ---------- marquee / positioning ---------- */
  .marquee {
    background: var(--ink);
    color: var(--paper);
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid rgba(201,169,97,.3);
    border-bottom: 1px solid rgba(201,169,97,.3);
  }
  .marquee__track {
    display: flex;
    gap: 56px;
    animation: scroll 42s linear infinite;
    white-space: nowrap;
  }
  .marquee__item {
    font-family: var(--display);
    font-size: 14px;
    letter-spacing: .36em;
    text-transform: uppercase;
    color: rgba(253,251,246,.88);
    display: inline-flex; align-items: center; gap: 56px;
  }
  .marquee__item .dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold);
    display: inline-block;
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ---------- section base ---------- */
  section { position: relative; }
  .section {
    padding: clamp(80px, 11vw, 160px) 0;
  }
  .section--cream { background: var(--cream); }
  .section--paper { background: var(--paper); }
  .section--dark  { background: var(--purple-3); color: var(--paper); }
  .section--ink   { background: var(--ink); color: var(--paper); }

  .section__head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: clamp(40px, 6vw, 72px);
    align-items: end;
  }
  @media (min-width: 860px) {
    .section__head { grid-template-columns: .7fr 1fr; gap: 64px; }
  }
  .section__label {
    display: flex; align-items: center; gap: 14px;
    color: var(--gold-deep);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .section--dark .section__label, .section--ink .section__label { color: var(--gold); }
  .section__label .tick { width: 28px; height: 1px; background: currentColor; }

  .section__title {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(36px, 5.4vw, 76px);
    line-height: .98;
    letter-spacing: -0.01em;
    margin: 0;
    text-transform: uppercase;
  }
  .section__title em {
    font-family: var(--script);
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    color: var(--purple);
    font-size: 1.05em;
    font-weight: 400;
  }
  .section--dark .section__title em, .section--ink .section__title em { color: var(--gold); }

  .section__dek {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(17px, 1.35vw, 19px);
    line-height: 1.6;
    color: rgba(20,10,36,.72);
    max-width: 48ch;
  }
  .section--dark .section__dek, .section--ink .section__dek { color: rgba(253,251,246,.78); }

  /* ---------- schedule ---------- */
  .schedule {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (min-width: 720px)  { .schedule { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1100px) { .schedule { grid-template-columns: repeat(4, 1fr); } }
  .card {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 32px 28px 28px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
    position: relative;
    overflow: hidden;
    min-height: 380px;
  }
  .card::before {
    content:""; position:absolute; left:0; top:0; bottom:0; width: 3px;
    background: var(--purple);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s var(--ease);
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -28px rgba(20,10,36,.28);
    border-color: transparent;
  }
  .card:hover::before { transform: scaleY(1); }

  .card__image {
    display: block;
    margin: -32px -28px 4px;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--purple-3), var(--purple));
    cursor: zoom-in;
  }
  .card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform .9s var(--ease), opacity .4s var(--ease);
  }
  .card:hover .card__image img { transform: scale(1.06); }
  .card__image::after {
    content: "View flyer →";
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(20,10,36,.9);
    color: var(--paper);
    padding: 7px 11px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .card:hover .card__image::after { opacity: 1; transform: translateY(0); }

  .card__num {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .28em;
    color: var(--gold-deep);
    font-weight: 500;
  }
  .card__when {
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 500;
  }
  .card__title {
    font-family: var(--display);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    margin: 0;
  }
  .card__dek {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.55;
    color: rgba(20,10,36,.72);
    margin: 0;
    flex-grow: 1;
  }
  .card__meta {
    display: flex; flex-wrap: wrap; gap: 6px 14px;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(20,10,36,.72);
    padding-top: 16px;
    border-top: 1px solid var(--rule);
  }
  .card__tickets {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--purple);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  /* ---------- impact ---------- */
  .impact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
  }
  @media (min-width: 900px) {
    .impact { grid-template-columns: 1.1fr .9fr; gap: 80px; }
  }
  .impact__stat {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(72px, 14vw, 200px);
    line-height: .85;
    letter-spacing: -0.03em;
    color: var(--gold);
  }
  .impact__stat small {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(16px, 1.4vw, 20px);
    color: rgba(253,251,246,.7);
    letter-spacing: 0;
    margin-top: 18px;
    line-height: 1.5;
  }
  .impact__body p {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.65;
    color: rgba(253,251,246,.85);
    margin: 0 0 20px;
  }
  .impact__partners {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 28px;
  }
  .chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(253,251,246,.22);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(253,251,246,.8);
  }

  /* ---------- gallery ---------- */
  .gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
  }
  .gallery__tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--lilac);
    background-size: cover;
    background-position: center;
  }
  .gallery__tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20,10,36,.75));
    opacity: 0;
    transition: opacity .4s var(--ease);
  }
  .gallery__tile .tag {
    position: absolute; left: 16px; bottom: 16px; z-index: 2;
    color: var(--paper);
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
  }
  .gallery__tile:hover::after,
  .gallery__tile:hover .tag { opacity: 1; transform: translateY(0); }
  .gallery__tile img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 28%; /* favor upper third — faces sit there */
    transition: transform .9s var(--ease);
  }
  /* Portrait shots: faces usually higher still */
  .gallery__tile--tall img,
  .gallery__tile--feature img { object-position: center 22%; }
  .gallery__tile picture { display: block; width: 100%; height: 100%; }
  .gallery__tile:hover img { transform: scale(1.05); }

  /* Masonry-style 4-column archive grid with feature/wide/tall variants */
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 14px;
  }
  .gallery__tile { cursor: zoom-in; }
  .gallery__tile--feature { grid-column: span 2; grid-row: span 2; }
  .gallery__tile--wide    { grid-column: span 2; grid-row: span 1; }
  .gallery__tile--tall    { grid-column: span 1; grid-row: span 2; }
  @media (max-width: 980px) {
    .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
    .gallery__tile--feature { grid-column: span 2; grid-row: span 2; }
    .gallery__tile--wide    { grid-column: span 2; grid-row: span 1; }
  }
  @media (max-width: 640px) {
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
    .gallery__tile--feature { grid-column: span 2; grid-row: span 2; }
    .gallery__tile--wide    { grid-column: span 2; grid-row: span 1; }
    .gallery__tile--tall    { grid-column: span 1; grid-row: span 2; }
  }

  /* ---------- sponsors ---------- */
  .sponsors__tier {
    margin-bottom: 56px;
  }
  .sponsors__label {
    display: flex; align-items: baseline; gap: 14px;
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
  }
  .sponsors__label .rank { color: var(--gold-deep); }
  .sponsors__grid {
    display: grid;
    gap: 20px 40px;
  }
  .sponsors__tier--presenting .sponsors__grid { grid-template-columns: 1fr; }
  .sponsors__tier--platinum   .sponsors__grid { grid-template-columns: repeat(3, 1fr); }
  .sponsors__tier--gold       .sponsors__grid { grid-template-columns: repeat(4, 1fr); }
  @media (max-width: 780px) {
    .sponsors__tier--platinum .sponsors__grid { grid-template-columns: repeat(2, 1fr); }
    .sponsors__tier--gold     .sponsors__grid { grid-template-columns: repeat(2, 1fr); }
  }
  .sponsor {
    border: 1px solid var(--rule);
    padding: 28px 18px;
    text-align: center;
    border-radius: var(--radius);
    font-family: var(--display);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(20,10,36,.68);
    transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  }
  .sponsor:hover { color: var(--purple); border-color: var(--purple); background: var(--lilac-soft); }
  .sponsors__tier--presenting .sponsor {
    padding: 48px 18px; font-size: 26px;
    background: linear-gradient(135deg, var(--lilac-soft), var(--cream));
    border-color: rgba(92,22,156,.2);
    color: var(--purple-2);
  }
  .sponsors__tier--platinum .sponsor { font-size: 17px; }
  .sponsors__tier--gold .sponsor { font-size: 13px; padding: 22px 12px; }

  /* ---------- faq ---------- */
  .faq {
    max-width: 880px;
    margin: 0 auto;
  }
  .faq__item {
    border-bottom: 1px solid var(--rule);
  }
  .faq__item:first-child { border-top: 1px solid var(--rule); }
  .faq__q {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    font-family: var(--display);
    font-size: clamp(17px, 1.6vw, 22px);
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: left;
    color: var(--ink);
    font-weight: 400;
  }
  .faq__q .plus {
    width: 22px; height: 22px; position: relative;
    flex-shrink: 0;
  }
  .faq__q .plus::before, .faq__q .plus::after {
    content:""; position: absolute; background: var(--purple);
    transition: transform .3s var(--ease);
  }
  .faq__q .plus::before { inset: 50% 0 auto 0; height: 1.5px; transform: translateY(-50%); }
  .faq__q .plus::after  { inset: 0 50% 0 auto; width: 1.5px; transform: translateX(50%); }
  .faq__item.is-open .faq__q .plus::after { transform: translateX(50%) rotate(90deg); opacity: 0; }

  .faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
  }
  .faq__a-inner {
    padding: 0 0 28px;
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.65;
    color: rgba(20,10,36,.72);
    max-width: 64ch;
  }

  /* ---------- final cta ---------- */
  .finalcta {
    text-align: center;
    padding: clamp(90px, 14vw, 180px) 0;
    position: relative;
    overflow: hidden;
  }
  .finalcta::before {
    content: "SBMS26";
    position: absolute;
    inset: auto 0 -0.25em 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(180px, 32vw, 480px);
    letter-spacing: -0.04em;
    color: rgba(201,169,97,.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    text-align: center;
  }
  .finalcta__kicker {
    font-family: var(--script);
    font-size: clamp(36px, 5vw, 64px);
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1;
  }
  .finalcta__h {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(42px, 7vw, 96px);
    line-height: .95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 32px;
  }
  .finalcta__ctas {
    display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center;
    position: relative; z-index: 1;
  }

  /* newsletter */
  .newsletter {
    margin-top: 64px;
    max-width: 520px;
    margin-inline: auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .newsletter p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    color: rgba(253,251,246,.7);
    margin: 0 0 16px;
  }
  .newsletter__form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(253,251,246,.25);
    border-radius: 2px;
    overflow: hidden;
    background: rgba(253,251,246,.04);
  }
  .newsletter__form input {
    flex: 1;
    padding: 14px 18px;
    border: 0;
    background: transparent;
    color: var(--paper);
    font: inherit;
    font-size: 14px;
    outline: none;
  }
  .newsletter__form input::placeholder { color: rgba(253,251,246,.45); }
  .newsletter__form button {
    padding: 0 22px;
    background: var(--gold);
    color: var(--purple-3);
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .3s var(--ease);
  }
  .newsletter__form button:hover { background: #d6b670; }
  .newsletter__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--gold);
    color: var(--purple-3);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .04em;
    text-decoration: none;
    border-radius: 2px;
    transition: background .3s var(--ease), transform .3s var(--ease);
  }
  .newsletter__cta:hover { background: #d6b670; transform: translateX(2px); }
  .newsletter__cta .arrow { transition: transform .3s var(--ease); }
  .newsletter__cta:hover .arrow { transform: translateX(4px); }

  /* ---------- footer ---------- */
  .footer {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 0 40px;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(253,251,246,.1);
  }
  @media (min-width: 860px) {
    .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 64px; }
  }
  .footer__brand .logo .mark { color: var(--gold); }
  .footer__tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(253,251,246,.72);
    margin: 22px 0 0;
    max-width: 380px;
  }
  .footer__col h4 {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 20px;
    font-weight: 500;
  }
  .footer__col ul { list-style: none; padding: 0; margin: 0; }
  .footer__col li { margin-bottom: 12px; font-size: 14px; color: rgba(253,251,246,.75); }
  .footer__col a { transition: color .2s var(--ease); }
  .footer__col a:hover { color: var(--gold); }
  .footer__col address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(253,251,246,.75);
  }
  .footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    padding-top: 28px;
    font-size: 12px;
    color: rgba(253,251,246,.5);
    letter-spacing: .1em;
  }
  .footer__socials {
    display: inline-flex; gap: 18px;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
  }
  .footer__socials a:hover { color: var(--gold); }
  .footer__sep { margin: 0 10px; opacity: .4; }
  .footer__legal {
    color: rgba(253,251,246,.65);
    text-decoration: none;
    transition: color .25s var(--ease);
  }
  .footer__legal:hover { color: var(--gold); }

  /* ---------- reveal animation ---------- */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  .reveal--d1 { transition-delay: .08s; }
  .reveal--d2 { transition-delay: .16s; }
  .reveal--d3 { transition-delay: .24s; }
  .reveal--d4 { transition-delay: .32s; }

  /* ---------- lightbox ---------- */
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(20,10,36,.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s var(--ease);
    padding: 60px 24px;
    cursor: zoom-out;
  }
  .lightbox.is-open { opacity: 1; visibility: visible; }
  .lightbox__img {
    max-width: min(920px, 100%);
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    border-radius: 2px;
  }
  .lightbox__close {
    position: absolute;
    top: 28px; right: 28px;
    color: var(--paper);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    display: inline-flex; gap: 10px; align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(253,251,246,.3);
    border-radius: 2px;
    transition: border-color .25s var(--ease);
  }
  .lightbox__close:hover { border-color: var(--gold); color: var(--gold); }
  .lightbox__caption {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    color: rgba(253,251,246,.7);
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    font-family: var(--sans);
    text-align: center;
  }

  /* utility */
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }

/* ============================================================= */

.impact-band {
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid rgba(253,251,246,.14);
  }
  .impact-band__label {
    display: flex; align-items: center; gap: 14px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 28px;
  }
  .impact-band__label .tick { width: 28px; height: 1px; background: currentColor; }
  .impact-band__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  @media (min-width: 720px) {
    .impact-band__grid {
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 180px;
      gap: 16px;
    }
    .impact-band__tile--a { grid-column: span 4; grid-row: span 2; }
    .impact-band__tile--b { grid-column: span 2; grid-row: span 1; }
    .impact-band__tile--c { grid-column: span 2; grid-row: span 1; }
    .impact-band__tile--d { grid-column: span 6; grid-row: span 1; }
  }
  @media (min-width: 1080px) {
    .impact-band__grid {
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: 220px;
      gap: 18px;
    }
    .impact-band__tile--a { grid-column: span 7; grid-row: span 2; }
    .impact-band__tile--b { grid-column: span 5; grid-row: span 1; }
    .impact-band__tile--c { grid-column: span 5; grid-row: span 1; }
    .impact-band__tile--d { grid-column: span 12; grid-row: span 1; }
  }
  .impact-band__tile {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, rgba(46,10,84,.55), rgba(20,10,36,.75));
  }
  @media (min-width: 720px) {
    .impact-band__tile { aspect-ratio: auto; }
  }
  .impact-band__tile img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform .9s var(--ease);
    filter: brightness(.95);
  }
  .impact-band__tile:hover img { transform: scale(1.05); filter: brightness(1); }
  .impact-band__tile figcaption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 16px 14px;
    background: linear-gradient(180deg, transparent, rgba(20,10,36,.9));
    color: var(--paper);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

/* ============================================================= */

/* ---------- Westin host-hotel block ---------- */
  .westin {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
  }
  .westin:hover {
    box-shadow: 0 40px 80px -48px rgba(20,10,36,.28);
    border-color: var(--purple);
  }
  @media (min-width: 900px) {
    .westin { grid-template-columns: 1.1fr 1fr; min-height: 560px; }
  }
  .westin__media {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    background: var(--ink);
  }
  .westin__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
  }
  .westin:hover .westin__media img { transform: scale(1.04); }
  .westin__badge {
    position: absolute;
    top: 24px; left: 24px;
    padding: 10px 14px;
    background: rgba(20,10,36,.78);
    color: var(--paper);
    border-radius: var(--radius);
    font-family: var(--display);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .westin__badge span {
    font-size: 10px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .westin__badge strong {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .westin__body {
    padding: clamp(32px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
  }
  .westin__rank {
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
  }
  .westin__name {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin: 0;
  }
  .westin__addr {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple);
    margin: 0;
  }
  .westin__desc {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(20,10,36,.75);
    margin: 8px 0 0;
  }
  .westin__amenities {
    list-style: none;
    padding: 0;
    margin: 4px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
  }
  .westin__amenities li {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    padding-left: 18px;
    position: relative;
  }
  .westin__amenities li::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 10px; height: 1px;
    background: var(--gold-deep);
  }
  .westin__ctas {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  .westin__fine {
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    color: rgba(20,10,36,.72);
    margin: 8px 0 0;
  }

  /* ---------- Property gallery ---------- */
  .westin-gallery {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  @media (min-width: 860px) {
    .westin-gallery { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  }
  .westin-gallery__tile {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4 / 3;
    background: var(--ink);
  }
  .westin-gallery__tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .4s var(--ease);
    filter: brightness(.95);
  }
  .westin-gallery__tile:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
  }
  .westin-gallery__tile figcaption {
    position: absolute;
    left: 14px; bottom: 12px;
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--paper);
    padding: 4px 8px;
    background: rgba(20,10,36,.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 2px;
  }

/* ============================================================= */

/* ---------- Sponsorship tiers ---------- */
  .tiers {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  @media (min-width: 720px) { .tiers { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
  @media (min-width: 1080px) { .tiers { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
  .tier {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 32px 26px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  }
  .tier::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-deep);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
  }
  .tier:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -34px rgba(20,10,36,.28);
    border-color: var(--purple);
  }
  .tier:hover::before { transform: scaleX(1); }
  /* ---------- tier comparator ---------- */
  .tiers.is-comparing .tier { opacity: .4; filter: saturate(.75); }
  .tiers.is-comparing .tier.is-focus {
    opacity: 1; filter: none;
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 46px 90px -40px rgba(92,22,156,.4);
    border-color: var(--purple);
    z-index: 2;
  }
  .tiers.is-comparing .tier.is-focus::before { transform: scaleX(1); }
  .tiers.is-comparing .tier--title.is-focus { box-shadow: 0 50px 100px -36px rgba(212,160,70,.55); }
  .tier--title {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }
  .tier--title::before { background: var(--gold); transform: scaleX(1); height: 4px; }
  .tier--title:hover { border-color: var(--gold); box-shadow: 0 40px 80px -36px rgba(92,22,156,.4); }
  .tier__rank {
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
  }
  .tier--title .tier__rank { color: var(--gold); }
  .tier__price {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.015em;
    margin: 2px 0 6px;
  }
  .tier__name {
    font-family: var(--display);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 4px;
  }
  .tier__benefits {
    list-style: none;
    padding: 0;
    margin: 8px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
  }
  .tier__benefits li {
    font-family: var(--serif);
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(20,10,36,.78);
    padding-left: 18px;
    position: relative;
  }
  .tier--title .tier__benefits li { color: rgba(253,251,246,.78); }
  .tier__benefits li::before {
    content: "";
    position: absolute;
    left: 0; top: 10px;
    width: 10px; height: 1px;
    background: var(--gold-deep);
  }
  .tier--title .tier__benefits li::before { background: var(--gold); }
  .tier__benefits strong { color: var(--ink); font-weight: 500; }
  .tier--title .tier__benefits strong { color: var(--paper); }
  .tier__cta {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--purple);
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    transition: color .2s var(--ease);
  }
  .tier__cta:hover { color: var(--gold-deep); }
  .tier--title .tier__cta { color: var(--gold); border-top-color: rgba(253,251,246,.18); }
  .tier--title .tier__cta:hover { color: var(--paper); }

  /* ---------- Sponsor pitch ---------- */
  .sponsor-pitch {
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
  }
  @media (min-width: 900px) {
    .sponsor-pitch { grid-template-columns: 1fr 1.2fr; gap: 0; }
  }
  .sponsor-pitch__media {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 440px;
    background: var(--ink);
    cursor: zoom-in;
  }
  .sponsor-pitch__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 1s var(--ease), filter .4s var(--ease);
  }
  .sponsor-pitch__media:hover img { transform: scale(1.04); filter: brightness(1.05); }
  .sponsor-pitch__hint {
    position: absolute;
    bottom: 20px; left: 20px;
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--paper);
    padding: 10px 14px;
    background: rgba(20,10,36,.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 2px;
  }
  .sponsor-pitch__body { padding: clamp(28px, 3.2vw, 44px); }
  .sponsor-pitch__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--purple);
    font-weight: 500;
    margin-bottom: 14px;
  }
  .sponsor-pitch__label .tick {
    width: 28px; height: 1px; background: var(--purple);
  }
  .sponsor-pitch__h {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
  }
  .sponsor-pitch__dek {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(20,10,36,.75);
    margin: 0 0 24px;
  }
  .sponsor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin: 0 0 20px;
    padding: 20px 0 0;
    border-top: 1px solid var(--rule);
  }
  @media (min-width: 620px) { .sponsor-stats { grid-template-columns: repeat(4, 1fr); } }
  .sponsor-stat { display: flex; flex-direction: column; gap: 4px; }
  .sponsor-stat__num {
    font-family: var(--serif);
    font-size: clamp(26px, 2.4vw, 32px);
    font-weight: 400;
    line-height: 1;
    color: var(--purple);
    letter-spacing: -0.01em;
  }
  .sponsor-stat__lbl {
    font-family: var(--display);
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(20,10,36,.65);
  }
  .sponsor-pitch__fine {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12.5px;
    color: rgba(20,10,36,.68);
    margin: 0;
  }

  /* ---------- Sponsor contact strip ---------- */
  .sponsor-contact {
    margin-top: 40px;
    padding: 32px 28px;
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  @media (min-width: 720px) {
    .sponsor-contact { flex-direction: row; align-items: center; justify-content: space-between; padding: 36px 40px; }
  }
  .sponsor-contact__label {
    font-family: var(--display);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 6px;
  }
  .sponsor-contact__email {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 30px);
    color: var(--purple);
    display: block;
    margin-bottom: 4px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s var(--ease);
  }
  .sponsor-contact__email:hover { border-bottom-color: var(--purple); }
  .sponsor-contact__addr {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(20,10,36,.65);
  }
  .prospectus-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
    transition: color .2s var(--ease), border-color .2s var(--ease);
  }
  .prospectus-link::before {
    content: "↓";
    font-size: 14px;
    line-height: 1;
    transform: translateY(-1px);
  }
  .prospectus-link:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }

  /* =============================================================
     2026 Sponsor Roll (tiered honor roll on /sponsors)
     ============================================================= */
  .sponsor-roll__group { margin-top: 56px; }
  .sponsor-roll__group:first-of-type { margin-top: 40px; }

  .sponsor-roll__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
  }
  .sponsor-roll__tier {
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
  }
  .sponsor-roll__tier em {
    font-family: var(--script);
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gold-deep);
    font-size: 1.4em;
    font-weight: 400;
    padding: 0 4px;
  }
  .sponsor-roll__rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(46,10,84,.22), rgba(46,10,84,0));
  }

  .sponsor-roll__grid {
    display: grid;
    gap: 18px;
  }
  .sponsor-roll__grid--title    { grid-template-columns: 1fr; place-items: center; }
  .sponsor-roll__grid--title .reveal-tile {
    aspect-ratio: 1 / 1.05;
    max-width: 600px;
    width: 100%;
    justify-self: center;
  }
  .sponsor-roll__grid--title .reveal-tile .reveal-tile__face { padding: 56px 40px 40px; }
  .sponsor-roll__grid--title .reveal-tile .reveal-tile__lockup { gap: 22px; }
  .sponsor-roll__grid--title .reveal-tile .reveal-tile__logo { width: 230px; height: 230px; }
  .sponsor-roll__grid--title .reveal-tile .reveal-tile__mark { font-size: 78px; }
  .sponsor-roll__grid--title .reveal-tile .reveal-tile__name { font-size: 26px; margin-top: 10px; }
  .sponsor-roll__grid--title .reveal-tile .reveal-tile__role,
  .sponsor-roll__grid--title .reveal-tile .reveal-tile__hint { font-size: 12px; letter-spacing: .3em; }
  .sponsor-roll__grid--title .reveal-tile .reveal-tile__eyebrow { font-size: 12px; letter-spacing: .3em; }
  .sponsor-roll__grid--title .reveal-tile .reveal-tile__bio { font-size: 16px; line-height: 1.55; }
  .sponsor-roll__grid--platinum { grid-template-columns: repeat(2, 1fr); }
  .sponsor-roll__grid--gold     { grid-template-columns: repeat(3, 1fr); }
  .sponsor-roll__grid--silver   { grid-template-columns: repeat(4, 1fr); }

  @media (max-width: 900px) {
    .sponsor-roll__grid--gold   { grid-template-columns: repeat(2, 1fr); }
    .sponsor-roll__grid--silver { grid-template-columns: repeat(2, 1fr); }
    .sponsor-roll__grid--title  { grid-template-columns: 1fr; }
    .sponsor-roll__grid--title .reveal-tile { max-width: 360px; }
    .sponsor-roll__grid--title .reveal-tile .reveal-tile__logo { width: 160px; height: 160px; }
    .sponsor-roll__grid--title .reveal-tile .reveal-tile__mark { font-size: 52px; }
    .sponsor-roll__grid--title .reveal-tile .reveal-tile__name { font-size: 20px; }
  }
  @media (max-width: 520px) {
    .sponsor-roll__grid--platinum,
    .sponsor-roll__grid--gold,
    .sponsor-roll__grid--silver { grid-template-columns: 1fr; }
    .sponsor-roll__grid--title { grid-template-columns: 1fr; }
    .sponsor-roll__grid--title .reveal-tile { grid-column: span 1; grid-row: span 1; }
  }

  .sponsor-slot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    aspect-ratio: 3 / 2;
    padding: 24px 20px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(46,10,84,.12);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
    text-decoration: none;
    overflow: hidden;
  }

  /* Filled slots (real sponsors) */
  .sponsor-slot--filled {
    background: #fff;
    border: 1px solid rgba(201,169,97,.45);
    box-shadow: 0 18px 44px -30px rgba(46,10,84,.4);
  }
  .sponsor-slot--filled::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-deep), var(--gold));
  }
  .sponsor-slot__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }
  .sponsor-slot__logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: none;
  }
  .sponsor-slot__text {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(18px, 2.4vw, 30px);
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -.005em;
    text-align: center;
    max-width: 20ch;
  }
  .sponsor-slot--title .sponsor-slot__text {
    font-size: clamp(26px, 4vw, 44px);
    letter-spacing: -.01em;
  }
  .sponsor-slot__kicker {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: .32em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold-deep);
    margin-bottom: 10px;
  }

  /* Title tier override — slim, editorial */
  .sponsor-slot--title {
    aspect-ratio: auto;
    min-height: 132px;
    padding: 28px 40px;
    background:
      radial-gradient(800px 140px at 50% 0%, rgba(201,169,97,.075), transparent 60%),
      #fff;
  }
  @media (max-width: 640px) {
    .sponsor-slot--title { min-height: 160px; padding: 28px 24px; }
  }

  /* Open (placeholder) slots */
  .sponsor-slot--open {
    background:
      repeating-linear-gradient(45deg,
        rgba(46,10,84,.025) 0 6px,
        transparent 6px 12px),
      #fff;
    border: 1px dashed rgba(46,10,84,.28);
    color: var(--ink);
    cursor: pointer;
  }
  .sponsor-slot--open:hover {
    background: #fff;
    border-color: var(--purple);
    border-style: solid;
    box-shadow: 0 20px 46px -28px rgba(92,22,156,.4);
    transform: translateY(-3px);
  }
  .sponsor-slot__plus {
    font-family: var(--display);
    font-weight: 300;
    font-size: 34px;
    line-height: 1;
    color: var(--purple);
    margin-bottom: 10px;
    transition: transform .3s var(--ease);
  }
  .sponsor-slot--open:hover .sponsor-slot__plus { transform: rotate(90deg) scale(1.15); }
  .sponsor-slot__label {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(46,10,84,.72);
  }
  .sponsor-slot__sublabel {
    display: block;
    margin-top: 8px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(46,10,84,.55);
  }

  /* Flip tile — Leadership-card style with bio on back */
  .reveal-tile {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1.18;
    min-height: 280px;
    border-radius: 18px;
    cursor: pointer;
    outline: none;
  }
  .reveal-tile:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; }
  .reveal-tile__inner {
    position: relative;
    width: 100%;
    height: 100%;
    
    
  }
  @media (hover: hover) {
    .reveal-tile:hover .reveal-tile__face--front { filter: brightness(.45) saturate(.9); transform: scale(1.02); } .reveal-tile:hover .reveal-tile__face--back { transform: translateY(0); }
  }
  .reveal-tile.is-revealed .reveal-tile__face--front { filter: brightness(.45) saturate(.9); transform: scale(1.02); } .reveal-tile.is-revealed .reveal-tile__face--back { transform: translateY(0); }

  .reveal-tile__face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 30px 22px 22px;
    border-radius: 18px;
    transition: filter .42s cubic-bezier(.22,.68,.24,1), transform .42s cubic-bezier(.22,.68,.24,1);
    -webkit-transition: filter .42s cubic-bezier(.22,.68,.24,1), transform .42s cubic-bezier(.22,.68,.24,1);
    overflow: hidden;
  }
  .reveal-tile__face--front {
    background: var(--cream, #f7f2e9);
    border: 1px solid rgba(46,10,84,.08);
    box-shadow: 0 14px 36px -22px rgba(46,10,84,.25);
  }
  .reveal-tile__lockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-align: center;
    width: 100%;
    flex: 1;
  }
  .reveal-tile__logo {
    position: relative;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--paper);
    border: 1px solid rgba(20,10,36,.10);
    box-shadow:
      0 2px 0 rgba(255,255,255,.8) inset,
      0 10px 24px -14px rgba(20,10,36,.28);
  }
  .reveal-tile__logo::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(201,169,97,.35);
    pointer-events: none;
  }
  /* Dark variant — logos with black/brand-colored backgrounds */
  .reveal-tile__logo--dark {
    background: #0b0b0b;
    border-color: rgba(201, 169, 97, .45);
    box-shadow:
      0 2px 0 rgba(255, 255, 255, .04) inset,
      0 10px 24px -14px rgba(20, 10, 36, .35);
  }
  .reveal-tile__logo--dark::after {
    border-color: rgba(201, 169, 97, .55);
  }
  .reveal-tile__logo img {
    width: 84%;
    height: 84%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
  }
  /* Gold-tier sizing — slightly larger tiles since we only show 3 across */
  .sponsor-roll__grid--gold .reveal-tile {
    max-width: 340px;
    aspect-ratio: 1 / 1.15;
    min-height: 320px;
  }
  .sponsor-roll__grid--gold .reveal-tile .reveal-tile__logo {
    width: 156px;
    height: 156px;
  }
  .sponsor-roll__grid--gold .reveal-tile .reveal-tile__name {
    font-size: 18px;
    max-width: 20ch;
  }
  .sponsor-roll__grid--gold .reveal-tile .reveal-tile__bio {
    font-size: 13.5px;
    line-height: 1.5;
  }
  .reveal-tile__mark {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 42px;
    line-height: .92;
    letter-spacing: -.01em;
    color: var(--ink);
    text-align: center;
    display: block;
  }
  .reveal-tile__mark span {
    display: block;
  }
  .reveal-tile__mark span + span {
    margin-top: 2px;
  }
  .reveal-tile__name {
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -.005em;
    margin-top: 6px;
    max-width: 18ch;
  }
  .reveal-tile__role {
    font-family: var(--display);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--purple);
  }
  .reveal-tile__hint {
    font-family: var(--display);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--purple);
    margin-top: auto;
    padding-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .reveal-tile__hint .flip-ico {
    display: inline-block;
    font-size: 12px;
    transform: translateY(-1px);
  }

  .reveal-tile__face--back {
    transform: translateY(100%); z-index: 2;
    background:
      radial-gradient(400px 220px at 80% 0%, rgba(201,169,97,.16), transparent 60%),
      linear-gradient(140deg, #1a0832 0%, #2E0A54 55%, #3b0e6f 100%);
    border: 1px solid rgba(201,169,97,.32);
    color: var(--paper);
    padding: 24px 22px 20px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .reveal-tile__back-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    height: 100%;
  }
  .reveal-tile__eyebrow {
    font-family: var(--display);
    font-size: 9px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .reveal-tile__bio {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(12px, 1.05vw, 14px);
    line-height: 1.5;
    color: rgba(253,251,246,.88);
    margin: 0 0 auto 0;
  }
  .reveal-tile__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    transition: color .2s var(--ease), border-color .2s var(--ease);
  }
  .reveal-tile__link:hover { color: var(--paper); border-bottom-color: var(--paper); }
  .reveal-tile__link .arrow { font-size: 12px; transform: translateY(-1px); }

  @media (max-width: 560px) {
    .reveal-tile { min-height: 260px; max-width: 240px; }
    .reveal-tile__face { padding: 26px 20px 20px; }
    .reveal-tile__logo { width: 118px; height: 118px; }
    .reveal-tile__name { font-size: 16px; }
    .reveal-tile__bio { font-size: 13px; }
  }

  /* Title Sponsor callout (home page) */
  #title-sponsor .title-sponsor__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: center;
  }
  @media (min-width: 880px) {
    #title-sponsor .title-sponsor__grid {
      grid-template-columns: 1.4fr 1fr;
      gap: 64px;
    }
  }
  #title-sponsor .title-sponsor__tile {
    display: flex;
    justify-content: center;
  }
  #title-sponsor .reveal-tile {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1.18;
  }

  /* ==========================================================
     SPONSORSHIP COMMITMENT FORM (#commit)
     ========================================================== */
  #commit { background: var(--paper, #FDFBF6); }
  .commit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    align-items: start;
  }
  @media (min-width: 960px) {
    .commit {
      grid-template-columns: 0.85fr 1.15fr;
      gap: 72px;
    }
    .commit__intro {
      position: sticky;
      top: 96px;
    }
  }

  .commit__intro .section__title { font-size: clamp(34px, 4.4vw, 56px); }
  .commit__bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
  }
  .commit__bullets li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink, #140A24);
    opacity: .88;
  }
  .commit__dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--gold, #C9A961);
    box-shadow: 0 0 0 4px rgba(201,169,97,.18);
  }
  .commit__legal {
    margin: 22px 0 0;
    padding: 16px 18px;
    border-left: 2px solid var(--gold);
    background: rgba(201, 169, 97, .06);
    font-family: var(--serif);
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(20,10,36,.78);
  }
  .commit__legal strong { color: var(--purple); font-weight: 600; }

  .commit__form {
    background: #fff;
    border: 1px solid rgba(20,10,36,.08);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 30px 60px -36px rgba(20,10,36,.24);
  }
  @media (max-width: 560px) {
    .commit__form { padding: 22px; border-radius: 18px; }
  }

  .commit__honey { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

  .commit__group {
    border: 0;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 16px;
  }
  .commit__group--tight { margin-bottom: 18px; }
  .commit__legend {
    font-family: var(--display, 'Playfair Display', serif);
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--purple, #5C169C);
    padding: 0 0 6px;
    margin: 0 0 6px;
    border-bottom: 1px solid rgba(92,22,156,.14);
    width: 100%;
  }

  .commit__row { display: grid; gap: 16px; }
  @media (min-width: 640px) {
    .commit__row--2 { grid-template-columns: 1fr 1fr; }
  }

  .commit__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
  }
  .commit__label {
    font-weight: 600;
    color: var(--ink, #140A24);
    font-size: 13px;
    letter-spacing: .02em;
  }
  .commit__label em {
    color: var(--purple, #5C169C);
    font-style: normal;
    font-weight: 700;
    margin-left: 2px;
  }
  .commit__hint {
    font-size: 12px;
    color: rgba(20,10,36,.72);
    margin-top: 2px;
  }

  .commit__field input[type="text"],
  .commit__field input[type="email"],
  .commit__field input[type="tel"],
  .commit__field input[type="url"],
  .commit__field textarea,
  .commit__field select {
    width: 100%;
    background: var(--cream, #F7F1E6);
    border: 1px solid rgba(20,10,36,.12);
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    font-size: 15px;
    color: var(--ink, #140A24);
    transition: border-color .15s, box-shadow .15s, background .15s;
  }
  .commit__field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
  .commit__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235C169C' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  .commit__field input:focus,
  .commit__field textarea:focus,
  .commit__field select:focus {
    outline: none;
    border-color: var(--purple, #5C169C);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(92,22,156,.12);
  }
  .commit__field input[type="file"] {
    font-size: 14px;
    padding: 10px 0;
    color: rgba(20,10,36,.7);
  }
  .commit__field input[type="file"]::file-selector-button {
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    background: var(--ink, #140A24);
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 8px 14px;
    margin-right: 12px;
    cursor: pointer;
    transition: background .15s;
  }
  .commit__field input[type="file"]::file-selector-button:hover {
    background: var(--purple, #5C169C);
  }

  .commit__checks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 6px;
  }
  @media (min-width: 560px) {
    .commit__checks { grid-template-columns: 1fr 1fr; }
  }
  .commit__checks label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 12px;
    background: var(--cream, #F7F1E6);
    border: 1px solid rgba(20,10,36,.08);
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    transition: background .15s, border-color .15s;
  }
  .commit__checks label:hover { background: #fff; border-color: rgba(92,22,156,.35); }
  .commit__checks input[type="checkbox"] { margin-top: 3px; flex: 0 0 auto; accent-color: var(--purple, #5C169C); }

  .commit__consent {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--cream, #F7F1E6);
    border: 1px solid rgba(20,10,36,.12);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.55;
    cursor: pointer;
  }
  .commit__consent input[type="checkbox"] {
    margin-top: 3px;
    flex: 0 0 auto;
    accent-color: var(--purple, #5C169C);
    width: 18px; height: 18px;
  }
  .commit__consent em {
    color: var(--purple, #5C169C);
    font-style: normal;
    font-weight: 700;
  }

  .commit__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
  }
  @media (min-width: 640px) {
    .commit__actions {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }
  }
  .commit__fineprint {
    font-size: 12px;
    color: rgba(20,10,36,.72);
    line-height: 1.5;
    max-width: 32ch;
  }
  .commit__form .btn--primary {
    align-self: flex-start;
  }

  .commit__success {
    background: linear-gradient(135deg, rgba(92,22,156,.08), rgba(201,169,97,.12));
    border: 1px solid rgba(92,22,156,.22);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 22px;
    color: var(--ink, #140A24);
    font-size: 15px;
    line-height: 1.55;
  }
  .commit__success strong {
    color: var(--purple, #5C169C);
    margin-right: 6px;
  }

/* ==========================================================================
   FOOD TRUCKS
   ========================================================================== */
.trucks .section__title em {
  color: var(--gold);
  font-style: italic;
}
.trucks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
@media (min-width: 1120px) {
  .trucks__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
  }
}
.truck-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 10, 36, .08);
  border: 1px solid rgba(92, 22, 156, .08);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.truck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(20, 10, 36, .14);
}
.truck-card__image {
  aspect-ratio: 10 / 7;
  width: 100%;
  background: linear-gradient(135deg, #4a1684, #c89b3c);
  position: relative;
  overflow: hidden;
}
.truck-card__image svg {
  width: 100%;
  height: 100%;
  display: block;
}
.truck-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos, 50% 45%);
  display: block;
  transition: transform .6s var(--ease);
}
.truck-card:hover .truck-card__image img {
  transform: scale(1.04);
}
.truck-card__image--photo {
  position: relative;
}
.truck-card__image--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(74, 22, 132, 0) 45%,
    rgba(74, 22, 132, .32) 80%,
    rgba(26, 8, 49, .55) 100%
  );
  pointer-events: none;
}
.truck-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.truck-card__slot {
  font-family: var(--display);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.truck-card__name {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.truck-card__cuisine {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.4;
  color: rgba(20, 10, 36, .62);
  margin: 0 0 14px;
  font-style: italic;
}
.truck-card__menu {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.truck-card__menu li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(92, 22, 156, .18);
}
.truck-card__menu li:last-child {
  border-bottom: none;
}
.truck-card__cta {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(92, 22, 156, .15);
  margin-top: auto;
  padding-top: 14px;
  transition: color .25s ease, gap .25s ease;
}
.truck-card__cta:hover {
  color: var(--gold);
  gap: 12px;
}
.truck-card__cta .arrow {
  transition: transform .25s ease;
}
.truck-card__cta:hover .arrow {
  transform: translateX(3px);
}

/* Open-slot card (5th "your truck?" card) */
.truck-card--open {
  background: repeating-linear-gradient(
    135deg,
    var(--paper) 0 14px,
    #efe6cd 14px 28px
  );
  border: 1.5px dashed rgba(92, 22, 156, .45);
  box-shadow: none;
}
.truck-card--open:hover {
  border-color: rgba(92, 22, 156, .85);
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(20, 10, 36, .10);
}
.truck-card--open .truck-card__slot {
  color: var(--purple);
  opacity: .85;
}
.truck-card--open .truck-card__name {
  color: var(--purple);
  font-style: italic;
}
.truck-card--open .truck-card__cta {
  color: var(--purple);
}
.truck-card--open .truck-card__cta:hover {
  color: var(--gold);
}

/* Vendor CTA row under trucks grid */
.trucks__cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(92, 22, 156, .08), rgba(201, 155, 60, .12));
  border: 1px solid rgba(92, 22, 156, .2);
  border-radius: 16px;
}
.trucks__cta-copy {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(20, 10, 36, .78);
  max-width: 560px;
}
.trucks__cta-copy strong {
  color: var(--purple);
  font-weight: 600;
}
@media (max-width: 640px) {
  .trucks__cta {
    padding: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Vendor application card */
.trucks__apply {
  margin-top: 72px;
  background: linear-gradient(135deg, #1a0831 0%, #2f0f58 60%, #4a1684 100%);
  border-radius: 22px;
  padding: 52px 48px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.trucks__apply::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201, 155, 60, .2), transparent 65%);
  pointer-events: none;
}
.trucks__apply-head {
  max-width: 640px;
  margin: 0 0 32px;
  position: relative;
}
.trucks__apply-head .eyebrow--gold {
  display: inline-block;
  margin-bottom: 14px;
}
.trucks__apply-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--paper);
  letter-spacing: -.015em;
}
.trucks__apply-title em {
  color: var(--gold);
  font-style: italic;
}
.trucks__apply-dek {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(246, 238, 216, .82);
  margin: 0;
}
.trucks__apply-dek strong {
  color: var(--gold);
  font-weight: 600;
}
.trucks__apply .commit__form {
  background: rgba(246, 238, 216, .96);
  color: var(--ink);
  padding: 34px;
  border-radius: 16px;
  position: relative;
}
@media (max-width: 720px) {
  .trucks__apply {
    padding: 36px 22px;
    border-radius: 16px;
  }
  .trucks__apply .commit__form {
    padding: 22px;
  }
}

/* ============================================================
   SUBHERO — used on /lodging, /archive, /sponsors, /vendor-apply, /privacy
   ============================================================ */
.subhero {
    position: relative;
    color: var(--paper);
    overflow: hidden;
    padding: 220px 0 90px;
    isolation: isolate;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
}
.subhero__bg {
    position: absolute; inset: 0;
    background:
          radial-gradient(900px 700px at 25% 30%, rgba(92,22,156,.50), transparent 60%),
          radial-gradient(1000px 700px at 75% 100%, rgba(10,4,22,.60), transparent 60%),
          linear-gradient(168deg, #1a0831 0%, #2f0f58 42%, #4a1684 100%);
    z-index: -2;
}
.subhero__image {
    position: absolute; inset: 0;
    background-image:
          linear-gradient(180deg, rgba(20,10,36,.65), rgba(20,10,36,.92) 82%),
          url('/hero/seersuckers.jpg');
    background-size: cover, cover;
    background-position: center, center 30%;
    background-repeat: no-repeat;
    z-index: -1;
}
.subhero__inner { max-width: 1100px; width: 100%; }
.subhero__eyebrow {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--sans); font-size: 12px;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
}
.subhero__eyebrow .line {
    width: 38px; height: 1px; background: var(--gold); display: inline-block;
}
.subhero__title {
    font-family: var(--serif); font-weight: 400;
    font-size: clamp(40px, 5.6vw, 72px);
    line-height: 1.05; letter-spacing: -.02em;
    margin: 0 0 22px; max-width: 20ch;
}
.subhero__title em { font-style: italic; color: var(--gold); font-weight: 400; }
.subhero__lede {
    font-family: var(--sans);
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.55; color: rgba(253,251,246,.82);
    max-width: 58ch; margin: 0 0 30px;
}
.subhero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) {
    .subhero { padding: 180px 0 70px; min-height: auto; }
}
@media (max-width: 480px) {
    .subhero { padding: 160px 0 56px; }
    .subhero__title { font-size: 38px; }
}

/* ============================================================
   MOBILE OPTIMIZATIONS — global guards + tighter topbar
   ============================================================ */
html, body { overflow-x: hidden; }
img, video, picture, source { max-width: 100%; height: auto; }

@media (max-width: 720px) {
    .topbar__inner { gap: 14px; }
    .topbar__right .sep:nth-of-type(n+2),
    .topbar__right a:nth-of-type(n+3) { display: none; }
}
@media (max-width: 560px) {
    .topbar__right .sep,
    .topbar__right a:nth-of-type(n+2) { display: none; }
}
@media (max-width: 720px) {
    .container { padding-left: 18px; padding-right: 18px; }
}
@media (max-width: 480px) {
    .container { padding-left: 16px; padding-right: 16px; }
}
.finalcta { overflow-x: hidden; }
section { overflow-x: clip; }
