:root {
  --bg: #0b0c0e;
  --surface: #15171b;
  --surface-2: #1b1e23;
  --line: #2d3138;
  --text: #f6f6f2;
  --muted: #a9adb5;
  --accent: #d8ff2f;
  --accent-deep: #94ad1e;
  --danger: #ff6b56;
  --max: 1180px;
  --header: 78px;
  --radius: 10px;
  --shadow: 0 28px 70px rgb(0 0 0 / 0.28);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  background: var(--accent);
  color: #08090a;
  font-weight: 900;
}

.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(11 12 14 / 0.92);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 112px;
  height: 46px;
  object-fit: contain;
}

.partner-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
  white-space: nowrap;
}

.partner-mark small {
  color: #83878d;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-mark img { width: 150px; height: 22px; object-fit: contain; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.8rem;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 0.6rem 0;
  color: #d9dadd;
  font-size: 0.875rem;
  font-weight: 800;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.2rem;
  height: 2px;
  background: var(--accent);
  transition: right 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--text); }
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 5px;
  background: var(--accent);
  color: #090a0b;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: 180ms ease;
}

.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: var(--header) 0 auto 0;
  z-index: 35;
  display: none;
  padding: 1rem 24px 1.5rem;
  border-bottom: 1px solid var(--line);
  background: #0f1114;
  box-shadow: var(--shadow);
}

.mobile-menu.open { display: grid; }
.mobile-menu a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 850;
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .header-action { margin-top: 0.85rem; }

.hero,
.subhero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero { min-height: 640px; display: flex; align-items: center; }
.subhero { min-height: 430px; display: flex; align-items: flex-end; }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
}

.hero-picture .hero-media { position: static; }
.media-bike { object-position: center 48%; }
.media-aerial { object-position: center 43%; }
.media-side { object-position: center 40%; }
.media-kickers { object-position: center 44%; }
.media-pricing { object-position: center 50%; }
.media-training-park { object-position: center 50%; }
.media-snow { object-position: 68% 36%; }
.media-first-visit { object-position: center 48%; }

.hero::after,
.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(5 6 7 / 0.95) 0%, rgb(5 6 7 / 0.72) 46%, rgb(5 6 7 / 0.08) 84%),
    linear-gradient(0deg, rgb(5 6 7 / 0.68) 0%, transparent 56%);
}

.hero-content { padding: 5rem 0; }
.subhero-content { padding: 5.5rem 0 3.25rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Impact, "Arial Black", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.5rem, 6.4vw, 6.2rem);
  line-height: 0.92;
}

.subhero h1 { font-size: clamp(3.2rem, 5.4vw, 5rem); }
h2 { margin-bottom: 1rem; font-size: clamp(2.25rem, 4vw, 3.75rem); line-height: 1; }
h3 { margin-bottom: 0.7rem; font-size: 1.25rem; line-height: 1.25; }

.lead {
  max-width: 680px;
  margin-bottom: 1.85rem;
  color: #e4e5e2;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}

.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--accent);
  color: #090a0b;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease;
}

