/* ============================================================
   PADELHUB Southampton SO16 - microsite
   Brand: Lime #C9F5A0 / Pine #15332B / Coral #E2603A
          Sky-blue #A9C4DE / off-white-green bg #E9F5E4
   Fonts: Archivo (headings) / Inter (body)
   ============================================================ */

:root {
  --lime: #C9F5A0;
  --pine: #15332B;
  --coral: #E2603A;
  --sky: #A9C4DE;
  --bg: #E9F5E4;
  --pine-soft: #1d4438;
  --pine-deep: #0f2620;
  --ink: #15332B;
  --ink-soft: #41584f;
  --white: #ffffff;
  --radius: 20px;
  --radius-lg: 28px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Monogram / wordmark ---------- */
.monogram {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}
.monogram .monogram-h { color: var(--coral); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(21, 51, 43, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
  padding: 12px 0;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--pine);
  transition: color 0.4s var(--ease);
}
.nav.scrolled .brand { color: var(--lime); }
.brand .monogram {
  font-size: 26px;
  background: var(--lime);
  color: var(--pine);
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  transition: transform 0.3s var(--ease);
}
.brand .monogram .monogram-h { color: var(--coral); }
.brand:hover .monogram { transform: rotate(-6deg) scale(1.05); }
.brand-word {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  text-decoration: none;
  color: var(--pine);
  font-weight: 600;
  font-size: 14.5px;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav.scrolled .nav-links a { color: #d6ecd0; }
.nav-links a:hover { background: rgba(201, 245, 160, 0.25); color: var(--pine); }
.nav.scrolled .nav-links a:hover { background: rgba(201, 245, 160, 0.18); color: var(--lime); }
.nav-links a.nav-cta {
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
}
.nav-links a.nav-cta:hover { background: #cf4f2a; color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--pine);
  border-radius: 3px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav.scrolled .nav-toggle span { background: var(--lime); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--pine);
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}
.orb-1 {
  width: 560px; height: 560px;
  background: var(--lime);
  top: -180px; right: -120px;
  opacity: 0.32;
  animation: float1 18s ease-in-out infinite;
}
.orb-2 {
  width: 440px; height: 440px;
  background: var(--coral);
  bottom: -160px; left: -100px;
  opacity: 0.28;
  animation: float2 22s ease-in-out infinite;
}
@keyframes float1 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-40px, 40px); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(50px, -30px); }
}
.court-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,245,160,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,245,160,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.hero-eyebrow {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 22px;
}
.hero-title {
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 8.5rem);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}
.hero-title .line { display: block; }
.hero-title .accent-lime { color: var(--lime); }
.hero-tag {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3.4vw, 2.1rem);
  color: var(--coral);
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.hero-lead {
  max-width: 640px;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(233, 245, 228, 0.86);
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--lime);
  color: var(--pine);
  box-shadow: 0 10px 30px rgba(201, 245, 160, 0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201, 245, 160, 0.42); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(233, 245, 228, 0.4);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); transform: translateY(-3px); }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(233, 245, 228, 0.16);
}
.hstat { display: flex; flex-direction: column; }
.hstat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hstat-num .pct { font-size: 0.55em; }
.hstat-label {
  font-size: 13.5px;
  color: rgba(233, 245, 228, 0.72);
  margin-top: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}
.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233, 245, 228, 0.5);
  z-index: 2;
  animation: bob 2s ease-in-out infinite;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px; height: 28px;
  background: linear-gradient(rgba(201,245,160,0.7), transparent);
  margin: 8px auto 0;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 110px 0; position: relative; }
