    :root {
      --dark: #0D3028;
      --jade: #16331F;
      --bamboo: #1E4A2A;
      --crimson: #D4402D;
      --crimson-dk: #B8311F;
      --gold: #C89130;
      --gold-lt: #E5AB47;
      --gold-pale: #FFF9EE;
      --cream: #FDFAF4;
      --white: #FFFFFF;
      --ink: #1A1814;
      --slate: #4B4B5A;
      --ash: #8B8B9B;
      --fog: #ECEAE3;
      --water: #1A6B8A;
      --display: 'Cormorant Garamond', Georgia, serif;
      --body: 'DM Sans', system-ui, sans-serif;
      --max: 1140px;
      --gap: clamp(64px, 10vw, 120px);
      --r: 16px;
      --rs: 8px;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      font-family: var(--body);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    .w {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
    }

    .sec {
      padding: var(--gap) 0;
    }

    .center {
      text-align: center;
    }

    .center .sub {
      margin: 0 auto;
    }

    .label {
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: 0.68rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }

    .h2 {
      font-family: var(--display);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1;
      margin-bottom: 16px;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

    .h2 em {
      font-style: italic;
      color: var(--crimson);
    }

    .h3 {
      font-family: var(--display);
      font-size: 1.35rem;
      font-weight: 700;
      line-height: 1.25;
    }

    .sub {
      font-size: 1rem;
      color: var(--slate);
      max-width: 560px;
      line-height: 1.8;
    }

    .sec-divider {
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--crimson), var(--gold));
      border-radius: 2px;
      margin: 16px 0 24px;
    }

    .center .sec-divider {
      margin-left: auto;
      margin-right: auto;
    }

    /* === BUTTONS === */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.9rem;
      font-family: var(--body);
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
    }

    .btn svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .btn-c {
      background: var(--crimson);
      color: #fff;
    }

    .btn-c:hover {
      background: var(--crimson-dk);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(212, 64, 45, .35);
    }

    .btn-g {
      background: var(--gold);
      color: #fff;
    }

    .btn-g:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(200, 145, 48, .35);
    }

    .btn-o {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(200, 145, 48, .5);
    }

    .btn-o:hover {
      background: var(--gold);
      color: #fff;
      border-color: var(--gold);
    }

    .btn-gh {
      background: transparent;
      color: var(--crimson);
      border: 1.5px solid var(--crimson);
    }

    .btn-gh:hover {
      background: var(--crimson);
      color: #fff;
    }

    /* === FLOATING NAV === */
    .nav {
      position: fixed;
      top: 14px;
      left: 14px;
      right: 14px;
      z-index: 1000;
      border-radius: 14px;
      transition: all 0.35s ease;
    }

    .nav.scrolled {
      background: rgba(13, 48, 40, .95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 4px 32px rgba(0, 0, 0, .3);
    }

    .nav-in {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 92px;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .nav-brand-icon {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
    }

    .nav-brand-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .nav-brand-text {
      font-family: var(--display);
      font-size: 1.25rem;
      color: #fff;
      line-height: 1.15;
    }

    .nav-brand-text small {
      display: block;
      font-family: var(--body);
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--gold-lt);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .nav-menu {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .nav-menu a {
      color: rgba(255, 255, 255, .72);
      font-size: 0.84rem;
      font-weight: 500;
      transition: color 0.2s;
      cursor: pointer;
    }

    .nav-menu a:hover {
      color: var(--gold-lt);
    }

    .nav-reg {
      padding: 9px 20px !important;
      background: var(--crimson) !important;
      color: #fff !important;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.82rem;
      transition: background 0.2s, transform 0.2s;
      cursor: pointer;
    }

    .nav-reg:hover {
      background: var(--crimson-dk) !important;
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
    }

    .hamburger span {
      width: 22px;
      height: 2px;
      background: #fff;
      border-radius: 1px;
    }

    .mob {
      display: none;
      position: fixed;
      inset: 98px 14px 0;
      background: var(--dark);
      padding: 28px 24px;
      z-index: 999;
      overflow-y: auto;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, .06);
    }

    .mob.open {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .mob a {
      color: rgba(255, 255, 255, .85);
      font-size: 1.05rem;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      cursor: pointer;
    }

    .mob a:hover {
      color: var(--gold-lt);
    }

    @media(max-width:1020px) {
      .nav-menu {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    /* === HERO === */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: #000;
    }

    @media(min-width: 1025px) {
      .hero {
        min-height: 90vh;
      }

      .hero-video {
        object-position: center 50%;
      }

      .hero-inner {
        padding-top: 130px;
        padding-bottom: 50px;
      }
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 90%;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: rgba(0, 0, 0, 0.4);
    }

    .hero-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background: none;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 3;
      max-width: 1140px;
      margin: 0 auto;
      padding: 160px 24px 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 18px;
      background: rgba(200, 145, 48, .12);
      border: 1px solid rgba(200, 145, 48, .25);
      border-radius: 100px;
      color: var(--gold-lt);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }

    .hero-pill svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .hero h1 {
      font-family: var(--display);
      font-size: clamp(2.8rem, 5.5vw, 5.5rem);
      color: #fff;
      line-height: 1.1;
      font-weight: 900;
      letter-spacing: -0.5px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .hero-date {
      margin-top: 0;
      font-size: 1.05rem;
      font-weight: 500;
      letter-spacing: 2px;
      color: rgba(255, 255, 255, .6);
      text-transform: uppercase;
    }

    .hero-date span {
      color: var(--gold-lt);
      font-weight: 600;
    }

    @media(min-width: 769px) {
      .hero-date {
        font-size: 1.4rem;
        letter-spacing: 3px;
        margin-top: -10px;
        margin-bottom: 20px;
      }

      .hero-cd-title {
        font-size: 0.92rem;
        letter-spacing: 4px;
        margin-bottom: 20px;
      }

      .hero-cd-item {
        padding: 22px 38px;
        min-width: 128px;
        border-radius: 26px;
      }

      .hero-cd-item::before {
        border-radius: 26px 26px 0 0;
      }

      .hero-cd-num {
        font-size: 3.8rem;
        letter-spacing: -2px;
      }

      .hero-cd-lbl {
        font-size: 0.78rem;
        letter-spacing: 3px;
        margin-top: 10px;
      }

      .hero-cd-sep {
        font-size: 2.6rem;
        padding-bottom: 26px;
      }

      .hero-cd {
        gap: 22px;
      }
    }

    .hero-tagline {
      font-family: var(--display);
      font-size: clamp(1.4rem, 4vw, 3.2rem);
      color: rgba(255, 255, 255, 0.95);
      font-weight: 600;
      line-height: 1.2;
      margin-top: 16px;
      margin-bottom: 24px;
      max-width: 800px;
      white-space: normal;
    }

    .tagline-keep {
      white-space: nowrap;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 32px;
      margin-bottom: 24px;
    }

    .hero-metrics {
      display: flex;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 16px;
      background: rgba(255, 255, 255, .04);
      backdrop-filter: blur(12px);
    }

    .hero-m {
      padding: 16px 44px;
      border-right: 1px solid rgba(255, 255, 255, .08);
      text-align: center;
    }

    .hero-m:last-child {
      border-right: none;
    }

    .hero-m-n {
      font-family: var(--display);
      font-size: 2.4rem;
      color: var(--gold-lt);
      font-weight: 700;
      line-height: 1;
    }

    .hero-m-l {
      font-size: 0.66rem;
      color: rgba(255, 255, 255, .42);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-top: 6px;
    }

    .hero-wave {
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      z-index: 4;
    }

    /* === COUNTDOWN === */
    .countdown-wrap {
      background: #FAF7F0;
      position: relative;
      z-index: 5;
      padding: 44px 0 52px;
    }

    .countdown-wrap .hero-m-l {
      color: var(--slate);
    }

    .countdown-wrap .hero-m {
      border-right-color: rgba(13, 61, 43, .15);
    }

    .countdown-top {
      text-align: center;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .countdown-inner {
      display: flex;
      justify-content: center;
      gap: 16px;
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 24px;
      flex-wrap: wrap;
      align-items: center;
    }

    .countdown-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 16px;
      padding: 28px 40px;
      min-width: 148px;
      position: relative;
      overflow: hidden;
    }

    .countdown-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200, 145, 48, .06) 0%, transparent 60%);
      pointer-events: none;
    }

    .countdown-num {
      font-family: var(--display);
      font-size: 4.5rem;
      line-height: 1;
      color: #fff;
      font-weight: 700;
      letter-spacing: -2px;
    }

    .countdown-sep {
      font-family: var(--display);
      font-size: 3.5rem;
      color: rgba(200, 145, 48, .5);
      line-height: 1;
      margin-bottom: 28px;
    }

    .countdown-lbl {
      font-size: 0.7rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      margin-top: 8px;
    }

    @media(max-width:700px) {
      .countdown-inner {
        gap: 10px;
      }

      .countdown-item {
        padding: 18px 22px;
        min-width: calc(50% - 12px);
      }

      .countdown-num {
        font-size: 2.8rem;
      }

      .countdown-sep {
        display: none;
      }
    }

    /* === HERO COMPACT COUNTDOWN — LIQUID GLASS === */
    .hero-cd {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: nowrap;
      margin-bottom: 0;
      align-items: center;
    }

    .hero-cd-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: hidden;
      /* Liquid Glass core */
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.015) 40%,
        rgba(255, 255, 255, 0.025) 60%,
        rgba(255, 255, 255, 0.06) 100%
      );
      backdrop-filter: blur(18px) saturate(1.2) brightness(1.03);
      -webkit-backdrop-filter: blur(18px) saturate(1.2) brightness(1.03);
      /* Specular border — brighter at top for light refraction */
      border: 1.5px solid transparent;
      border-image: linear-gradient(
        160deg,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(255, 255, 255, 0.15) 40%,
        rgba(255, 255, 255, 0.08) 70%,
        rgba(255, 255, 255, 0.30) 100%
      ) 1;
      border-radius: 22px;
      /* border-image doesn't support border-radius, so use clip + outline trick */
      border-image: none;
      border-color: rgba(255, 255, 255, 0.08);
      border-top-color: rgba(255, 255, 255, 0.20);
      border-left-color: rgba(255, 255, 255, 0.12);
      border-bottom-color: rgba(255, 255, 255, 0.03);
      border-right-color: rgba(255, 255, 255, 0.05);
      padding: 14px 24px;
      min-width: 86px;
      /* Inner glow */
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.12),
        inset 0 -1px 2px rgba(255, 255, 255, 0.02),
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
      transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease;
    }

    /* Specular highlight overlay — top-left light catch */
    .hero-cd-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.01) 50%,
        transparent 100%
      );
      border-radius: 22px 22px 0 0;
      pointer-events: none;
      z-index: 1;
    }

    .hero-cd-item:hover {
      transform: translateY(-3px) scale(1.04);
      box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.18),
        inset 0 -1px 2px rgba(255, 255, 255, 0.03),
        0 8px 28px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(200, 145, 48, 0.06);
    }

    .hero-cd-num {
      font-family: var(--display);
      font-size: 2.6rem;
      line-height: 1;
      color: #fff;
      font-weight: 700;
      letter-spacing: -1px;
      position: relative;
      z-index: 3;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 0 12px rgba(255, 255, 255, 0.08);
    }

    .hero-cd-sep {
      font-family: var(--display);
      font-size: 1.8rem;
      color: rgba(255, 255, 255, .35);
      display: flex;
      align-items: center;
      padding-bottom: 16px;
      text-shadow: 0 0 8px rgba(200, 145, 48, 0.3);
    }

    .hero-cd-lbl {
      font-size: 0.68rem;
      color: rgba(255, 255, 255, 0.65);
      text-transform: uppercase;
      letter-spacing: 2.5px;
      font-weight: 500;
      margin-top: 6px;
      position: relative;
      z-index: 3;
    }

    .hero-cd-title {
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      margin-bottom: 12px;
      text-align: center;
    }

    @media(max-width: 480px) {
      .hero-cd {
        gap: 6px;
      }

      .hero-cd-item {
        padding: 10px 14px;
        min-width: 62px;
        border-radius: 16px;
      }

      .hero-cd-item::before {
        border-radius: 16px 16px 0 0;
      }

      .hero-cd-num {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
      }

      .hero-cd-lbl {
        font-size: 0.58rem;
        letter-spacing: 1.5px;
      }

      .hero-cd-sep {
        font-size: 1.2rem;
        padding-bottom: 14px;
      }
    }

    /* === MARQUEE === */
    .marquee-wrap {
      background: var(--crimson);
      overflow: hidden;
      padding: 16px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .marquee {
      display: flex;
      gap: 64px;
      animation: scroll 40s linear infinite;
      white-space: nowrap;
      align-items: center;
    }

    .marquee span {
      font-family: var(--display);
      font-size: 1rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .85);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      display: inline-flex;
      align-items: center;
    }

    .marquee span.m-date {
      font-size: 1.6rem;
      color: #fff;
      font-weight: 800;
      letter-spacing: 2px;
    }

    .marquee span::after {
      content: '◆';
      margin-left: 64px;
      color: rgba(255, 255, 255, .3);
      font-size: 0.6rem;
      vertical-align: middle;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* === IMAGES === */
    .feat-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--r);
    }

    .img-wrap {
      position: relative;
      border-radius: var(--r);
      overflow: hidden;
      background: #0F2418;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
    }

    /* === PRICING === */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 40px;
    }

    .price-card {
      background: var(--white);
      border-radius: 20px;
      padding: 36px 28px;
      border: 1px solid var(--fog);
      transition: transform .3s ease, box-shadow .3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      cursor: default;
    }

    .price-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
    }

    .price-card.featured {
      border-color: var(--crimson);
      border-width: 2px;
      background: linear-gradient(180deg, #fff 0%, #fff9f8 100%);
    }

    .price-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: 32px;
      right: -30px;
      padding: 5px 30px;
      background: var(--crimson);
      color: #fff;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      transform: rotate(45deg);
    }

    .price-badge {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .price-badge-corp {
      background: rgba(212, 64, 45, .1);
      color: var(--crimson);
    }

    .price-badge-uni {
      background: rgba(200, 145, 48, .1);
      color: var(--gold);
    }

    .price-badge-solo {
      background: rgba(26, 107, 138, .1);
      color: var(--water);
    }

    .price-head {
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--fog);
    }

    .price-head h3 {
      font-family: var(--display);
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: var(--ink);
    }

    .price-amt {
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--jade);
      font-family: var(--display);
      line-height: 1;
    }

    .price-amt span {
      font-size: 0.88rem;
      color: var(--ash);
      font-family: var(--body);
      font-weight: 400;
    }

    .price-list {
      margin-bottom: 32px;
      flex-grow: 1;
    }

    .price-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.88rem;
      color: var(--slate);
      margin-bottom: 13px;
      line-height: 1.55;
    }

    .price-list li svg {
      width: 16px;
      height: 16px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 3px;
    }

    .price-card .btn {
      width: 100%;
      cursor: pointer;
    }

    @media(max-width:1100px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    .price-badge-lions {
      background: rgba(200, 145, 48, .15);
      color: #8B6914;
      border: 1px solid rgba(200, 145, 48, .35);
    }

    .price-card.lions-card {
      border: 2px solid var(--gold);
      background: linear-gradient(180deg, #fffdf5 0%, #fff9e8 100%);
    }

    .price-card.lions-card::before {
      content: 'MEMBERS ONLY';
      position: absolute;
      top: 32px;
      right: -30px;
      padding: 5px 30px;
      background: linear-gradient(90deg, var(--gold), var(--gold-lt));
      color: #fff;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      transform: rotate(45deg);
    }

    @media(max-width:680px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    .waiver-note {
      font-size: 0.88rem;
      color: var(--slate);
      max-width: 660px;
      margin: 0 auto;
      background: var(--gold-pale);
      padding: 16px 24px;
      border-radius: 10px;
      border-left: 4px solid var(--gold);
    }

    .waiver-note a {
      color: var(--crimson);
      font-weight: 600;
      text-decoration: underline;
      cursor: pointer;
    }

    /* === GRAND PRIZE === */
    .macao-hero {
      position: relative;
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: linear-gradient(to right, rgba(8, 20, 13, .88), rgba(8, 20, 13, .55)), url("../images/macao/macao ultimate reward.png") center/cover;
      border-top: 2px solid rgba(200, 145, 48, .45);
      border-bottom: 2px solid rgba(200, 145, 48, .45);
      padding: var(--gap) 0;
    }

    .macao-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(200, 145, 48, .09) 0%, transparent 65%);
      pointer-events: none;
    }

    .macao-hero-inner {
      position: relative;
      z-index: 2;
      max-width: 820px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .macao-hero h2 {
      font-family: var(--display);
      font-size: clamp(2.8rem, 6vw, 5rem);
      color: var(--gold-lt);
      line-height: 1.05;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .macao-hero p {
      font-size: 1.1rem;
      color: rgba(232, 201, 122, .82);
      line-height: 1.8;
      margin-bottom: 14px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .macao-ultimate {
      position: relative;
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      background: linear-gradient(rgba(8, 20, 13, .65), rgba(8, 20, 13, .88)), url("../images/macao/nam van lake reflection.jpg") center/cover;
      padding: calc(var(--gap) * .8) 0;
    }

    .macao-ultimate-inner {
      position: relative;
      z-index: 2;
      max-width: 720px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .macao-ultimate h2 {
      font-family: var(--display);
      font-size: clamp(2.4rem, 5vw, 4rem);
      color: #fff;
      line-height: 1.05;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .macao-ultimate h2 em {
      font-style: italic;
      color: var(--gold-lt);
    }

    .macao-ultimate p {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, .65);
      line-height: 1.8;
      max-width: 560px;
      margin: 0 auto 28px;
    }

    .macao-prestige-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    @media(max-width:768px) {
      .macao-prestige-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* === RACE DAY === */
    .flow-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .flow-card {
      background: var(--white);
      border-radius: 20px;
      padding: 30px 24px 28px;
      border: 1px solid var(--fog);
      position: relative;
      transition: transform .25s ease, box-shadow .25s ease;
      cursor: default;
    }

    .flow-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
    }

    .flow-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--crimson), #f06650);
      color: #fff;
      font-size: 0.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      box-shadow: 0 4px 12px rgba(212, 64, 45, .3);
    }

    .flow-time {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--water);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .flow-card h4 {
      font-family: var(--display);
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: var(--ink);
    }

    .flow-card p {
      font-size: 0.88rem;
      color: var(--slate);
      line-height: 1.6;
    }

    .rules-map-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 40px;
      background: var(--white);
      border-radius: 20px;
      border: 1px solid var(--fog);
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .06);
    }

    .rules-box {
      padding: 40px;
    }

    .rules-box h3 {
      font-family: var(--display);
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: var(--ink);
    }

    .rules-list li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 14px;
      font-size: 0.92rem;
      color: var(--slate);
      line-height: 1.6;
    }

    .rules-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 9px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--crimson);
    }

    .map-frame {
      height: 100%;
      min-height: 320px;
      background: #e5e3df;
    }

    .map-frame iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    @media(max-width:768px) {
      .flow-grid {
        grid-template-columns: 1fr;
      }

      .rules-map-grid {
        grid-template-columns: 1fr;
      }
    }

    /* === MISSION === */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .about-visual {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
    }

    .about-visual::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 26px;
      background: linear-gradient(135deg, var(--gold), var(--crimson), var(--gold));
      z-index: 0;
    }

    .about-visual-inner {
      position: relative;
      z-index: 1;
      background: linear-gradient(135deg, var(--jade) 0%, var(--bamboo) 100%);
      border-radius: 22px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 48px;
      text-align: center;
    }

    .about-logo-img {
      width: 160px;
      height: 160px;
      margin-bottom: 24px;
      border-radius: 50%;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
      border: 4px solid var(--gold);
      object-fit: cover;
    }

    .about-logo-text {
      color: rgba(255, 255, 255, .65);
      font-size: 0.86rem;
      line-height: 1.65;
    }

    .about-logo-text strong {
      color: var(--gold-lt);
      font-weight: 600;
      font-size: 0.98rem;
      display: block;
      margin-bottom: 6px;
    }

    .about-text .sub {
      margin-bottom: 20px;
      max-width: 100%;
    }

    .surplus-box {
      background: var(--gold-pale);
      border-left: 4px solid var(--gold);
      padding: 22px 24px;
      border-radius: 0 12px 12px 0;
      margin-top: 28px;
    }

    .surplus-box h4 {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--jade);
      margin-bottom: 8px;
    }

    .surplus-box p {
      font-size: 0.88rem;
      color: var(--slate);
      line-height: 1.7;
      margin: 0;
    }

    @media(max-width:768px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* === SPECTATORS === */
    .spec-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 36px;
    }

    .spec-card {
      background: var(--gold-pale);
      border-radius: 20px;
      padding: 32px 28px;
      text-align: center;
      border: 1px solid var(--fog);
      transition: transform .3s ease, box-shadow .3s ease;
      position: relative;
    }

    .spec-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
    }

    .spec-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .spec-icon-wrap svg {
      width: 28px;
      height: 28px;
    }

    .spec-icon-wrap.transport-logo-wrap {
      background: #ffffff;
      border: 1px solid var(--fog);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      padding: 6px;
      overflow: hidden;
    }

    .spec-icon-wrap.transport-logo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 10px;
      display: block;
    }

    .spec-icon-wrap.transport-logo-wrap img.zoom-logo {
      object-fit: cover;
      transform: scale(0.9);
    }


    .ic-jade {
      background: rgba(30, 74, 42, .1);
      color: var(--bamboo);
    }

    .ic-crimson {
      background: rgba(212, 64, 45, .1);
      color: var(--crimson);
    }

    .ic-gold {
      background: rgba(200, 145, 48, .12);
      color: var(--gold);
    }

    .ic-water {
      background: rgba(26, 107, 138, .1);
      color: var(--water);
    }

    .spec-card h3 {
      font-family: var(--display);
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: var(--ink);
    }

    .spec-card p {
      font-size: 0.9rem;
      color: var(--slate);
      line-height: 1.7;
    }

    .spec-card a {
      color: var(--crimson);
      font-weight: 600;
      cursor: pointer;
    }

    .spec-card a:hover {
      text-decoration: underline;
    }

    .spec-card a.card-link::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 10;
    }

    .spec-card:has(a.card-link) {
      cursor: pointer;
    }

    @media(max-width:768px) {
      .spec-grid {
        grid-template-columns: 1fr;
      }
    }

    /* 4-column spectator variant */
    .spec-grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }

    @media(max-width:900px) {
      .spec-grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:600px) {
      .spec-grid-4 {
        grid-template-columns: 1fr;
      }
    }

    .photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 36px;
    }

    .photo-grid .img-wrap {
      height: 300px;
    }

    @media(max-width:768px) {
      .photo-grid {
        grid-template-columns: 1fr;
      }
    }

    /* === DESTINATIONS === */
    .destinations-layout {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .destinations-left {
      flex: 1;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 480px;
      background: #eaeaea;
      box-shadow: 0 8px 32px rgba(0, 0, 0, .1);
    }

    .destinations-left .dest-gallery {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity .5s ease;
    }

    .destinations-left .dest-gallery.active {
      opacity: 1;
      pointer-events: auto;
      z-index: 10;
    }

    .destinations-left img.dest-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease;
    }

    .destinations-left img.dest-img.active {
      opacity: 1;
    }

    .destinations-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .dest-item {
      background: var(--gold-pale);
      border-radius: 12px;
      padding: 16px 20px;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
      transition: transform .25s ease, box-shadow .25s ease;
      border-left: 4px solid transparent;
    }

    .dest-item:hover {
      transform: translateX(4px);
    }

    .dest-item.active {
      border-left-color: var(--crimson);
      box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
    }

    .dest-item h3 {
      margin: 0;
      font-family: var(--display);
      font-size: 1.1rem;
      color: var(--ink);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .dest-item h3 a {
      color: inherit;
    }

    .dest-item h3 a:hover {
      text-decoration: underline;
    }

    .dest-arrow {
      color: var(--ash);
      transition: transform .3s, color .3s;
    }

    .dest-item.active .dest-arrow {
      transform: rotate(90deg);
      color: var(--crimson);
    }

    .dest-desc {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, margin-top .4s ease, opacity .4s ease;
      opacity: 0;
    }

    .dest-item.active .dest-desc {
      max-height: 200px;
      margin-top: 10px;
      opacity: 1;
    }

    .dest-desc p {
      margin: 0;
      font-size: 0.92rem;
      line-height: 1.6;
      color: var(--slate);
    }

    @media(max-width:900px) {
      .destinations-layout {
        flex-direction: column;
      }

      .destinations-left {
        width: 100%;
        height: 300px;
      }
    }

    /* === DARK SECTION / FAQ === */
    .dark-sec {
      background: var(--dark);
      color: #fff;
      padding: var(--gap) 0 60px;
    }

    .faq-list {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .faq-q {
      width: 100%;
      padding: 20px 0;
      background: none;
      border: none;
      font-family: var(--body);
      font-size: 0.97rem;
      font-weight: 600;
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      color: rgba(255, 255, 255, .9);
      transition: color .2s;
    }

    .faq-q:hover {
      color: var(--gold-lt);
    }

    .faq-chevron {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      transition: transform .3s;
      color: var(--gold);
    }

    .faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
    }

    .faq-item.open .faq-a {
      max-height: 300px;
    }

    .faq-a-inner {
      padding-bottom: 20px;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.8;
    }

    .faq-a-inner a {
      color: var(--gold-lt);
      font-weight: 500;
    }

    /* === MEDIA MARQUEE === */
    .media-partners {
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      text-align: center;
    }

    .media-partners-lbl {
      font-size: 0.68rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .38);
      margin-bottom: 28px;
    }

    .media-partners-sec {
      background: var(--gold-pale);
      padding: 56px 0;
      text-align: center;
      border-top: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
    }

    .media-partners-sec .media-partners-lbl {
      color: var(--gold);
      font-size: 1.15rem;
      letter-spacing: 4px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .media-partners-sec .sec-divider {
      margin: 0 auto 32px;
    }

    .media-static-group {
      display: flex;
      gap: 20px;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      width: 100%;
    }

    .media-marquee-item {
      background: #fff;
      border-radius: 12px;
      padding: 8px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 76px;
      min-width: 140px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
      transition: transform .3s ease;
    }

    .media-marquee-item:hover {
      transform: translateY(-3px);
    }

    .media-marquee-item img {
      height: 100%;
      max-height: 56px;
      width: auto;
      object-fit: contain;
    }

    /* Strategic Partners — X-based proportional spacing per brand guideline.
       Logo height = X. Vertical clear space = 0.5X top/bottom (container = 2X).
       Inter-logo gap = 2X. Edge clear space = 0.5X. */
    .media-partners-sec .media-static-group {
      --logo-x: clamp(32px, 4.2vw, 56px);
      gap: calc(var(--logo-x));
      padding: calc(var(--logo-x) * 0.5);
      flex-wrap: nowrap;
      justify-content: center;
    }

    .media-partners-sec .media-marquee-item {
      background: transparent;
      border-radius: 0;
      padding: 0;
      box-shadow: none;
      min-width: 0;
      height: calc(var(--logo-x) * 2);
      flex: 0 0 auto;
      transition: none;
    }

    .media-partners-sec .media-marquee-item:hover {
      transform: none;
    }

    .media-partners-sec .media-marquee-item img {
      height: var(--logo-x);
      max-height: var(--logo-x);
      width: auto;
      object-fit: contain;
      mix-blend-mode: multiply;
    }

    /* Up-size logos with heavy whitespace around the mark.
       Using height (not transform: scale) so the flex layout reserves
       real width and they don't overlap neighbours. */
    .media-partners-sec .media-marquee-item:nth-child(1) img, /* taotaoju */
    .media-partners-sec .media-marquee-item:nth-child(5) img { /* baba tang */
      height: calc(var(--logo-x) * 1.9);
      max-height: calc(var(--logo-x) * 1.9);
    }
    .media-partners-sec .media-marquee-item:nth-child(2) img { /* BEA */
      height: calc(var(--logo-x) * 1.5);
      max-height: calc(var(--logo-x) * 1.5);
    }

    @media (max-width: 720px) {
      .media-partners-sec .media-static-group {
        --logo-x: clamp(24px, 5.5vw, 40px);
        gap: calc(var(--logo-x) * 1.5);
        padding: calc(var(--logo-x) * 0.5);
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    /* Strategic Partners — FAQ-section counterpart: same X-based system. */
    .media-partners .media-static-group {
      --logo-x: clamp(32px, 4.2vw, 56px);
      gap: calc(var(--logo-x));
      padding: calc(var(--logo-x) * 0.5);
      flex-wrap: nowrap;
      justify-content: center;
    }

    .media-partners .media-static-group {
      isolation: isolate;
    }

    .media-partners .media-marquee-item {
      background: #fff;
      border-radius: 12px;
      padding: calc(var(--logo-x) * 0.25) calc(var(--logo-x) * 0.5);
      box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
      min-width: 0;
      height: calc(var(--logo-x) * 2);
      flex: 0 0 auto;
      transition: transform .3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .media-partners .media-marquee-item:hover {
      transform: translateY(-3px);
    }

    .media-partners .media-marquee-item img {
      height: var(--logo-x);
      max-height: var(--logo-x);
      width: auto;
      object-fit: contain;
      mix-blend-mode: multiply;
    }

    .media-partners .media-marquee-item:nth-child(1) img,
    .media-partners .media-marquee-item:nth-child(5) img {
      height: calc(var(--logo-x) * 1.9);
      max-height: calc(var(--logo-x) * 1.9);
    }
    .media-partners .media-marquee-item:nth-child(2) img {
      height: calc(var(--logo-x) * 1.5);
      max-height: calc(var(--logo-x) * 1.5);
    }

    @media (max-width: 720px) {
      .media-partners .media-static-group {
        --logo-x: clamp(24px, 5.5vw, 40px);
        gap: calc(var(--logo-x) * 1.5);
        padding: calc(var(--logo-x) * 0.5);
        flex-wrap: wrap;
        justify-content: center;
      }
    }

    @keyframes mediaScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(calc(-100% - 20px));
      }
    }

    /* === FOOTER === */
    .footer {
      background: #060f0a;
      padding: 36px 0 28px;
      text-align: center;
      font-size: 0.8rem;
      color: rgba(255, 255, 255, .28);
    }

    .footer-social {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .footer-social a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, transform .2s;
      cursor: pointer;
    }

    .footer-social a:hover {
      background: rgba(200, 145, 48, .2);
      transform: translateY(-2px);
    }

    .footer-social svg {
      color: var(--gold);
    }

    .footer-org {
      font-size: 0.72rem;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, .18);
    }

    .footer a {
      color: var(--gold);
    }

    /* === REVEAL === */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .65s ease, transform .65s ease;
    }

    .reveal.vis {
      opacity: 1;
      transform: none;
    }

    @media(prefers-reduced-motion: reduce) {
      .reveal {
        transition: none;
        opacity: 1;
        transform: none;
      }

      .marquee,
      .media-marquee-group {
        animation: none;
      }
    }

    /* === THE RACE — ADRENALINE BANNER === */
    .adrenaline-sec {
      text-align: center;
      background: linear-gradient(rgba(250, 247, 240, 0.75), rgba(250, 247, 240, 0.9)), url("../images/festival/drummer-bigben.jpeg") center/cover fixed;
      padding: 9rem 0;
      border-top: 2px solid rgba(200, 145, 48, .35);
      border-bottom: 2px solid rgba(200, 145, 48, .35);
    }

    .adrenaline-sec h2 {
      font-family: var(--display);
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.12;
      margin-bottom: 20px;
    }

    .adrenaline-subtext {
      color: var(--gold);
      font-weight: 600;
      font-size: 1.05rem;
      text-transform: uppercase;
      margin-bottom: 20px;
      letter-spacing: 2.5px;
    }

    .adrenaline-lead {
      max-width: 680px;
      margin: 0 auto 36px;
      font-size: 1.05rem;
      color: var(--slate);
      line-height: 1.8;
    }

    @media(max-width:900px) {
      .adrenaline-sec {
        background-attachment: scroll;
      }
    }

    /* === RACE OVERVIEW GRID === */
    .race-overview-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 56px;
      align-items: center;
    }

    .race-collage {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .race-collage img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: var(--r);
      filter: grayscale(15%);
      transition: transform .35s ease, filter .35s ease;
      cursor: pointer;
      display: block;
    }

    .race-collage img:hover {
      transform: scale(1.03);
      filter: grayscale(0);
    }

    @media(max-width:900px) {
      .race-overview-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    @media(max-width:600px) {
      .race-collage img {
        height: 180px;
      }
    }

    /* === RACE INFO LIST === */
    .race-info-list {
      margin-top: 28px;
      border-left: 3px solid var(--gold);
      padding-left: 20px;
    }

    .race-info-list strong {
      display: block;
      color: var(--jade);
      font-size: 0.95rem;
      margin-top: 16px;
      letter-spacing: .5px;
      font-weight: 700;
    }

    .race-info-list span {
      color: var(--slate);
      font-size: 0.92rem;
    }

    /* === HOW IT WORKS STEPS === */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .step-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px 20px;
      border-top: 3px solid var(--bamboo);
      border: 1px solid var(--fog);
      border-top-width: 3px;
      text-align: center;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .step-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
    }

    .step-card h3 {
      font-family: var(--display);
      font-size: 1.2rem;
      color: var(--jade);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step-card p {
      font-size: 0.88rem;
      color: var(--slate);
      line-height: 1.6;
    }

    @media(max-width:900px) {
      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width:480px) {
      .steps-grid {
        grid-template-columns: 1fr;
      }
    }

    /* === TEAMS PAGE HERO BANNER === */
    .teams-hero-banner {
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: linear-gradient(rgba(250, 247, 240, 0.55), rgba(250, 247, 240, 0.82)), url("../images/festival/participants assemble.jpg") center/cover;
      border-top: 2px solid rgba(200, 145, 48, .35);
      border-bottom: 2px solid rgba(200, 145, 48, .35);
      padding: var(--gap) 24px;
    }

    .teams-hero-inner {
      max-width: 820px;
      margin: 0 auto;
    }

    .teams-hero-banner h2 {
      font-family: var(--display);
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      color: var(--dark);
      line-height: 1.08;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .teams-hero-banner p {
      font-size: 1.05rem;
      color: var(--slate);
      line-height: 1.8;
      margin-bottom: 32px;
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
    }

    @media(max-width:900px) {
      .teams-hero-banner {
        background-attachment: scroll;
      }
    }

    /* === RESPONSIVE TWEAKS === */
    @media(max-width:768px) {
      .hero h1 {
        white-space: normal;
        font-size: clamp(2.2rem, 8vw, 3.5rem);
      }

      .hero-tagline {
        font-size: clamp(1.2rem, 4.5vw, 1.8rem);
        white-space: normal;
      }

      .tagline-keep {
        white-space: normal;
      }

      .hero-metrics {
        flex-wrap: wrap;
      }

      .hero-m {
        padding: 12px 24px;
        width: 50%;
        border-right: 1px solid rgba(255, 255, 255, .08);
      }

      .hero-m:nth-child(2) {
        border-right: none;
      }
    }

    @media(max-width:480px) {
      .nav {
        top: 8px;
        left: 8px;
        right: 8px;
      }

      .hero-inner {
        padding: 120px 16px 60px;
      }

      .hero h1 {
        font-size: clamp(1.9rem, 7.5vw, 3rem);
      }

      .hero-tagline {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-top: 10px;
        margin-bottom: 16px;
      }

      .hero-date {
        font-size: 0.78rem;
        letter-spacing: 1px;
      }

      .hero-cd-title {
        font-size: 0.78rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
      }

      .hero-actions {
        margin-top: 20px;
        margin-bottom: 32px;
      }

      .hero-metrics {
        display: none;
      }
    }

    /* === LANGUAGE SWITCHER === */
    .lang-switcher {
      position: relative;
    }

    .lang-toggle {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border-radius: 100px;
      background: rgba(13, 48, 40, .7);
      border: 1.5px solid rgba(200, 145, 48, .45);
      color: rgba(255, 255, 255, .85);
      font-size: 0.78rem;
      font-weight: 600;
      font-family: var(--body);
      cursor: pointer;
      transition: all .2s;
    }

    .lang-toggle:hover {
      background: rgba(200, 145, 48, .18);
      border-color: var(--gold);
      color: #fff;
    }

    .lang-menu {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: #0D2418;
      border: 1px solid rgba(200, 145, 48, .25);
      border-radius: 12px;
      min-width: 190px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .45);
      z-index: 9999;
      padding: 6px 0;
    }

    .lang-menu.open {
      display: block;
    }

    .lang-menu li {
      padding: 11px 18px;
      cursor: pointer;
      font-family: var(--body);
      font-size: 0.85rem;
      color: rgba(255, 255, 255, .75);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background .15s, color .15s;
    }

    .lang-menu li:hover {
      background: rgba(200, 145, 48, .12);
      color: #fff;
    }

    .lang-menu li.active {
      color: var(--gold-lt);
      font-weight: 600;
    }

    .mob-lang-btn {
      padding: 7px 12px;
      border-radius: 8px;
      border: 1.5px solid rgba(200, 145, 48, .3);
      background: rgba(200, 145, 48, .08);
      color: rgba(255, 255, 255, .75);
      font-family: var(--body);
      font-size: 0.78rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s;
    }

    .mob-lang-btn:hover,
    .mob-lang-btn.active {
      background: rgba(200, 145, 48, .2);
      color: var(--gold-lt);
      border-color: var(--gold);
    }

    @media(max-width:1020px) {
      .lang-switcher {
        margin-right: 8px;
      }
    }
