/* ===================================================
   STAKE HOUSE COLLECTIVE — DESIGN SYSTEM
   Color palette: Black / White / Sun-Kissed Orange
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Outfit:wght@300;400;600&display=swap');

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg-primary:   #080808;
  --bg-secondary: #101010;
  --bg-card:      #161616;
  --gold:         #F97316;          /* sun-kissed orange */
  --gold-light:   #FB923C;          /* soft orange */
  --gold-glow:    rgba(249,115,22,0.12);
  --white:        #F5F5F5;
  --muted:        #888888;
  --border:       rgba(249,115,22,0.18);
  --nav-h:        70px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(249,115,22,0.45); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.15;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}
.navbar.scrolled { border-bottom-color: rgba(249,115,22,0.15); }

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
/* Full SVG wordmark logo — sized to fit the 70px navbar */
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* SVG is 620×100, so at 44px height width ≈ 273px — fine for desktop */
}

/* Footer logo — slightly larger */
.footer-logo-row .nav-logo-img {
  height: 50px;
}

/* Tablet: scale down a touch */
@media (max-width: 1024px) {
  .nav-logo-img { height: 38px; }
}

/* Mobile: compact */
@media (max-width: 768px) {
  .nav-logo-img { height: 34px; }
  .footer-logo-row .nav-logo-img { height: 40px; }
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(8,8,8,0.99);
  backdrop-filter: blur(20px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.35s ease;
  border-bottom: 1px solid transparent;
}
.mobile-drawer.open {
  max-height: 360px;
  padding: 1.5rem 2rem;
  border-bottom-color: rgba(249,115,22,0.12);
}
.mobile-drawer a {
  display: block;
  padding: 0.9rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(249,115,22,0.07);
  transition: color 0.3s ease;
}
.mobile-drawer a:hover,
.mobile-drawer a.active { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #080808;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,245,245,0.3);
}
.btn-outline:hover {
  background: var(--gold);
  color: #080808;
  border-color: var(--gold);
}
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.68rem; }

