/* ============================================================
   Pro Ultimate Gyms — Landing page styles
   Built on top of Tailwind CDN. Brand-aligned variables + components.
   Brand: red #EE2C3A · dark #231F20 (per brand guidelines)
   Fonts: Anton (display/wordmark), Bebas Neue (accents),
          Montserrat (body), Poppins (UI)
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --ink: #231F20;            /* brand dark */
  --surface: #15131A;
  --surface-2: #1A171E;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --muted: rgba(255, 255, 255, 0.55);
  --muted-soft: rgba(255, 255, 255, 0.4);
  --brand: #EE2C3A;          /* brand red */
  --brand-2: #D6212F;
  --brand-3: #A91824;
  --brand-glow: rgba(238, 44, 58, 0.48);
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; background: var(--bg); }
html, body { overflow-x: hidden; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(238,44,58,0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255,255,255,0.035), transparent 60%),
    #0A0A0A;
  color: #fff;
}

::selection { background: var(--brand); color: #fff; }

/* ---------- typography helpers ---------- */
/* Display headlines — brand-approved Anton (closest Google Font to Aero / Kenyan Coffee) */
.font-display {
  font-family: 'Anton', Impact, 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
}

/* Wordmark style — mirrors the slanted blocky logo wordmark "PRO ULTIMATE GYMS" */
.font-mark {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: skewX(-8deg);
  display: inline-block;
}

/* Secondary display — used for stat numbers / accents */
.font-bebas { font-family: 'Bebas Neue', Impact, sans-serif; font-weight: 400; letter-spacing: 0.02em; }

/* Body / UI */
.font-poppins { font-family: 'Poppins', Montserrat, sans-serif; }

.text-stroke {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.85);
  color: transparent;
}
@media (max-width: 640px) {
  .text-stroke { -webkit-text-stroke: 1px rgba(255,255,255,0.85); }
}

