/* =========================================================
   Mr. Biceps — Strict Curl World Cup
   Premium black / gold landing page. Vanilla CSS only.
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #171717;
  --line: #262626;
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --gold: #d4af37;
  --gold-2: #f2d377;
  --gold-dim: #8a7228;
  --white: #ffffff;
  --radius: 2px;
  --container: 1400px;
  --header-h: 76px;
  --font-display: "Oswald", "Bebas Neue", "Impact", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

h1, h2, h3, h4 {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
  color: var(--text) !important;
}

.eyebrow {
  font-family: var(--font-display) !important;
  font-size: clamp(12px, 1.1vw, 14px);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 20px;
  display: inline-block;
}

body, p, span, a, li, div {
  font-family: var(--font-body);
}

.gold { color: var(--gold); }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--gold);
  color: #000;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 18px;
  border-radius: var(--radius);
}
.brand span.sub { color: var(--gold); font-size: 12px; letter-spacing: 0.3em; }

.nav-list {
  display: none;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-list a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .3s ease;
}
.nav-list a:hover { color: var(--gold); }
.nav-list a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-switch button {
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all .25s ease;
}
.lang-switch button.active {
  background: var(--gold);
  color: #000;
  font-weight: 700;
}
.cta-header {
  display: none;
  padding: 12px 22px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all .25s ease;
}
.cta-header:hover { background: var(--gold-2); }

.burger {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  position: absolute;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 40px 24px;
  transform: translateY(-110%);
  transition: transform .45s cubic-bezier(.7,.1,.2,1);
  overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 18px 8px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .cta-header {
  display: inline-block;
  margin-top: 28px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  border-radius: var(--radius);
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn-ghost { border-color: var(--text); color: var(--text); background: transparent; }
.btn-ghost:hover { background: var(--text); color: #000; }
.btn-gold-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-gold-outline:hover { background: var(--gold); color: #000; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 60px) 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.75) 50%, rgba(10,10,10,1) 100%),
    url("hero.jpg") center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(212,175,55,.12), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-size: clamp(46px, 9vw, 140px);
  letter-spacing: 0.005em;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--gold); display: block; font-size: 0.82em; }
.hero-sub {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  margin-bottom: 40px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 60px; }

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 640px;
  padding: 20px;
  background: rgba(0,0,0,.55);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.cd-cell { text-align: center; }
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.cd-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.cd-sep { display: none; }

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
  writing-mode: horizontal-tb;
  display: none;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px; height: 30px;
  background: var(--gold);
  margin: 12px auto 0;
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(0.4); opacity: .3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ===================== MARQUEE ===================== */
.marquee {
  background: var(--gold);
  color: #000;
  padding: 14px 0;
  overflow: hidden;
  border-block: 1px solid #000;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track span::after { content: "★"; color: #000; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================== SECTIONS ===================== */
section:not(.elementor-section) { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section-head {
  max-width: 900px;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(32px, 5.5vw, 68px);
  margin-bottom: 20px;
}
.section-head p {
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  max-width: 720px;
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===================== ABOUT ===================== */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 20px; font-size: 17px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 40px;
}
.stat {
  background: var(--bg);
  padding: 28px 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
.about-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform .8s ease;
}
.about-media:hover img { transform: scale(1.05); }
.about-media::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  transform: translate(16px, 16px);
  pointer-events: none;
}

/* ===================== ROAD (PRO TOUR PATH) ===================== */
.info { background: var(--bg-2); }
.road {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  counter-reset: road;
}
.road-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0 28px 0;
  min-width: 0;
}
/* vertical connector on mobile */
.road-step::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: -12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(212,175,55,0.15) 100%);
}
.road-step:last-child::before { display: none; }