/* ===== LAYOUT HELPERS ===== */
.container      { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-pad    { padding: 7rem 2rem; }
.section-pad-sm { padding: 5rem 2rem; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
  animation: dividerPulse 5s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%, 100% { opacity: 0.1; }
  50%       { opacity: 0.45; }
}

/* ===== GRAIN TEXTURE ===== */
.grain { position: relative; }
.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

/* ===== GLASS CARDS ===== */
.glass-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(249,115,22,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}
.glass-card:hover { border-color: rgba(249,115,22,0.38); }

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fd-1 { transition-delay: 0.1s; }
.fd-2 { transition-delay: 0.2s; }
.fd-3 { transition-delay: 0.3s; }
.fd-4 { transition-delay: 0.4s; }
.fd-5 { transition-delay: 0.5s; }
.fd-6 { transition-delay: 0.6s; }

/* ===== TICKER BAR ===== */
.ticker-bar {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(249,115,22,0.12);
  border-bottom: 1px solid rgba(249,115,22,0.12);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerScroll 40s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 2.5rem;
}
.ticker-sep {
  color: rgba(249,115,22,0.3);
  font-size: 0.65rem;
  padding: 0 0.5rem;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: var(--nav-h);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.75) 0%, rgba(8,8,8,0.5) 50%, rgba(8,8,8,0.92) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem 5rem;
  width: 100%;
}
.page-hero h1 { font-size: clamp(2.5rem, 8vw, 5.5rem); color: #ffffff; margin-bottom: 1.25rem; }
.page-hero p {
  font-size: 1.1rem;
  color: rgba(245,245,245,0.7);
  max-width: 580px;
  margin: 0 auto;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

/* ===== HOME HERO — davincho-hero-1 faithful adaptation =====
   Key structure mirrors the React demo exactly:
   - .hero-spacer       → pushes content below fixed navbar
   - .hero-outer        → mx-2 mt-10 overflow-hidden rounded-4xl bg-white
   - .hero-inner        → h-[80vh] overflow-hidden, clipPath polygon
   - .hero-bg-fixed     → "fixed top-[-10vh] left-0 h-[120vh] w-full"
                          simulated via position:absolute + JS translateY
   - .hero-parallax-img → motion.div style={{ y }} → JS scroll transform
   - .hero-blend-layer  → mix-blend-difference text (Precision · Results tag + big headline)
   - .hero-cta          → readable CTA panel, not inside blend layer
   ============================================================ */

.hero-spacer { height: var(--nav-h); }

/* Outer card: mx-2 mt-10 overflow-hidden rounded-4xl */
.hero-outer {
  margin: 1.25rem 0.5rem 0;
  border-radius: 2rem;
  overflow: hidden;
  background: #080808;
  position: relative;
}

/* Inner clip area: h-[80vh] overflow-hidden clipPath */
.hero-inner {
  position: relative;
  height: 80vh;
  min-height: 520px;
  max-height: 900px;
  overflow: hidden;
  /* clipPath: "polygon(0% 0, 100% 0%, 100% 100%, 0 100%)" */
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: #080808;
}

/* BG container: simulates "fixed top-[-10vh] left-0 h-[120vh] w-full"
   We use absolute + oversized height, JS moves it via translateY.
   On desktop this is the parallax layer.
   On mobile we disable the JS and just let it sit centered. */
.hero-bg-fixed {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
  z-index: 0;
}

/* Parallax motion div: "relative h-full w-full" with motion style={{ y }} */
.hero-parallax-img {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: transform;
}
.hero-parallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Show the full width of the multi-athlete collage */
  object-position: center 25%;
  display: block;
  /* Slight darken so text remains readable */
  filter: brightness(0.68) saturate(0.9);
}

/* Dark overlay — left-side vignette + bottom fade for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.18) 55%, transparent 100%),
    linear-gradient(to top,  rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.25) 40%, transparent 75%),
    linear-gradient(to bottom, rgba(8,8,8,0.5) 0%, transparent 20%);
}

/* Mix-blend-difference text layer — matches davincho exactly:
   "flex h-full w-full flex-col justify-between p-20 text-white mix-blend-difference" */
.hero-blend-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.75rem, 5vw, 4.5rem);
  color: #ffffff;
  mix-blend-mode: difference;
  pointer-events: none;
  user-select: none;
}

/* Top row — tag line right-aligned: "w-[50vw] self-end text-[2vw] uppercase" */
.hero-blend-top {
  display: flex;
  justify-content: flex-end;
}
.hero-blend-tag {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.55rem, 1.1vw, 0.78rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  width: clamp(200px, 48vw, 580px);
  text-align: right;
  line-height: 1.75;
  color: #ffffff;
}

/* Bottom row — big headline: "text-[5vw] uppercase" */
.hero-blend-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.5rem, 10.5vw, 11rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* CTA panel — separate layer, NOT inside mix-blend-difference
   Sits bottom-right, always readable against the dark overlay */
.hero-cta {
  position: absolute;
  bottom: clamp(1.75rem, 4vh, 3.5rem);
  right:  clamp(1.75rem, 4vw, 3.5rem);
  z-index: 5;
  max-width: 400px;
  text-align: right;
  pointer-events: auto;
}
.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  border-right: 2px solid var(--gold);
  padding-right: 0.8rem;
  margin-bottom: 1rem;
}
.hero-sub-cta {
  font-size: 0.85rem;
  color: rgba(245,245,245,0.62);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-weight: 300;
}
.hero-buttons-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Scroll chevron */
.scroll-chevron {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  animation: chevronBounce 2.4s ease infinite;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.3s;
}
.scroll-chevron:hover { opacity: 0.9; }
.scroll-chevron svg { width: 26px; height: 26px; color: #fff; }
@keyframes chevronBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ===== HERO BUTTONS (homepage only) ===== */
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== VERTICAL SPORT PANELS ===== */
.hero-panels-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
}
.hero-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s ease, transform 0.7s ease,
              flex 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-panel.hp-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-panels-wrap:hover .hero-panel        { flex: 0.6; }
.hero-panels-wrap:hover .hero-panel:hover  { flex: 3; }