/* ---------- scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #060606; }
::-webkit-scrollbar-thumb { background: #1f1f1f; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: #2a2a2a; }

/* ============================================================
   BRAND LOCKUP — official circular logo, displayed AS-IS (uncropped)
   The logo artwork already has its own black canvas; we don't crop it.
   ============================================================ */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo {
  display: block;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 8px;             /* very subtle corner softening only */
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.brand-lockup:hover .brand-logo { transform: translateY(-1px); }

.brand-logo-nav    { height: 48px; }
.brand-logo-footer { height: 72px; }

@media (min-width: 768px) {
  .brand-logo-nav    { height: 52px; }
  .brand-logo-footer { height: 84px; }
}

/* ============================================================
   NAV
   ============================================================ */
#nav { background: transparent; }
#nav.is-scrolled {
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-brand {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.1rem;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', Montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 40px -16px var(--brand-glow);
}
.btn-brand:hover { background: var(--brand-2); transform: translateY(-1px); box-shadow: 0 16px 50px -16px var(--brand-glow); }

.btn-brand-lg {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', Montserrat, sans-serif;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.4s ease;
  box-shadow: 0 16px 50px -18px var(--brand-glow);
}
.btn-brand-lg:hover { background: var(--brand-2); transform: translateY(-1px); }

.btn-ghost-lg {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', Montserrat, sans-serif;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.25s ease;
}
.btn-ghost-lg:hover { border-color: #fff; background: rgba(255,255,255,0.04); transform: translateY(-1px); }

/* ============================================================
   PILLS / BADGES
   ============================================================ */
.pill-live {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(238,44,58,0.08);
  border: 1px solid rgba(238,44,58,0.4);
  color: #fff;
  font-family: 'Poppins', Montserrat, sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
}
.pill-live .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(238,44,58,0.7);
  animation: livePulse 1.6s ease-out infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(238,44,58,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(238,44,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(238,44,58,0); }
}

.dot-live {
  display:inline-block; width: 7px; height: 7px; border-radius:999px;
  background: var(--brand);
  box-shadow: 0 0 12px var(--brand-glow);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-bg {
  background:
    radial-gradient(800px 420px at 78% 22%, rgba(238,44,58,0.18), transparent 60%),
    radial-gradient(700px 380px at 10% 80%, rgba(255,255,255,0.04), transparent 65%),
    linear-gradient(180deg, #0a0a0a 0%, #0a0a0a 60%, #050505 100%);
}
.grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 768px) {
  .hero-card { aspect-ratio: 3 / 4; }
}
.hero-card-inner {
  position: absolute; inset: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0c0c0c;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.05);
}
.hero-ring {
  position: absolute; inset: -2px;
  border-radius: 24px;
  pointer-events: none;
  background: conic-gradient(from 220deg, rgba(238,44,58,0.0), rgba(238,44,58,0.45), rgba(255,255,255,0.0) 50%, rgba(238,44,58,0.0));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
  opacity: 0.55;
  filter: blur(0.2px);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.glass-pill {
  background: rgba(15,15,18,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.9);
}
.glass-card {
  background: rgba(15,15,18,0.62);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 0.9rem 1rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.9);
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-line {
  display: block;
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.0), rgba(255,255,255,0.7), rgba(255,255,255,0.0));
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; left: -1px; top: -100%;
  width: 3px; height: 50%;
  background: var(--brand);
  filter: blur(1px);
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: -50%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { position: relative; overflow: hidden; }
.marquee-track {
  display: inline-flex; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
}
.marquee-track span { font-family: 'Anton', Impact, sans-serif; }
.marquee-track .dot-sep { color: rgba(238,44,58,0.6); font-size: 0.6em; align-self: center; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: 'Poppins', Montserrat, sans-serif;
  font-size: 11px; letter-spacing: 0.4em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  font-weight: 500;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--brand);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: 'Poppins', Montserrat, sans-serif;
  font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 6px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.link-arrow::after {
  content: '→';
  transition: transform 0.3s ease;
}
.link-arrow:hover { color: var(--brand); border-color: var(--brand); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   ABOUT — feature cards
   ============================================================ */
.feature-card {
  position: relative;
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  transition: transform 0.4s ease, border-color 0.3s ease, background 0.3s ease;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--brand) 50%, transparent);
  opacity: 0; transition: opacity 0.4s ease;
}
.feature-card:hover {
  border-color: rgba(255,255,255,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-num {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2.6rem; line-height: 1;
  color: rgba(255,255,255,0.16);
  letter-spacing: 0.04em;
}
.feature-title {
  margin-top: 1.4rem;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.feature-desc {
  margin-top: 0.65rem;
  color: rgba(255,255,255,0.6);
  font-size: 14px; line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  position: relative;
  padding: 1.8rem 1.6rem 1.6rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    radial-gradient(180px 140px at 100% 0%, rgba(238,44,58,0.10), transparent 70%);
  border: 1px solid var(--line);
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease, background 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  isolation: isolate;
}
.service-card::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 60%, rgba(238,44,58,0.35));
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
  opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover {
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  color: #fff;
  margin-bottom: 1.3rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.service-card:hover .service-icon {
  background: linear-gradient(180deg, rgba(238,44,58,0.18), rgba(238,44,58,0.04));
  border-color: rgba(238,44,58,0.5);
  color: #fff;
}
.service-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}
.service-desc {
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.6);
  font-size: 14px; line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
}
.service-tag {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-family: 'Poppins', Montserrat, sans-serif;
  font-size: 10.5px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

/* ============================================================
   COACH / TRAIN WITH THE ELITE
   ============================================================ */
.coach-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0a;
  box-shadow: 0 40px 120px -50px rgba(0,0,0,0.95);
  aspect-ratio: 4 / 5;
}
.coach-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
  filter: contrast(1.05) saturate(1.02);
}
.coach-frame:hover img { transform: scale(1.04); }
.coach-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.coach-tag {
  position: absolute; left: 18px; top: 18px;
  z-index: 2;
}
.coach-meta {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
  color: #fff;
}
.coach-meta-name {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}
.coach-meta-role {
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.coach-meta-num {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.5);
}
.coach-stat {
  padding: 1rem 1rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
}
.coach-stat-num {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2.4rem; line-height: 1;
  letter-spacing: 0.02em;
}
.coach-stat-label {
  margin-top: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

/* credential chips for trainer bio */
.cred-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-family: 'Poppins', Montserrat, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
    radial-gradient(120px 80px at 100% 0%, rgba(238,44,58,0.08), transparent 70%);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.cred-chip:hover {
  border-color: rgba(238,44,58,0.5);
  color: #fff;
}

/* ============================================================
   PRESALE
   ============================================================ */
.presale-stat {
  padding: 1rem 1rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
}
.presale-stat-num {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2.6rem; line-height: 1;
  letter-spacing: 0.02em;
}
.presale-stat-label {
  margin-top: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

.benefit {
  display: flex; align-items: center; gap: 0.85rem;
  color: rgba(255,255,255,0.78); font-size: 14.5px;
  font-family: 'Montserrat', sans-serif;
}
.benefit-tick {
  flex: none;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(238,44,58,0.12);
  border: 1px solid rgba(238,44,58,0.45);
  position: relative;
}
.benefit-tick::after {
  content: '';
  position: absolute;
  left: 5px; top: 3px;
  width: 4px; height: 8px;
  border-right: 1.6px solid var(--brand);
  border-bottom: 1.6px solid var(--brand);
  transform: rotate(45deg);
}

.presale-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(238,44,58,0.10), transparent 70%),
    linear-gradient(180deg, #0d0d10 0%, #0a0a0a 100%);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.9);
}
.presale-card-inner {
  position: relative;
  width: 100%;
  padding: 22px 22px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.presale-poster {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.05);
}
.presale-caption {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   MACHINERY / CINEMA FRAME
   ============================================================ */
.cinema-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px -50px rgba(0,0,0,0.9);
  background: #0a0a0a;
}
.cinema-frame-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
@media (max-width: 640px) {
  .cinema-frame-inner { aspect-ratio: 4/5; }
}

.play-btn {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 86px; height: 86px;
  display: grid; place-items: center;
  background: rgba(238,44,58,0.95);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 20px 60px -10px var(--brand-glow);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 5;
}
.play-btn:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--brand); }
.play-btn.is-playing { opacity: 0; pointer-events: none; }
.play-ring {
  position: absolute; inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(238,44,58,0.6);
  animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.9); opacity: 0.9; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   MEMBERS
   ============================================================ */
