
  :root {
    --forest: #0f3d1f;
    --forest-2: #0a2c16;
    --forest-3: #08210f;
    --forest-soft: #16502a;
    --gold: #e8b832;
    --gold-deep: #c89719;
    --cream: #f4efe3;
    --cream-2: #ebe4d2;
    --ink: #14140f;
    --line: rgba(255,255,255,.14);
    --line-dark: rgba(20,20,15,.12);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { background: var(--forest-2); color: var(--ink); }
  body {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  .display, h1, h2, h3, .eyebrow, .btn {
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }
  .display { font-weight: 800; line-height: 0.9; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 700; letter-spacing: 0.22em;
    color: var(--gold);
  }
  .eyebrow::before {
    content: ""; width: 28px; height: 1px; background: var(--gold);
  }
  .eyebrow.center { justify-content: center; }
  .eyebrow.no-rule::before { display: none; }

  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 26px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.14em;
    border-radius: 999px;
    border: 1.5px solid transparent;
    transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
    cursor: pointer;
    white-space: nowrap;
  }
  .btn .arr {
    display: inline-flex; align-items: center; justify-content: center;
    width: 26px; height: 26px; border-radius: 50%;
    background: rgba(255,255,255,.18); color: inherit;
    font-size: 14px;
  }
  .btn.primary { background: var(--gold); color: var(--forest); border-color: var(--gold); }
  .btn.primary .arr { background: var(--forest); color: var(--gold); }
  .btn.primary:hover { background: #f3c84a; transform: translateY(-1px); }
  .btn.outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
  .btn.outline .arr { background: rgba(255,255,255,.14); color: #fff; }
  .btn.outline:hover { border-color: var(--gold); color: var(--gold); }
  .btn.outline:hover .arr { background: rgba(232,184,50,.18); color: var(--gold); }
  .btn.dark { background: var(--forest); color: #fff; border-color: var(--forest); }
  .btn.dark .arr { background: var(--gold); color: var(--forest); }
  .btn.dark:hover { background: var(--forest-2); }
  .btn.ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
  .btn.ghost:hover { background: var(--forest); color: #fff; }
  .btn.small { padding: 10px 16px; font-size: 12px; }

  .wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

  /* ===================== NAV ===================== */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 18px 0;
    transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled {
    background: rgba(8, 33, 15, 0.85);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom-color: rgba(255,255,255,.06);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .brand {
    display: flex; align-items: center; gap: 14px;
    color: #fff;
  }
  .brand-mark {
    height: 30px; display: block;
  }
  .brand-tag {
    display: flex; flex-direction: column;
    line-height: 1;
    border-left: 1px solid rgba(255,255,255,.25);
    padding-left: 14px;
  }
  .brand-tag .t1 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700; font-size: 15px; letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .brand-tag .t2 {
    font-size: 10px; letter-spacing: 0.24em;
    color: rgba(255,255,255,.6); margin-top: 4px;
    text-transform: uppercase; font-weight: 500;
  }
  .nav-links {
    display: flex; align-items: center; gap: 32px;
    color: rgba(255,255,255,.85);
  }
  .nav-links a {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600; font-size: 14px;
    text-transform: uppercase; letter-spacing: 0.18em;
    transition: color .15s ease;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { display: flex; align-items: center; gap: 14px; }

  /* ===================== HERO ===================== */
  .hero {
    position: relative;
    min-height: 100vh;
    background: var(--forest-3);
    overflow: hidden;
    color: #fff;
    isolation: isolate;
  }
  .hero-video, .hero-video video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(8,33,15,.55) 0%, rgba(8,33,15,.55) 55%, rgba(8,33,15,.95) 100%),
      radial-gradient(ellipse at 30% 40%, rgba(15,61,31,.55) 0%, rgba(8,33,15,.85) 70%);
    z-index: 1;
  }
  .hero-grain {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: .35;
    mix-blend-mode: overlay;
    z-index: 2;
    pointer-events: none;
  }
  .hero-inner {
    position: relative; z-index: 3;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 100vh;
    padding: 140px 0 120px;
  }
  .hero-left { max-width: 620px; }
  .hero-eyebrow-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(6px);
    font-size: 12px; letter-spacing: 0.16em; font-weight: 600;
    text-transform: uppercase;
  }
  .hero-eyebrow-pill .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
    box-shadow: 0 0 0 4px rgba(232,184,50,.15);
  }
  .hero h1 {
    margin-top: 28px;
    font-size: clamp(54px, 7.4vw, 118px);
    line-height: 0.86;
    font-weight: 800;
    letter-spacing: -0.005em;
  }
  .hero h1 .row { display: block; }
  .hero h1 .row.no-wrap { white-space: nowrap; }
  .hero h1 .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
  }
  .hero-sub {
    margin-top: 26px;
    max-width: 640px;
    font-size: 19px;
    line-height: 1.55;
    color: rgba(255,255,255,.82);
  }
  .hero-ctas {
    margin-top: 36px;
    display: flex; gap: 14px; flex-wrap: wrap;
  }
  .hero-trust {
    margin-top: 40px;
    display: inline-flex; align-items: center; gap: 18px;
    padding: 12px 28px 12px 22px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(6px);
  }
  .hero-trust-mark {
    height: 64px; width: auto;
    display: block;
    filter: brightness(1.15) saturate(1.05);
  }
  .hero-trust-text {
    display: flex; flex-direction: column; line-height: 1;
    border-left: 1px solid rgba(255,255,255,.14);
    padding-left: 14px;
  }
  .hero-trust-text .l1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 10px; letter-spacing: 0.24em; font-weight: 600;
    text-transform: uppercase; color: rgba(255,255,255,.55);
  }
  .hero-trust-text .l2 {
    margin-top: 5px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px; letter-spacing: 0.14em; font-weight: 700;
    text-transform: uppercase; color: var(--gold);
  }
  .hero-stats {
    margin-top: 32px;
    display: flex; gap: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .hero-stat .n {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800; font-size: 44px; line-height: 1;
    color: #fff;
  }
  .hero-stat .n .unit { color: var(--gold); }
  .hero-stat .l {
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,.55); margin-top: 8px;
    font-weight: 600;
  }

  .hero-right {
    position: relative;
    height: 100%;
    display: flex; align-items: flex-end; justify-content: center;
  }
  .hero-photo-stage {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 600/751;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    z-index: 2;
    /* gentle bottom fade so the photo bleeds into the dark */
    -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
    filter: drop-shadow(0 30px 50px rgba(0,0,0,.4));
  }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  .hero-photo-glow { display: none; }
  .floating-date {
    position: absolute;
    left: -6%;
    bottom: 14%;
    z-index: 3;
    background: var(--gold);
    color: var(--forest);
    border-radius: 6px;
    padding: 16px 20px;
    min-width: 200px;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    transform: rotate(-3deg);
  }
  .floating-date .m {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px; letter-spacing: 0.22em; font-weight: 700;
    text-transform: uppercase;
    opacity: .8;
  }
  .floating-date .d {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 38px; font-weight: 800; line-height: 1;
    margin-top: 4px;
  }
  .floating-date .v {
    margin-top: 8px; padding-top: 8px;
    border-top: 1px solid rgba(15,61,31,.25);
    font-size: 12px; line-height: 1.3; font-weight: 600;
    letter-spacing: 0.04em;
  }
  .scroll-cue {
    position: absolute; left: 50%; bottom: 110px;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255,255,255,.55);
    font-size: 10px; letter-spacing: 0.32em;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  }
  .scroll-cue .line {
    width: 1px; height: 38px;
    background: linear-gradient(180deg, rgba(255,255,255,.5), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
  }
  @keyframes scroll-pulse {
    0%,100% { transform: scaleY(.6); transform-origin: top; opacity: .5; }
    50% { transform: scaleY(1); opacity: 1; }
  }

  /* Wave bottom of hero */
  .hero-wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    z-index: 4;
    line-height: 0;
    pointer-events: none;
  }
  .hero-wave svg { width: 100%; height: 90px; display: block; }

  /* ===================== DARK SECTIONS ===================== */
  .sec {
    position: relative;
    padding: 130px 0 130px;
  }
  .sec.dark { background: var(--forest); color: #fff; }
  .sec.dark-2 { background: var(--forest-2); color: #fff; }
  .sec.cream { background: var(--cream); color: var(--ink); }
  .sec.white { background: #fff; color: var(--ink); }

  .sec-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
  .sec-head.left { text-align: left; margin-left: 0; }
  .sec h2 {
    margin-top: 18px;
    font-size: clamp(44px, 6vw, 88px);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -0.005em;
  }
  .sec h2 .accent {
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
  }
  .sec-head p {
    margin-top: 22px;
    font-size: 19px;
    line-height: 1.55;
    max-width: 660px;
    margin-left: auto; margin-right: auto;
    opacity: .8;
  }
  .sec.dark .sec-head p, .sec.dark-2 .sec-head p { color: rgba(255,255,255,.7); }

  /* Why cards */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .why-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 36px 32px 32px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
  }
  .why-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,184,50,.4);
  }
  .why-card .num {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 14px; letter-spacing: 0.22em;
    color: var(--gold);
  }
  .why-card .icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: rgba(232,184,50,.12);
    color: var(--gold);
    margin: 18px 0 22px;
  }
  .why-card h3 {
    font-size: 34px; line-height: 1; font-weight: 800;
    margin-bottom: 14px;
    white-space: nowrap;
  }
  .why-card p {
    color: rgba(255,255,255,.7);
    font-size: 15px; line-height: 1.6;
  }
  .why-card .corner-glow {
    position: absolute;
    bottom: -40px; right: -40px;
    width: 160px; height: 160px;
    background: radial-gradient(circle, rgba(232,184,50,.15), transparent 70%);
    pointer-events: none;
  }

  /* ===================== CELEB GRID ===================== */
  .celeb-bar {
    display: flex; align-items: center; justify-content: space-between;
    margin: 48px 0 28px;
    padding: 18px 24px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(0,0,0,.18);
  }
  .celeb-count {
    display: flex; align-items: center; gap: 14px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700; letter-spacing: 0.16em; font-size: 13px;
    text-transform: uppercase;
  }
  .celeb-count .pip {
    font-size: 11px; padding: 4px 10px; border-radius: 999px;
    letter-spacing: 0.18em;
  }
  .pip.confirmed { border: 1px solid var(--gold); color: var(--gold); }
  .pip.booked { background: #fff; color: var(--forest); }
  .pip.tba { border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.55); }
  .celeb-filters { display: flex; gap: 8px; }
  .celeb-filters button {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; font-size: 15px;
    padding: 12px 22px; border-radius: 999px;
    background: transparent; color: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.18);
    cursor: pointer;
    transition: all .2s ease;
  }
  .celeb-filters button:hover { color: #fff; border-color: rgba(255,255,255,.35); }
  .celeb-filters button.active {
    background: var(--gold); color: var(--forest); border-color: var(--gold);
  }

  .celeb-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }
  .celeb-card {
    position: relative;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    padding: 22px 14px 18px;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
  }
  .celeb-card:hover {
    transform: translateY(-3px);
  }
  .celeb-avatar {
    width: 86px; height: 86px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a4a2a, #0a2c16);
    border: 2px solid rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .celeb-avatar .initials {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800; font-size: 28px;
    color: rgba(255,255,255,.4);
    letter-spacing: 0.02em;
  }
  .celeb-avatar .stripes {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 6px, transparent 6px 12px);
    pointer-events: none;
  }
  .celeb-name {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700; font-size: 18px; line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
  }
  .celeb-title {
    margin-top: 4px;
    font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    font-weight: 500;
  }
  .celeb-badge {
    display: inline-block;
    margin-top: 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
  }

  /* Confirmed: gold outlined */
  .celeb-card.confirmed {
    border-color: rgba(232,184,50,.55);
    background: linear-gradient(180deg, rgba(232,184,50,.06), rgba(232,184,50,0));
  }
  .celeb-card.confirmed:hover { border-color: var(--gold); }
  .celeb-card.confirmed .celeb-avatar {
    border-color: var(--gold);
    background: linear-gradient(135deg, #1d5530, #0a2c16);
  }
  .celeb-card.confirmed .celeb-badge {
    border: 1px solid var(--gold); color: var(--gold);
  }

  /* Booked: solid white */
  .celeb-card.booked {
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.04);
  }
  .celeb-card.booked .celeb-avatar { border-color: rgba(255,255,255,.6); }
  .celeb-card.booked .celeb-badge {
    background: #fff; color: var(--forest);
  }
  .celeb-card.booked::after {
    content: ""; position: absolute; top: 12px; right: 12px;
    width: 8px; height: 8px; border-radius: 50%; background: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,.12);
  }

  /* TBA: dimmed */
  .celeb-card.tba {
    opacity: .55;
    background: rgba(255,255,255,.015);
  }
  .celeb-card.tba .celeb-name { color: rgba(255,255,255,.7); }
  .celeb-card.tba .celeb-avatar { background: rgba(0,0,0,.25); }
  .celeb-card.tba .celeb-avatar .initials { font-size: 13px; letter-spacing: 0.2em; }

  /* ===================== TICKETS ===================== */
  .tix {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
  .tix-price {
    background: var(--forest);
    color: #fff;
    border-radius: 18px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .tix-price::before {
    content: ""; position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,184,50,.2), transparent 65%);
  }
  .tix-eyebrow {
    color: var(--gold);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
  }
  .tix-price h3 {
    margin-top: 14px;
    font-size: 38px; line-height: 1; font-weight: 800;
  }
  .price-display {
    margin-top: 36px;
    display: flex; align-items: baseline; gap: 14px;
  }
  .price-display .dollar {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 48px; font-weight: 600;
    color: rgba(255,255,255,.6);
    line-height: 1;
  }
  .price-display .amount {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 156px; font-weight: 800; line-height: 0.85;
    letter-spacing: -0.02em;
  }
  .price-meta {
    margin-top: 18px;
    display: flex; gap: 20px; flex-wrap: wrap;
    color: rgba(255,255,255,.7);
    font-size: 14px;
  }
  .price-meta .div { width: 1px; background: rgba(255,255,255,.18); }
  .tix-price .btn { margin-top: auto; align-self: flex-start; }
  .tix-price-foot {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex; gap: 28px; align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,.6);
  }
  .tix-price-foot strong { color: var(--gold); font-weight: 600; }

  .tix-incl {
    background: #fff;
    border: 1px solid rgba(20,20,15,.08);
    border-radius: 18px;
    padding: 48px;
    box-shadow: 0 14px 40px rgba(15,61,31,.06);
    display: flex; flex-direction: column;
  }
  .tix-incl .tix-eyebrow { color: var(--forest); }
  .tix-incl h3 {
    margin-top: 12px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 38px; font-weight: 800; line-height: 1;
    text-transform: uppercase;
  }
  .incl-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
  .incl-list .item {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(20,20,15,.1);
    font-size: 15px;
  }
  .incl-list .item:last-child { border-bottom: none; }
  .incl-list .check {
    width: 24px; height: 24px; flex-shrink: 0;
    border-radius: 50%; background: var(--forest);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
  }

  /* ===================== SPONSORS ===================== */
  .premier {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    background: var(--forest);
    color: #fff;
    border-radius: 22px;
    padding: 56px 56px;
    overflow: hidden;
    margin-bottom: 24px;
  }
  .premier::before {
    content: "PREMIER";
    position: absolute;
    right: -30px; top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800; font-size: 180px;
    color: rgba(255,255,255,.04);
    line-height: 1; letter-spacing: -0.02em;
    pointer-events: none;
  }
  .premier-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px;
    border: 1px solid var(--gold); color: var(--gold);
    border-radius: 999px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700; font-size: 12px;
    letter-spacing: 0.22em; text-transform: uppercase;
  }
  .premier-tag .star {
    width: 10px; height: 10px; background: var(--gold);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }
  .premier h3 {
    margin-top: 18px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 64px; line-height: 0.9; font-weight: 800;
    text-transform: uppercase;
  }
  .premier h3 .accent { color: var(--gold); font-style: italic; }
  .premier p { margin-top: 18px; color: rgba(255,255,255,.75); font-size: 16px; max-width: 540px; }
  .premier .perks {
    margin-top: 24px;
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .premier .perks span {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
  }
  .premier-right {
    display: flex; flex-direction: column; align-items: stretch; justify-content: space-between;
    position: relative; z-index: 2;
    gap: 24px;
  }
  .premier-price {
    text-align: right;
  }
  .premier-price .l {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(255,255,255,.55); font-weight: 700;
  }
  .premier-price .p {
    margin-top: 6px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 64px; font-weight: 800; line-height: 1;
    color: var(--gold);
  }
  .premier-price .n {
    font-size: 13px;
    color: rgba(255,255,255,.55);
    margin-top: 2px;
  }

  .sponsor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .sponsor-card {
    background: #fff;
    border: 1px solid rgba(15,61,31,.1);
    border-radius: 16px;
    padding: 28px 28px;
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 20px;
    align-items: center;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .sponsor-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: 0 18px 40px rgba(15,61,31,.08);
  }
  .sponsor-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--forest);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
  }
  .sponsor-meta .nm {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px; line-height: 1; font-weight: 800;
    text-transform: uppercase;
  }
  .sponsor-meta .nm .avail {
    font-size: 12px; letter-spacing: 0.18em; color: var(--gold-deep);
    margin-left: 6px;
  }
  .sponsor-meta .ds {
    margin-top: 6px; font-size: 13px; line-height: 1.5;
    color: rgba(20,20,15,.65);
  }
  .sponsor-card .btn { padding: 11px 18px; font-size: 12px; }

  /* ===================== SCHEDULE ===================== */
  .schedule {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
  }
  .schedule::before {
    content: "";
    position: absolute;
    top: 88px; left: 8%; right: 8%;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(15,61,31,.25) 0 6px, transparent 6px 12px);
    z-index: 0;
  }
  .sched-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(15,61,31,.1);
    padding: 36px 32px 32px;
    z-index: 1;
    transition: transform .25s ease;
  }
  .sched-card:hover { transform: translateY(-4px); }
  .sched-num {
    position: absolute;
    top: -22px; left: 32px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800; font-size: 18px;
    letter-spacing: 0.04em;
    border: 4px solid var(--cream);
  }
  .sched-time {
    margin-top: 16px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.22em; color: var(--gold-deep);
    text-transform: uppercase;
  }
  .sched-hour {
    font-family: "Barlow Condensed", sans-serif;
    margin-top: 6px;
    font-size: 88px; line-height: 0.85;
    font-weight: 800;
    color: var(--forest);
    display: flex; align-items: baseline; gap: 8px;
  }
  .sched-hour .ampm {
    font-size: 24px;
    color: var(--gold-deep);
    font-weight: 600;
  }
  .sched-card h3 {
    margin-top: 22px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 30px; line-height: 1; font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
  }
  .sched-card p {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(20,20,15,.65);
    line-height: 1.6;
  }

  /* ===================== CTA STRIP ===================== */
  .cta-strip {
    background: var(--forest);
    color: #fff;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-strip::before {
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 80% 50%, rgba(232,184,50,.15), transparent 50%),
      radial-gradient(circle at 10% 30%, rgba(232,184,50,.08), transparent 40%);
  }
  .cta-strip-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
  }
  .cta-strip h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800; line-height: 0.9;
    text-transform: uppercase;
  }
  .cta-strip h3 .accent { color: var(--gold); font-style: italic; }
  .cta-strip p {
    margin-top: 10px; color: rgba(255,255,255,.7);
    max-width: 480px;
  }
  .cta-strip-buttons { display: flex; gap: 12px; }

  /* ===================== FOOTER ===================== */
  footer {
    background: var(--forest-3);
    color: rgba(255,255,255,.75);
    padding: 80px 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    align-items: start;
  }
  .footer-brand .brand-mark { height: 36px; margin-bottom: 16px; }
  .footer-tag {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; color: rgba(255,255,255,.55); }
  .footer-col h4 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px; letter-spacing: 0.22em;
    text-transform: uppercase; font-weight: 700;
    color: #fff; margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .15s ease; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 28px;
    font-size: 12px; color: rgba(255,255,255,.4);
  }
  .footer-bottom .bb { color: var(--gold); }

  /* Section dividers */
  .wave-down, .wave-up {
    position: absolute; left: 0; right: 0; line-height: 0; pointer-events: none; z-index: 2;
  }
  .wave-down { bottom: -1px; }
  .wave-up { top: -1px; transform: scaleY(-1); }
  .wave-down svg, .wave-up svg { width: 100%; height: 80px; display: block; }

  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 1100px) {
    .celeb-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-inner { grid-template-columns: 1fr; padding-top: 130px; padding-bottom: 80px; }
    .hero-right { display: none; }
    .tix { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .premier { grid-template-columns: 1fr; }
    .premier-price { text-align: left; }
    .nav-links { gap: 22px; }
    .nav-links a { font-size: 13px; letter-spacing: 0.14em; }
    .brand-tag { display: none; }
  }
  @media (max-width: 900px) {
    .nav-links { display: none; }
  }
  @media (max-width: 760px) {
    .wrap { padding: 0 22px; }
    .why-grid, .sponsor-grid, .schedule { grid-template-columns: 1fr; }
    .celeb-grid { grid-template-columns: repeat(2, 1fr); }
    .price-display .amount { font-size: 110px; }
    .premier { padding: 36px 28px; }
    .premier h3 { font-size: 44px; }
    .schedule::before { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .cta-strip-inner { grid-template-columns: 1fr; }
    .celeb-bar { flex-direction: column; gap: 14px; padding: 18px; border-radius: 18px; }
    .tix-price { padding: 36px 28px; }
    .tix-incl { padding: 32px 24px; }
    .sec { padding: 90px 0; }
  }

  /* ===== Utility classes (extracted from inline styles) ===== */
  .logo-invert { filter: brightness(0) invert(1); }
  .eyebrow.on-cream { color: var(--gold-deep); }
  .h2-forest { color: var(--forest); }
  .price-meta strong { color: var(--gold); font-weight: 700; }
  .tix-note {
    margin-top: 18px;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    max-width: 420px;
  }
  .tix-cta-wrap { margin-top: 40px; }
  .tix-price-foot .sep { opacity: .4; }
  .filler-spacer { margin-top: auto; padding-top: 32px; }
  .btn.self-start { align-self: flex-start; }
  .sponsor-meta .price { color: var(--forest); font-weight: 700; }
  .celeb-avatar-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