.hp-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  transform: scale(1.08);
  transition: transform 0.65s ease, filter 0.4s ease;
  filter: brightness(0.4) saturate(0.5);
}
.hero-panel:hover .hp-bg { transform: scale(1.0); filter: brightness(0.65) saturate(0.85); }

/* All panels use the same collage, cropped to each male athlete.
   background-size: 550% 110% zooms in on one athlete per panel.
   background-position-x targets each male (skipping females at ~69% and ~81%). */
.hp-nfl    .hp-bg { background-image: url('hero-collage.jpg'); background-size: 550% 110%; background-position: 42% center; } /* Football #13   */
.hp-nba    .hp-bg { background-image: url('hero-collage.jpg'); background-size: 550% 110%; background-position: 58% center; } /* Basketball     */
.hp-mlb    .hp-bg { background-image: url('hero-collage.jpg'); background-size: 550% 110%; background-position: 100% center; } /* Far-right male */
.hp-nhl    .hp-bg { background-image: url('hero-collage.jpg'); background-size: 550% 110%; background-position: 27% center; } /* Ice Hockey     */
.hp-soccer .hp-bg { background-image: url('hero-collage.jpg'); background-size: 550% 110%; background-position: 12% center; } /* Soccer         */

.hero-panel::after {
  content: '';
  position: absolute; top: 10%; bottom: 10%; right: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(249,115,22,0.2), transparent);
}
.hero-panel:last-child::after { display: none; }

.hp-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 85%, rgba(249,115,22,0.14) 0%, transparent 65%);
  opacity: 0; transition: opacity 0.5s ease; pointer-events: none;
}
.hero-panel:hover .hp-glow { opacity: 1; }

.hp-content {
  position: absolute; bottom: 2.5rem; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2; pointer-events: none;
}
.hp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 2.6rem);
  font-weight: 700; letter-spacing: 0.08em;
  color: rgba(245,245,245,0.4);
  transition: color 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
}
.hero-panel:hover .hp-name { color: var(--gold); transform: translateY(-4px); }
.hp-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.52rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,245,245,0);
  transition: color 0.4s ease 0.1s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 90%; text-align: center;
}
.hero-panel:hover .hp-tag { color: rgba(245,245,245,0.5); }

.hp-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.4s ease;
}
.hero-panel:hover .hp-bar { transform: scaleX(1); }

