/* ============================================================
   MATCHDAY AFFAIRS — v2 (Mundial-style)
   Palette: Navy / Metallic Gold / White
   Fonts: Anton (display), Archivo Black (headings), Archivo (body)
   100% sans-serif. NO italics. Bold and editorial.
   ============================================================ */

:root{
  /* Colour */
  --navy:        #0b1a30;
  --navy-2:      #142543;
  --navy-3:      #1d3160;
  --navy-deep:   #060e1d;
  --gold:        #c8a24a;        /* metallic gold base */
  --gold-2:      #e6c574;        /* highlight */
  --gold-3:      #8d6f2c;        /* deeper antique */
  --gold-grad:   linear-gradient(135deg, #8d6f2c 0%, #c8a24a 28%, #f0d98a 50%, #c8a24a 72%, #8d6f2c 100%);
  --white:       #ffffff;
  --cream:       #f6f4ef;
  --rule:        #e4e1d8;
  --ink:         #1a2238;
  --ink-2:       #4b5572;
  --ink-3:       #7a8398;

  /* Type */
  --display: 'Anton', 'Archivo Black', sans-serif;
  --bold:    'Archivo Black', 'Anton', sans-serif;
  --body:    'Archivo', 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --pad-x: clamp(20px, 4vw, 80px);
  --section-py: clamp(70px, 9vw, 140px);

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

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; border:none; background:none; }

/* =================== UTILITY =================== */
.container{ width:100%; max-width:1440px; margin:0 auto; padding:0 var(--pad-x); }
.eyebrow{
  font-family: var(--bold);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-3);
  display:inline-flex; align-items:center; gap:14px;
}
.eyebrow::before{
  content:""; width:32px; height:2px; background: var(--gold);
}
.eyebrow.center{ justify-content:center; }
.eyebrow.center::after{
  content:""; width:32px; height:2px; background: var(--gold);
}

/* Gold metallic text helper */
.gold-metal{
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =================== TOPBAR =================== */
.topbar{
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 1px solid rgba(200,162,74,.18);
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; gap:20px; }
.topbar .gold-metal{ background: var(--gold-grad); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* =================== NAV =================== */
.nav-wrap{
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(200,162,74,.25);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 0;
  gap: 20px;
}
.brand{ display:flex; align-items:center; gap:14px; }
.brand-mark{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-grad);
  display:flex; align-items:center; justify-content:center;
  color: var(--navy-deep);
  font-family: var(--bold);
  font-size: 20px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.15);
}
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-name{
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
}
.brand-sub{
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight:600;
}

.nav-links{
  display:flex; align-items:center; gap: clamp(18px, 2.5vw, 38px);
  list-style:none;
}
.nav-links a{
  font-family: var(--bold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.nav-links a:hover, .nav-links a.active{
  border-color: var(--gold);
  color: var(--gold-2);
}
.nav-links .has-drop{ position:relative; }
.nav-links .drop{
  position:absolute; top:100%; left:-20px;
  background: var(--navy-deep);
  border: 1px solid rgba(200,162,74,.25);
  min-width: 280px;
  padding: 14px 0;
  opacity:0; pointer-events:none;
  transform: translateY(-8px);
  transition: all .2s var(--ease);
  list-style:none;
}
.nav-links .has-drop:hover .drop{ opacity:1; pointer-events:auto; transform:translateY(0); }
.nav-links .drop a{
  display:block; padding: 10px 22px;
  font-size: 11px; border:none;
  letter-spacing: .15em;
}
.nav-links .drop a:hover{ background: rgba(200,162,74,.1); color: var(--gold-2); }

.cta-btn{
  display:inline-flex; align-items:center; gap:10px;
  background: var(--gold-grad);
  color: var(--navy-deep);
  font-family: var(--bold);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 0;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 0 var(--gold-3);
}
.cta-btn:hover{ transform: translateY(-2px); box-shadow: 0 6px 0 var(--gold-3); }
.cta-btn.ghost{
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
  box-shadow: none;
}
.cta-btn.ghost:hover{ background: var(--gold); color: var(--navy-deep); box-shadow: none; transform:translateY(-2px); }
.cta-btn.dark{
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 0 var(--navy-deep);
}
.cta-btn.dark:hover{ box-shadow: 0 6px 0 var(--navy-deep); }

.burger{
  display:none;
  width:42px; height:42px;
  align-items:center; justify-content:center;
  border: 1px solid rgba(200,162,74,.35);
}
.burger span{
  display:block; width:18px; height:2px;
  background: var(--gold);
  position:relative;
}
.burger span::before, .burger span::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--gold);
}
.burger span::before{ top:-6px; }
.burger span::after{ top:6px; }

/* =================== TICKER =================== */
.ticker{
  background: var(--gold-grad);
  color: var(--navy-deep);
  overflow:hidden;
  padding: 11px 0;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.ticker-track{
  display:flex; gap: 60px;
  white-space: nowrap;
  animation: tk 45s linear infinite;
  font-family: var(--bold);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.ticker-track span{ display:inline-flex; align-items:center; gap:12px; }
.ticker-track span::before{
  content:"★"; color: var(--navy-deep);
}
@keyframes tk { from{ transform:translateX(0); } to{ transform:translateX(-50%);} }

/* =================== HERO =================== */
.hero{
  background: var(--navy);
  color: var(--white);
  position:relative;
  overflow:hidden;
  padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 10vw, 140px);
}
.hero::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(800px 400px at 80% 30%, rgba(200,162,74,.12) 0%, transparent 70%),
    radial-gradient(600px 300px at 10% 90%, rgba(200,162,74,.06) 0%, transparent 70%);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 80px);
  align-items:center;
  position:relative; z-index:2;
}
.hero-eyebrow{
  font-family: var(--bold);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 28px;
  display:flex; align-items:center; gap:14px;
}
.hero-eyebrow::before{ content:""; width:40px; height:2px; background: var(--gold); }