.button:hover { transform: translateY(-2px); background: #e4ff66; }
.button.secondary { border-color: #777b82; background: rgb(9 10 11 / 0.6); color: var(--text); }
.button.secondary:hover { border-color: var(--accent); background: var(--surface); }

.status-strip { background: var(--accent); color: #0a0b0c; }
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.status-item { min-width: 0; padding: 1.15rem 1.5rem; border-left: 1px solid rgb(0 0 0 / 0.17); }
.status-item:last-child { border-right: 1px solid rgb(0 0 0 / 0.17); }
.status-item small {
  display: block;
  margin-bottom: 0.25rem;
  color: #4c5910;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.status-item strong { display: block; overflow-wrap: anywhere; font-size: 1rem; }
.status-live { display: inline-flex !important; align-items: center; gap: 0.45rem; }
.status-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #0b7b36; box-shadow: 0 0 0 4px rgb(11 123 54 / 0.18); }

.section { padding: 6rem 0; }
.section.compact { padding: 4.5rem 0; }
.section.alt { background: #101216; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 2.25rem; }
.section-head > p { max-width: 520px; margin-bottom: 0; color: var(--muted); font-size: 1rem; }

.editorial-intro { display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: start; gap: clamp(2rem, 6vw, 6rem); }
.editorial-intro h2 { margin-bottom: 0; }
.rich-copy { max-width: 720px; }
.rich-copy p,
.muted-copy { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.rich-copy p:last-child,
.muted-copy:last-child { margin-bottom: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; }

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.card-image { width: 100%; height: 270px; object-fit: cover; }
.card-body { padding: 1.65rem; }
.card-kicker {
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.card p { color: var(--muted); }
.text-link { color: var(--accent); font-size: 0.78rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.feature-card { padding: 1.6rem; border: 1px solid var(--line); background: var(--surface); }
.feature-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.feature-card:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
.feature-number { margin-bottom: 0.6rem; color: var(--accent); font-family: Impact, "Arial Black", sans-serif; font-size: 2.4rem; line-height: 1; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 0.95rem; }
.process-grid { margin-top: 3rem; }
.faq-grid .feature-card { border-radius: var(--radius); }
.spaced-top { margin-top: 1rem; }

.gallery-section { background: #0d0f12; }
.action-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr;
  grid-auto-rows: 470px;
  gap: 1rem;
}
.action-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.action-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}
.action-gallery figure:hover img { transform: scale(1.025); }
.action-gallery .gallery-wide img { object-position: 54% center; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.stat { padding: 2rem; border-right: 1px solid var(--line); background: var(--surface); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: var(--accent); font-family: Impact, "Arial Black", sans-serif; font-size: 3rem; line-height: 1; }
.stat span { display: block; margin-top: 0.65rem; color: var(--muted); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.facility { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; min-height: 440px; margin-bottom: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.facility.reverse .facility-media { order: 2; }
.facility-media { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.facility-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.facility-copy > p { margin: 0 0 1.5rem; color: var(--muted); line-height: 1.75; }
.facility-copy ul { display: grid; gap: 0.75rem; margin: 0 0 1.7rem; padding: 0; list-style: none; }
.facility-copy li { color: #d0d2d6; }
.facility-copy li::before { content: "+"; margin-right: 0.75rem; color: var(--accent); font-weight: 950; }
.facility-actions { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.price-card { position: relative; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.price-card.featured { border: 2px solid var(--accent); transform: translateY(-8px); }
.badge { position: absolute; right: 1.25rem; top: -14px; padding: 0.42rem 0.7rem; border-radius: 4px; background: var(--accent); color: #090a0b; font-size: 0.68rem; font-weight: 950; letter-spacing: 0.08em; text-transform: uppercase; }
.price-label { color: #b2b5bb; font-size: 0.74rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.price { margin: 0.7rem 0 0; font-family: Impact, "Arial Black", sans-serif; font-size: 4.4rem; line-height: 1; }
.price small { font-family: Inter, sans-serif; font-size: 0.95rem; }
.price-meta { min-height: 3rem; color: var(--muted); font-size: 0.9rem; }
.price-card ul { margin: 1.3rem 0 0; padding: 0; list-style: none; }
.price-card li { padding: 0.7rem 0; border-top: 1px solid var(--line); color: #d5d7da; font-size: 0.92rem; }
.price-card li::before { content: "✓"; margin-right: 0.65rem; color: var(--accent); font-weight: 950; }

.price-banner,
.cta-banner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 1.25rem; padding: 2rem; border-radius: var(--radius); background: var(--accent); color: #0a0b0c; }
.price-banner h3,
.cta-banner h3 { margin-bottom: 0.2rem; font-family: Impact, "Arial Black", sans-serif; font-size: clamp(1.6rem, 3vw, 2.35rem); text-transform: uppercase; }
.price-banner p,
.cta-banner p { margin-bottom: 0; color: #46520e; }
.price-banner strong { flex: 0 0 auto; font-family: Impact, "Arial Black", sans-serif; font-size: 3.2rem; line-height: 1; }
.cta-banner .button { border-color: #0a0b0c; background: #0a0b0c; color: var(--text); }

.training-intro { display: grid; grid-template-columns: 1.08fr 0.92fr; align-items: center; gap: 3rem; }
.info-panel { padding: 2rem; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius); background: var(--surface); }
.info-panel small { color: var(--muted); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.info-panel strong { display: block; margin: 0.4rem 0 0.8rem; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.info-panel p { margin: 0; color: var(--muted); }

.trainer-card { display: grid; grid-template-rows: 280px 1fr; overflow: hidden; min-height: 680px; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: var(--radius); background: var(--surface); }
.trainer-photo { width: 100%; height: 100%; object-fit: cover; }
.trainer-card:nth-child(1) .trainer-photo { object-position: center 35%; }
.trainer-card:nth-child(2) .trainer-photo { object-position: center 42%; }
.trainer-card:nth-child(3) .trainer-photo { object-position: center 40%; }
.trainer-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 1.65rem; }
.trainer-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.7; }
.trainer-card .text-link { align-self: flex-start; margin-top: auto; }

.first-visit-cta { margin-top: 3rem; }
.requirements-block { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--line); }
.requirements-head { max-width: 760px; margin-bottom: 1.75rem; }
.requirements-head h2 { margin: 0 0 1rem; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 0.95; text-transform: uppercase; }
.requirements-head > p { margin: 0; color: var(--muted); line-height: 1.75; }
.requirements-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.requirement-card { position: relative; overflow: hidden; padding: clamp(1.6rem, 4vw, 2.4rem); border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: var(--radius); background: var(--surface); }
.requirement-card::after { position: absolute; right: -90px; bottom: -110px; width: 230px; height: 230px; border-radius: 50%; background: rgb(216 255 47 / 0.08); content: ""; filter: blur(4px); pointer-events: none; }
.requirement-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.requirement-top > span { color: var(--accent); font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 3.3rem; line-height: 1; }
.requirement-top small { color: var(--muted); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; }
.requirement-top h3 { margin: 0.2rem 0 0; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1; text-transform: uppercase; }
.requirement-card ul { position: relative; z-index: 1; display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.requirement-card li { padding: 0.85rem 0; border-top: 1px solid var(--line); color: #e1e3e6; line-height: 1.55; }
.requirement-card li::before { margin-right: 0.65rem; color: var(--accent); content: "+"; font-weight: 950; }
.bike-requirements { background: linear-gradient(145deg, rgb(216 255 47 / 0.08), transparent 48%), var(--surface); }
.snow-requirements { border-top-color: #73bfff; background: linear-gradient(145deg, rgb(95 175 255 / 0.1), transparent 48%), var(--surface); }
.snow-requirements::after { background: rgb(95 175 255 / 0.09); }
.snow-requirements .requirement-top > span, .snow-requirements li::before { color: #73bfff; }
.gear-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.gear-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.gear-media { width: 100%; height: 300px; object-fit: cover; }
.gear-card:first-child .gear-media { object-position: center 38%; }
.gear-card:last-child .gear-media { object-position: center 48%; }
.gear-copy { padding: clamp(1.6rem, 4vw, 2.5rem); }
.gear-copy h3 { margin-bottom: 1.5rem; font-family: Impact, "Arial Black", sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); text-transform: uppercase; }
.gear-group + .gear-group { margin-top: 1.5rem; }
.gear-label { margin-bottom: 0.5rem; color: #c6c9cf; font-size: 0.72rem; font-weight: 950; letter-spacing: 0.12em; text-transform: uppercase; }
.gear-label.required { color: var(--accent); }
.gear-list { display: grid; gap: 0.65rem; margin: 0; padding: 0; list-style: none; }
.gear-list li { color: #e1e3e6; line-height: 1.55; }
.gear-list li::before { content: "✓"; margin-right: 0.65rem; color: var(--accent); font-weight: 950; }
.gear-note { margin: 1.5rem 0 0; padding: 1rem 1.1rem; border-left: 3px solid var(--accent); background: rgb(216 255 47 / 0.07); color: #d8dad5; line-height: 1.65; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 1.25rem; }
.contact-panel { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.contact-list { margin: 0; }
.contact-item { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { padding-bottom: 0; border: 0; }
.contact-item dt { margin-bottom: 0.25rem; color: var(--accent); font-size: 0.72rem; font-weight: 950; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-item dd { margin: 0; font-size: 1.1rem; font-weight: 700; }
.contact-item dd span { display: block; color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.contact-actions { margin-top: 1.5rem; }

.map-card { position: relative; isolation: isolate; display: flex; align-items: flex-end; min-height: 500px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); }
.map-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.75) contrast(1.05); opacity: 0.52; }
.map-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgb(8 9 10 / 0.94), transparent 70%); }
.map-content { width: 100%; padding: 2rem; }
.map-content p { max-width: 520px; color: #d6d8d9; }
.map-embed-card { isolation: auto; display: grid; grid-template-rows: minmax(390px, 1fr) auto; align-items: stretch; }
.map-embed-card::after { display: none; }
.map-embed-card iframe { width: 100%; height: 100%; min-height: 390px; border: 0; filter: grayscale(0.2) contrast(1.04); }
.map-embed-card .map-content { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 1.5rem; background: var(--surface); }
.map-embed-card .map-content h3 { margin: 0; font-family: Impact, "Arial Black", sans-serif; font-size: 1.65rem; text-transform: uppercase; }
.map-embed-card .card-kicker { margin-bottom: 0.25rem; }

.hours { display: grid; grid-template-columns: repeat(2, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.hours > div { padding: 1.5rem; background: var(--surface); }
.hours > div + div { border-left: 1px solid var(--line); }
.hours small { display: block; color: var(--muted); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.hours strong { display: block; margin-top: 0.25rem; font-size: 1.4rem; }

.notice-card { padding: 1.5rem; border: 1px solid #516117; border-radius: var(--radius); background: rgb(216 255 47 / 0.08); }
.notice-card strong { color: var(--accent); }
.notice-card p { margin: 0.35rem 0 0; color: #d8dad5; }

.site-footer { padding: 3.5rem 0 6rem; border-top: 1px solid var(--line); background: #090a0c; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; }
.footer-brand p { max-width: 360px; margin: 1rem 0 0; color: var(--muted); }
.footer-logo img { width: 155px; height: auto; }
.footer-title { margin-bottom: 0.8rem; color: var(--muted); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); color: #7f838b; font-size: 0.82rem; }

.mobile-actions { display: none; }

@media (max-width: 1180px) {
  .desktop-nav, .site-header .header-action, .partner-mark { display: none; }
  .menu-toggle { display: block; }
  .nav-wrap { gap: 1.25rem; }
}

@media (max-width: 980px) {
  .hero { min-height: 600px; }
  .status-grid { grid-template-columns: repeat(2, 1fr); }
  .status-item:nth-child(3) { border-top: 1px solid rgb(0 0 0 / 0.17); }
  .status-item:nth-child(4) { border-top: 1px solid rgb(0 0 0 / 0.17); }
  .section-head { display: block; }
  .section-head > p { margin-top: 1rem; }
  .grid-3, .price-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .feature-card, .feature-card:first-child, .feature-card:last-child { border-radius: var(--radius); }
  .price-card.featured { transform: none; }
  .training-intro, .contact-grid { grid-template-columns: 1fr; }
  .editorial-intro { grid-template-columns: 1fr; gap: 1.5rem; }
  .requirements-grid { grid-template-columns: 1fr; }
  .gear-grid { grid-template-columns: 1fr; }
  .trainer-card { min-height: auto; }
  .action-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 350px; }
  .action-gallery .gallery-wide { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header: 70px; }
  .container { width: min(100% - 32px, var(--max)); }
  .site-header { height: var(--header); }
  .brand img { width: 98px; height: 42px; }
  .hero { min-height: 570px; align-items: flex-end; }
  .media-bike { object-position: 58% 48%; }
  .media-pricing { object-position: center 54%; }
  .media-training-park { object-position: center 48%; }
  .subhero { min-height: 400px; }
  .hero::after, .subhero::after { background: linear-gradient(0deg, rgb(5 6 7 / 0.96) 0%, rgb(5 6 7 / 0.62) 72%, rgb(5 6 7 / 0.26) 100%); }
  .hero-content { padding: 5.5rem 0 3.4rem; }
  .subhero-content { padding: 4.5rem 0 2.6rem; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .subhero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3rem); }
  .eyebrow { align-items: flex-start; font-size: 0.7rem; }
  .eyebrow::before { margin-top: 0.45rem; }
  .actions { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; min-height: 54px; }
  .status-grid { grid-template-columns: 1fr 1fr; }
  .status-item { padding: 1rem; }
  .status-item strong { font-size: 0.9rem; }
  .section { padding: 4.5rem 0; }
  .section.compact { padding: 3.5rem 0; }
  .grid-2, .grid-4, .stats, .facility { grid-template-columns: 1fr; }
  .grid-4 { gap: 0.75rem; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .facility.reverse .facility-media { order: 0; }
  .facility-media { height: 260px; min-height: 0; }
  .facility-copy { padding: 2rem 1.4rem; }
  .facility-actions { display: grid; grid-template-columns: 1fr; margin-top: 1.5rem; }
  .card-image { height: 230px; }
  .action-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 270px; gap: 0.75rem; }
  .action-gallery .gallery-wide { grid-column: 1 / -1; height: 250px; }
  .trainer-card { grid-template-rows: 300px 1fr; }
  .price-banner, .cta-banner { display: block; }
  .price-banner strong { display: block; margin: 1rem 0; }
  .cta-banner .button { margin-top: 1rem; }
  .hours { grid-template-columns: 1fr; }
  .hours > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .map-card { min-height: 420px; }
  .map-embed-card .map-content { display: block; }
  .map-embed-card .map-content .button { margin-top: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
  .mobile-actions {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.65rem;
    gap: 0.55rem;
    border-top: 1px solid var(--line);
    background: rgb(10 11 13 / 0.96);
    backdrop-filter: blur(12px);
  }
  .mobile-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 5px; background: var(--surface-2); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
  .mobile-actions a:first-child { background: var(--accent); color: #090a0b; }
}

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


/* WordPress page fallback */
.elementor-page-content { min-height: 70vh; overflow: hidden; }
.elementor-page-content .elementor-section.elementor-section-boxed > .elementor-container,
.elementor-page-content .e-con.e-con-boxed > .e-con-inner { max-width: 1180px; }
.elementor-page-content .elementor-widget-heading h1,
.elementor-page-content .elementor-widget-heading h2,
.elementor-page-content .elementor-widget-heading h3 { color: inherit; }
.wp-page-main { min-height: 70vh; padding-top: 5rem; }
.wp-page-content { max-width: 900px; }
.wp-page-content > h1 { margin: 0 0 2rem; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(3rem, 7vw, 6rem); line-height: .9; text-transform: uppercase; }
.wp-page-content .rich-copy { max-width: none; }
.wp-page-content img { max-width: 100%; height: auto; }
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
/* Większy odstęp między partnerem KIA a menu */
@media (min-width: 1181px) {
  .site-header .nav-wrap { width: min(1240px, calc(100% - 48px)); }
}
/* Finalny odstęp KIA–menu na szerokich ekranach */
@media (min-width: 1328px) {
  .site-header .nav-wrap { width: min(1280px, calc(100% - 48px)); }
  .site-header .desktop-nav { margin-left: 2.5rem; }
}