/* ── Mobile hero overrides ── */
@media (max-width: 768px) {
  .hero-outer { margin: 0.75rem 0.35rem 0; border-radius: 1.25rem; }
  .hero-inner { height: 88vh; min-height: 480px; }
  .hero-blend-layer { padding: 4rem 1.5rem 1.5rem; justify-content: flex-start; }
  .hero-blend-tag { font-size: 0.58rem; width: 70vw; }
  .hero-blend-headline { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero-cta { right: 1.25rem; bottom: 1.5rem; max-width: 85vw; }
  .hero-sub-cta { display: none; }
  .hero-buttons-cta { gap: 0.5rem; }
  .hp-name { font-size: clamp(0.6rem, 2vw, 1rem); }
  .hp-tag  { display: none; }
  .hp-content { bottom: 1.25rem; gap: 0.25rem; }
}
@media (max-width: 480px) {
  .hero-outer { margin: 0.5rem 0.25rem 0; border-radius: 1rem; }
  .hero-inner { height: 82vh; min-height: 500px; }
  .hero-blend-headline { font-size: clamp(1.75rem, 7.5vw, 2.4rem); line-height: 0.95; }
  .hero-cta { left: 1rem; right: 1rem; text-align: center; max-width: 100%; bottom: 2rem; }
  .hero-eyebrow { border-right: none; padding-right: 0; }
  .hero-buttons-cta { justify-content: center; }
  .hero-blend-top { display: none; }
  .hp-name { font-size: 0.6rem; letter-spacing: 0.04em; }
  .hp-content { bottom: 1rem; }
}

/* ===== STEPS (How It Works) ===== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(249,115,22,0.07);
  border: 1px solid rgba(249,115,22,0.07);
  border-radius: 4px;
  overflow: hidden;
}
.step { background: var(--bg-card); padding: 3rem 2.5rem; text-align: center; transition: background 0.3s ease; }
.step:hover { background: rgba(249,115,22,0.04); }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(249,115,22,0.1);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.step-desc  { font-size: 0.9rem; color: var(--muted); line-height: 1.75; }

/* ===== PARTNERSHIP CARDS ===== */
.partnership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.partner-card { position: relative; }
.card-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: #080808;
  background: var(--gold);
  padding: 0.3rem 0.8rem; border-radius: 2px;
}
.card-icon { width: 46px; height: 46px; margin-bottom: 1.5rem; color: var(--gold); }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.card-subtitle { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.features-list { list-style: none; margin-bottom: 2rem; }
.features-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0; font-size: 0.9rem; color: rgba(245,245,245,0.8);
  border-bottom: 1px solid rgba(249,115,22,0.07);
}
.features-list li:last-child { border-bottom: none; }
.check-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ===== FEATURE BLOCKS ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.feature-block { text-align: center; }
.feature-icon { width: 52px; height: 52px; margin: 0 auto 1.5rem; color: var(--gold); }
.feature-title { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.feature-desc  { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(249,115,22,0.1);
  border-radius: 3px;
  margin-bottom: 0.6rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item.active { border-color: rgba(249,115,22,0.45); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.35rem 1.65rem;
  background: var(--bg-card); border: none; text-align: left;
  font-family: 'Outfit', sans-serif; font-size: 0.93rem; font-weight: 400; color: var(--white);
  transition: color 0.3s ease;
}
.faq-question:hover,
.faq-item.active .faq-question { color: var(--gold); }
.faq-icon { font-size: 1.3rem; color: var(--gold); transition: transform 0.4s ease; flex-shrink: 0; line-height: 1; margin-left: 1rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: rgba(255,255,255,0.01); }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 1.65rem 1.4rem; font-size: 0.9rem; color: var(--muted); line-height: 1.8; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, rgba(249,115,22,0.07) 0%, rgba(8,8,8,0.98) 60%);
  border-top: 1px solid rgba(249,115,22,0.15);
  border-bottom: 1px solid rgba(249,115,22,0.15);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 1rem; }
