/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:   #E86A1A;
  --orange-d: #C45510;
  --orange-l: #FFF4ED;
  --black:    #111111;
  --dark:     #1C1C1C;
  --grey:     #555555;
  --mid:      #888888;
  --border:   #E8E8E8;
  --bg:       #F8F8F6;
  --white:    #FFFFFF;
  --font-h:   'Oswald', sans-serif;
  --font-b:   'DM Sans', sans-serif;
  --max:      1160px;
  --radius:   12px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.orange { color: var(--orange); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block; font-family: var(--font-h); font-size: 0.88rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 6px; border: 2px solid transparent;
  transition: all 0.2s; cursor: pointer;
}
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-d); border-color: var(--orange-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,106,26,0.3); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-w { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline-w:hover { background: var(--white); color: var(--black); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.shadow { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-family: var(--font-h); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); padding: 8px 14px; border-radius: 6px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: var(--orange-l); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--dark); }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: 68px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  background: var(--white); overflow: hidden; position: relative;
}
.hero::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: var(--bg); clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero-text { position: relative; z-index: 1; padding: 60px 28px 60px calc((100vw - var(--max))/2 + 28px); }
.hero-eyebrow { display: block; font-family: var(--font-h); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.hero-headline { font-family: var(--font-h); font-weight: 700; font-size: clamp(3.5rem, 7vw, 6.5rem); line-height: 0.95; text-transform: uppercase; color: var(--black); margin-bottom: 24px; }
.hero-headline span { color: var(--orange); display: block; }
.hero-body { font-size: 1.05rem; color: var(--grey); line-height: 1.75; max-width: 460px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { position: relative; z-index: 1; height: 100vh; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--bg) 0%, transparent 30%); }

