/* ============================================================
   SUREFOOT V2 — GLOBAL STYLES
   Matches surefoot.com brand tokens exactly.
   League Gothic (headings) + Commissioner (body)
   ============================================================ */

/* Commissioner loaded via <link> in each page <head> to avoid the @import
   waterfall (parse CSS → fetch CSS → fetch woff2). */

@font-face {
  font-family: "League Gothic";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: block;
  src: url('/images/league-gothic-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "League Gothic";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: block;
  src: url('/images/league-gothic-ext2.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "League Gothic";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: block;
  src: url('/images/league-gothic-latin.woff2') format('woff2');
}

:root {
  --red: #e70000;
  --red-dark: #c20000;   /* hover/pressed state of --red */
  --black: #111;
  --white: #fff;
  --grey: #eef0ef;
  --grey-30: #6e6e6e;   /* muted secondary text — AA-readable on white (5.1:1) */
  --grey-90: #282828;
  --grey-300: #d9dce1;
  --light-grey: #f8f8f8;   /* matches the studio-grey baked into product-photo backgrounds */
  --max-width: 1440px;
  --font-display: "League Gothic", Impact, sans-serif;
  --font-body: "Commissioner", -apple-system, sans-serif;
  --heading-ls: -0.015em;
}

*, *::before, *::after { box-sizing: border-box; padding: 0; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.625rem;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  max-width: 100vw;
  /* Clip sideways overflow WITHOUT making body a scroll container.
     overflow-x: hidden computes overflow-y to auto, which silently made
     body the page scroller — on iOS that detaches position:fixed chrome
     (topbar/build bar) during rubber-band overscroll at the page bottom.
     clip has no scroll mechanism, so the viewport stays the scroller.
     hidden stays first as the fallback for pre-16 Safari. */
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
ul, ol { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--heading-ls);
  text-transform: uppercase;
  line-height: 1;
}

/* Font-loading fade-in — paired with inline fonts-ready script in <head>.
   Headings stay invisible until League Gothic + Commissioner resolve, then
   fade in together. Avoids FOUT pop-in. */
h1, h2, h3, h4, h5, h6,
.heading-lrg, .heading, .heading-m {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
html.fonts-ready h1,
html.fonts-ready h2,
html.fonts-ready h3,
html.fonts-ready h4,
html.fonts-ready h5,
html.fonts-ready h6,
html.fonts-ready .heading-lrg,
html.fonts-ready .heading,
html.fonts-ready .heading-m { opacity: 1; }
.heading-lrg { font-size: clamp(3rem, 7vw, 5.125rem); line-height: 0.92; }
.heading     { font-size: clamp(2rem, 5vw, 3.875rem); line-height: 0.95; }
.heading-m   { font-size: clamp(1.5rem, 3.5vw, 2.625rem); line-height: 0.98; }
.eyebrow {
  font-size: 0.75rem;
  line-height: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 80px; } }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 15px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  outline: 1px solid var(--red);
}
.btn--red:hover { background: transparent; color: var(--red); }
.btn--outline {
  background: transparent;
  color: var(--red);
  outline: 1px solid var(--red);
}
.btn--outline:hover { background: var(--red); color: var(--white); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  outline: 1px solid var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--black); }
.btn--white-fill {
  background: var(--white);
  color: var(--black);
  outline: 1px solid var(--white);
}
.btn--white-fill:hover { background: transparent; color: var(--white); }

/* ---------- LINK WITH ARROW ---------- */
.link-arrow {
  position: relative;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--red);
  font-weight: 400;
  padding-right: 20px;
}
.link-arrow::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.2s ease;
}
.link-arrow:hover::after { transform: translateX(4px); }

/* Announcement bar removed — CTAs live in the main nav. */

/* ---------- NAVIGATION ---------- */
.nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
@media (min-width: 768px) { .nav__inner { padding: 0 40px; } }

.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 32px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.15s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--red); }
.nav__link--active { color: var(--red); }
.nav__chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.nav__item--open .nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--black);
  border-top: 2px solid var(--red);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.nav__item--open .nav__dropdown,
.nav__item:focus-within .nav__dropdown,
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown--wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px;
  gap: 8px 40px;
}
.nav__dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  transition: color 0.15s ease, padding-left 0.15s ease;
  text-transform: none;
}
.nav__dropdown--wide a { padding: 8px 0; }
.nav__dropdown a:hover { color: var(--red); padding-left: 28px; }
.nav__dropdown--wide a:hover { padding-left: 0; color: var(--red); }
.nav__dropdown-section { display: contents; }
.nav__dropdown-label {
  grid-column: 1 / -1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-30);
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 4px;
}

/* ---------- MEGA MENU ---------- */
.nav__item--mega { position: static; }

.nav__mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 68px;
  background: var(--black);
  border-top: 2px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 200;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.nav__item--open .nav__mega,