.cta-band p  { font-size: 1.05rem; color: var(--muted); max-width: 560px; margin: 0 auto 2.5rem; font-weight: 300; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  padding: 2.5rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(249,115,22,0.1);
  border-radius: 4px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.service-card:hover { border-color: rgba(249,115,22,0.38); background: rgba(249,115,22,0.025); }
.service-icon  { width: 42px; height: 42px; color: var(--gold); margin-bottom: 1.25rem; }
.service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.service-desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* ===== PARTNERSHIP DEEP DIVE ===== */
.partnership-deep { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.partnership-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.partnership-col p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.pros-cons-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.pros-cons-table th { font-family: 'Outfit', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid rgba(249,115,22,0.15); }
.pros-cons-table th.pro-head { color: #6BCB77; }
.pros-cons-table th.con-head { color: #EF7575; }
.pros-cons-table td { font-size: 0.84rem; color: var(--muted); padding: 0.55rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: top; }
.pros-cons-table td.pro { color: rgba(107,203,119,0.85); }
.pros-cons-table td.con { color: rgba(239,117,117,0.75); }

/* ===== PROFILES GRID ===== */
.profiles-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.profile-card {
  text-align: center; padding: 2.25rem 1.25rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(249,115,22,0.1);
  border-radius: 4px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.profile-card:hover { border-color: rgba(249,115,22,0.4); transform: translateY(-4px); }
.profile-icon  { width: 46px; height: 46px; margin: 0 auto 1rem; color: var(--gold); }
.profile-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.profile-desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }

/* ===== ONBOARDING TIMELINE ===== */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  top: 3.1rem; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(249,115,22,0.2));
  opacity: 0.18;
}
.timeline-step { text-align: center; padding: 2rem 1.25rem; }
.timeline-number {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--gold);
  margin: 0 auto 1.5rem;
  background: var(--bg-primary); position: relative; z-index: 1;
}
.timeline-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.timeline-desc  { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ===== FORM STYLES ===== */
.inquiry-form {
  max-width: 760px; margin: 0 auto; padding: 3rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  font-family: 'Outfit', sans-serif; font-size: 0.92rem; color: var(--white);
  outline: none; transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(136,136,136,0.45); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.08);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F97316' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px;
  background-color: rgba(255,255,255,0.02); cursor: pointer; padding-right: 2.5rem;
}
.form-select option { background: var(--bg-card); color: var(--white); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-radio-group { display: flex; gap: 1.75rem; flex-wrap: wrap; margin-top: 0.25rem; }
.form-radio-label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.9rem; color: var(--muted); transition: color 0.3s ease; }
.form-radio-label input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; }
.form-radio-label:has(input:checked) { color: var(--gold); }
.form-note { text-align: center; font-size: 0.75rem; color: rgba(136,136,136,0.55); margin-top: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.form-note svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* ===== SPORTS CARDS ===== */
.sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.sport-card {
  position: relative; height: 290px; overflow: hidden; border-radius: 3px;
  border: 1px solid transparent; cursor: default; transition: border-color 0.35s ease;
}
.sport-card:hover { border-color: rgba(249,115,22,0.5); }
.sport-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.65s ease, filter 0.3s ease;
  transform: scale(1.06);
}
.sport-card:hover .sport-bg { transform: scale(1.13); filter: brightness(1.1); }
.sport-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.4) 55%, transparent 100%);
}
.sport-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem; }
.sport-name { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 700; color: #ffffff; margin-bottom: 0.3rem; }
.sport-note { font-size: 0.78rem; color: rgba(245,245,245,0.55); line-height: 1.5; }

/* ===== SPORTS REVEAL GALLERY ===== */
.sports-reveal-section { padding: 0 0 5rem; background: var(--bg-primary); }
.sports-reveal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 320px 320px;
  gap: 0.5rem;
  padding: 0 2rem;
}
.sr-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: default;
}
/* Featured card - spans 2 cols/rows */
.sr-card.sr-featured {
  grid-column: span 2;
  grid-row: span 2;
}
.sr-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.7s ease;
}
.sr-card:hover .sr-bg { transform: scale(1.14); }
.sr-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 60%);
}
.sr-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.75rem;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.sr-card:hover .sr-content { transform: translateY(0); }
.sr-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 700; color: #ffffff;
  font-size: 2.2rem; margin-bottom: 0.25rem;
}
.sr-card:not(.sr-featured) .sr-name { font-size: 1.6rem; }
.sr-note { font-size: 0.78rem; color: rgba(245,245,245,0.55); line-height: 1.5; }
/* Reveal animation */
.sr-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}
.sr-card.sr-visible { opacity: 1; transform: translateY(0); }
.sr-card:hover { border-color: rgba(249,115,22,0.4); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  overflow: hidden; background: var(--bg-secondary);
  border-top: 1px solid rgba(249,115,22,0.12);
  border-bottom: 1px solid rgba(249,115,22,0.12);
  padding: 5rem 0; position: relative;
}
.testimonials-section::before, .testimonials-section::after {
  content: ''; position: absolute; left: 0; right: 0; height: 120px; z-index: 2; pointer-events: none;
}
.testimonials-section::before { top: 0; background: linear-gradient(to bottom, var(--bg-secondary), transparent); }
.testimonials-section::after  { bottom: 0; background: linear-gradient(to top, var(--bg-secondary), transparent); }
.testimonials-header { text-align: center; padding: 0 2rem 3.5rem; }
.testimonials-cols { display: flex; justify-content: center; gap: 1.5rem; max-height: 520px; overflow: hidden; padding: 0 2rem; }
.t-col { width: 300px; flex-shrink: 0; overflow: hidden; }
.t-col-inner { display: flex; flex-direction: column; gap: 1.25rem; animation: colScrollUp linear infinite; }
.t-col:nth-child(1) .t-col-inner { animation-duration: 20s; }
.t-col:nth-child(2) .t-col-inner { animation-duration: 26s; }
.t-col:nth-child(3) .t-col-inner { animation-duration: 23s; }
@keyframes colScrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.t-card { background: var(--bg-card); border: 1px solid rgba(249,115,22,0.1); border-radius: 4px; padding: 1.5rem; }
.t-text { font-size: 0.87rem; color: rgba(245,245,245,0.7); line-height: 1.8; margin-bottom: 1.25rem; font-style: italic; }
.t-meta { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar { width: 34px; height: 34px; border-radius: 50%; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.t-name { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.t-role { font-size: 0.72rem; color: var(--muted); }

/* ===== ABOUT ===== */
.about-origin { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; }
.pull-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 3rem); font-style: italic; font-weight: 400; color: var(--gold); line-height: 1.35; border-left: 2px solid var(--gold); padding-left: 2rem; }
.about-body { font-size: 1.05rem; color: rgba(245,245,245,0.75); line-height: 1.95; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { padding: 2.5rem; border-top: 2px solid rgba(249,115,22,0.3); }
.value-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: rgba(249,115,22,0.1); line-height: 1; margin-bottom: 1rem; }
.value-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.value-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }
.one-liner-section { text-align: center; padding: 6rem 2rem; max-width: 900px; margin: 0 auto; }
.one-liner { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 4vw, 2.5rem); font-style: italic; color: var(--gold); line-height: 1.5; }