.hero h1{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(54px, 8.5vw, 132px);
  line-height: .92;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 30px;
}
.hero h1 .gold{
  color: var(--gold-2);
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hero-rule{
  width: 80px; height: 4px;
  background: var(--gold);
  margin: 6px 0 28px;
}
.hero-lede{
  font-family: var(--body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 38px;
  font-weight: 400;
}
.hero-lede strong{ color: var(--white); font-weight: 700; }

.hero-actions{ display:flex; gap: 18px; align-items:center; flex-wrap:wrap; }
.hero-tag{
  font-family: var(--bold);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 10px 14px;
  border: 1px solid rgba(200,162,74,.4);
}

.hero-photo{
  position:relative;
  aspect-ratio: 4/5;
  background: var(--navy-2);
  overflow: hidden;
  border: 1px solid rgba(200,162,74,.3);
}
.hero-photo img{
  width:100%; height:100%; object-fit: cover; object-position: center;
}
.hero-photo::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,26,48,.7) 100%);
  pointer-events:none;
}
.hero-plate{
  position:absolute; top:24px; left:24px;
  background: var(--gold-grad);
  color: var(--navy-deep);
  font-family: var(--bold);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 9px 14px;
  z-index:3;
}
.hero-caption{
  position:absolute; left:24px; bottom:24px; right:24px;
  z-index: 3;
  color: var(--white);
}
.hero-caption .lg{
  font-family: var(--display);
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-caption .sm{
  font-family: var(--bold);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* =================== TAGLINE BAND =================== */
.tagline-band{
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  overflow:hidden;
}
.tagline-band .roll{
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 84px);
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -.01em;
  display:flex; gap: 60px;
  animation: tk 30s linear infinite;
}
.tagline-band .roll span{ display:inline-flex; align-items:center; gap:60px; }
.tagline-band .roll .dot{
  width:14px; height:14px; border-radius:50%;
  background: var(--gold-grad);
  display:inline-block;
  flex-shrink:0;
}

/* =================== PRESS =================== */
.press{
  background: var(--cream);
  padding: 70px 0;
  text-align:center;
}
.press h3{
  font-family: var(--bold);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.press-row{
  display:flex; justify-content:space-around; align-items:center;
  flex-wrap:wrap; gap: 28px 50px;
}
.press-row .item{
  font-family: var(--display);
  font-size: clamp(15px, 1.5vw, 22px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .82;
  transition: opacity .2s var(--ease);
}
.press-row .item:hover{ opacity: 1; }

/* =================== SECTION HEAD =================== */
.section{
  padding: var(--section-py) 0;
  position: relative;
}
.section.dark{ background: var(--navy); color: var(--white); }
.section.cream{ background: var(--cream); }
.section.deep{ background: var(--navy-deep); color: var(--white); }

.section-head{
  margin-bottom: clamp(40px, 5vw, 70px);
}
.section-head h2{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: .95;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: inherit;
  margin: 18px 0 0;
  max-width: 1100px;
}
.section-head h2 .gold{
  background: var(--gold-grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color: transparent;
}
.section-head .lede{
  margin-top: 22px;
  max-width: 720px;
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-2);
  line-height: 1.65;
}
.section.dark .section-head .lede{ color: rgba(255,255,255,.78); }

.section-head.center{ text-align:center; }
.section-head.center .lede{ margin-left:auto; margin-right:auto; }

/* =================== EXPERIENCE CARDS =================== */
.exp-grid{
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.exp-card{
  position:relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: var(--navy-2);
  color: var(--white);
  display:flex; flex-direction:column; justify-content:space-between;
  padding: 30px;
  transition: transform .35s var(--ease);
  border: 1px solid rgba(200,162,74,.2);
}
.exp-card:hover{ transform: translateY(-4px); }
.exp-card .bg{
  position:absolute; inset:0;
  z-index: 0;
}
.exp-card .bg::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,26,48,.4) 0%, rgba(11,26,48,.92) 90%);
}
.exp-card.liverpool .bg{ background: linear-gradient(135deg, #c8102e 0%, #6e0a1e 100%); }
.exp-card.united .bg{ background: linear-gradient(135deg, #da020e 0%, #5a000a 100%); }
.exp-card.arsenal .bg{ background: linear-gradient(135deg, #ef0107 0%, #5a0204 100%); }
.exp-card.chelsea .bg{ background: linear-gradient(135deg, #034694 0%, #021e44 100%); }

.exp-card .top, .exp-card .bot{ position:relative; z-index:2; }
.exp-card .top{ display:flex; justify-content:space-between; align-items:flex-start; }
.exp-card .num{
  font-family: var(--display);
  font-size: 56px;
  color: var(--gold-2);
  line-height: 1;
  opacity: .8;
}
.exp-card .club{
  font-family: var(--bold);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.exp-card h3{
  font-family: var(--display);
  font-size: clamp(28px, 3.3vw, 48px);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.exp-card p{
  font-size: 14px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
  margin-bottom: 22px;
  max-width: 90%;
}
.exp-card .learn{
  display:inline-flex; align-items:center; gap: 10px;
  font-family: var(--bold);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}
.exp-card .learn .arr{ transition: transform .25s var(--ease); }
.exp-card:hover .learn .arr{ transform: translateX(6px); }

/* =================== STATS =================== */
.stats{
  background: var(--navy-deep);
  color: var(--white);
  padding: 60px 0;
  border-top: 1px solid rgba(200,162,74,.25);
  border-bottom: 1px solid rgba(200,162,74,.25);
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat{
  text-align:center;
  padding: 10px 24px;
  border-right: 1px solid rgba(200,162,74,.2);
}
.stat:last-child{ border-right:none; }
.stat .num{
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.stat .lbl{
  font-family: var(--bold);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* =================== TESTIMONIALS =================== */
.tt-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tt-card{
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.section.dark .tt-card{ background: var(--navy-2); border-color: rgba(200,162,74,.2); color: var(--white); }
.tt-card:hover{ transform:translateY(-4px); box-shadow: 0 16px 40px rgba(11,26,48,.12); }
.tt-stars{
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 18px;
}
.tt-card blockquote{
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 24px;
}
.section.dark .tt-card blockquote{ color: rgba(255,255,255,.9); }
.tt-card .who{
  display:flex; justify-content:space-between; align-items:flex-end;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.tt-card .who.with-avatar{
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
}
.tt-avatar{
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.tt-card .who.with-avatar .who-text{
  display:flex; flex-direction:column; gap: 4px;
}
.section.dark .tt-card .who{ border-top-color: rgba(200,162,74,.2); }
.tt-card .name{
  font-family: var(--bold);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}
.section.dark .tt-card .name{ color: var(--gold-2); }
.tt-card .meta{
  font-family: var(--body);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* =================== FEATURE STORY =================== */
.feature{
  background: var(--cream);
  padding: var(--section-py) 0;
}
.feature-grid{
  display:grid; grid-template-columns: .45fr .55fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.feature h2{
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 72px);
  line-height: .95;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
}
.feature .body{
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}
.feature .body p{ margin-bottom: 18px; }
.feature .visual{
  aspect-ratio: 4/5;
  background: var(--navy);
  position: relative;
  overflow:hidden;
  border: 1px solid rgba(200,162,74,.3);
}
.feature .visual::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(400px 200px at 70% 20%, rgba(200,162,74,.25) 0%, transparent 70%),
    linear-gradient(135deg, var(--navy-2), var(--navy-deep));
  z-index:1;
}
.feature .visual.feature-photo > img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover; object-position: center;
  z-index: 0;
  filter: brightness(.62) contrast(1.04);
}
.feature .visual.feature-photo::before{
  background:
    radial-gradient(420px 220px at 70% 18%, rgba(200,162,74,.28) 0%, transparent 70%),
    linear-gradient(180deg, rgba(11,26,48,.2) 0%, rgba(11,26,48,.85) 90%);
}
.feature .visual.feature-photo .visual-num,
.feature .visual.feature-photo .visual-label{ z-index: 2; }
.feature .visual-num{
  position:absolute; top: 30px; right: 36px;
  font-family: var(--display);
  font-size: 200px;
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color: transparent;
  opacity: .6;
}
.feature .visual-label{
  position:absolute; bottom: 36px; left: 36px; right:36px;
  color: var(--white);
}
.feature .visual-label .pre{
  font-family: var(--bold); font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 8px;
}
.feature .visual-label .h{
  font-family: var(--display); font-size: 36px; text-transform: uppercase; line-height: 1;
}

/* =================== ABOUT TEASER =================== */
.about-tease{
  background: var(--navy);
  color: var(--white);
  padding: var(--section-py) 0;
}
.about-tease-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about-tease h2{
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 84px);
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.about-tease p{
  font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 32px;
  max-width: 520px;
}
.about-facts{
  display:grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.fact{
  border: 1px solid rgba(200,162,74,.3);
  padding: 24px;
}
.fact .k{
  font-family: var(--bold); font-size: 10px; letter-spacing: .25em; text-transform:uppercase;
  color: var(--gold-2); margin-bottom: 8px;
}
.fact .v{
  font-family: var(--display); font-size: 30px; line-height: 1;
  color: var(--white);
}
.fact .d{ font-size: 12px; color: rgba(255,255,255,.65); margin-top:8px; }

/* =================== CTA SECTION =================== */
.cta-section{
  background: var(--navy-deep);
  color: var(--white);
  text-align: center;
  padding: var(--section-py) 0;
  border-top: 1px solid rgba(200,162,74,.25);
  position:relative;
  overflow:hidden;
}
.cta-section::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(200,162,74,.12) 0%, transparent 70%);
}
.cta-section .container{ position:relative; z-index:2; }
.cta-section h2{
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 96px);
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.cta-section p{
  font-size: 17px;
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin: 0 auto 38px;
}
.cta-row{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }

/* =================== FOOTER =================== */
.footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,.78);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(200,162,74,.25);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer h4{
  font-family: var(--bold);
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer ul{ list-style:none; }
.footer ul li{ margin-bottom: 12px; }
.footer ul a{
  font-size: 14px;
  color: rgba(255,255,255,.78);
  transition: color .2s var(--ease);
}
.footer ul a:hover{ color: var(--gold-2); }
.footer .blurb{ font-size: 14px; line-height: 1.65; margin: 16px 0 22px; max-width: 320px; }
.footer .license-box{
  border: 1px solid rgba(200,162,74,.3);
  padding: 16px;
  margin-top: 20px;
}
.footer .license-box .lic-num{
  font-family: var(--bold);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--gold-2);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer .license-box .lic-txt{
  font-size: 12px;
  color: rgba(255,255,255,.65);
}
.footer-bottom{
  border-top: 1px solid rgba(200,162,74,.2);
  padding-top: 28px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:20px;
}
.footer-bottom .left{
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.footer-bottom .right{ display:flex; gap: 22px; }
.footer-bottom .right a{
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.footer-bottom .right a:hover{ color: var(--gold-2); }

/* socials */
.socials{ display:flex; gap: 12px; }
.socials a{
  width: 38px; height: 38px;
  border: 1px solid rgba(200,162,74,.35);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold-2);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.socials a:hover{ background: var(--gold); color: var(--navy-deep); }
.socials svg{ width:16px; height:16px; }

/* =================== PAGE HEADER (sub-pages) =================== */
.page-hero{
  background: var(--navy);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 7vw, 100px);
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(700px 350px at 30% 50%, rgba(200,162,74,.12) 0%, transparent 70%);
}
.page-hero .container{ position:relative; z-index:2; }
.page-hero h1{
  font-family: var(--display);
  font-size: clamp(54px, 9vw, 144px);
  line-height: .92;
  text-transform: uppercase;
  margin-top: 18px;
}
.page-hero .lede{
  margin-top: 26px;
  max-width: 720px;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
}

/* =================== ABOUT PAGE =================== */
.about-block{
  display:grid;
  grid-template-columns: .35fr .65fr;
  gap: clamp(40px, 5vw, 80px);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--rule);
}
.about-block:first-of-type{ border-top: none; }
.about-block h2{
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: .95;
  text-transform: uppercase;
  color: var(--navy);
}
.about-block .body{
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
}
.about-block .body p{ margin-bottom: 22px; }

.values-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value{
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 38px 32px;
  position:relative;
}
.value .stars{
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 18px;
}
.value h3{
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.value p{ font-size: 14.5px; line-height: 1.7; color: var(--ink-2); }

/* =================== EXPERIENCE PAGE =================== */
.exp-hero{
  position:relative;
  color: var(--white);
  padding: clamp(100px, 13vw, 200px) 0 clamp(80px, 10vw, 140px);
  overflow:hidden;
}
.exp-hero::before{
  content:""; position:absolute; inset:0;
  z-index:0;
}
.exp-hero.liverpool::before{ background: linear-gradient(135deg, #c8102e 0%, #6e0a1e 100%); }
.exp-hero.united::before{ background: linear-gradient(135deg, #da020e 0%, #5a000a 100%); }
.exp-hero.arsenal::before{ background: linear-gradient(135deg, #ef0107 0%, #5a0204 100%); }
.exp-hero.chelsea::before{ background: linear-gradient(135deg, #034694 0%, #021e44 100%); }
.exp-hero::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(11,26,48,.85) 100%);
  z-index:1;
}
.exp-hero .container{ position:relative; z-index:2; }
.exp-hero .club-tag{
  font-family: var(--bold);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 22px;
}
.exp-hero h1{
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 150px);
  line-height: .92;
  text-transform: uppercase;
}
.exp-hero p.lede{
  margin-top: 24px;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}

.exp-includes{
  background: var(--cream);
  padding: var(--section-py) 0;
}
.includes-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.include{
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 30px;
}
.include .ic{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--navy-deep);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 18px;
}
.include h4{
  font-family: var(--bold);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}
.include p{ font-size: 14px; line-height: 1.65; color: var(--ink-2); }

/* =================== CONTACT =================== */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: var(--section-py) 0;
}
.contact-info h2{
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-info p.lede{
  font-size: 16px; line-height: 1.7; color: var(--ink-2);
  margin-bottom: 36px; max-width: 480px;
}
.contact-row{
  display:flex; gap: 18px; align-items:flex-start;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.contact-row:last-of-type{ border-bottom: 1px solid var(--rule); }
.contact-row .ic{
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--gold-2);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.contact-row .k{
  font-family: var(--bold); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px;
}
.contact-row .v{ font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-row .v a{ color:var(--navy); }
.contact-row .v a:hover{ color: var(--gold-3); }

.contact-form{
  background: var(--cream);
  padding: 48px;
  border: 1px solid var(--rule);
}
.contact-form h3{
  font-family: var(--display);
  font-size: 36px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-row{ margin-bottom: 20px; }
.form-row label{
  display:block;
  font-family: var(--bold);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.form-row input, .form-row textarea, .form-row select{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  background: var(--white);
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus{
  outline: none;
  border-color: var(--gold);
}
.form-row textarea{ min-height: 120px; resize: vertical; }
.form-submit{
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--bold);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 18px;
  transition: background .2s var(--ease);
}
.form-submit:hover{ background: var(--gold); color: var(--navy-deep); }

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px){
  .hero h1{ font-size: clamp(48px, 9vw, 88px); }
  .hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .hero-photo{ aspect-ratio: 16/10; max-width: 600px; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .stat{ border-right: none; padding: 24px; border-bottom: 1px solid rgba(200,162,74,.15); }
  .stat:nth-child(odd){ border-right: 1px solid rgba(200,162,74,.15); }
  .stat:nth-last-child(-n+2){ border-bottom: none; }
  .feature-grid{ grid-template-columns: 1fr; }
  .about-tease-grid{ grid-template-columns: 1fr; }
  .about-block{ grid-template-columns: 1fr; gap: 30px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 40px; }
  .includes-grid{ grid-template-columns: repeat(2, 1fr); }
  .values-grid{ grid-template-columns: 1fr; }
  .feature .visual-num{ font-size: 140px; }
}
@media (max-width: 820px){
  :root{ --pad-x: 20px; --section-py: 60px; }
  .nav-links{
    position: fixed; top: 70px; left:0; right:0;
    background: var(--navy-deep);
    flex-direction: column; align-items:flex-start;
    padding: 24px 20px;
    border-top: 1px solid rgba(200,162,74,.2);
    transform: translateY(-110%);
    transition: transform .3s var(--ease);
    z-index: 70;
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-links li{ width:100%; }
  .nav-links a{ display:block; padding: 14px 0; }
  .nav-links .drop{ position:static; opacity:1; pointer-events:auto; transform:none; background:transparent; border:none; padding-left:20px; }
  .nav-links .drop a{ padding: 8px 0; }
  .nav .cta-btn{ display:none; }
  .burger{ display:flex; }
  .hero h1{ font-size: 52px; }
  .section-head h2{ font-size: 42px; }
  .exp-grid{ grid-template-columns: 1fr; }
  .tt-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .includes-grid{ grid-template-columns: 1fr; }
  .topbar .container{ flex-direction:column; gap:6px; text-align:center; font-size: 10px; }
  .tagline-band .roll{ font-size: 32px; }
  .feature .visual-num{ font-size: 100px; right: 20px; top: 20px; }
  .feature .visual-label .h{ font-size: 24px; }
  .hero-caption .lg{ font-size: 24px; }
  .contact-form{ padding: 30px 24px; }
}


/* ===== STADIUM GALLERY ===== */
.gallery-section {
  background: #f7f6f3;
  padding: 80px 0;
  border-top: 1px solid rgba(214,175,54,0.2);
  border-bottom: 1px solid rgba(214,175,54,0.2);
}
.gallery-head {
  text-align: center;
  margin-bottom: 48px;
}
.gallery-head .eyebrow {
  font-family: 'Archivo Black', sans-serif;
  letter-spacing: 0.25em;
  font-size: 11px;
  color: #d6af36;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.gallery-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  color: #0a1628;
}
.gallery-head h2 .gold-metal {
  background: linear-gradient(180deg, #f5d76e 0%, #d6af36 50%, #a78628 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 580px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  background: #e8e6e0;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:first-child {
  grid-row: span 2;
}
@media (max-width: 880px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .gallery-item {
    aspect-ratio: 4/3;
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
}

/* =================== ATMOSPHERIC BAND =================== */
.atmos{
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
  display: flex;
  align-items: center;
}
.atmos > img{
  position: absolute; inset:0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  z-index: 0;
}
.atmos .atmos-overlay{
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(90deg, rgba(11,26,48,.92) 0%, rgba(11,26,48,.6) 55%, rgba(11,26,48,.15) 100%);
}
.atmos .atmos-eyebrow{
  font-family: var(--bold);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
  display: inline-flex; align-items:center; gap:14px;
}
.atmos .atmos-eyebrow::before{ content:""; width:36px; height:2px; background: var(--gold); }
.atmos h2{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: .95;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 22px;
  max-width: 760px;
}
.atmos p{
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
  max-width: 560px;
}
@media (max-width: 768px){
  .atmos > img{ object-position: center 40%; }
  .atmos .atmos-overlay{
    padding: 70px 0;
    background: linear-gradient(180deg, rgba(11,26,48,.4) 0%, rgba(11,26,48,.92) 80%);
  }
  .atmos{ min-height: 460px; }
}

/* =================== COVERAGE BAND =================== */
.coverage-band{ background: var(--cream); }
.coverage-grid{
  display:grid; grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.coverage-h{
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 5vw, 76px);
  line-height: .95;
  text-transform: uppercase;
  color: var(--navy);
  margin: 18px 0 24px;
}
.coverage-band p{
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 480px;
}
.coverage-band p strong{ color: var(--navy); font-weight: 700; }
.coverage-photo{
  position: relative;
  aspect-ratio: 4/3;
  background: var(--navy-deep);
  border: 1px solid var(--rule);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(11,26,48,.35);
}
.coverage-photo img{ width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 860px){
  .coverage-grid{ grid-template-columns: 1fr; }
  .coverage-photo{ aspect-ratio: 5/4; }
}

/* =================== ABOUT TEASE PHOTO =================== */
.about-tease-visual{
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy-deep);
  overflow:hidden;
  border: 1px solid rgba(200,162,74,.3);
}
.about-tease-visual img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover; object-position: center;
  filter: brightness(.85) contrast(1.04);
}
.about-tease-visual::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,26,48,.85) 100%);
}
.about-tease-cap{
  position:absolute; bottom: 28px; left: 28px; right: 28px;
  z-index: 2;
  color: var(--white);
}
.about-tease-cap .cap-pre{
  font-family: var(--bold);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 8px;
}
.about-tease-cap .cap-h{
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

/* =================== FACTS BAR (formerly inside about-tease) =================== */
.facts-bar{
  background: var(--navy-deep);
  color: var(--white);
  padding: 60px 0;
  border-top: 1px solid rgba(200,162,74,.25);
}
.facts-bar .about-facts{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.facts-bar .fact{
  text-align:center;
  padding: 6px 24px;
  border-right: 1px solid rgba(200,162,74,.2);
}
.facts-bar .fact:last-child{ border-right:none; }
.facts-bar .fact .k{
  font-family: var(--bold); font-size: 10px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold-2); margin-bottom: 10px;
}
.facts-bar .fact .v{
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 6px;
}
.facts-bar .fact .d{
  font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .04em;
}
@media (max-width: 720px){
  .facts-bar .about-facts{ grid-template-columns: repeat(2, 1fr); }
  .facts-bar .fact{
    border-right: none;
    padding: 18px 12px;
    border-bottom: 1px solid rgba(200,162,74,.15);
  }
  .facts-bar .fact:nth-child(2n){ border-right: 0; }
  .facts-bar .fact:nth-child(odd){ border-right: 1px solid rgba(200,162,74,.2); }
}

/* =================== ABOUT: FOUNDER BAND =================== */
.founder-band{
  background: var(--cream);
  padding: 80px 0;
}
.founder-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}
.founder-photo{
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid rgba(200,162,74,.3);
}
.founder-photo > img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit: cover; object-position: center 20%;
}
.founder-photo::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,26,48,.85) 100%);
}
.founder-cap{
  position:absolute; bottom: 28px; left: 28px; right: 28px;
  z-index: 2;
  color: var(--white);
}
.founder-cap .cap-pre{
  font-family: var(--bold); font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px;
}
.founder-cap .cap-h{
  font-family: var(--display); font-size: clamp(26px, 3vw, 40px);
  text-transform: uppercase; line-height: 1;
}
.founder-quote{
  position: relative;
}
.founder-quote .q-mark{
  font-family: var(--display);
  font-size: clamp(120px, 16vw, 220px);
  line-height: .7;
  color: var(--gold);
  opacity: .35;
  margin-bottom: 10px;
}
.founder-quote p{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 26px;
  max-width: 560px;
}
.founder-quote .q-sig{
  font-family: var(--bold);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-2);
}
@media (max-width: 860px){
  .founder-grid{ grid-template-columns: 1fr; }
}

/* =================== ABOUT: GROUP MOMENT =================== */
.about-moment{
  margin-top: 50px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(200,162,74,.2);
  position: relative;
}
.about-moment img{
  width:100%; height:100%;
  object-fit: cover; object-position: center 30%;
}
@media (max-width: 700px){
  .about-moment{ aspect-ratio: 4/3; }
}

/* ============================================
   IMMERSIVE FULL-BLEED HERO
   ============================================ */
.hero-immersive{
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: clamp(640px, 92vh, 920px);
  padding: clamp(90px, 12vw, 160px) 0 clamp(110px, 14vw, 200px);
  display: flex;
  align-items: center;
}
.hero-immersive::before{ content: none; }

.hero-bg{
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-bg img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% center; /* keep faces in frame, slight right bias for selfie */
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.04);
  animation: heroPan 22s ease-in-out infinite alternate;
}
@keyframes heroPan{
  0%   { transform: scale(1.04) translateX(0); }
  100% { transform: scale(1.08) translateX(-2%); }
}

/* Primary overlay: navy gradient from left (opaque) to right (lighter), keeps text legible */
.hero-bg-overlay{
  position: absolute; inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg,
      rgba(8,18,36,.94) 0%,
      rgba(8,18,36,.85) 28%,
      rgba(8,18,36,.55) 55%,
      rgba(8,18,36,.30) 80%,
      rgba(8,18,36,.45) 100%),
    linear-gradient(180deg,
      rgba(8,18,36,.35) 0%,
      rgba(8,18,36,0) 30%,
      rgba(8,18,36,0) 65%,
      rgba(8,18,36,.85) 100%);
  pointer-events: none;
}

/* Vignette + gold atmosphere */
.hero-bg-vignette{
  position: absolute; inset: 0;
  z-index: 3;
  background:
    radial-gradient(900px 500px at 18% 50%, rgba(200,162,74,.10) 0%, transparent 65%),
    radial-gradient(1200px 600px at 100% 100%, rgba(200,162,74,.08) 0%, transparent 70%),
    radial-gradient(1400px 700px at 50% 50%, transparent 50%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
  mix-blend-mode: normal;
}

.hero-immersive .container{
  position: relative;
  z-index: 5;
  width: 100%;
}
.hero-content{
  max-width: 680px;
}
.hero-immersive .hero-eyebrow{
  color: var(--gold-2);
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.hero-immersive h1{
  text-shadow: 0 4px 30px rgba(0,0,0,.7), 0 2px 6px rgba(0,0,0,.5);
}
.hero-immersive .hero-lede{
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 12px rgba(0,0,0,.7);
  max-width: 560px;
}
.hero-immersive .hero-tag{
  background: rgba(8,18,36,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Bottom-right meta plate, like film credits */
.hero-meta{
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: clamp(28px, 5vw, 60px);
  z-index: 5;
  text-align: right;
  max-width: 360px;
}
.hero-meta-plate{
  display: inline-block;
  background: var(--gold-grad);
  color: var(--navy-deep);
  font-family: var(--bold);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  padding: 9px 14px;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.hero-meta-caption .sm{
  font-family: var(--bold);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.hero-meta-caption .lg{
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 34px);
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0,0,0,.8);
}

/* Mobile / tablet */
@media (max-width: 900px){
  .hero-immersive{
    min-height: 700px;
    padding: 90px 0 120px;
  }
  .hero-bg img{
    object-position: 60% center;
  }
  .hero-bg-overlay{
    background:
      linear-gradient(180deg,
        rgba(8,18,36,.78) 0%,
        rgba(8,18,36,.55) 35%,
        rgba(8,18,36,.30) 55%,
        rgba(8,18,36,.85) 100%);
  }
  .hero-content{ max-width: 100%; }
  .hero-meta{
    left: 20px;
    right: 20px;
    bottom: 24px;
    text-align: left;
    max-width: none;
  }
}
@media (max-width: 640px){
  .hero-immersive h1{ font-size: 52px; }
  .hero-meta-caption .lg{ font-size: 22px; }
}

/* ============================================================
   LIGHT RHYTHM OVERRIDE — cream sections between dark ones
   Editorial magazine pacing: dark → light → dark → light
   ============================================================ */

/* ---------- STATS (navy bg, gold numbers, gold labels) ---------- */
.stats{
  background: #0a1a2e;
  color: #f5cf5e;
  border-top: 1px solid rgba(245,207,94,.28);
  border-bottom: 1px solid rgba(245,207,94,.28);
}
.stats .stat{
  border-right-color: rgba(245,207,94,.22) !important;
  border-bottom-color: rgba(245,207,94,.22) !important;
}
.stats .stat .num{
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #f5cf5e;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.stats .stat .lbl{
  color: #f5cf5e;
  opacity: .92;
}

/* ---------- ATMOS (image band) — lighten the overlay so it feels airier ---------- */
.atmos .atmos-overlay{
  background:
    linear-gradient(180deg,
      rgba(246,244,239,.15) 0%,
      rgba(11,26,48,.55) 40%,
      rgba(11,26,48,.75) 100%) !important;
}

/* ---------- ABOUT-TEASE (was navy) ---------- */
.about-tease{
  background: var(--cream);
  color: var(--ink);
}
.about-tease h2{ color: var(--navy); }
.about-tease p{ color: var(--ink); }
.about-tease p strong{ color: var(--navy); }
.about-tease .eyebrow{ color: var(--gold-3); }
.about-tease-visual{
  border: 1px solid var(--rule);
  box-shadow: 0 20px 60px -20px rgba(11,26,48,.25);
}
.about-tease .cta-btn.ghost{
  color: var(--navy);
  border-color: var(--navy);
}
.about-tease .cta-btn.ghost:hover{
  background: var(--navy);
  color: var(--white);
}

/* ---------- FACTS BAR (was navy-deep) ---------- */
.facts-bar{
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.facts-bar .fact{
  border-right-color: var(--rule);
}
.facts-bar .fact .k{ color: var(--gold-3); }
.facts-bar .fact .v{ color: var(--navy); }
.facts-bar .fact .d{ color: var(--ink-2); }
@media (max-width: 720px){
  .facts-bar .fact{
    border-bottom-color: var(--rule);
  }
}

/* ============================================================
   HERO V2 — single-line title, shiny gold, higher position
   ============================================================ */
.hero-immersive{
  align-items: center !important; /* vertically center content in hero */
  padding-top: clamp(60px, 8vw, 100px) !important;
  padding-bottom: clamp(60px, 8vw, 100px) !important;
  min-height: clamp(620px, 78vh, 820px);
}
.hero-content-v2{
  max-width: min(1240px, 92vw); /* wide enough for single-line title */
}
.hero-immersive h1.hero-title-single{
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 5.4vw, 82px);
  line-height: 1.02;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 18px;
  white-space: nowrap;
  text-shadow: 0 4px 30px rgba(0,0,0,.7), 0 2px 6px rgba(0,0,0,.5);
}
@media (max-width: 900px){
  .hero-immersive h1.hero-title-single{
    white-space: normal;
    font-size: clamp(34px, 8vw, 60px);
    line-height: 1.05;
  }
}
@media (max-width: 480px){
  .hero-immersive h1.hero-title-single{
    font-size: 34px;
  }
}

/* Shiny gold — bright solid gold with layered depth + animated glow pulse */
.gold-shiny{
  color: #f5cf5e;
  display: inline-block;
  position: relative;
  text-shadow:
    0 2px 3px rgba(0,0,0,.95),
    0 4px 20px rgba(0,0,0,.6),
    0 0 30px rgba(255,215,120,.5),
    0 0 8px rgba(255,240,180,.6);
  animation: goldPulse 3.2s ease-in-out infinite;
}
@keyframes goldPulse{
  0%,100%{
    color: #f5cf5e;
    text-shadow:
      0 2px 3px rgba(0,0,0,.95),
      0 4px 20px rgba(0,0,0,.6),
      0 0 30px rgba(255,215,120,.5),
      0 0 8px rgba(255,240,180,.6);
  }
  50%{
    color: #ffe89a;
    text-shadow:
      0 2px 3px rgba(0,0,0,.95),
      0 4px 20px rgba(0,0,0,.6),
      0 0 40px rgba(255,235,160,.85),
      0 0 14px rgba(255,255,220,.9);
  }
}
@media (prefers-reduced-motion: reduce){
  .gold-shiny{ animation: none; }
}

/* Eyebrow placed BELOW the h1 */
.hero-eyebrow-below{
  margin-top: 6px;
  margin-bottom: 22px;
}

/* Push CTA + tag lower using extra top margin */
.hero-actions-lower{
  margin-top: clamp(48px, 8vw, 96px);
}

/* Centered hero content variant */
.hero-content-centered{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-content-centered h1.hero-title-single{
  text-align: center;
}
.hero-content-centered .hero-eyebrow-below{
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-content-centered .hero-rule{
  margin-left: auto;
  margin-right: auto;
}
.hero-content-centered .hero-actions{
  justify-content: center;
  align-items: center;
}

/* Larger eyebrow */
.hero-eyebrow-lg{
  font-size: clamp(18px, 1.6vw, 26px) !important;
  letter-spacing: .28em !important;
  font-weight: 700 !important;
  color: var(--gold, #f5cf5e) !important;
  margin-top: 14px !important;
  margin-bottom: 24px !important;
}

/* Lede placed at bottom of hero content (unused on desktop now) */
.hero-lede-bottom{
  margin-top: clamp(28px, 4vw, 44px);
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.hero-lede-bottom strong{ color: #fff; font-weight: 700; }

/* Mobile-only caption (hidden on desktop by default) */
.hero-caption-mobile{ display: none; }

/* Hero image caption — overlay at bottom of the hero photo (desktop) */
.hero-image-caption{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(24px, 3vw, 48px);
  max-width: min(980px, 92vw);
  z-index: 5;
  margin: 0;
  padding: 22px 34px;
  text-align: center;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.55;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, rgba(8,18,36,.65), rgba(8,18,36,.85));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(245,207,94,.25);
  text-shadow: 0 2px 10px rgba(0,0,0,.85);
}
.hero-image-caption strong{ color: #f5cf5e; font-weight: 700; }

/* Mobile: stacked layout — full photo on top (no crop, all faces visible), content below */
@media (max-width: 900px){
  .hero-actions-lower{ margin-top: 32px; }
  .hero-immersive{
    min-height: auto !important;
    padding: 0 !important;
    display: block !important;
    background: #0a1a2e;
  }
  .hero-immersive .hero-bg{
    position: relative !important;
    inset: auto !important;
    width: 100%;
    height: auto;
    background: #0a1a2e;
  }
  .hero-immersive .hero-bg img{
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block;
  }
  .hero-immersive .hero-bg-overlay,
  .hero-immersive .hero-bg-vignette{
    display: none !important;
  }
  .hero-immersive .container{
    position: relative !important;
    padding: 44px 20px 60px !important;
    background: #0a1a2e;
  }
  .hero-immersive .hero-content{
    max-width: 100% !important;
  }
  .hero-content-centered h1.hero-title-single{
    text-align: center !important;
  }
  /* Mobile eyebrow: single line, no side marks */
  .hero-content-centered .hero-eyebrow-below.hero-eyebrow-lg{
    display: block !important;
    font-size: 20px !important;
    letter-spacing: .22em !important;
    margin-top: 12px !important;
    margin-bottom: 20px !important;
  }
  .hero-content-centered .hero-eyebrow-below::before,
  .hero-content-centered .hero-eyebrow-below::after{
    display: none !important;
  }
  .hero-lede-bottom{
    font-size: 15px !important;
    padding: 0 6px;
    margin-top: 28px !important;
  }
  /* Hide the in-image caption on mobile */
  .hero-image-caption,
  .hero-image-caption-desktop{
    display: none !important;
  }
  /* Show mobile caption above the title on the navy panel */
  .hero-caption-mobile{
    display: block !important;
    margin: 0 auto 24px !important;
    max-width: 100%;
    padding: 0 4px;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255,255,255,.94);
    text-align: center;
  }
  .hero-caption-mobile strong{ color: #f5cf5e; font-weight: 700; }
}

/* ---------- CTA SECTION (was navy-deep) ---------- */
.cta-section{
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid var(--rule);
}
.cta-section::before{
  background:
    radial-gradient(700px 350px at 50% 0%, rgba(200,162,74,.14) 0%, transparent 70%) !important;
}
.cta-section h2{ color: var(--navy); }
.cta-section p{ color: var(--ink-2); }
.cta-section .cta-btn.ghost{
  color: var(--navy);
  border-color: var(--navy);
}
.cta-section .cta-btn.ghost:hover{
  background: var(--navy);
  color: var(--white);
}

/* ---------- ABOUT PAGE hero band — leave dark (it's the intro) ---------- */
/* founder-band and about-moment are already cream on about.html */

/* ---------- Subtle divider polish between adjacent cream sections ---------- */
.press + .stats,
.stats + .section.cream,
.section.cream + .stats,
.coverage-band + .about-tease,
.about-tease + .facts-bar,
.facts-bar + .cta-section{
  border-top: 1px solid var(--rule);
}

/* ============================================================
   PRESS "FEATURED ON" — MARQUEE SLIDESHOW
   Smaller, refined, continuously scrolling
   ============================================================ */
.press-marquee{
  background: var(--cream);
  padding: 96px 0 112px;
  text-align: center;
  overflow: hidden;
}
.press-marquee h3{
  font-family: var(--bold);
  font-size: 13px;
  letter-spacing: .36em;
  color: var(--ink-2);
  text-transform: uppercase;
  margin: 0 0 64px;
  opacity: .78;
}

/* Viewport clips overflow and applies cream fade edges */
.press-viewport{
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%);
  mask-image: linear-gradient(90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%);
}

/* Track: two identical sets side-by-side, translate -50% for seamless loop */
.press-track{
  display: flex;
  width: max-content;
  animation: pressScroll 32s linear infinite;
}
.press-marquee:hover .press-track{
  animation-play-state: paused;
}

.press-set{
  display: flex;
  align-items: center;
  gap: clamp(72px, 8vw, 132px);
  padding: 0 clamp(36px, 4.5vw, 68px);
  flex-shrink: 0;
}

.press-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  text-decoration: none;
  outline: none;
  border-radius: 6px;
  transition: transform .25s var(--ease);
}
.press-link:focus-visible{
  outline: 2px solid var(--gold-3);
  outline-offset: 8px;
}
.press-link:hover{
  transform: scale(1.04);
}

.press-logo{
  height: 180px;
  width: auto;
  max-width: 460px;
  object-fit: contain;
  opacity: .88;
  filter: grayscale(8%);
  transition: opacity .25s var(--ease), filter .25s var(--ease);
  display: block;
}
.press-link:hover .press-logo{
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes pressScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .press-track{ animation: none; }
  .press-set{ gap: 44px; }
}

/* Mobile */
@media (max-width: 640px){
  .press-marquee{ padding: 68px 0 80px; }
  .press-marquee h3{ margin-bottom: 40px; }
  .press-link{ height: 132px; }
  .press-logo{ height: 132px; max-width: 360px; }
  .press-set{ gap: 72px; padding: 0 36px; }
  .press-track{ animation-duration: 40s; }
}

/* ============================================================
   LANDING PAGE STYLES — /experiences/*.html
   ============================================================ */

/* Hero — full-bleed image with overlay */
.lp-hero{
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a1a2e;
  padding: 120px 0 70px;
}
.lp-hero-bg{ position: absolute; inset: 0; z-index: 0; }
.lp-hero-bg img{
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.lp-hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,26,46,.15) 0%, rgba(10,26,46,.25) 40%, rgba(10,26,46,.75) 78%, rgba(10,26,46,.95) 100%),
    linear-gradient(90deg, rgba(10,26,46,.55) 0%, rgba(10,26,46,.1) 65%);
}
@media (max-width: 900px){
  .lp-hero{
    min-height: 128vh;
    padding: 0 0 40px;
    align-items: flex-end;
  }
  .lp-hero-bg img{ object-position: center top; }
  .lp-hero-ot .lp-hero-bg img{ object-position: center 45%; }
  .lp-hero-em .lp-hero-bg img{ object-position: center 45%; }
  .lp-hero-sb .lp-hero-bg img{ object-position: center 45%; }
  .lp-hero-overlay{
    background:
      linear-gradient(180deg, rgba(10,26,46,.05) 0%, rgba(10,26,46,.05) 68%, rgba(10,26,46,.92) 84%, rgba(10,26,46,.98) 100%);
  }
  .lp-hero-content{
    background: linear-gradient(180deg, rgba(10,26,46,0) 0%, rgba(10,26,46,.85) 20%, rgba(10,26,46,.95) 100%);
    padding: 70px 20px 24px;
    margin: 0 -20px;
    border-radius: 0;
  }
  .lp-hero-eyebrow{
    letter-spacing: .18em;
    font-size: 11px;
    margin-bottom: 14px;
  }
  .lp-hero-title{
    text-shadow: 0 2px 16px rgba(0,0,0,.7);
  }
}
.lp-hero .container{ position: relative; z-index: 2; }
.lp-hero-content{ max-width: 780px; color: #fff; }
.lp-hero-eyebrow{
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 13px;
  color: #f5cf5e;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.lp-hero-title{
  font-family: 'Anton', 'Archivo Black', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .98;
  letter-spacing: -.01em;
  color: #fff;
  margin: 0 0 32px;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.lp-hero-actions{
  display: flex; gap: 16px; flex-wrap: wrap;
}
.cta-btn-ghost{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: 13px;
  text-transform: uppercase;
  color: #fff;
  border: 1.5px solid rgba(245,207,94,.55);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  text-decoration: none;
  transition: all .25s ease;
}
.cta-btn-ghost:hover{
  border-color: #f5cf5e;
  background: rgba(245,207,94,.1);
  color: #f5cf5e;
}

/* Promise strip — navy band under hero */
.lp-promise{
  background: #081224;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(245,207,94,.22);
  border-bottom: 1px solid rgba(245,207,94,.22);
}
.lp-promise-eyebrow{
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 14px;
  color: #f5cf5e;
  text-transform: uppercase;
  margin-bottom: 22px;
}
@media (max-width: 900px){
  .lp-promise-eyebrow{ font-size: 11px; letter-spacing: .18em; margin-bottom: 16px; }
}
.lp-promise-title{
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  color: #fff;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.lp-promise-lede{
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 22px);
  color: #f5cf5e;
  margin: 0 0 20px;
  letter-spacing: .04em;
}
.lp-promise-body{
  font-family: 'Archivo', sans-serif;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 780px;
  margin: 0 auto;
}

/* Feature sections — alternating rows */
.lp-feature{
  padding: 110px 0;
  background: #0a1a2e;
  color: #fff;
}
.lp-feature.cream{
  background: #f6f4ef;
  color: #0a1a2e;
}
.lp-feature-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-feature-grid.reverse{
  grid-template-columns: 1fr 1fr;
}
.lp-feature-num{
  font-family: 'Anton', sans-serif;
  font-size: 72px;
  line-height: 1;
  color: #f5cf5e;
  opacity: .9;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}
.lp-feature.cream .lp-feature-num{ color: #c8a24a; }
.lp-feature-text h2{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.02;
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.lp-feature.cream .lp-feature-text h2{ color: #0a1a2e; }
.lp-feature-text p{
  font-family: 'Archivo', sans-serif;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin: 0;
  max-width: 520px;
}
.lp-feature.cream .lp-feature-text p{ color: #2a3242; }
.lp-feature-image{
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.lp-feature.cream .lp-feature-image{ box-shadow: 0 20px 50px rgba(10,26,46,.18); }
.lp-feature-image img{
  width: 100%; height: 100%; display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Closer band — full-width image with overlay text */
.lp-closer{
  position: relative;
  min-height: 60vh;
  padding: 120px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.lp-closer-bg{ position: absolute; inset: 0; z-index: 0; }
.lp-closer-bg img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.lp-closer-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,26,46,.85) 0%, rgba(10,26,46,.65) 50%, rgba(10,26,46,.5) 100%);
}
.lp-closer .container{ position: relative; z-index: 2; }
.lp-closer-content{ max-width: 720px; }
.lp-closer-eyebrow{
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 12px;
  color: #f5cf5e;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-closer h2{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -.005em;
}
.lp-closer p{
  font-family: 'Archivo', sans-serif;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  max-width: 620px;
  margin: 0;
}

/* Packages section */
.lp-packages{ padding: 100px 0; }
.lp-packages.cream{ background: #f6f4ef; }
.lp-packages .section-head.center{ text-align: center; margin-bottom: 60px; }
.lp-packages .section-head h2.center{
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  color: #0a1a2e;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.lp-packages .eyebrow.center{
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: .28em;
  font-size: 12px;
  color: #c8a24a;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.lp-pack-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-pack-vs-media{
  aspect-ratio: 16/9;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(245,207,94,.10) 0%, rgba(10,26,46,0) 60%),
    linear-gradient(135deg, #0a1a2e 0%, #142845 55%, #081224 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8%;
  padding: 20px;
}
.lp-pack-vs-media::before{
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(90deg, transparent 0%, transparent 48%, rgba(245,207,94,.14) 50%, transparent 52%, transparent 100%);
  pointer-events:none;
}
.lp-pack-vs-media .badge{
  position: relative; z-index: 2;
  width: 32%;
  max-width: 130px;
  height: 78%;
  max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.5));
}
.lp-pack-vs-media .vs-mark{
  position: relative; z-index: 2;
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  color: #f5cf5e;
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  line-height: 1;
  transform: translateY(-2px);
}
.lp-pack{
  background: #fff;
  border: 1px solid rgba(10,26,46,.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10,26,46,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.lp-pack:hover{
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10,26,46,.16);
}
.lp-pack-media{
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0a1a2e;
}
.lp-pack-media img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lp-pack-body{ padding: 32px 28px 36px; text-align: center; }
.lp-pack-dates{
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .24em;
  color: #c8a24a;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lp-pack h3{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  margin: 0 0 24px;
  color: #0a1a2e;
  text-transform: uppercase;
  letter-spacing: -.005em;
}

/* Final CTA */
.lp-final-cta{
  background: #0a1a2e;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(245,207,94,.22);
}
.lp-final-inner{ max-width: 780px; margin: 0 auto; }
.lp-final-badge{
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: .24em;
  font-size: 11px;
  color: #f5cf5e;
  border: 1px solid rgba(245,207,94,.45);
  padding: 8px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.lp-final-cta h2{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  color: #fff;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.lp-final-cta p{
  font-family: 'Archivo', sans-serif;
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(255,255,255,.85);
  margin: 0 0 36px;
  line-height: 1.6;
}
.lp-final-actions{
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* Mobile responsiveness */
@media (max-width: 900px){
  .lp-hero{ min-height: 70vh; padding: 90px 0 50px; }
  .lp-promise{ padding: 60px 0; }
  .lp-feature{ padding: 70px 0; }
  .lp-feature-grid,
  .lp-feature-grid.reverse{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-feature-grid.reverse .lp-feature-image{ order: -1; }
  .lp-feature-num{ font-size: 56px; }
  .lp-closer{ min-height: 50vh; padding: 80px 0; }
  .lp-closer-overlay{
    background: linear-gradient(180deg, rgba(10,26,46,.7) 0%, rgba(10,26,46,.9) 100%);
  }
  .lp-packages{ padding: 70px 0; }
  .lp-pack-grid{ grid-template-columns: 1fr; gap: 28px; }
  .lp-pack-vs-media .badge{ width: 30%; max-width: 110px; }
  .lp-final-cta{ padding: 70px 0; }
  .lp-final-actions{ flex-direction: column; align-items: stretch; }
}