.nav__item:hover .nav__mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__mega-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: start;
}
.nav__mega-col {
  padding: 0;
}
.nav__mega-col + .nav__mega-col {
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 80px;
  margin-left: -40px;
}
.nav__mega-col-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--red);
  line-height: 1;
}
.nav__mega-col a {
  display: block;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color 0.15s ease, padding-left 0.15s ease;
  text-transform: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__mega-col a:last-child { border-bottom: 0; }
.nav__mega-col a:hover { color: var(--white); padding-left: 6px; }
.nav__mega-explore {
  color: var(--red) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.07em !important;
  margin-top: 4px;
  border-bottom: 0 !important;
}
.nav__mega-explore:hover { color: var(--red) !important; opacity: 0.8; padding-left: 0 !important; }

/* Nav CTAs */
.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__actions .btn { padding: 10px 18px; font-size: 12px; letter-spacing: 0.08em; white-space: nowrap; }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.2s ease; }
.nav__mobile { display: none; }

@media (max-width: 960px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile {
    display: block;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px 24px;
  }
  .nav__mobile a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__mobile a:hover { color: var(--red); }
  .nav__mobile-section { margin-bottom: 16px; }
  .nav__mobile-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--grey-30);
    padding: 16px 0 8px;
  }
  .nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .nav__mobile-actions .btn { display: block; width: 100%; text-align: center; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__bg-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__bg-placeholder span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  color: var(--white);
}
@media (min-width: 768px) { .hero__content { padding: 80px 80px; } }
.hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: var(--heading-ls);
  text-transform: uppercase;
  max-width: 820px;
  margin-bottom: 32px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero__trust span::before { content: "— "; }

/* ---------- LOCATION TICKER ---------- */
.ticker {
  background: var(--white);
  border-top: 1px solid var(--grey-300);
  border-bottom: 1px solid var(--grey-300);
  overflow: hidden;
  padding: 0;
}
.ticker__row {
  overflow: hidden;
  padding: 10px 0;
}
.ticker__row:not(:last-child) { border-bottom: 1px solid var(--grey-300); }
/* Track = two IDENTICAL halves (each: items + trailing gap), animated to
   -50% — lands exactly at the start of the second half, so the loop is
   seamless. Gap lives INSIDE the halves: a flex gap on the track itself
   put the -50% point half-a-gap off and the loop visibly jumped.
   translate3d + will-change keep the long strip on a pre-rasterized
   compositor layer — iOS was painting tiles late mid-scroll (names cut
   off / dead space that "populated" later). */
.ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.ticker__half {
  display: flex;
  gap: 56px;
  padding-right: 56px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker__row--right .ticker__track { animation: marquee 45s linear infinite reverse; }
.ticker__row--left .ticker__track { animation: marquee 45s linear infinite; }
.ticker__row:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.63px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.12s ease;
  line-height: 1.1;
}
.ticker__item:hover { color: var(--red); }
/* Mobile: smaller type = more names in frame (constant stream) AND a much
   smaller animated layer for iOS to rasterize. */
@media (max-width: 700px) {
  .ticker__item { font-size: 32px; }
  .ticker__half { gap: 40px; padding-right: 40px; }
}
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ---------- SECTION SHARED ---------- */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section--black { background: var(--black); color: var(--white); }
.section--grey { background: var(--grey); }
.section--red { background: var(--red); color: var(--white); }
.section--dark { background: var(--grey-90); color: var(--white); }

/* ---------- SHOES LAUNCH SECTION ---------- */
.shoes-launch {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.shoes-launch::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.shoes-launch__header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.shoes-launch__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.shoes-launch__h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: var(--heading-ls);
  text-transform: uppercase;
  max-width: 720px;
}
.shoes-launch__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-top: 20px;
}
.shoes-launch__actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
@media (max-width: 768px) {
  .shoes-launch__header { grid-template-columns: 1fr; }
  .shoes-launch__actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}

/* Shoe cards */
.shoe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 1024px) { .shoe-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .shoe-grid { grid-template-columns: 1fr; } }

.shoe-card {
  background: var(--grey-90);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.2s ease;
  text-decoration: none;
  color: var(--white);
}
.shoe-card:hover { background: #333; }
.shoe-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shoe-card__media img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.shoe-card:hover .shoe-card__media img { transform: scale(1.04); }
.shoe-card__media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.shoe-card__info { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.shoe-card__name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}
.shoe-card__hook {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  flex: 1;
}
.shoe-card__price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  margin-bottom: 16px;
}
.shoe-card__cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.15s ease, color 0.15s ease;
}
.shoe-card:hover .shoe-card__cta { gap: 14px; color: var(--red); }
.shoe-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}

/* ---------- SUREFOOT DIFFERENCE ---------- */
.difference {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.difference__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.difference__features { display: grid; gap: 40px; }
.difference__feature-title {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 12px;
}
.difference__feature-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 400px;
}
.difference__feature-link { margin-top: 10px; }
.difference__boot {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.difference__boot img { max-width: 480px; width: 100%; }
@media (max-width: 900px) {
  .difference__inner { grid-template-columns: 1fr; }
  .difference__boot { order: -1; }
  .difference__boot img { max-width: 320px; }
}

/* ---------- CHANGE THE WAY YOU SKI ---------- */
.ski-benefits {
  position: relative;
  color: var(--white);
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--black);
}
.ski-benefits__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.ski-benefits__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ski-benefits__label {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
  letter-spacing: var(--heading-ls);
  text-transform: uppercase;
  border-right: 2px solid var(--red);
  padding-right: 48px;
}
.ski-benefits__benefit-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.ski-benefits__benefit-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: var(--heading-ls);
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--white);
}
.ski-benefits__benefit-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 900px) {
  .ski-benefits__inner { grid-template-columns: 1fr 1fr; }
  .ski-benefits__label { grid-column: 1 / -1; border-right: 0; border-bottom: 2px solid var(--red); padding-right: 0; padding-bottom: 24px; }
}
@media (max-width: 600px) {
  .ski-benefits__inner { grid-template-columns: 1fr; }
}