.section-soft { background: #dff0d6; }
.section-pine { background: var(--pine); color: #e9f5e4; }
.section-pine .section-sub { color: rgba(233, 245, 228, 0.8); }
.section-coral { background: var(--coral); color: #fff; }

.section-head { max-width: 820px; margin-bottom: 60px; }
.kicker {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1.5px solid currentColor;
  border-radius: 100px;
}
.section-pine .kicker { color: var(--lime); }
.section-coral .kicker { color: #fff; }
.section-title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.section-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 720px;
}
.section-coral .section-sub { color: rgba(255,255,255,0.92); }
em { font-style: italic; }

/* ============================================================
   OPPORTUNITY - stat grid
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  border: 1px solid rgba(21, 51, 43, 0.07);
  box-shadow: 0 4px 24px rgba(21, 51, 43, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(21, 51, 43, 0.12); }
.stat-card-wide { grid-column: span 4; flex-direction: row; align-items: center; gap: 28px; flex-wrap: wrap; }
.stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--pine);
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.stat-num.accent-coral { color: var(--coral); }
.stat-card-wide .stat-num { font-size: clamp(3rem, 8vw, 5rem); }
.stat-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 14px;
  color: var(--pine);
}
.stat-card-wide .stat-label { margin-top: 0; font-size: 1.5rem; flex-basis: 220px; }
.stat-foot {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 8px;
}
.stat-card-wide .stat-foot { margin-top: 0; flex: 1; min-width: 240px; font-size: 1rem; }

/* ============================================================
   VENUE
   ============================================================ */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.venue-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 245, 160, 0.18);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.venue-card:hover { transform: translateY(-5px); background: rgba(201,245,160,0.1); border-color: rgba(201,245,160,0.4); }
.venue-card h3 {
  font-weight: 800;
  font-size: 1.3rem;
  margin: 14px 0 8px;
  color: var(--lime);
}
.venue-card p { font-size: 15px; color: rgba(233, 245, 228, 0.78); }
.venue-icon { font-size: 30px; line-height: 1; display: block; }
.venue-feature {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(150deg, rgba(201,245,160,0.16), rgba(201,245,160,0.04));
  border-color: rgba(201,245,160,0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.venue-feature h3 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.venue-feature .venue-icon { font-size: 48px; }
.venue-feature p { font-size: 1.05rem; }
.venue-flywheel { background: var(--coral); border-color: var(--coral); }
.venue-flywheel h3 { color: #fff; }
.venue-flywheel p { color: rgba(255,255,255,0.9); }
.venue-foot {
  margin-top: 36px;
  font-size: 1.02rem;
  color: rgba(233, 245, 228, 0.8);
  max-width: 920px;
}
.venue-foot a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.venue-foot strong { color: var(--lime); }

/* ============================================================
   AUDIENCES
   ============================================================ */
.catch-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 34px;
  background: var(--pine);
  border-radius: var(--radius-lg);
  color: #fff;
}
.catch-stat { display: flex; flex-direction: column; flex: 1; min-width: 180px; }
.catch-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--lime);
  letter-spacing: -0.04em;
  line-height: 1;
}
.catch-label { font-size: 14px; margin-top: 10px; color: rgba(233,245,228,0.78); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.audience-prize {
  font-size: 1.2rem;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 4px solid var(--coral);
  color: var(--pine);
}
.audience-prize strong { color: var(--coral); }
.aud-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.aud-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid rgba(21,51,43,0.07);
  box-shadow: 0 4px 24px rgba(21,51,43,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.aud-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(21,51,43,0.12); }
.aud-emoji { font-size: 30px; display: block; margin-bottom: 14px; }
.aud-card h3 { font-weight: 800; font-size: 1.2rem; color: var(--pine); margin-bottom: 6px; }
.aud-when {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.aud-card p:last-child { font-size: 14.5px; color: var(--ink-soft); }

/* ============================================================
   OCCUPANCY
   ============================================================ */
.occ-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 10px 40px rgba(21,51,43,0.08);
  margin-bottom: 70px;
}
.occ-bars { display: flex; flex-direction: column; gap: 26px; }
.occ-bar-group { display: flex; flex-direction: column; gap: 10px; }
.occ-bar-label { font-weight: 600; font-size: 14px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.occ-track {
  height: 46px;
  background: #e3eedd;
  border-radius: 100px;
  overflow: hidden;
}
.occ-fill {
  height: 100%;
  width: 0;
  background: var(--ink-soft);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 18px;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  transition: width 1.4s var(--ease);
}
.occ-fill-lime { background: linear-gradient(90deg, #8fd45e, var(--lime)); color: var(--pine); }
.occ-fill-stretch { background: linear-gradient(90deg, var(--coral), #f08a5d); }
.reveal.in .occ-fill { width: var(--w); }
.occ-headline { text-align: center; }
.occ-big {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--coral);
  letter-spacing: -0.05em;
  line-height: 0.9;
  display: block;
}
.occ-big-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--pine);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin: 8px 0 16px;
}
.occ-headline p { font-size: 15px; color: var(--ink-soft); text-align: left; }
.occ-sub {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 28px;
  color: var(--pine);
}
.play-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}
.play-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  border: 1px solid rgba(21,51,43,0.07);
  border-top: 4px solid var(--lime);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.play-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(21,51,43,0.1); }
.play-tier {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.tier-quick { background: var(--lime); color: var(--pine); }
.tier-build { background: var(--sky); color: var(--pine); }
.tier-bet { background: var(--coral); color: #fff; }
.play-card h4 { font-weight: 800; font-size: 1.18rem; color: var(--pine); margin-bottom: 6px; }
.play-card p { font-size: 14px; color: var(--ink-soft); }
.occ-note { font-size: 1.02rem; color: var(--ink-soft); max-width: 880px; }
.occ-note em { color: var(--pine); font-weight: 600; }

/* ============================================================
   THE CLOCK (coral section)
   ============================================================ */
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: tl;
}
.tl-item {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.tl-item:hover { transform: translateY(-5px); background: rgba(255,255,255,0.18); }
.tl-item-alert {
  background: var(--pine);
  border-color: var(--pine);
}
.tl-item-alert h3, .tl-item-alert .tl-when { color: var(--lime); }
.tl-item-alert p { color: rgba(233,245,228,0.85); }
.tl-when {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  display: block;
  margin-bottom: 12px;
  opacity: 0.85;
}
.tl-item h3 { font-weight: 800; font-size: 1.35rem; margin-bottom: 10px; color: #fff; }
.tl-item p { font-size: 14.5px; color: rgba(255,255,255,0.9); }
.clock-close {
  margin-top: 44px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2rem);
  text-align: center;
  color: #fff;
  letter-spacing: -0.01em;
}
.clock-close strong { color: var(--lime); }

/* ============================================================
   REVENUE ENGINE
   ============================================================ */
.engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.engine-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px;
  border: 1px solid rgba(21,51,43,0.07);
  box-shadow: 0 8px 32px rgba(21,51,43,0.06);
}
.engine-card-lime { background: var(--pine); color: #e9f5e4; }
.engine-tag {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  display: block;
  margin-bottom: 16px;
}
.engine-card-lime .engine-tag { color: var(--lime); }
.engine-card h3 { font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 16px; color: var(--pine); }
.engine-card-lime h3 { color: var(--lime); }
.engine-card > p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 22px; }
.engine-card-lime > p { color: rgba(233,245,228,0.85); }
.engine-quote {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 22px 24px;
  background: #f1f8ec;
  border-left: 4px solid var(--coral);
  border-radius: 0 14px 14px 0;
  color: var(--pine);
}
.engine-quote-pine { background: rgba(201,245,160,0.12); border-left-color: var(--lime); color: var(--lime); }
.engine-list { list-style: none; margin-bottom: 24px; }
.engine-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: rgba(233,245,228,0.88);
}
.engine-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  background: var(--coral);
  border-radius: 50%;
}
.engine-list em { color: var(--lime); font-style: normal; font-weight: 600; }
.engine-card > p em { color: var(--coral); font-style: normal; font-weight: 600; }

/* ============================================================
   THE NUMBERS (pine section)
   ============================================================ */
.num-bigrow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.big-stat {
  background: rgba(201,245,160,0.07);
  border: 1px solid rgba(201,245,160,0.2);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.big-stat-lime { background: var(--lime); border-color: var(--lime); }
.big-stat-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--lime);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}
.big-stat-lime .big-stat-num { color: var(--pine); }
.big-stat-label {
  font-size: 14px;
  margin-top: 12px;
  color: rgba(233,245,228,0.8);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.big-stat-lime .big-stat-label { color: var(--pine-deep); }

.num-table-wrap { margin-bottom: 60px; }
.num-table-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--lime);
  margin-bottom: 22px;
}
.num-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.num-table th, .num-table td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(201,245,160,0.15);
}
.num-table th {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lime);
}
.num-table td { color: rgba(233,245,228,0.9); }
.num-table td:first-child { font-weight: 600; color: #fff; }
.num-table td strong { color: var(--lime); }
.num-table tbody tr:hover { background: rgba(201,245,160,0.05); }
.ast { color: var(--coral); }
.num-foot {
  font-size: 13.5px;
  color: rgba(233,245,228,0.62);
  margin-top: 16px;
  max-width: 880px;
}

.bridge-intro { color: rgba(233,245,228,0.82); margin-bottom: 28px; max-width: 820px; }
.bridge-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
}
.bridge-step {
  background: rgba(201,245,160,0.07);
  border: 1px solid rgba(201,245,160,0.18);
  border-radius: 14px;
  padding: 18px 16px;
  flex: 1;
  min-width: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bs-add { background: rgba(162,196,222,0.08); border-color: rgba(162,196,222,0.25); }
.bs-final { background: var(--lime); border-color: var(--lime); }
.bs-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--lime);
  letter-spacing: -0.03em;
}
.bs-add .bs-num { color: var(--sky); }
.bs-final .bs-num { color: var(--pine); }
.bs-label { font-size: 12px; margin-top: 6px; color: rgba(233,245,228,0.7); text-transform: uppercase; letter-spacing: 0.03em; }
.bs-final .bs-label { color: var(--pine-deep); }
.bridge-arrow {
  display: flex;
  align-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--coral);
}

