/* ============================================================
   OZON SPORT HOUSE — production stylesheet
   Ported 1:1 from the design handoff (dc.html source of truth).

   ONE knob controls the brand colour: change --accent below.
   Client is undecided between blue #000699 and turquoise #007199.
   All hairlines/underlines derive from --accent via color-mix,
   so flipping this single value re-tints the whole site.
   ============================================================ */

:root {
  --accent: #007199;          /* brand accent — turquoise (was blue #000699) */
  --ink: #101018;
  --white: #ffffff;
  --sand: #f2f2ed;            /* light band behind the "Zistite viac" index */

  /* Accent at reduced opacity (rgba fallback first, color-mix override
     so the tint follows --accent when it is changed to turquoise). */
  --accent-40: rgba(0, 6, 153, 0.4);
  --accent-40: color-mix(in srgb, var(--accent) 40%, transparent);
  --accent-30: rgba(0, 6, 153, 0.3);
  --accent-30: color-mix(in srgb, var(--accent) 30%, transparent);
  --accent-04: rgba(0, 6, 153, 0.04);
  --accent-04: color-mix(in srgb, var(--accent) 4%, transparent);

  --ink-55: rgba(16, 16, 24, 0.55);
  --ink-50: rgba(16, 16, 24, 0.5);
  --ink-35: rgba(16, 16, 24, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--white); }
body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, p { margin: 0; }
::selection { background: var(--accent); color: var(--white); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.page { min-height: 100vh; display: flex; flex-direction: column; background: var(--white); }
.page > main { flex: 1; }

/* Content wrappers */
.wrap { max-width: 1240px; margin: 0 auto; padding-left: 48px; padding-right: 48px; }
.wrap--narrow { max-width: 1000px; }

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.back-link {
  display: inline-block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.back-link:hover { text-decoration: underline; }

/* Ozone "three dots" motif */
.dots { display: flex; gap: 10px; }
.dots span { width: 16px; height: 16px; border-radius: 50%; background: var(--white); }
.dots--sm span { width: 14px; height: 14px; }
.dots--xs span { width: 12px; height: 12px; }

/* ---------- Buttons / pills ---------- */
.btn {
  display: inline-block;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: 2px solid transparent;
}
.btn:hover { text-decoration: none; }
.btn--arrow:hover { transform: translateX(6px); }

/* white pill on accent background → inverts on hover */
.btn--ghost-white { color: var(--white); border-color: var(--white); background: transparent; }
.btn--ghost-white:hover { background: var(--white); color: var(--accent); }

/* accent-outline pill on white → fills on hover */
.btn--ghost-accent { color: var(--accent); border-color: var(--accent); background: transparent; }
.btn--ghost-accent:hover { background: var(--accent); color: var(--white); }

/* solid accent pill */
.btn--solid-accent { color: var(--white); background: var(--accent); border-color: var(--accent); }
/* solid white pill (accent text) */
.btn--solid-white { color: var(--accent); background: var(--white); border-color: var(--white); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.35);
}
.site-header__logo { height: 58px; width: auto; cursor: pointer; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav__link {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  white-space: nowrap;
}
.site-nav__link:hover { border-bottom-color: var(--white); text-decoration: none; }
.site-nav__cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid var(--white);
  padding: 10px 22px;
  white-space: nowrap;
}

/* Mobile nav toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--white);
  border-radius: 6px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =====================================================
   HERO — split variant (blue/white, per client draft)
   ===================================================== */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--accent);
  min-height: 640px;
}
.hero-split__copy {
  padding: 80px 56px 80px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.hero-split__lead {
  color: var(--white);
  font-size: 33px;
  line-height: 1.3;
  font-weight: 400;
  max-width: 660px;
  text-wrap: pretty;
}
.hero-split__lead strong { font-weight: 700; }
.hero-split__foot { display: flex; flex-direction: column; gap: 30px; align-items: flex-start; }
.hero-split__claims { display: flex; flex-direction: column; gap: 12px; }
.hero-split__claim {
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  text-wrap: pretty;
}
.hero-split__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-split__actions .btn { font-size: 22px; font-weight: 600; padding: 14px 40px; }
.hero-split__grid {
  background: var(--white);
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-content: center;
  gap: 20px;
}
.hero-photo {
  position: relative;
  min-height: 260px;
  min-width: 0;
  overflow: hidden;
  background: var(--sand);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Corner slide-in — staggered convergence */
.hero-photo--tl { animation: slideTL 0.6s var(--ease) both; }
.hero-photo--tr { animation: slideTR 0.6s var(--ease) 0.12s both; }
.hero-photo--bl { animation: slideBL 0.6s var(--ease) 0.24s both; }
.hero-photo--br { animation: slideBR 0.6s var(--ease) 0.36s both; }

/* =====================================================
   HOME — "Pre každý šport"
   ===================================================== */
.section { padding: 88px 48px 72px; }
.section__intro {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
  max-width: 820px;
  margin: 20px 0 52px;
  text-wrap: pretty;
}
.eyebrow + .section__intro { margin-top: 20px; }

.sport-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.sport-card {
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}
.sport-card:hover { transform: translateY(-3px); box-shadow: 6px 6px 0 var(--accent); }
.sport-card__toggle {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  text-align: left;
}
.sport-card__media { height: 190px; border-bottom: 1.5px solid var(--accent); overflow: hidden; background: var(--sand); }
.sport-card__media img { width: 100%; height: 100%; object-fit: cover; }
.sport-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
}
.sport-card__title { color: var(--accent); font-size: 19px; font-weight: 700; }
.sport-card__kicker { color: var(--ink-55); font-size: 13px; margin-top: 4px; }
.sport-card__mark { color: var(--accent); font-size: 28px; font-weight: 400; line-height: 1; }
.sport-card__body {
  padding: 0 22px 24px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  animation: reveal 0.25s ease;
}

.pullquote {
  margin-top: 56px;
  border-left: 4px solid var(--accent);
  padding: 6px 0 6px 28px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 760px;
  text-wrap: pretty;
}

/* Index of pages ("Zistite viac") */
.index-band { background: var(--sand); border-top: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); }
.index-band .wrap { padding-top: 72px; padding-bottom: 72px; }
.index-list { margin-top: 32px; }
.index-row {
  display: flex;
  align-items: baseline;
  gap: 28px;
  border-top: 1.5px solid var(--accent);
  padding: 22px 8px;
  cursor: pointer;
  transition: background 0.2s, padding-left 0.25s;
  color: var(--accent);
}
.index-row:hover { background: var(--accent); padding-left: 28px; text-decoration: none; }
.index-row:hover, .index-row:hover * { color: var(--white); }
.index-row:hover .index-row__num { opacity: 0; }
.index-row__num { font-size: 14px; font-weight: 600; opacity: 0.7; transition: opacity 0.2s; }
.index-row__title { font-size: 27px; font-weight: 600; flex: 1; }
.index-row__arrow { font-size: 24px; }

