/* ==========================================================================
   Udumalai Runners — Public Site Design Tokens
   Navy + gold, sampled directly from the club logo. Light, premium theme.
   Signature element: the dark "scoreboard" ticker strip under the hero.
   ========================================================================== */
:root {
  --bg: #ffffff;
  --bg-alt: #f6f3ea;
  --ink: #0b1e3f;
  --ink-soft: #45526e;
  --ink-faint: #8890a6;
  --line: #e7e2d3;

  --gold: #c9973b;
  --gold-dark: #a6752a;
  --gold-light: #e7b24b;
  --gold-tint: #fbf3e4;

  --navy: #0b1e3f;
  --navy-alt: #16294d;

  --radius-lg: 20px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 12px 32px rgba(11, 30, 63, 0.10);
  --shadow-lift: 0 20px 48px rgba(11, 30, 63, 0.16);

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Work Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .font-display {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 16px; z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.eyebrow-light { color: var(--gold-light); }

.text-muted-f { color: var(--ink-faint); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 100px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-accent-lg {
  background: var(--gold);
  color: #fff;
  padding: 15px 30px;
  font-size: 15.5px;
  box-shadow: 0 10px 24px rgba(201, 151, 59, 0.32);
}
.btn-accent-lg:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 151, 59, 0.38); color: #fff; }

.btn-outline-lg {
  background: transparent;
  color: var(--ink);
  padding: 15px 28px;
  font-size: 15.5px;
  border: 1.5px solid var(--line);
}
.btn-outline-lg:hover { border-color: var(--ink); transform: translateY(-2px); }

.btn-outline-sm {
  background: transparent;
  color: var(--ink);
  padding: 10px 18px;
  font-size: 13.5px;
  border: 1.5px solid var(--line);
}
.btn-outline-sm:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.btn-nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  font-size: 13.5px;
}
.btn-nav-cta:hover { background: var(--gold); color: #fff; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(11, 30, 63, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: transparent;
  font-size: 18px;
  align-items: center; justify-content: center;
}

/* ==========================================================================
   Hero — full-bleed rotating background slider
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  height: 88vh;
  max-height: 820px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-slides { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0; }
.hero-slide {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }

/* Fallback background shown until the admin uploads at least one banner */
.hero-slide-fallback {
  opacity: 1;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 75% 30%, rgba(201,151,59,0.25), transparent 55%),
    linear-gradient(135deg, var(--navy), var(--navy-alt));
}

/* Scrim for text legibility over any photo */
.hero-scrim {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(11,30,63,0.92) 0%, rgba(11,30,63,0.72) 40%, rgba(11,30,63,0.38) 68%, rgba(11,30,63,0.18) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.hero-copy { max-width: 620px; }

.hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
  color: #fff;
}
.hero-title span { display: block; }
.hero-title .accent-line { color: var(--gold-light); }
.hero-title em { font-style: normal; color: var(--gold-light); }

.hero-sub { font-size: 17.5px; max-width: 480px; margin-bottom: 30px; text-transform: none; color: rgba(255,255,255,0.82); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-outline-on-photo { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-on-photo:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; }

.floating-chip {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float-y 5s ease-in-out infinite;
}
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.chip-date { top: 14%; right: 6%; }
.chip-live { bottom: 16%; right: 8%; color: var(--gold-light); animation-delay: 1.2s; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(231, 178, 75, 0.6);
  animation: pulse-dot 1.8s ease-out infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(231, 178, 75, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(231, 178, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(231, 178, 75, 0); }
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  bottom: 26px;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot.is-active { background: var(--gold-light); border-color: var(--gold-light); transform: scale(1.2); }
.hero-dot:hover { border-color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

/* ==========================================================================
   Scoreboard strip — SIGNATURE ELEMENT
   ========================================================================== */
.scoreboard-strip {
  background: linear-gradient(120deg, var(--navy), var(--navy-alt));
  margin: 20px 0 0;
  position: relative;
}
.scoreboard-strip::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 40px);
  pointer-events: none;
}
.scoreboard-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 28px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  text-align: center;
}
.score-item { grid-column: span 1; padding: 0 8px; }
.score-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.14); margin: 0 auto; }
.score-value {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 36px;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.score-label {
  font-family: var(--font-body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-top: 4px;
}

/* Grid columns: 4 items + 3 dividers = 7 tracks */
.scoreboard-inner .score-item:nth-child(1) { grid-column: 1; }
.scoreboard-inner .score-divider:nth-child(2) { grid-column: 2; }
.scoreboard-inner .score-item:nth-child(3) { grid-column: 3; }
.scoreboard-inner .score-divider:nth-child(4) { grid-column: 4; }
.scoreboard-inner .score-item:nth-child(5) { grid-column: 5; }
.scoreboard-inner .score-divider:nth-child(6) { grid-column: 6; }
.scoreboard-inner .score-item:nth-child(7) { grid-column: 7; }

/* ==========================================================================
   Section shell
   ========================================================================== */
.section { padding: 96px 28px; }
.section-alt { background: var(--bg-alt); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section.pt-0 { padding-top: 0; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.section-title { font-size: clamp(28px, 3.4vw, 38px); font-weight: 700; }

.link-arrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 3px;
  transition: gap 0.2s ease, border-color 0.2s ease;
}
.link-arrow:hover { gap: 12px; border-color: var(--gold); color: var(--gold-dark); }

/* ==========================================================================
   About teaser
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-visual { position: relative; min-height: 380px; }
.about-blob {
  position: absolute;
  top: 10%; right: 8%; bottom: 10%; left: 8%;
  background: linear-gradient(135deg, var(--gold-tint), #eef1f7);
  border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%;
  z-index: 0;
  animation: blob-morph 10s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 47% 42% 58% 53%; }
  50% { border-radius: 58% 42% 37% 63% / 53% 58% 42% 47%; }
}
.about-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
}
.about-card i { font-size: 22px; color: var(--gold); }
.about-card-title { font-family: var(--font-body); font-weight: 700; font-size: 14.5px; text-transform: none; }
.about-card-sub { font-size: 12.5px; color: var(--ink-faint); }
.card-1 { margin-left: 4%; margin-top: 6%; }
.card-2 { margin-left: 24%; margin-top: 20px; }
.card-2 i { color: var(--navy); }

.about-copy .section-title { margin-bottom: 20px; }
.about-copy p { font-size: 16px; max-width: 520px; }

/* ==========================================================================
   Featured spotlight
   ========================================================================== */
.spotlight-card {
  background: linear-gradient(120deg, var(--gold-tint), #fff 60%);
  border: 1px solid #eaddc0;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.spotlight-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.spotlight-category { font-family: var(--font-body); color: var(--ink-faint); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.spotlight-title { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.spotlight-meta { font-family: var(--font-body); display: flex; gap: 18px; font-size: 14px; color: var(--ink-soft); text-transform: none; }

/* ==========================================================================
   Event cards
   ========================================================================== */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.event-media { position: relative; aspect-ratio: 16/10; background: var(--bg-alt); overflow: hidden; }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.event-card:hover .event-media img { transform: scale(1.06); }
.event-media-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-faint); font-size: 34px;
}
.event-date-chip {
  position: absolute; top: 14px; left: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  line-height: 1.1;
}
.event-date-chip .d-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--gold-dark); }
.event-date-chip .d-mon { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-faint); font-weight: 600; font-family: var(--font-body); }