/* ============================================================
   THE ASK
   ============================================================ */
.ask-headline {
  background: var(--pine);
  color: #e9f5e4;
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}
.ask-headline strong { color: var(--lime); font-weight: 900; }
.ask-headline-note {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(233,245,228,0.62);
  margin-top: 18px;
  line-height: 1.5;
}
.ask-list { list-style: none; margin-bottom: 56px; }
.ask-list li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(21,51,43,0.12);
}
.ask-list li:first-child { padding-top: 0; }
.ask-n {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--coral);
  background: #fff;
  width: 56px; height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(21,51,43,0.08);
}
.ask-list h3 { font-weight: 800; font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--pine); margin-bottom: 6px; }
.ask-list p { color: var(--ink-soft); font-size: 1rem; }
.ask-close {
  text-align: center;
  background: var(--lime);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
}
.ask-close-line {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  color: var(--pine);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ask-close-line strong { color: var(--coral); }
.ask-close-sub {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--pine-soft);
  margin-top: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--pine-deep); color: #e9f5e4; padding-top: 72px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-monogram {
  font-size: 36px;
  background: var(--lime);
  color: var(--pine);
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 18px;
}
.footer-word { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 1.6rem; letter-spacing: 0.02em; }
.footer-tag { color: var(--lime); font-weight: 600; margin-top: 8px; font-size: 15px; line-height: 1.5; }
.footer h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 18px;
}
.footer-contact p, .footer-where p { margin-bottom: 10px; font-size: 1.05rem; color: rgba(233,245,228,0.88); }
.footer-contact a { text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--lime); }
.footer-hours { font-size: 14px !important; color: rgba(233,245,228,0.6) !important; margin-top: 16px !important; }
.footer-bar {
  border-top: 1px solid rgba(201,245,160,0.14);
  padding: 24px 0;
}
.footer-bar p {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  font-size: 13px;
  color: rgba(233,245,228,0.5);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.in .occ-fill { transition: none; }
  .orb-1, .orb-2, .scroll-hint { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .stat-grid, .venue-grid, .num-bigrow, .timeline { grid-template-columns: repeat(2, 1fr); }
  .stat-card-wide { grid-column: span 2; }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .play-grid { grid-template-columns: repeat(2, 1fr); }
  .engine-grid { grid-template-columns: 1fr; }
  .occ-feature { grid-template-columns: 1fr; gap: 36px; padding: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .venue-feature { grid-column: span 2; grid-row: auto; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--pine);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 50px rgba(0,0,0,0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: #e9f5e4 !important; padding: 14px 16px; font-size: 1.1rem; }
  .nav-links a.nav-cta { margin-top: 12px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; z-index: 110; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav.scrolled .nav-toggle.open span, .nav-toggle.open span { background: var(--lime); }

  .section { padding: 72px 0; }
  .hero { padding: 110px 0 70px; }
  .hero-stats { gap: 28px; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-card-wide { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .stat-card-wide .stat-label { flex-basis: auto; }
  .venue-grid { grid-template-columns: 1fr; }
  .venue-feature { grid-column: span 1; }
  .aud-grid, .play-grid, .num-bigrow, .timeline { grid-template-columns: 1fr; }
  .catch-row { padding: 28px; gap: 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .bridge-row { flex-direction: column; }
  .bridge-arrow { justify-content: center; }
  .ask-headline { padding: 32px 28px; }
  .num-table { font-size: 0.9rem; }
  .num-table th, .num-table td { padding: 12px 10px; }
  .engine-card { padding: 32px 26px; }
  .ask-list li { gap: 16px; }
  .ask-n { width: 46px; height: 46px; min-width: 46px; font-size: 1.3rem; }
}