/* Ticker */
.ticker { background: var(--orange); padding: 10px 0; overflow: hidden; }
.ticker-track { display: flex; gap: 28px; align-items: center; animation: tick 20s linear infinite; width: max-content; white-space: nowrap; }
.ticker-track span { font-family: var(--font-h); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); }
.ticker-track .dot { opacity: 0.5; font-size: 0.45rem; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Section base ────────────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section.bg-off { background: var(--bg); }
.section.bg-dark { background: var(--black); }
.section.bg-orange { background: var(--orange); }
.eyebrow { display: block; font-family: var(--font-h); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.eyebrow.white { color: rgba(255,255,255,0.6); }
.section-title { font-family: var(--font-h); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; text-transform: uppercase; color: var(--black); line-height: 1.05; margin-bottom: 16px; }
.section-title.white { color: var(--white); }
.section-lead { font-size: 1.05rem; color: var(--grey); line-height: 1.75; max-width: 600px; margin-bottom: 48px; }
.section-lead.white { color: rgba(255,255,255,0.65); }

/* ── Photo strip (horizontal scroll) ────────────────────────────────────── */
.photo-strip { display: flex; gap: 12px; overflow-x: auto; padding: 0 28px 16px; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip-item { flex: 0 0 auto; width: 340px; height: 240px; border-radius: var(--radius); overflow: hidden; scroll-snap-align: start; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-strip-item:hover img { transform: scale(1.04); }

/* ── Parallax photo section ──────────────────────────────────────────────── */
.parallax-section { position: relative; height: 500px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.parallax-bg { position: absolute; inset: -80px 0; background-attachment: fixed; background-size: cover; background-position: center; }
.parallax-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.parallax-content { position: relative; z-index: 2; text-align: center; padding: 40px; }
.parallax-content h2 { font-family: var(--font-h); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 16px; }
.parallax-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }

/* ── Photo mosaic (3-col) ────────────────────────────────────────────────── */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 12px; }
.mosaic-item { border-radius: var(--radius); overflow: hidden; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.mosaic-item:hover img { transform: scale(1.04); }
.mosaic-item.tall { grid-row: span 2; }
.mosaic-item.wide { grid-column: span 2; }

/* ── Stats row ───────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.stat { background: var(--bg); padding: 36px 24px; text-align: center; }
.stat-num { font-family: var(--font-h); font-size: 2.8rem; font-weight: 700; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 0.82rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Card grid ───────────────────────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.card-grid.col3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.col4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.card-num { font-family: var(--font-h); font-size: 2.5rem; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 14px; }
.card h3 { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 10px; }
.card p { font-size: 0.92rem; color: var(--grey); line-height: 1.7; }
.card .card-link { display: inline-block; font-family: var(--font-h); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-top: 16px; }
.card.dark { background: var(--dark); border-color: rgba(255,255,255,0.06); }
.card.dark h3 { color: var(--white); }
.card.dark p { color: rgba(255,255,255,0.55); }
.card-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; margin-bottom: 20px; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── Sport tabs (dharma games page) ─────────────────────────────────────── */
.sport-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.sport-tab { font-family: var(--font-h); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 22px; border: 2px solid var(--border); border-radius: 6px; background: var(--white); color: var(--grey); cursor: pointer; transition: all 0.2s; }
.sport-tab.active, .sport-tab:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.sport-info { display: none; }
.sport-info.active { display: block; }
.sport-info-card { background: var(--bg); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 20px; }
.sport-info-card h3 { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.sport-info-card p { font-size: 0.92rem; color: var(--grey); line-height: 1.65; margin-bottom: 12px; }
.sport-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.sport-meta span { font-size: 0.82rem; color: var(--grey); }
.sport-meta strong { color: var(--black); }
.sport-badge { display: inline-block; background: var(--orange); color: var(--white); font-family: var(--font-h); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 18px; border-radius: 6px; margin-bottom: 20px; }

/* ── Form ────────────────────────────────────────────────────────────────── */
.form-wrap { max-width: 680px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-h); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 8px; font-family: var(--font-b); font-size: 0.95rem; color: var(--dark); background: var(--white); transition: border-color 0.2s; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.82rem; color: var(--mid); margin-top: 6px; }
.form-success { display: none; background: #F0FDF4; border: 1px solid #86EFAC; border-radius: 8px; padding: 20px; text-align: center; color: #166534; font-weight: 500; }
.player-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.player-field label { font-family: var(--font-h); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; display: block; }
.player-field input { width: 100%; padding: 10px 14px; border: 2px solid var(--border); border-radius: 6px; font-family: var(--font-b); font-size: 0.88rem; color: var(--dark); transition: border-color 0.2s; }
.player-field input:focus { outline: none; border-color: var(--orange); }

/* ── Tier cards ──────────────────────────────────────────────────────────── */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.tier-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.tier-head { padding: 22px; }
.tier-head h3 { font-family: var(--font-h); font-size: 1rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 4px; }
.tier-price { font-family: var(--font-h); font-size: 1.7rem; font-weight: 700; color: var(--white); line-height: 1; }
.tier-price span { font-size: 0.78rem; opacity: 0.75; font-weight: 400; }
.tier-body { background: var(--white); padding: 20px; }
.tier-body ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.tier-body li { font-size: 0.84rem; color: var(--grey); display: flex; gap: 8px; line-height: 1.5; }
.tier-body li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.tier-card.plat .tier-head { background: linear-gradient(135deg, #1a1a2e, #2d1b4e); }
.tier-card.gold .tier-head { background: #B8860B; }
.tier-card.silver .tier-head { background: #6B7280; }
.tier-card.bronze .tier-head { background: #92400E; }

/* ── Compare table ───────────────────────────────────────────────────────── */
.compare-wrap { overflow-x: auto; margin-top: 40px; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare-table th { font-family: var(--font-h); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 10px; text-align: center; }
.compare-table th:first-child { text-align: left; color: rgba(255,255,255,0.5); }
.compare-table td { padding: 10px 10px; border-bottom: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.65); font-size: 0.86rem; text-align: center; }
.compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.85); }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.cy { color: #86EFAC; font-weight: 700; }
.cn { color: rgba(255,255,255,0.2); }
.plat-col { background: #2d1b4e; color: #fff !important; }
.gold-col  { background: #B8860B; color: #fff !important; }
.silv-col  { background: #6B7280; color: #fff !important; }
.brnz-col  { background: #92400E; color: #fff !important; }

/* ── Page hero ───────────────────────────────────────────────────────────── */
.page-hero { padding: 120px 28px 72px; background: var(--black); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: rgba(232,106,26,0.06); clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); }
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-h); font-weight: 700; font-size: clamp(2.8rem, 6vw, 5rem); line-height: 0.95; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.page-hero h1 span { color: var(--orange); display: block; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.75; }
.page-hero .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ── Countdown ───────────────────────────────────────────────────────────── */
.countdown-bar { background: rgba(255,255,255,0.04); border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 28px; }
.countdown-bar-inner { max-width: var(--max); margin: 0 auto; }
.countdown-lbl { font-family: var(--font-h); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.countdown { display: flex; align-items: center; gap: 0; }
.cd-unit { display: flex; flex-direction: column; align-items: center; }
.cd-num { font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--white); line-height: 1; min-width: 72px; text-align: center; }
.cd-lbl { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-top: 3px; }
.cd-sep { font-family: var(--font-h); font-size: 2rem; color: var(--orange); padding: 0 4px; margin-bottom: 14px; }

/* ── Detail cards ────────────────────────────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.detail-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 24px; }
.detail-card h3 { font-family: var(--font-h); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.detail-card p { font-size: 0.95rem; color: var(--white); font-weight: 500; }
.detail-card.light { background: var(--white); border: 1px solid var(--border); }
.detail-card.light h3 { color: var(--orange); }
.detail-card.light p { color: var(--grey); font-weight: 400; }

/* ── Programs cards ──────────────────────────────────────────────────────── */
.program-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.program-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }
.program-card-img { height: 220px; overflow: hidden; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.program-card:hover .program-card-img img { transform: scale(1.06); }
.program-card-body { padding: 28px; }
.program-tag { display: inline-block; font-family: var(--font-h); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 12px; }
.program-card h3 { font-family: var(--font-h); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 10px; line-height: 1.2; }
.program-card p { font-size: 0.92rem; color: var(--grey); line-height: 1.7; margin-bottom: 16px; }
.program-stat { display: inline-flex; align-items: center; gap: 8px; background: var(--bg); border-radius: 6px; padding: 8px 14px; }
.program-stat-num { font-family: var(--font-h); font-size: 1.2rem; font-weight: 700; color: var(--orange); }
.program-stat-lbl { font-size: 0.78rem; color: var(--grey); line-height: 1.3; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer { background: var(--black); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 64px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.65; max-width: 280px; }
.footer-acknowledge { font-size: 0.78rem !important; color: rgba(255,255,255,0.25) !important; margin-top: 12px !important; }
.footer-links { display: flex; gap: 56px; }
.footer-col h4 { font-family: var(--font-h); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.45); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.2); font-size: 0.78rem; }

/* ── About ───────────────────────────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-photo-stack { position: relative; height: 520px; }
.about-photo-main { position: absolute; top: 0; left: 0; right: 60px; bottom: 60px; border-radius: var(--radius); overflow: hidden; }
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 45%; border-radius: var(--radius); overflow: hidden; border: 4px solid var(--white); box-shadow: 0 12px 36px rgba(0,0,0,0.15); }
.about-photo-accent img { width: 100%; height: 100%; object-fit: cover; }
.prose h2 { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; text-transform: uppercase; color: var(--black); margin: 28px 0 10px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--grey); line-height: 1.75; margin-bottom: 14px; }
.prose ul { margin: 10px 0 14px 0; }
.prose ul li { color: var(--grey); line-height: 1.75; margin-bottom: 6px; padding-left: 20px; position: relative; }
.prose ul li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; color: var(--black); margin-bottom: 14px; }
.contact-info p { color: var(--grey); line-height: 1.75; margin-bottom: 24px; }
.contact-detail { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail strong { display: block; font-family: var(--font-h); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
.contact-detail a { color: var(--dark); }
.contact-detail a:hover { color: var(--orange); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::after { display: none; }
  .hero-text { padding: 80px 28px 40px; }
  .hero-image { height: 50vw; min-height: 300px; }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-photo-stack { height: 340px; }
  .contact-split { grid-template-columns: 1fr; }
  .card-grid.col4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.col3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 16px; border-bottom: 1px solid var(--border); gap: 4px; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid.col3 { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .player-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 3rem; }
}