/* Cenník (price list) */
.cennik { scroll-margin-top: 90px; }
.cennik__title { font-size: 30px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.cennik__note { color: var(--ink-50); font-size: 14px; margin-bottom: 40px; }
.cennik__list { max-width: 820px; }
.cennik__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-top: 1.5px solid var(--accent-30);
  padding: 18px 4px;
}
.cennik__item { font-size: 18px; color: var(--ink); }
.cennik__lead { flex: 1; border-bottom: 1.5px dotted var(--accent-30); }
.cennik__price { font-size: 18px; font-weight: 600; color: var(--accent); white-space: nowrap; }

/* Pick-up teaser band */
.teaser { background: var(--accent); border-top: 1.5px solid var(--accent); }
.teaser .wrap {
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.teaser__title { color: var(--white); font-size: 36px; font-weight: 600; line-height: 1.25; }
.teaser .btn { font-size: 20px; font-weight: 600; padding: 16px 40px; }

/* =====================================================
   INTERIOR PAGES — shared
   ===================================================== */
.article { padding: 72px 48px 96px; }
.article__num { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin: 44px 0 16px; }
.article h1 {
  color: var(--accent);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 40px;
  max-width: 760px;
  text-wrap: pretty;
}
.article h2 { color: var(--accent); font-size: 29px; font-weight: 700; margin: 0 0 20px; }
.lead { font-size: 22px; line-height: 1.55; color: var(--ink); max-width: 760px; text-wrap: pretty; }
.lead strong { color: var(--accent); }
.body-text { font-size: 17.5px; line-height: 1.7; color: var(--ink); max-width: 760px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-28 { margin-bottom: 28px; }
.mb-36 { margin-bottom: 36px; }
.mb-44 { margin-bottom: 44px; }
.mb-56 { margin-bottom: 56px; }

/* Accent statement box (white text on accent) */
.statement { background: var(--accent); color: var(--white); padding: 40px 44px; font-size: 20px; line-height: 1.6; text-wrap: pretty; }
.statement--max { max-width: 760px; }
.statement strong { color: var(--white); }

/* Blockquote (accent left rule) */
.quote {
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 32px;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.35;
  text-wrap: pretty;
}
.quote--lg { font-size: 30px; max-width: 680px; }

/* Photo frame */
.photo-frame { border: 1.5px solid var(--accent); overflow: hidden; background: var(--sand); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  border: 1.5px solid var(--accent);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: var(--sand);
}
.photo-placeholder span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ---------- Accordion (benefits / disclosure rows) ---------- */
.accordion { border-bottom: 1.5px solid var(--accent-30); }
.acc-item { border-top: 1.5px solid var(--accent-30); }
.acc-head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  width: 100%;
  background: transparent;
  border: none;
  font-family: inherit;
  text-align: left;
}
.acc-head:hover { background: var(--accent-04); }
.acc-num { color: var(--accent); font-size: 14px; font-weight: 600; min-width: 30px; }
.acc-titles { flex: 1; }
/* These are spans (they live inside a <button>), so they must be blockified
   or the kicker would sit inline beside the title instead of under it. */
.acc-title { display: block; color: var(--accent); font-size: 23px; font-weight: 600; line-height: 1.3; }
.acc-kicker { display: block; color: var(--ink-50); font-size: 14px; margin-top: 4px; }
.acc-mark { color: var(--accent); font-size: 30px; line-height: 1; }
.acc-body {
  padding: 0 4px 30px 58px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 720px;
  white-space: pre-line;
  animation: reveal 0.25s ease;
}
.acc-body[hidden] { display: none; }

/* Simple disclosure (no number, centred mark) — used on "Čo je ozón" */
.disclosure { border-top: 1.5px solid var(--accent-30); border-bottom: 1.5px solid var(--accent-30); margin: 44px 0; }
.disclosure__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  width: 100%;
  background: transparent;
  border: none;
  font-family: inherit;
  text-align: left;
}
.disclosure__head:hover { background: var(--accent-04); }
.disclosure__title { color: var(--accent); font-size: 23px; font-weight: 600; }
.disclosure__mark { color: var(--accent); font-size: 30px; line-height: 1; }
.disclosure__body { padding: 0 4px 30px; font-size: 17px; line-height: 1.7; color: var(--ink); max-width: 720px; animation: reveal 0.25s ease; }
.disclosure__body[hidden] { display: none; }