/* ===== LEGAL ===== */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 3rem 2rem 6rem; }
.legal-wrap h1 { font-size: 3rem; color: var(--white); margin-bottom: 0.5rem; }
.legal-date { font-size: 0.83rem; color: var(--muted); margin-bottom: 3rem; }
.legal-section { margin-bottom: 3rem; }
.legal-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid rgba(249,115,22,0.15); }
.legal-section p { font-size: 0.93rem; color: rgba(245,245,245,0.7); line-height: 1.85; margin-bottom: 0.85rem; }
.legal-section ul { list-style: none; margin-bottom: 1rem; }
.legal-section ul li { font-size: 0.93rem; color: rgba(245,245,245,0.7); line-height: 1.8; padding: 0.2rem 0 0.2rem 1.5rem; position: relative; }
.legal-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); opacity: 0.5; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-secondary); border-top: 1px solid rgba(249,115,22,0.1); padding: 5rem 2rem 2rem; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 3.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(249,115,22,0.07); }
.footer-logo-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-tagline { font-size: 0.88rem; color: var(--muted); line-height: 1.75; max-width: 280px; }
.footer-col-heading { font-family: 'Outfit', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav a { font-size: 0.88rem; color: var(--muted); transition: color 0.3s ease; }
.footer-nav a:hover { color: var(--white); }
.footer-contact-text { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.7; }
.footer-legal-text { font-size: 0.78rem; color: rgba(136,136,136,0.6); line-height: 1.75; margin-bottom: 1rem; }
.footer-legal-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-legal-links a { font-size: 0.83rem; color: var(--muted); transition: color 0.3s ease; }
.footer-legal-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1400px; margin: 0 auto; padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(136,136,136,0.45); }

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.loader-done { opacity: 0; visibility: hidden; }
.loader-inner { width: 180px; }
.loader-brand {
  font-family: 'Outfit', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; text-align: center;
}
.loader-track {
  width: 100%; height: 1px; background: rgba(249,115,22,0.15); position: relative; overflow: hidden;
}
.loader-bar {
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSlide 0.9s ease forwards;
}
@keyframes loaderSlide { from { left: -100%; } to { left: 100%; } }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  will-change: transform;
}
@media (max-width: 768px) { .cursor-glow { display: none; } }

/* ===== HERO HEADLINE WORD REVEAL ===== */
.hl-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--d, 0s);
}
.hl-word.hl-visible { opacity: 1; transform: translateY(0); }

/* ===== SLIDE-IN FROM SIDES ===== */
.slide-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible, .slide-right.visible { opacity: 1; transform: translateX(0); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid rgba(249,115,22,0.1);
  border-bottom: 1px solid rgba(249,115,22,0.1);
  padding: 3.5rem 2rem;
}
.stats-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat-item {}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-suffix { font-size: 0.7em; }
.stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: clamp(2rem, 10vw, 3rem); }
}

