/* ==========================================================================
   SEM PHOENIX — CORPORATE HOSPITALITY
   corporatehospitality.semphoenix.com.au
   ========================================================================== */

/* ---------- FONTS ---------- */
/* Druk Medium Italic — headings and stat numbers.
   Note: Phoenix Headline was previously used here but it contains only
   lowercase letters and digits, no capitals. Because our headings are
   uppercase, letters fell back to a system font while numbers rendered
   in Phoenix Headline, which is why numbers looked wrong. */
@font-face {
  font-family: 'Druk';
  src: url('../fonts/Druk-MediumItalic.woff') format('woff'),
       url('../fonts/Druk-MediumItalic.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Phoenix Headline';
  src: url('../fonts/PhoenixHeadline-Regular.woff') format('woff'),
       url('../fonts/PhoenixHeadline-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Trade Gothic Cond';
  src: url('../fonts/TradeGothic-CondNo18.woff') format('woff'),
       url('../fonts/TradeGothic-CondNo18.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Trade Gothic Cond';
  src: url('../fonts/TradeGothic-CondNo20.woff') format('woff'),
       url('../fonts/TradeGothic-CondNo20.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- TOKENS ---------- */
:root {
  --green: #69be29;
  --green-bright: #7ad633;
  --black: #0a0a0a;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --line: #2b2b2b;
  --white: #ffffff;
  --muted: #a8a8a8;
  --ghost: rgba(105, 190, 41, 0.4);
  --glow: rgba(105, 190, 41, 0.12);
  --partner-bg: #ffffff;

  --font-head: 'Druk', 'Phoenix Headline', 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Trade Gothic Cond', 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
  --pad-x: 24px;
  --section-y: 120px;
  --nav-h: 78px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--green); color: var(--black); }

/* ---------- TYPE ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}
h1 { font-size: clamp(2.75rem, 8vw, 6rem); line-height: 0.9; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.125rem, 5.2vw, 4rem); line-height: 0.95; }
h3 { font-size: clamp(1.625rem, 2.6vw, 2.125rem); line-height: 1.1; }
h4 {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.3; color: var(--white);
  margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.02em;
}
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.line-1 { display: block; color: var(--white); }
.line-2 { display: block; color: var(--green); }

.eyebrow {
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green);
  margin: 0 0 20px;
}
.lead {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  line-height: 1.5; color: var(--white);
  max-width: 44ch;
}
.muted { color: var(--muted); }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--surface { background: var(--surface); }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head p { margin-top: 20px; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split__sticky { position: sticky; top: calc(var(--nav-h) + 40px); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 1rem; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 17px 34px; border: 1px solid transparent; border-radius: 2px;
  transition: background .25s var(--ease), transform .25s var(--ease),
              color .25s var(--ease), border-color .25s var(--ease);
}
.btn--primary { background: var(--green); color: var(--black); }
.btn--primary:hover { background: var(--green-bright); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn--sm { padding: 12px 22px; font-size: .875rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .9375rem; letter-spacing: .09em;
  text-transform: uppercase; color: var(--green);
  transition: gap .25s var(--ease);
}
.text-link:hover { gap: 14px; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(10,10,10,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: var(--nav-h); transition: height .3s var(--ease);
}
.nav.is-scrolled .nav__inner { height: 62px; }
.nav__logo img { height: 40px; width: auto; transition: height .3s var(--ease); }
.nav.is-scrolled .nav__logo img { height: 32px; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-weight: 700; font-size: .8125rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white);
  padding: 6px 0; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__toggle {
  display: none; background: none; border: 0; padding: 8px;
  width: 44px; height: 44px; position: relative;
}
.nav__toggle span {
  display: block; height: 2px; background: var(--white); margin: 5px 0;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: 640px; height: 100vh; height: 100dvh; max-height: 900px;
  padding-top: var(--nav-h); overflow: hidden;
}
.hero--short { height: 82vh; height: 82dvh; min-height: 580px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,.42) 0%, rgba(10,10,10,.72) 55%, rgba(10,10,10,.95) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: 96px; }
.hero__mark { height: 104px; width: auto; margin-bottom: 26px; }
.hero__ghost {
  position: absolute; right: -3%; top: 50%; transform: translateY(-50%);
  z-index: 1; font-family: var(--font-head); color: var(--ghost);
  font-size: 30rem; line-height: .8; pointer-events: none; user-select: none;
}

/* ---------- TICKER ---------- */
.ticker { background: var(--green); overflow: hidden; padding: 17px 0; }
.ticker__track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker__content {
  font-family: var(--font-head); font-size: 1.75rem; line-height: 1;
  color: var(--black); text-transform: uppercase; letter-spacing: .05em;
  white-space: nowrap; padding-right: 1.5rem;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CARDS ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 2px;
  padding: 36px 30px; display: flex; flex-direction: column;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.card:hover { background: var(--glow); border-color: var(--green); transform: translateY(-4px); }
.card__media { margin: -36px -30px 26px; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card p { flex: 1 1 auto; font-size: 1rem; }
.card__price {
  font-weight: 700; font-size: .9375rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green);
  margin: 22px 0 18px; padding-top: 18px; border-top: 1px solid var(--line);
}

/* ---------- TIER CARDS ---------- */
/* The two tier cards mirror each other exactly: badge, title, copy, price and
   button all sit on the same baseline in both columns. The feature list is the
   only flexible row, so Platinum+ can carry its extra logo line without
   knocking anything else out of line. */
.tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.tier { position: relative; padding: 44px 38px; }
.tier > p { flex: 0 0 auto; }

@supports (grid-template-rows: subgrid) {
  @media (min-width: 768px) {
    /* badge | title | copy | price | list (flexes) | button */
    .tier-grid { grid-template-rows: auto auto auto auto 1fr auto; }
    .tier { display: grid; grid-row: 1 / -1; grid-template-rows: subgrid; }
    .tier__list { align-self: start; }
    .tier .btn-row { align-self: end; }
  }
}
@media (max-width: 767px) { .tier-grid { grid-template-columns: 1fr; } }
.tier--top { border-color: var(--green); background: linear-gradient(180deg, var(--glow) 0%, var(--surface) 45%); }
.tier--top:hover { transform: translateY(-4px); }
.badge {
  display: inline-block; font-weight: 700; font-size: .75rem;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 2px; margin-bottom: 22px;
}
.badge--green { background: var(--green); color: var(--black); }
.badge--grey { background: var(--line); color: var(--white); }
.tier h3 { margin-bottom: 16px; }
.tier__list { list-style: none; margin: 24px 0 0; padding: 0; }
.tier__list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 15px 0; border-bottom: 1px solid var(--line);
  font-size: 1rem; color: var(--white);
}
.tier__list li:last-child { border-bottom: 0; }
.tier__list li::before {
  content: '✓'; color: var(--green); font-weight: 700; flex: 0 0 auto; line-height: 1.5;
}
.tier__list strong { color: var(--green); font-weight: 700; }

/* ---------- STATS BAR ---------- */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats__grid { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); }
.stats__item {
  padding: 40px 22px; border-left: 1px solid var(--line);
  --num-fs: clamp(1.4rem, 2.4vw, 2.125rem);
}
.stats__item:first-child { border-left: 0; }
.stats__num {
  font-family: var(--font-head); color: var(--green);
  font-size: var(--num-fs); line-height: 1;
  text-transform: uppercase; margin-bottom: 10px;
  white-space: nowrap;          /* keep every stat on one line */
}
.stats__num--stack { white-space: normal; }
.stats__num--stack span { display: block; }
.stats__label {
  font-weight: 700; font-size: .75rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted); line-height: 1.4;
}

/* ---------- PILLARS ---------- */
.pillar__num {
  font-family: var(--font-head); font-size: 3rem; line-height: 1;
  color: var(--green); opacity: .35; margin-bottom: 16px;
}
.pillar p { font-size: 1rem; }

/* ---------- FEATURE BAND (family / emotional) ---------- */
.band { position: relative; min-height: 70vh; display: flex; align-items: center; overflow: hidden; padding: 100px 0; }
.band__bg { position: absolute; inset: 0; z-index: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.band__overlay { position: absolute; inset: 0; z-index: 1; background: rgba(10,10,10,.6); }
.band__inner { position: relative; z-index: 2; max-width: 760px; }
.band--center { text-align: center; }
.band--center .band__inner { margin: 0 auto; }
.band__inner h2 + .lead,
.band__inner h2 + p { margin-top: 24px; }
.band--center .lead { margin-left: auto; margin-right: auto; max-width: 58ch; }
.band--center .btn-row { justify-content: center; }

/* ---------- VENUE ---------- */
.venue {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  padding: 52px 44px; margin-bottom: 24px;
}
.venue__bg { position: absolute; inset: 0; z-index: 0; }
.venue__bg img { width: 100%; height: 100%; object-fit: cover; }
.venue__overlay { position: absolute; inset: 0; z-index: 1; background: rgba(10,10,10,.78); }
.venue__inner { position: relative; z-index: 2; max-width: 640px; }
.venue-sm { background: var(--surface); border: 1px solid var(--line); padding: 30px; }
.venue-sm h4 { margin-bottom: 6px; }
.venue-sm .stats__label { color: var(--green); }

/* ---------- REASON CARDS (left green border) ---------- */
.reason { background: var(--surface); border-left: 3px solid var(--green); padding: 34px 30px; }
.reason__kicker {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--green);
  text-transform: uppercase; line-height: 1; margin-bottom: 8px;
}
.reason p { font-size: 1rem; }

/* ---------- VIDEO INTRO (full-screen, first thing you see) ---------- */
.intro {
  position: relative; height: 100vh; height: 100dvh; min-height: 560px;
  background: var(--black); overflow: hidden;
}
.intro__frame {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  /* cover the viewport while keeping 16:9 */
  width: 100vw; height: 56.25vw;
  min-height: 100vh; min-width: 177.78vh;
  border: 0; pointer-events: none;
}
.intro__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0) 62%, rgba(10,10,10,.9) 100%);
  pointer-events: none;
}
.intro__logo {
  position: absolute; z-index: 2; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 62vw); opacity: .96;
  filter: drop-shadow(0 6px 30px rgba(0,0,0,.6));
  pointer-events: none;
}
.intro__controls {
  position: absolute; z-index: 3; right: 24px; bottom: 116px;
  display: flex; gap: 10px;
}
.intro__btn {
  background: rgba(10,10,10,.55); color: var(--white);
  border: 1px solid rgba(255,255,255,.35); border-radius: 999px;
  font-family: var(--font-body); font-weight: 700;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 11px 20px; backdrop-filter: blur(8px);
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.intro__btn:hover { border-color: var(--green); color: var(--green); background: rgba(10,10,10,.75); }
.intro__scroll {
  position: absolute; z-index: 3; left: 50%; bottom: 34px;
  transform: translateX(-50%); text-align: center;
  font-weight: 700; font-size: .6875rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--white);
}
.intro__scroll span {
  display: block; margin-top: 10px; font-size: 1.25rem; line-height: 1;
  color: var(--green); animation: nudge 1.9s var(--ease) infinite;
}
@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: .55; }
  50%      { transform: translateY(8px); opacity: 1; }
}
@media (max-width: 767px) {
  .intro { height: 78vh; height: 78dvh; min-height: 460px; }
  .intro__controls { right: 16px; bottom: 96px; }
  .intro__logo { width: min(300px, 68vw); }
}