.road-marker {
  width: 64px; height: 64px;
  border: 1px solid var(--gold);
  background: var(--bg);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.road-step.is-final .road-marker {
  background: var(--gold);
}
.road-step.is-final .road-num { color: var(--bg); }
.road-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.road-body { min-width: 0; padding-top: 4px; }
.road-body h3 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
  word-wrap: break-word;
}
.road-body p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.road-body .meta {
  margin-top: 14px;
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ===================== TIMELINE (SCHEDULE) ===================== */
.schedule { background: var(--bg); }
.timeline {
  position: relative;
  padding-left: 24px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 8px; bottom: 8px;
  left: 6px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.tl-item {
  position: relative;
  padding: 0 0 48px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -22px; top: 8px;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,175,55,.15);
}
.tl-date {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.tl-body h3 {
  font-size: clamp(22px, 2.6vw, 32px);
  margin-bottom: 10px;
}
.tl-body p { color: var(--muted); margin: 0 0 14px 0; font-style: italic; }
.tl-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 12px;
}

/* ===================== ATHLETES ===================== */
.athletes { background: var(--bg-2); }
.athletes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.athlete {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: border-color .3s ease;
}
.athlete:hover { border-color: var(--gold); }
.athlete-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.athlete-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform .7s ease, filter .5s ease;
}
.athlete:hover .athlete-img img { transform: scale(1.08); filter: grayscale(0%); }
.athlete-body { padding: 28px 24px; }
.athlete-body .tag {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.athlete-body h3 { font-size: 22px; margin-bottom: 6px; }
.athlete-body .role { color: var(--muted); font-size: 13px; margin-bottom: 20px; letter-spacing: 0.05em; }
.athlete-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.athlete-stats div { }
.athlete-stats .n { font-family: var(--font-display); color: var(--gold); font-size: 22px; }
.athlete-stats .l { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ===================== WEIGHT CLASSES ===================== */
.weights { background: var(--bg); }
.weights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.weight-block h3 {
  font-size: clamp(22px, 3vw, 28px);
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chip {
  padding: 12px 18px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  transition: all .25s ease;
}
.chip:hover { border-color: var(--gold); color: var(--gold); }

.age-groups {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.age {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.age strong { font-family: var(--font-display); color: var(--gold); font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; }
.age p { margin: 6px 0 0 0; color: var(--muted); font-size: 14px; }

/* ===================== ORGANIZERS ===================== */
.organizers { background: var(--bg-2); }
.org-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.org {
  padding: 40px 32px;
  border: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
}
.org-mark {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
}
.org h3 { font-size: 20px; margin-bottom: 8px; }
.org p { color: var(--muted); font-size: 14px; margin: 0; }

/* ===================== SPONSORS ===================== */
.sponsors { background: var(--bg); padding-block: 80px; }
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sponsor {
  aspect-ratio: 16/9;
  background: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.28em;
  transition: color .3s ease, background .3s ease;
}
.sponsor:hover { color: var(--gold); background: var(--bg-2); }

/* ===================== GALLERY ===================== */
.gallery { background: var(--bg-2); }
.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 240px;
  gap: 12px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .5s ease;
  filter: grayscale(20%);
}
.gal-item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.gal-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.7));
  opacity: 0;
  transition: opacity .3s ease;
}
.gal-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 24px;
  display: grid; place-items: center;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 24px;
  display: grid; place-items: center;
}
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/* ===================== FAQ ===================== */
.faq { background: var(--bg); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: border-color .3s ease;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.faq-q .icon {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  transition: transform .3s ease;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
}

/* ===================== CONTACT ===================== */
.contact { background: var(--bg-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-info { padding: 32px; border: 1px solid var(--line); background: var(--bg); }
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row .lbl {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  min-width: 100px;
}
.contact-row .val { color: var(--text); font-size: 15px; }

.map {
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(60%) invert(90%) hue-rotate(180deg); }

/* ===================== FINAL CTA ===================== */
.final-cta {
  background:
    linear-gradient(135deg, rgba(10,10,10,.85), rgba(10,10,10,.6)),
    url("g5.jpg") center/cover no-repeat;
  text-align: center;
  padding: clamp(100px, 14vw, 180px) 0;
}
.final-cta h2 {
  font-size: clamp(40px, 8vw, 96px);
  margin-bottom: 24px;
}
.final-cta p {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 680px;
  margin: 0 auto 40px;
}
.final-cta .buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ===================== FOOTER ===================== */
.footer {
  background: #060606;
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer h4 {
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 6px 0; }
.footer a { color: var(--muted); font-size: 14px; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===================== BACK TO TOP ===================== */
.to-top {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: #000;
  display: grid; place-items: center;
  font-size: 20px;
  font-weight: 700;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all .3s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold-2); }

/* ===================== RESPONSIVE ===================== */
@media (min-width: 640px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .athletes-grid { grid-template-columns: repeat(2, 1fr); }
  .weights-grid { grid-template-columns: 1fr 1fr; }
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .age-groups { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-scroll { display: block; }
}

@media (min-width: 960px) {
  .nav-list { display: flex; }
  .burger { display: none; }
  .cta-header { display: inline-flex; }
  .athletes-grid { grid-template-columns: repeat(3, 1fr); }
  .org-grid { grid-template-columns: repeat(4, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(6, 1fr); }

  /* Road becomes horizontal on desktop */
  .road {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 12px;
  }
  .road-step {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 24px;
  }
  .road-step::before {
    left: 64px;
    right: -32px;
    top: 31px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, var(--gold) 0%, rgba(212,175,55,0.15) 100%);
  }
  .road-body { padding-top: 0; }
  .road-body h3 { font-size: 22px; }
  .gal-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
  }
  .gal-item.wide { grid-column: span 2; }
  .gal-item.tall { grid-row: span 2; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .tl-item { grid-template-columns: 220px 1fr; }
  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

@media (min-width: 1400px) {
  :root { --container: 1600px; }
}

@media (min-width: 2000px) {
  :root { --container: 1800px; }
  body { font-size: 18px; }
}

@media (min-width: 3000px) {
  :root { --container: 2400px; }
  body { font-size: 22px; }
  .hero-title { font-size: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Страховка: тёмный фон должен применяться и к дефолтным
   обёрткам Astra (боковые контейнеры, карточки постов),
   пока не все страницы сайта пересобраны под этот дизайн. */
body,
#page,
.site,
.ast-container,
.site-content,
.ast-separate-container .ast-article-single {
	background: var(--bg) !important;
	color: var(--text) !important;
}

/* ===== Реставрация вида FAQ поверх нативного Elementor Accordion ===== */
.elementor-accordion { display: flex; flex-direction: column; gap: 10px; }
.elementor-accordion-item {
  border: 1px solid var(--line) !important;
  background: var(--bg-2) !important;
}
.elementor-accordion-item.elementor-active,
.elementor-tab-title.elementor-active {
  border-color: var(--gold) !important;
}
.elementor-tab-title {
  padding: 24px !important;
  font-family: var(--font-display) !important;
  font-size: clamp(16px, 1.8vw, 20px) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text) !important;
}
.elementor-tab-title .elementor-accordion-icon {
  color: var(--gold) !important;
}
.elementor-tab-content {
  padding: 0 24px 24px !important;
  color: var(--muted) !important;
  font-size: 15px !important;
}