.member-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c0c;
}
.member-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter 0.6s ease;
  filter: brightness(0.92) contrast(1.02) saturate(0.95);
}
.member-card:hover img { transform: scale(1.05); filter: brightness(1) contrast(1.05) saturate(1); }
.member-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.7));
  pointer-events: none;
}
.member-meta {
  position: absolute; left: 14px; right: 14px; bottom: 12px;
  display: flex; justify-content: space-between; align-items: end;
  color: #fff;
  z-index: 2;
}
.member-meta span {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.05rem; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.member-meta em {
  font-style: normal;
  font-family: 'Poppins', sans-serif;
  font-size: 10px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
}

.member-blank {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 10px, transparent 10px 20px),
    #0c0c0c;
  display: grid; place-items: center;
  text-align: center;
}
.member-blank::after { background: none; }
.member-blank .member-blank-label {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.05rem; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1.3;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-row {
  display: flex; align-items: flex-start; gap: 14px;
}
.contact-ico {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  color: #fff;
}
.map-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px -40px rgba(0,0,0,0.9), 0 0 0 1px rgba(238,44,58,0.08) inset;
  aspect-ratio: 4/3;
  min-height: 360px;
  background: #0a0a0a;
}
@media (min-width: 1024px) {
  .map-card { aspect-ratio: auto; min-height: 520px; height: 100%; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-h {
  font-family: 'Poppins', sans-serif;
  font-size: 11px; letter-spacing: 0.34em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.footer-list {
  margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.65rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.5px; color: rgba(255,255,255,0.78);
}
.footer-list a:hover { color: var(--brand); }

.social-ico {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease, color 0.3s ease;
}
.social-ico:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-1px); color: #fff; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1; transform: translateY(0);
}
.reveal:nth-child(2).is-in { transition-delay: 0.06s; }
.reveal:nth-child(3).is-in { transition-delay: 0.12s; }
.reveal:nth-child(4).is-in { transition-delay: 0.18s; }
.reveal:nth-child(5).is-in { transition-delay: 0.22s; }

/* ============================================================
   RESPONSIVE TUNING
   ============================================================ */
@media (max-width: 768px) {
  .hero-card { aspect-ratio: 4 / 5; max-width: 520px; margin-inline: auto; }
  .scroll-indicator { display: none; }
}
@media (max-width: 480px) {
  .pill-live { font-size: 9.5px; padding: 0.35rem 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .play-ring, .pill-live .dot, .hero-ring { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   ENQUIRY MODAL
   ============================================================ */
.enquire-overlay {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.enquire-overlay.is-open {
  display: flex;
  animation: overlayIn 0.25s ease-out;
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }

.enquire-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.enquire-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 28px 26px 26px;
  border-radius: 22px;
  background:
    radial-gradient(500px 240px at 50% -20%, rgba(238,44,58,0.20), transparent 60%),
    linear-gradient(180deg, #15131A 0%, #0a0a0a 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.95), 0 0 0 1px rgba(238,44,58,0.06) inset;
  animation: dialogIn 0.35s cubic-bezier(.2,.7,.2,1);
}
@keyframes dialogIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (min-width: 640px) {
  .enquire-dialog { padding: 36px 36px 32px; }
}

.enquire-close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.enquire-close:hover { background: var(--brand); border-color: var(--brand); transform: rotate(90deg); }

.enquire-head { margin-bottom: 22px; padding-right: 32px; }

.enquire-form { display: flex; flex-direction: column; gap: 14px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-family: 'Poppins', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.field-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.field-input::placeholder { color: rgba(255,255,255,0.3); }
.field-input:hover { border-color: rgba(255,255,255,0.16); }
.field-input:focus {
  border-color: var(--brand);
  background: rgba(238,44,58,0.04);
  box-shadow: 0 0 0 3px rgba(238,44,58,0.18);
}
.field-input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: rgba(238,44,58,0.55);
}

.field-phone {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.field-phone:focus-within {
  border-color: var(--brand);
  background: rgba(238,44,58,0.04);
  box-shadow: 0 0 0 3px rgba(238,44,58,0.18);
}
.field-cc {
  display: grid; place-items: center;
  padding: 0 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  letter-spacing: 0.04em;
}
.field-phone .field-input {
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none !important;
}
.field-phone .field-input:focus { background: transparent; }

.field-select-wrap { position: relative; }
.field-select {
  padding-right: 42px;
  cursor: pointer;
  background-image: none;
}
.field-select option { background: #0f0f12; color: #fff; }
.field-select:invalid { color: rgba(255,255,255,0.3); }
.field-chevron {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
}

.enquire-submit {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 14px 20px;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.4s ease;
  box-shadow: 0 18px 50px -18px var(--brand-glow);
  cursor: pointer;
}
.enquire-submit:hover { background: var(--brand-2); transform: translateY(-1px); }
.enquire-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.enquire-note {
  margin-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.48);
  text-align: center;
  line-height: 1.6;
}

body.modal-open { overflow: hidden; }