/* Funfact box (accent bg, expandable) — Prečo ozón */
.funfact { background: var(--accent); padding: 44px 48px; }
.funfact__label { color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.funfact__lead { color: var(--white); font-size: 21px; font-weight: 500; line-height: 1.5; text-wrap: pretty; }
.funfact__body { color: rgba(255, 255, 255, 0.92); font-size: 16.5px; line-height: 1.7; margin-top: 22px; animation: reveal 0.25s ease; }
.funfact__body[hidden] { display: none; }
.funfact__toggle {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--white);
  padding: 10px 24px;
  cursor: pointer;
}

/* "Čo je ozón" — O₂ → O₃ diagram */
.molecule { border: 1.5px solid var(--accent); padding: 44px 40px; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 44px; }
.molecule__group { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.molecule__atoms { display: flex; gap: 10px; }
.molecule__atoms--o3 { align-items: flex-end; }
.molecule__atoms span { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); }
.molecule__atoms--o3 span:nth-child(2) { margin-bottom: 22px; }
.molecule__label { color: var(--accent); font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.molecule__arrow { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.molecule__arrow-sign { color: var(--accent); font-size: 34px; }
.molecule__arrow-note { color: var(--ink-55); font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }

/* Eco banner on "Čo je ozón" */
.eco-banner { background: var(--accent); padding: 36px 44px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.eco-banner__text { color: var(--white); font-size: 20px; font-weight: 600; flex: 1; min-width: 280px; line-height: 1.5; }

/* Refresh page — frequency callout */
.frequency { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; border: 1.5px solid var(--accent); padding: 48px 44px; }
.frequency__big { color: var(--accent); font-size: 88px; font-weight: 700; line-height: 1; white-space: nowrap; }
.frequency__unit { color: var(--accent); font-size: 22px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }
.frequency__text { font-size: 17.5px; line-height: 1.7; color: var(--ink); }
.cta-row { margin-top: 48px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-row .btn { font-size: 18px; font-weight: 600; padding: 14px 36px; }

/* Pick-up & Delivery page */
.pickup-hero { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 40px; align-items: center; margin: 44px 0 56px; }
.pickup-hero h1 { margin: 0 0 24px; }
.pickup-video { border: 1.5px solid var(--accent); min-height: 300px; position: relative; overflow: hidden; }
.pickup-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-bottom: 56px; }
.step { border: 1.5px solid var(--accent); padding: 28px 26px; }
.step__num { color: var(--accent); font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.step__title { color: var(--accent); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.step__text { font-size: 15.5px; line-height: 1.65; color: var(--ink); }
.chip-block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; align-items: stretch; }
.chip-block__panel { background: var(--accent); padding: 40px; }
.chip-block__label { color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.chip-block__lead { color: var(--white); font-size: 21px; font-weight: 600; line-height: 1.45; margin-bottom: 18px; text-wrap: pretty; }
.chip-block__text { color: rgba(255, 255, 255, 0.92); font-size: 16px; line-height: 1.7; }

/* =====================================================
   KONTAKT — order form
   ===================================================== */
.form-grid { max-width: 760px; }
/* The fields live in a <fieldset> so they can all be disabled at once while
   the site is pre-launch. Reset the fieldset chrome and carry the grid here. */
.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.form-fields[disabled] { opacity: 0.55; }
.form-fields[disabled] input,
.form-fields[disabled] textarea { cursor: not-allowed; }

/* Pre-launch notice above the locked form */
.notice {
  border: 1.5px solid var(--accent);
  border-left-width: 4px;
  padding: 22px 26px;
  max-width: 760px;
  margin-bottom: 36px;
}
.notice__text { font-size: 16.5px; line-height: 1.6; color: var(--ink); }
.notice__phone {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.notice__phone:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .notice__phone { font-size: 23px; }
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.field input {
  border: none;
  border-bottom: 1.5px solid var(--accent-40);
  padding: 10px 2px;
  font-size: 17px;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  outline: none;
}
.field input:focus { border-bottom: 1.5px solid var(--accent); }
.field textarea {
  border: 1.5px solid var(--accent-40);
  padding: 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  outline: none;
  resize: vertical;
}
.field textarea:focus { border: 1.5px solid var(--accent); }
input::placeholder, textarea::placeholder { color: var(--ink-35); }

/* GDPR consent */
.consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 12px; }
.consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); flex: none; }
.consent label { font-size: 14px; line-height: 1.55; color: var(--ink); font-weight: 400; letter-spacing: 0; text-transform: none; }
.consent a { text-decoration: underline; }

/* Reassurance line between the fields and the submit button */
.form-note {
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.form-actions { grid-column: 1 / -1; }
.form-actions .btn { font-size: 18px; font-weight: 600; padding: 14px 44px; }

/* Honeypot — visually hidden */
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form-error { grid-column: 1 / -1; color: #b00020; font-size: 15px; }
.form-error[hidden] { display: none; }

/* Success state */
.form-success { border: 1.5px solid var(--accent); padding: 56px 48px; max-width: 760px; margin-top: 40px; animation: reveal 0.3s ease; }
.form-success[hidden] { display: none; }
.form-success .dots { margin-bottom: 24px; }
.form-success .dots span { background: var(--accent); }
.form-success__title { color: var(--accent); font-size: 32px; font-weight: 700; margin-bottom: 14px; }
.form-success__text { font-size: 17.5px; line-height: 1.65; color: var(--ink); margin-bottom: 32px; }
.form-success__reset { color: var(--accent); font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; background: none; border: none; font-family: inherit; padding: 0; }
.form-success__reset:hover { text-decoration: underline; }

/* Privacy / legal page */
.legal { font-size: 16.5px; line-height: 1.7; color: var(--ink); max-width: 760px; }
.legal h2 { font-size: 22px; margin: 40px 0 12px; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--accent); border-top: 1.5px solid var(--white); }
.site-footer .wrap { padding-top: 64px; padding-bottom: 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.site-footer__brand { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.site-footer__logo { height: 74px; width: auto; cursor: pointer; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col__label { color: rgba(255, 255, 255, 0.6); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a, .footer-col span { color: var(--white); font-size: 15px; }
.footer-col a { cursor: pointer; }
.footer-col a:hover { text-decoration: underline; }
.site-footer__legal .wrap { display: block; padding-top: 0; padding-bottom: 32px; }
.site-footer__legal-inner { border-top: 1px solid rgba(255, 255, 255, 0.3); padding-top: 20px; color: rgba(255, 255, 255, 0.55); font-size: 12.5px; letter-spacing: 0.06em; }
.site-footer__legal-inner a { color: rgba(255, 255, 255, 0.75); }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes reveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes slideTL { from { opacity: 0; transform: translate(-70px, -70px); } to { opacity: 1; transform: none; } }
@keyframes slideTR { from { opacity: 0; transform: translate(70px, -70px); } to { opacity: 1; transform: none; } }
@keyframes slideBL { from { opacity: 0; transform: translate(-70px, 70px); } to { opacity: 1; transform: none; } }
@keyframes slideBR { from { opacity: 0; transform: translate(70px, 70px); } to { opacity: 1; transform: none; } }
@keyframes pageIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
main { animation: pageIn 0.35s ease both; }

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: 0.001ms !important; animation-delay: 0ms !important; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
  .sport-grid { grid-template-columns: 1fr 1fr; }

  /* Six nav links + the pill no longer fit at these widths, so tighten the
     spacing before the mobile menu takes over at 900px. */
  .site-header { padding-left: 28px; padding-right: 28px; }
  .site-nav { gap: 16px; }
  .site-nav__link { letter-spacing: 0.08em; }
  .site-nav__cta { padding: 10px 16px; }
}

@media (max-width: 900px) {
  .wrap { padding-left: 28px; padding-right: 28px; }

  /* Mobile navigation */
  .nav-toggle { display: block; }
  .site-header { padding: 14px 24px; }
  .site-header__logo { height: 46px; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--accent);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 8px 24px 20px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav__link { padding: 14px 0; border-bottom: 1.5px solid rgba(255, 255, 255, 0.18); }
  .site-nav__link:hover { border-bottom-color: rgba(255, 255, 255, 0.18); }
  .site-nav__cta { text-align: center; margin-top: 14px; padding: 14px 22px; }

  /* Hero stacks */
  .hero-split { grid-template-columns: 1fr; min-height: 0; }
  .hero-split__copy { padding: 48px 28px; gap: 28px; }
  .hero-split__lead { font-size: 26px; }
  .hero-split__claim { font-size: 20px; }
  .hero-split__foot { gap: 24px; }
  .hero-split__actions .btn { font-size: 18px; padding: 12px 28px; }
  .hero-split__grid { padding: 28px; }

  .section { padding: 56px 0; }
  .section .wrap, .wrap { }
  .article { padding: 48px 28px 72px; }
  .article h1 { font-size: 34px; }
  .lead { font-size: 19px; }
  .section__intro { font-size: 24px; }

  .index-row__title { font-size: 20px; }

  .frequency { grid-template-columns: 1fr; gap: 24px; padding: 32px 26px; }
  .frequency__big { font-size: 64px; }
  .pickup-hero { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .chip-block { grid-template-columns: 1fr; }
  .molecule { gap: 28px; padding: 32px 24px; }

  .form-fields { grid-template-columns: 1fr; }
  .teaser__title { font-size: 28px; }

  .site-footer .wrap { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .sport-grid { grid-template-columns: 1fr; }
  .hero-split__grid { grid-template-columns: 1fr 1fr; }
  .article h1 { font-size: 28px; }
  .quote--lg { font-size: 24px; }
}

/* The section paddings above use .section on the wrapper element; interior
   section wrappers include their own horizontal padding via .wrap. */