.event-body { padding: 20px; }
.event-category { font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 6px; }
.event-title { font-size: 18.5px; font-weight: 700; margin-bottom: 12px; text-transform: none; }
.event-meta { font-family: var(--font-body); display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--ink-faint); }
.event-meta span { display: flex; align-items: center; gap: 5px; }

/* ==========================================================================
   Masonry gallery
   ========================================================================== */
.masonry-grid {
  columns: 4 220px;
  column-gap: 18px;
}
.masonry-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.masonry-item img { width: 100%; height: auto; transition: transform 0.4s ease; }
.masonry-item.tall img { aspect-ratio: 3/4; object-fit: cover; }
.masonry-item:not(.tall) img { aspect-ratio: 4/3; object-fit: cover; }
.masonry-overlay {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(11, 30, 63, 0.4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-item:hover img { transform: scale(1.08); }

/* ==========================================================================
   Empty state panel
   ========================================================================== */
.empty-panel {
  text-align: center;
  padding: 70px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
}
.empty-panel i { font-size: 40px; color: var(--ink-faint); margin-bottom: 14px; display: block; }
.empty-panel h5 { margin-bottom: 6px; }

/* ==========================================================================
   Membership CTA
   ========================================================================== */
.membership-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-alt));
  padding: 100px 28px;
  position: relative;
  overflow: hidden;
}
.membership-cta::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,151,59,0.22), transparent 70%);
  top: -180px; right: -100px;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-title { font-size: clamp(30px, 4vw, 42px); font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-sub { font-family: var(--font-body); text-transform: none; color: rgba(255,255,255,0.72); font-size: 16.5px; margin-bottom: 32px; }
.cta-email { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.cta-email:hover { color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 70px 28px 0; }
.footer-top {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-icon { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.footer-col h6 { font-family: var(--font-body); font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 18px; color: var(--ink); }
.footer-col a { display: block; color: var(--ink-soft); font-size: 14.5px; margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold-dark); }
.footer-brand p { max-width: 300px; }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.social-row a:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-faint);
}

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
  position: fixed; top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(11, 30, 63, 0.94);
  display: none;
  align-items: center; justify-content: center;
  z-index: 999;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none; color: #fff; font-size: 18px;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ==========================================================================
   Scroll reveal
   Visible by default (progressive enhancement). JS adds "reveal-init" only
   when it can guarantee the reveal will run, so content never depends on
   JS executing correctly to become visible.
   ========================================================================== */
[data-reveal] {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].reveal-init { opacity: 0; transform: translateY(24px); }
[data-reveal].reveal-init.in-view { opacity: 1; transform: translateY(0); }
[data-reveal].reveal-init[data-delay="1"] { transition-delay: 0.05s; }
[data-reveal].reveal-init[data-delay="2"] { transition-delay: 0.15s; }
[data-reveal].reveal-init[data-delay="3"] { transition-delay: 0.25s; }
[data-reveal].reveal-init[data-delay="4"] { transition-delay: 0.35s; }
[data-reveal].reveal-init[data-delay="5"] { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .floating-chip, .about-blob, .live-dot { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .hero { height: auto; min-height: 560px; padding: 120px 0 90px; }
  .floating-chip { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 300px; margin-bottom: 20px; }
  .scoreboard-inner { grid-template-columns: repeat(4, 1fr); row-gap: 24px; }
  .scoreboard-inner .score-divider { display: none; }
  .scoreboard-inner .score-item:nth-child(1) { grid-column: 1; }
  .scoreboard-inner .score-item:nth-child(3) { grid-column: 2; }
  .scoreboard-inner .score-item:nth-child(5) { grid-column: 3; }
  .scoreboard-inner .score-item:nth-child(7) { grid-column: 4; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 28px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
  }
  .btn-nav-cta { display: none; }
  .scoreboard-inner { grid-template-columns: repeat(2, 1fr); }
  .scoreboard-inner .score-item:nth-child(5) { grid-column: 1; }
  .scoreboard-inner .score-item:nth-child(7) { grid-column: 2; }
  .masonry-grid { columns: 2 160px; }
  .footer-top { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
}