/* ===== CARD TILT ===== */
.glass-card {
  transform-style: preserve-3d;
  will-change: transform;
}

/* ===== SHIMMER ===== */
@keyframes goldShimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, var(--gold) 80%);
  background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

/* ===== BG HELPERS ===== */
.bg-secondary { background: var(--bg-secondary); }
.bg-card { background: var(--bg-card); }

/* ==================================================
   RESPONSIVE
   ================================================== */
@media (max-width: 1200px) {
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .profiles-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .sports-reveal-grid { grid-template-columns: repeat(2, 1fr); }
  .sr-card.sr-featured { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .sports-grid    { grid-template-columns: repeat(2, 1fr); }
  .timeline       { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .about-origin   { grid-template-columns: 1fr; gap: 3rem; }
  .partnership-deep { grid-template-columns: 1fr; }
  .t-col:nth-child(3) { display: none; }
  .hero-cta { right: 2.5rem; max-width: 360px; }
  .hero-blend-layer { padding: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .section-pad    { padding: 4rem 1.5rem; }
  .section-pad-sm { padding: 3rem 1.5rem; }
  .steps-container  { grid-template-columns: 1fr; }
  .partnership-grid { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid    { grid-template-columns: 1fr; }
  .sports-grid      { grid-template-columns: 1fr 1fr; }
  .profiles-grid    { grid-template-columns: repeat(2, 1fr); }
  .timeline         { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .about-origin     { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row         { grid-template-columns: 1fr; }
  .inquiry-form     { padding: 2rem 1.5rem; }
  .t-col:nth-child(2), .t-col:nth-child(3) { display: none; }
  .testimonials-cols { padding: 0 1.5rem; }
  .sports-reveal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; padding: 0 1.5rem; }
  .hero-outer         { margin: 0 0.4rem; border-radius: 1rem; }
  .hero-blend-layer   { padding: 1.75rem; }
  .hero-blend-headline { font-size: clamp(3rem, 12vw, 5.5rem); }
  .hero-cta           { right: 1.75rem; bottom: 2.5rem; max-width: 300px; }
  .hero-sub-cta       { display: none; }
  .hero-buttons-cta   { gap: 0.65rem; }
  .container          { padding: 0 1.25rem; }
  .nav-container      { padding: 0 1.25rem; }
  .t-col              { width: 100%; max-width: 320px; }
  .cta-band           { padding: 5rem 1.5rem; }
}
@media (max-width: 480px) {
  .sports-grid { grid-template-columns: 1fr; }
  .profiles-grid { grid-template-columns: 1fr; }
  .glass-card { padding: 1.75rem; }
  .sports-reveal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .sr-card { height: 220px; }
  .hero-cta { left: 1.5rem; right: 1.5rem; text-align: center; max-width: 100%; bottom: 2rem; }
  .hero-buttons-cta { justify-content: center; }
  .hero-eyebrow { border-right: none; padding-right: 0; text-align: center; }
  /* Ensure headline clears the navbar with breathing room */
  .hero-blend-layer   { justify-content: flex-start; padding: 6rem 1rem 1rem; }
  /* Tighter spacing */
  .container          { padding: 0 1rem; }
  .nav-container      { padding: 0 1rem; }
  .section-pad        { padding: 3rem 1rem; }
  .section-pad-sm     { padding: 2rem 1rem; }
  .cta-band           { padding: 4rem 1rem; }
  /* Testimonials fluid column */
  .t-col              { width: 100%; }
  .testimonials-cols  { padding: 0 1rem; }
  /* Buttons fill width in hero */
  .hero-buttons-cta .btn { flex: 1; justify-content: center; min-width: 0; }
  /* Tighter cards and elements */
  .glass-card         { padding: 1.5rem; }
  .step               { padding: 1.75rem 1.25rem; }
  .inquiry-form       { padding: 1.5rem 1rem; }
  .faq-question       { padding: 1rem 1.25rem; font-size: 0.87rem; }
  .faq-answer-inner   { padding: 0 1.25rem 1.25rem; }
}
