/* ============================================
   Biking Page — Aggressive, Bold, Fun
   MASSIVE hero, ACTION shots, trail energy
   ============================================ */

#main-content { padding-top: 0; }

/* ============================================
   HERO — Full-screen video, unapologetic
   ============================================ */
.alp-bike-hero {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.alp-bike-hero__media {
  background: #080a08;
  inset: 0;
  position: absolute;
}

.alp-bike-hero__video {
  display: block;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  will-change: transform;
}

.alp-bike-hero__veil {
  background:
    linear-gradient(to top, rgba(3, 5, 4, .92) 0%, rgba(3, 5, 4, .12) 35%, rgba(3, 5, 4, .06) 55%, rgba(3, 5, 4, .55) 100%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.alp-bike-hero__content {
  max-width: 1100px;
  padding: 0 24px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.alp-bike-hero .alp-eyebrow {
  color: var(--alpine-accent-light, #d6a85c);
  font-size: .82rem;
  letter-spacing: .3em;
}

.alp-bike-hero__content h1 {
  color: #fff;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.82;
  margin: 24px 0 40px;
  text-transform: uppercase;
}

.alp-bike-hero__line {
  display: block;
}

.alp-bike-hero__line--accent {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2.5px rgba(255, 255, 255, .65);
  color: transparent;
  transition: all .6s cubic-bezier(.25, .1, .25, 1);
}

.alp-bike-hero__line--accent.is-active {
  -webkit-text-fill-color: var(--alpine-accent-light, #d6a85c);
  -webkit-text-stroke: 2.5px transparent;
  color: var(--alpine-accent-light, #d6a85c);
  text-shadow:
    0 0 40px rgba(177, 131, 58, .5),
    0 0 80px rgba(177, 131, 58, .25);
}

.alp-bike-letter {
  display: inline-block;
  will-change: transform, color;
}

.alp-bike-hero__sub {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 50ch;
}

.alp-bike-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 52px;
}

.alp-bike-hero .alp-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .5);
  color: #fff;
}

.alp-bike-hero .alp-btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.alp-bike-hero__scroll {
  align-items: center;
  animation: alp-bike-float 2.4s ease-in-out infinite;
  bottom: 36px;
  color: rgba(255, 255, 255, .4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.alp-bike-hero__scroll span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

@keyframes alp-bike-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   STATEMENT — Massive editorial type
   ============================================ */
.alp-bike-statement {
  padding: clamp(120px, 16vw, 260px) 0;
  text-align: center;
}

.alp-bike-statement__inner {
  margin: 0 auto;
  max-width: 920px;
}

.alp-bike-statement__kicker {
  color: var(--alpine-accent);
  font-family: var(--wp--preset--font-family--body-sans);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .2em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.alp-bike-statement__heading {
  color: var(--alpine-text);
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 36px;
}

.alp-bike-statement__heading em {
  color: var(--alpine-brand);
  font-style: italic;
}

.alp-bike-statement__body {
  color: var(--alpine-text-muted);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 58ch;
}

/* ============================================
   MOSAIC — Big, bold, action images
   ============================================ */
.alp-bike-mosaic {
  overflow: hidden;
  padding: 0 clamp(8px, 1vw, 16px);
}

.alp-bike-mosaic__grid {
  display: grid;
  gap: clamp(6px, 1vw, 12px);
  grid-auto-flow: dense;
  grid-auto-rows: clamp(200px, 28vw, 380px);
  grid-template-columns: repeat(3, 1fr);
}

.alp-bike-mosaic__item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.alp-bike-mosaic__item img {
  display: block;
  height: 120%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  will-change: transform;
}

.alp-bike-mosaic__item:hover img {
  transform: scale(1.05);
}

.alp-bike-mosaic__item--tall {
  grid-row: span 2;
}

.alp-bike-mosaic__item--wide {
  grid-column: span 2;
}

/* ============================================
   DIVIDER — Bike graphic between sections
   ============================================ */
.alp-bike-divider {
  align-items: center;
  display: flex;
  gap: clamp(16px, 3vw, 32px);
  justify-content: center;
  padding: clamp(16px, 4vw, 48px) clamp(24px, 6vw, 80px);
}

.alp-bike-divider__line {
  background: var(--alpine-border);
  display: block;
  flex: 1;
  height: 1px;
  max-width: 200px;
}

.alp-bike-divider__icon {
  color: var(--alpine-brand);
  flex-shrink: 0;
  opacity: .6;
}

/* ============================================
   TRAILS — Alternating editorial cards
   ============================================ */
.alp-bike-trails {
  padding: clamp(100px, 14vw, 200px) 0 clamp(40px, 6vw, 80px);
}

.alp-bike-trails__head {
  margin: 0 auto clamp(60px, 8vw, 120px);
  max-width: 700px;
  text-align: center;
}

.alp-bike-trails__head h2 {
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin: 16px 0 20px;
  text-transform: uppercase;
}

.alp-bike-trails__head h2 em {
  color: var(--alpine-brand);
  font-style: italic;
}

.alp-bike-trails__head p {
  color: var(--alpine-text-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.alp-bike-trail {
  display: grid;
  gap: 0;
  grid-template-columns: 1.2fr 1fr;
  min-height: clamp(480px, 60vh, 720px);
}

.alp-bike-trail--reverse {
  direction: rtl;
}

.alp-bike-trail--reverse > * {
  direction: ltr;
}

.alp-bike-trail__image {
  overflow: hidden;
  position: relative;
}

.alp-bike-trail__img-wrap {
  height: 100%;
  overflow: hidden;
}

.alp-bike-trail__img-wrap img {
  display: block;
  height: 110%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  will-change: transform;
}

.alp-bike-trail:hover .alp-bike-trail__img-wrap img,
.alp-bike-trail:hover .alp-bike-trail__img-wrap video {
  transform: scale(1.04);
}

.alp-bike-trail__img-wrap video {
  display: block;
  height: 110%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
  will-change: transform;
}

.alp-bike-trail__badge {
  align-items: center;
  background: var(--alpine-brand);
  border-radius: 50%;
  bottom: 32px;
  color: #fff;
  display: flex;
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  height: clamp(64px, 8vw, 96px);
  justify-content: center;
  left: 32px;
  position: absolute;
  width: clamp(64px, 8vw, 96px);
  z-index: 2;
}

.alp-bike-trail--reverse .alp-bike-trail__badge {
  left: auto;
  right: 32px;
}

.alp-bike-trail__content {
  align-self: center;
  padding: clamp(32px, 5vw, 80px);
}

.alp-bike-trail__content .alp-eyebrow {
  color: var(--alpine-accent);
}

.alp-bike-trail__content h3 {
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 12px 0 20px;
}

.alp-bike-trail__content p {
  color: var(--alpine-text-muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.78;
  margin: 0 0 24px;
  max-width: 48ch;
}

.alp-bike-trail__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.alp-bike-trail__stat {
  align-items: center;
  color: var(--alpine-text-muted);
  display: flex;
  font-size: .9rem;
  font-weight: 600;
  gap: 6px;
  letter-spacing: .02em;
}

.alp-bike-trail__stat svg {
  color: var(--alpine-brand);
  flex-shrink: 0;
}

.alp-btn--outline {
  background: transparent;
  border: 2px solid var(--alpine-brand);
  color: var(--alpine-brand);
  font-weight: 700;
  transition: all .3s ease;
}

.alp-btn--outline:hover {
  background: var(--alpine-brand);
  color: #fff;
}

/* ============================================
   INTERLUDE — Full-bleed massive quote
   ============================================ */
.alp-bike-interlude {
  height: clamp(420px, 65vh, 720px);
  overflow: hidden;
  position: relative;
}

.alp-bike-interlude__img {
  height: 100%;
  width: 100%;
}

.alp-bike-interlude__img img {
  display: block;
  height: 150%;
  object-fit: cover;
  object-position: center 40%;
  width: 100%;
  will-change: transform;
}

.alp-bike-interlude__overlay {
  align-items: center;
  background: linear-gradient(135deg, rgba(3, 5, 4, .82) 0%, rgba(3, 5, 4, .35) 50%, rgba(3, 5, 4, .7) 100%);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 0 clamp(24px, 6vw, 80px);
  position: absolute;
}

.alp-bike-interlude blockquote {
  margin: 0;
}

.alp-bike-interlude blockquote p {
  color: #fff;
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.2;
  max-width: 18ch;
  text-align: center;
}

/* ============================================
   VIDEO — YouTube Embed
   ============================================ */
.alp-bike-video {
  padding: clamp(80px, 12vw, 160px) 0;
}

.alp-bike-video__head {
  margin: 0 auto clamp(40px, 5vw, 64px);
  max-width: 600px;
  text-align: center;
}

.alp-bike-video__head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  text-transform: uppercase;
}

.alp-bike-video__embed {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 24px 80px -20px rgba(0, 0, 0, .25);
}

.alp-bike-video__embed iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

/* ============================================
   WARBURTON BIKE PARK — Dedicated Section
   ============================================ */
.alp-bike-park {
  padding: clamp(100px, 14vw, 220px) 0;
}

.alp-bike-park__head {
  margin: 0 auto clamp(48px, 6vw, 80px);
  max-width: 780px;
  text-align: center;
}

.alp-bike-park__head h2 {
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  margin: 16px 0 28px;
  text-transform: uppercase;
}

.alp-bike-park__head h2 em {
  color: var(--alpine-brand);
  font-style: italic;
}

.alp-bike-park__head p {
  color: var(--alpine-text-muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 56ch;
}

.alp-bike-park__hero {
  border-radius: 20px;
  margin-bottom: clamp(40px, 5vw, 72px);
  overflow: hidden;
}

.alp-bike-park__hero img {
  display: block;
  height: auto;
  transition: transform 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
}

.alp-bike-park__hero:hover img {
  transform: scale(1.03);
}

.alp-bike-park__features {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: clamp(48px, 6vw, 88px);
}

.alp-bike-park__feature {
  background: var(--alpine-surface);
  border: 1px solid var(--alpine-border);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 24px);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.alp-bike-park__feature:hover {
  box-shadow: 0 12px 40px -10px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.alp-bike-park__feature-num {
  color: var(--alpine-brand);
  display: block;
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.alp-bike-park__feature-label {
  color: var(--alpine-text-muted);
  display: block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.alp-bike-park__gallery {
  display: grid;
  gap: clamp(8px, 1vw, 14px);
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(220px, 28vw, 380px);
  margin-bottom: clamp(60px, 8vw, 110px);
}

.alp-bike-park__gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.alp-bike-park__gallery-item--large {
  grid-row: span 2;
}

.alp-bike-park__gallery-item img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
}

.alp-bike-park__gallery-item:hover img {
  transform: scale(1.06);
}

.alp-bike-park__split {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr 1fr;
  margin-bottom: clamp(60px, 8vw, 100px);
}

.alp-bike-park__info h3 {
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 24px;
}

.alp-bike-park__info p {
  color: var(--alpine-text-muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.78;
  margin: 0 0 20px;
}

.alp-bike-park__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.alp-bike-park__map {
  aspect-ratio: auto;
  border-radius: 16px;
  min-height: 400px;
  overflow: hidden;
}

.alp-bike-park__map iframe {
  display: block;
  height: 100%;
  width: 100%;
}

.alp-bike-park__trail-map {
  text-align: center;
}

.alp-bike-park__trail-map h3 {
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.alp-bike-park__map-img {
  border-radius: 16px;
  overflow: hidden;
}

.alp-bike-park__map-img img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/* ============================================
   HIRE — Bike Shop Cards
   ============================================ */
.alp-bike-hire {
  background: color-mix(in srgb, var(--alpine-brand) 4%, var(--alpine-bg));
  padding: clamp(80px, 12vw, 160px) 0;
}

.alp-bike-hire__head {
  margin: 0 auto clamp(48px, 6vw, 80px);
  max-width: 680px;
  text-align: center;
}

.alp-bike-hire__head h2 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 14px 0 20px;
  text-transform: uppercase;
}

.alp-bike-hire__head p {
  color: var(--alpine-text-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.alp-bike-hire__grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(3, 1fr);
}

.alp-bike-hire__card {
  background: var(--alpine-surface);
  border: 1px solid var(--alpine-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow .35s ease;
}

.alp-bike-hire__card:hover {
  box-shadow: 0 24px 64px -16px rgba(0, 0, 0, .2);
  transform: translateY(-8px);
}

.alp-bike-hire__card-logo {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  min-height: 120px;
  padding: clamp(24px, 3vw, 40px);
}

html[data-theme='dark'] .alp-bike-hire__card-logo {
  background: rgba(255, 255, 255, .95);
}

.alp-bike-hire__card-logo img {
  display: block;
  max-height: 72px;
  max-width: 180px;
  object-fit: contain;
  width: auto;
}

.alp-bike-hire__card-body {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 28px);
}

.alp-bike-hire__card-body h3 {
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 600;
  margin: 0;
}

.alp-bike-hire__card-body p {
  color: var(--alpine-text-muted);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}

.alp-bike-hire__card-link {
  align-items: center;
  color: var(--alpine-brand);
  display: inline-flex;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  min-height: 44px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s;
}

.alp-bike-hire__card-link:hover {
  color: var(--alpine-accent);
}

/* ============================================
   FACILITIES — Icon Card Grid
   ============================================ */
.alp-bike-facilities {
  padding: clamp(80px, 12vw, 160px) 0;
}

.alp-bike-facilities__head {
  margin: 0 auto clamp(48px, 6vw, 80px);
  max-width: 600px;
  text-align: center;
}

.alp-bike-facilities__head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  text-transform: uppercase;
}

.alp-bike-facilities__grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  grid-template-columns: repeat(4, 1fr);
}

.alp-bike-facilities__card {
  background: var(--alpine-surface);
  border: 1px solid var(--alpine-border);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  transition: transform .3s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow .3s ease;
}

.alp-bike-facilities__card:hover {
  box-shadow: 0 16px 48px -12px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.alp-bike-facilities__icon {
  color: var(--alpine-brand);
  margin-bottom: 16px;
}

.alp-bike-facilities__card h3 {
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 600;
  margin: 0 0 10px;
}

.alp-bike-facilities__card p {
  color: var(--alpine-text-muted);
  font-size: .9rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   IMAGE STRIP — Full-width
   ============================================ */
.alp-bike-strip {
  overflow: hidden;
  padding: 0;
}

.alp-bike-strip__row {
  display: grid;
  gap: clamp(4px, .8vw, 10px);
  grid-template-columns: repeat(4, 1fr);
}

.alp-bike-strip__frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.alp-bike-strip__frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.25, 0.1, 0.25, 1);
  width: 100%;
}

.alp-bike-strip__frame:hover img {
  transform: scale(1.06);
}

/* ============================================
   FINAL CTA — Brand-colored, aggressive
   ============================================ */
.alp-bike-cta {
  background: var(--alpine-brand);
  padding: clamp(100px, 14vw, 220px) 0;
  text-align: center;
}

.alp-bike-cta h2 {
  color: #fff;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.88;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.alp-bike-cta p {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.75;
  margin: 0 auto 48px;
  max-width: 50ch;
}

.alp-bike-cta__actions {
  margin-bottom: 36px;
}

.alp-bike-cta .alp-btn--large {
  font-size: 1.15rem;
  padding: 22px 56px;
}

.alp-bike-cta .alp-btn {
  background: #fff;
  color: var(--alpine-brand);
}

.alp-bike-cta .alp-btn:hover {
  background: var(--alpine-accent);
  color: #fff;
}

.alp-bike-cta__contact {
  color: rgba(255, 255, 255, .55);
  font-size: .92rem;
}

.alp-bike-cta__contact a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color .2s;
}

.alp-bike-cta__contact a:hover {
  color: #fff;
}

.alp-bike-cta__contact span {
  margin: 0 14px;
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .alp-bike-trail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .alp-bike-trail--reverse {
    direction: ltr;
  }

  .alp-bike-trail__image {
    aspect-ratio: 16 / 10;
  }

  .alp-bike-trail__content {
    padding: clamp(28px, 5vw, 56px);
  }

  .alp-bike-trail__badge {
    bottom: 20px;
    left: 20px;
  }

  .alp-bike-trail--reverse .alp-bike-trail__badge {
    left: 20px;
    right: auto;
  }

  .alp-bike-hire__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alp-bike-facilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alp-bike-mosaic__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(180px, 30vw, 320px);
  }

  .alp-bike-park__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .alp-bike-park__gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(200px, 30vw, 320px);
  }

  .alp-bike-park__gallery-item--large {
    grid-row: span 1;
  }

  .alp-bike-park__split {
    grid-template-columns: 1fr;
  }

  .alp-bike-park__map {
    min-height: 350px;
  }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 767px) {
  .alp-bike-hero {
    min-height: min(94vh, 740px);
  }

  .alp-bike-hero__content h1 {
    font-size: clamp(3.8rem, 20vw, 7rem);
  }

  .alp-bike-hero__line--accent {
    -webkit-text-stroke-width: 1.5px;
  }

  .alp-bike-hero__cta {
    align-items: center;
    flex-direction: column;
  }

  .alp-bike-hero__cta .alp-btn {
    max-width: 280px;
    width: 100%;
  }

  .alp-bike-hero__scroll {
    display: none;
  }

  .alp-bike-statement {
    padding: clamp(80px, 12vw, 160px) 0;
  }

  .alp-bike-statement__heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .alp-bike-mosaic__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(200px, 50vw, 300px);
  }

  .alp-bike-mosaic__item--tall {
    grid-row: span 1;
  }

  .alp-bike-mosaic__item--wide {
    grid-column: span 1;
  }

  .alp-bike-trails__head h2 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .alp-bike-trail__content h3 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .alp-bike-interlude {
    height: 340px;
  }

  .alp-bike-interlude blockquote p {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .alp-bike-hire__grid {
    grid-template-columns: 1fr;
  }

  .alp-bike-hire__head h2 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .alp-bike-facilities__grid {
    grid-template-columns: 1fr 1fr;
  }

  .alp-bike-strip__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .alp-bike-park__head h2 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .alp-bike-park__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .alp-bike-park__gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(220px, 50vw, 340px);
  }

  .alp-bike-park__split {
    grid-template-columns: 1fr;
  }

  .alp-bike-park__map {
    min-height: 300px;
  }

  .alp-bike-cta {
    padding: 80px 0;
  }

  .alp-bike-cta h2 {
    font-size: clamp(2.6rem, 12vw, 4.5rem);
  }

  .alp-bike-cta__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .alp-bike-cta__contact span {
    display: none;
  }

  .alp-bike-video__head h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}

/* Pre-hide hero elements before GSAP animates them in */
[data-bike-reveal] {
  opacity: 0;
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .alp-bike-hero__scroll { animation: none; }

  .alp-bike-trail__img-wrap img,
  .alp-bike-hire__card,
  .alp-bike-strip__frame img,
  .alp-bike-mosaic__item img,
  .alp-bike-facilities__card,
  .alp-bike-park__hero img,
  .alp-bike-park__gallery-item img,
  .alp-bike-park__feature {
    transition: none;
  }
  [data-bike-reveal] {
    opacity: 1;
  }
}

/* ============================================
   Dark Mode Adjustments
   ============================================ */
html[data-theme='dark'] .alp-bike-hire {
  background: color-mix(in srgb, var(--alpine-brand) 6%, var(--alpine-bg));
}

html[data-theme='dark'] .alp-bike-hire__card,
html[data-theme='dark'] .alp-bike-facilities__card {
  border-color: color-mix(in srgb, var(--alpine-surface) 60%, #fff);
}

html[data-theme='dark'] .alp-bike-video__embed {
  box-shadow: 0 24px 80px -20px rgba(0, 0, 0, .5);
}

html[data-theme='dark'] .alp-bike-park__feature {
  border-color: color-mix(in srgb, var(--alpine-surface) 60%, #fff);
}

/* ============================================
   Accessibility Contrast Hardening
   ============================================ */
.alp-bike-hero__line,
.alp-bike-hero__line--accent,
.alp-bike-hero__sub,
.alp-bike-hero__scroll span,
.alp-bike-hero .alp-btn--ghost {
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.52);
}

.alp-bike-hero .alp-btn--ghost {
  border-color: rgba(255, 255, 255, 0.9);
}