/* ---------- ATHLETES ---------- */
.athletes {
  background: var(--white);
  padding: clamp(64px, 8vw, 120px) 0;
}
.athletes__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.athlete-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 900px) { .athlete-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .athlete-grid { grid-template-columns: 1fr; } }

.athlete-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--grey-90);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.athlete-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.athlete-card:hover .athlete-card__photo { transform: scale(1.04); }
.athlete-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}
.athlete-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.athlete-card__info {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: var(--white);
}
.athlete-card__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}
.athlete-card__sport {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.athlete-card__quote {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

/* ---------- PRESS ---------- */
.press {
  background: var(--grey);
  padding: clamp(56px, 7vw, 96px) 0;
}
.press__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.press__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 768px) { .press__grid { grid-template-columns: 1fr; } }
.press-card {
  background: var(--white);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.15s ease;
  text-decoration: none;
  color: var(--black);
  overflow: hidden;
}
.press-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grey);
  flex-shrink: 0;
}
.press-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.press-card:hover .press-card__thumb img { transform: scale(1.03); }
.press-card__body {
  padding: 28px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.press-card:hover { background: var(--light-grey); }
.press-card__pub {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--red);
}
.press-card__headline {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
}
.press-card__excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
  flex: 1;
}
.press-card__date {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-30);
}

/* Press logo strip */
.press-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  align-items: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--grey-300);
}
.press-logos__label {
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-30);
}
.press-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--grey-30);
  transition: color 0.15s ease;
  cursor: default;
}
.press-logo:hover { color: var(--black); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 32px;
}
@media (min-width: 1024px) { .footer { padding: 120px 0 48px; } }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand .footer__logo { margin-bottom: 20px; }
.footer__brand .footer__logo img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer__brand p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
  margin-bottom: 24px;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s ease;
}
.footer__social a:hover { color: var(--white); }
.footer__col h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col ul li a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  transition: color 0.15s ease;
  position: relative;
  display: inline-block;
}
.footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 72px;
  border-bottom: 3px solid var(--red);
}
.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.page-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  line-height: 0.92;
  letter-spacing: var(--heading-ls);
  text-transform: uppercase;
  max-width: 800px;
  margin-bottom: 20px;
}
.page-hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}

/* ---------- PRESS PAGE ---------- */
.press-page { background: var(--white); padding: clamp(56px, 7vw, 96px) 0; }
.press-pub-strip {
  background: var(--grey);
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-300);
}
.press-pub-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: center;
  justify-content: center;
}
.press-pub-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey-30);
  transition: color 0.15s ease;
  cursor: default;
}
.press-pub-name:hover { color: var(--black); }
.press-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}
@media (max-width: 900px) { .press-articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .press-articles-grid { grid-template-columns: 1fr; } }
.press-article-card {
  background: var(--white);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--grey-300);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  color: var(--black);
}
.press-article-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.press-article-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grey);
}
.press-article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.press-article-card:hover .press-article-card__thumb img { transform: scale(1.03); }

.press-article-card__pub {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
}
.press-article-card__headline {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
}
.press-article-card__excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: #555;
  flex: 1;
}
.press-article-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.press-article-card__date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-30);
}
.press-article-card__read {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.press-article-card:hover .press-article-card__read::after { content: " →"; }

/* ---------- ATHLETES PAGE ---------- */
.athletes-page { background: var(--white); padding: clamp(56px, 7vw, 80px) 0; }
.athletes-full-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 1200px) { .athletes-full-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 900px)  { .athletes-full-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .athletes-full-grid { grid-template-columns: repeat(2, 1fr); } }
.athlete-tile {
  background: var(--grey-90);
  aspect-ratio: 2/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.2s ease;
}
.athlete-tile:hover { background: #333; }
.athlete-tile__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.athlete-tile:hover .athlete-tile__photo { transform: scale(1.04); }
.athlete-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.athlete-tile__discipline-dot {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 8px;
  height: 8px;
  background: var(--red);
  z-index: 2;
}
.athlete-tile__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}
.athlete-tile__discipline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}
.athlete-tile__location {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
}
.athlete-tile__quote {
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 10px;
  position: relative;
  z-index: 2;
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* Hide iOS Safari big play-button overlay on autoplay/background videos */
video[autoplay]::-webkit-media-controls-start-playback-button,
video[autoplay]::-webkit-media-controls-overlay-play-button,
video[autoplay]::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none !important;
}

/* Visually-hidden but screen-reader-accessible (a11y labels). */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