/* ---------- VIDEO ---------- */
.video-wrap {
  max-width: 940px; margin: 0 auto; position: relative;
  aspect-ratio: 16/9; border: 1px solid var(--line);
  box-shadow: 0 0 60px var(--glow);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- CONTACT LINE (replaces the old three tiles) ---------- */
.contact-line {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--white); margin: 0;
}
.contact-line a {
  color: var(--green); font-weight: 700;
  border-bottom: 1px solid rgba(105,190,41,.45);
  transition: border-color .2s var(--ease);
}
.contact-line a:hover { border-color: var(--green); }

/* ---------- CTA TILES (legacy, kept for future use) ---------- */
.tile {
  background: var(--surface); border: 1px solid var(--line); padding: 30px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.tile:hover { border-color: var(--green); background: var(--glow); transform: translateY(-3px); }
.tile__label {
  font-weight: 700; font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.tile__value {
  font-family: var(--font-head); font-size: 1.5rem; line-height: 1.1;
  color: var(--white); text-transform: uppercase; word-break: break-word;
}
.tile:hover .tile__value { color: var(--green); }

.cta { position: relative; overflow: hidden; }
.cta__ghost {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: 480px; opacity: .16; z-index: 0; pointer-events: none;
}
.cta > .container { position: relative; z-index: 1; }

/* ---------- FORM ---------- */
.form-wrap {
  background: var(--surface); border: 1px solid var(--line);
  padding: 48px 44px; margin-top: 56px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-weight: 700; font-size: .75rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
}
.field label .req { color: var(--green); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--white);
  background: var(--black); border: 1px solid var(--line); border-radius: 2px;
  padding: 14px 16px; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--glow);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2369be29' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px;
}
.form-note { font-size: .875rem; margin-top: 22px; }
.form-success {
  display: none; background: var(--glow); border: 1px solid var(--green);
  padding: 28px; margin-top: 24px;
}
.form-success.is-visible { display: block; }
.form-success h4 { color: var(--green); }

/* ---------- PARTNERS (white band, matches semphoenix.com.au) ---------- */
.partners { background: var(--partner-bg); color: #1a1a1a; padding: 72px 0; }
.partners__label {
  font-family: var(--font-body); font-weight: 700;
  font-size: 1.0625rem; color: #1a1a1a;
  margin: 0 0 26px; letter-spacing: .01em;
}
.partners__premier { display: flex; align-items: center; }
.partners__premier img { height: 74px; width: auto; object-fit: contain; }
.partners__divider { height: 1px; background: #e4e4e4; margin: 44px 0; }
.partners__grid {
  display: grid; grid-template-columns: repeat(9, 1fr);
  gap: 28px; align-items: center;
}
.partners__grid img {
  max-height: 44px; width: 100%; object-fit: contain;
  filter: saturate(1); transition: transform .25s var(--ease);
}
.partners__grid a:hover img { transform: scale(1.06); }

/* ---------- FOOTER ---------- */
.footer { background: var(--black); border-top: 1px solid var(--line); padding: 60px 0 40px; }
.footer__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid var(--line);
}
.footer__logo img { height: 46px; width: auto; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: .8125rem; color: var(--white);
  transition: border-color .2s, color .2s, background .2s;
}
.footer__social a:hover { border-color: var(--green); color: var(--green); background: var(--glow); }
.footer__nav {
  display: flex; flex-wrap: wrap; gap: 12px 28px; padding: 30px 0;
  font-weight: 700; font-size: .8125rem; letter-spacing: .11em; text-transform: uppercase;
}
.footer__nav a { color: var(--muted); }
.footer__nav a:hover { color: var(--green); }
.footer__base {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid var(--line);
  font-size: .8125rem; letter-spacing: .06em; text-transform: uppercase;
}
.footer__base a { color: var(--muted); }
.footer__base a:hover { color: var(--green); }
.back-link {
  display: inline-flex; gap: 10px; margin-top: 8px;
  font-weight: 700; font-size: .8125rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.back-link:hover { color: var(--green); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .partners__grid { grid-template-columns: repeat(5, 1fr); gap: 32px 24px; }
}
@media (max-width: 991px) {
  :root { --section-y: 84px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__sticky { position: static; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { border-left: 0; border-top: 1px solid var(--line); }
  .stats__item:nth-child(-n+2) { border-top: 0; }
  .hero__ghost { font-size: 18rem; opacity: .5; }
  .cta__ghost { width: 340px; opacity: .1; }

  .nav__toggle { display: block; }
  /* Collapsed menu is display:none, not clipped. iOS Safari ignores overflow
     clipping on a fixed child of a backdrop-filtered parent, which let the
     first link bleed onto the page. display:none leaves nothing to render. */
  .nav__links {
    display: none;
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #0a0a0a; border-bottom: 1px solid var(--line);
    padding: 8px 24px 26px;
    max-height: calc(100dvh - var(--nav-h)); overflow-y: auto;
  }
  .nav.is-open .nav__links { display: flex; animation: menu-in .28s var(--ease) both; }
  @keyframes menu-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: none; }
  }
  .nav__link { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__links .btn { margin-top: 18px; justify-content: center; }
}
@media (max-width: 767px) {
  :root { --pad-x: 20px; --section-y: 60px; }
  body { font-size: 17px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 30px 22px; }
  .tier { padding: 32px 24px; }
  .venue { padding: 34px 24px; }
  .hero { height: auto; min-height: 88vh; min-height: 88dvh; max-height: none; }
  .hero__inner { padding-bottom: 64px; padding-top: 40px; }
  .hero__ghost { display: none; }
  .hero__mark { height: 76px; }
  .ticker__content { font-size: 1.25rem; }
  .partners__grid { grid-template-columns: repeat(3, 1fr); gap: 30px 20px; }
  .partners__premier img { height: 58px; }
  .partners { padding: 52px 0; }
  .section-head { margin-bottom: 40px; }
  .card__media { margin: -36px -30px 22px; }
  .footer__base { flex-direction: column; gap: 10px; }
}
@media (max-width: 479px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-top: 1px solid var(--line); }
  .stats__item:first-child { border-top: 0; }
  .btn { width: 100%; justify-content: center; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
