/* ============================================
   Sauna Page — Nordic Bathing Experience
   Immersive editorial layout
   ============================================ */

/* Override global padding so hero sits behind transparent header */
#main-content { padding-top: 0; }

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

.alp-bush-hero__media {
  background: #070c09;
  inset: 0;
  position: absolute;
}

.alp-bush-hero__video {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

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

.alp-bush-hero .alp-eyebrow {
  align-items: initial;
  background: none;
  border-radius: 0;
  color: var(--alpine-accent-light);
  display: block;
  font-size: .85rem;
  letter-spacing: .2em;
  min-height: 0;
  padding: 0;
  text-shadow: none;
}

.alp-bush-hero__content h1 {
  color: #fff;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 20px 0 28px;
}

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

.alp-bush-hero__line--em {
  color: #fff;
  font-style: italic;
}

.alp-bush-hero__sub {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 52ch;
}

.alp-bush-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}

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

.alp-bush-hero__scroll span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

/* ============================================
   INTRO — Big Editorial Statement
   ============================================ */
.alp-bush-intro {
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: center;
}

.alp-bush-intro__inner {
  margin: 0 auto;
  max-width: 860px;
}

.alp-bush-intro__lead {
  color: var(--alpine-accent);
  font-family: var(--wp--preset--font-family--body-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .16em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.alp-bush-intro__heading {
  color: var(--alpine-text);
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 28px;
}

.alp-bush-intro__body {
  color: var(--alpine-text-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.85;
  margin: 0;
}

/* ============================================
   PHOTO MOSAIC — Oversized Grid
   ============================================ */
.alp-bush-mosaic {
  overflow: hidden;
  padding: 0 clamp(12px, 2vw, 24px);
}

.alp-bush-mosaic__grid {
  display: grid;
  gap: clamp(8px, 1.2vw, 14px);
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: clamp(220px, 28vw, 420px);
}

.alp-bush-mosaic__item {
  border-radius: var(--alpine-radius, 12px);
  overflow: hidden;
  position: relative;
}

.alp-bush-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-bush-mosaic__item:hover img {
  transform: scale(1.05);
}

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

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

/* ============================================
   EXPERIENCES — Alternating Editorial (Split)
   ============================================ */
.alp-bush-trails {
  padding: var(--alpine-section-pad, clamp(80px, 10vw, 140px)) 0 0;
}

.alp-bush-trails__head {
  margin: 0 auto clamp(64px, 8vw, 110px);
  max-width: 680px;
  text-align: center;
}

.alp-bush-trails__head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin: 14px 0 18px;
}

.alp-bush-trails__head p {
  color: var(--alpine-text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

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

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

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

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

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

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

.alp-bush-trail__number {
  bottom: 28px;
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 400;
  left: 28px;
  line-height: 1;
  opacity: .1;
  position: absolute;
  color: #fff;
}

.alp-bush-trail--reverse .alp-bush-trail__number {
  left: auto;
  right: 28px;
}

.alp-bush-trail__content {
  align-self: center;
  padding: clamp(36px, 6vw, 90px);
}

.alp-bush-trail__content h3 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin: 12px 0 20px;
  line-height: 1.08;
}

.alp-bush-trail__content p {
  color: var(--alpine-text-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  margin: 0 0 28px;
  max-width: 48ch;
}

.alp-bush-trail__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.alp-bush-trail__stat {
  background: color-mix(in srgb, var(--alpine-brand) 8%, var(--alpine-bg));
  border: 1px solid var(--alpine-border);
  border-radius: 999px;
  color: var(--alpine-text-muted);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 7px 16px;
}

/* ============================================
   INTERLUDE — Full-Bleed Quote
   ============================================ */
.alp-bush-interlude {
  height: clamp(400px, 65vh, 700px);
  overflow: hidden;
  position: relative;
}

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

.alp-bush-interlude__img img {
  display: block;
  height: 140%;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
  will-change: transform;
}

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

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

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

/* ============================================
   PLANNING YOUR VISIT — Editorial Split
   ============================================ */
.alp-bush-guide {
  padding: clamp(100px, 14vw, 180px) 0;
}

.alp-bush-guide__inner {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 70px);
  grid-template-columns: 1fr 1.1fr;
}

.alp-bush-guide__text h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin: 14px 0 22px;
  line-height: 1.1;
}

.alp-bush-guide__text p {
  color: var(--alpine-text-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 48ch;
}

.alp-bush-guide__image {
  border-radius: 18px;
  min-height: clamp(320px, 50vw, 560px);
  overflow: hidden;
}

.alp-bush-guide__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* ============================================
   TIPS — Icon Cards
   ============================================ */
.alp-bush-safety {
  background: color-mix(in srgb, var(--alpine-brand) 4%, var(--alpine-bg));
  padding: clamp(80px, 12vw, 160px) 0;
}

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

.alp-bush-safety__head h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin: 14px 0 18px;
}

.alp-bush-safety__head p {
  color: var(--alpine-text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.alp-bush-safety__grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 28px);
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.alp-bush-safety__card {
  background: var(--alpine-surface);
  border: 1px solid var(--alpine-border);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  transition: transform .3s ease, box-shadow .3s ease;
}

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

.alp-bush-safety__icon {
  align-items: center;
  background: color-mix(in srgb, var(--alpine-brand) 12%, var(--alpine-bg));
  border-radius: 14px;
  color: var(--alpine-brand);
  display: flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 20px;
  width: 56px;
}

.alp-bush-safety__card h3 {
  font-family: var(--wp--preset--font-family--body-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px;
}

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

/* Packing List */
.alp-bush-packing {
  background: var(--alpine-surface);
  border: 1px solid var(--alpine-border);
  border-radius: 22px;
  margin: 0 auto;
  max-width: 680px;
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.alp-bush-packing h3 {
  font-family: var(--wp--preset--font-family--display-serif);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  margin: 0 0 24px;
}

.alp-bush-packing__list {
  columns: 2;
  column-gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.alp-bush-packing__list li {
  color: var(--alpine-text-muted);
  font-size: .98rem;
  line-height: 1.6;
  padding: 8px 0 8px 28px;
  position: relative;
}

.alp-bush-packing__list li::before {
  color: var(--alpine-brand);
  content: "\2713";
  font-weight: 700;
  left: 0;
  position: absolute;
}

/* ============================================
   BOOK CTA
   ============================================ */
.alp-bush-cta {
  background: var(--alpine-brand);
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
}

.alp-bush-cta .alp-eyebrow {
  color: var(--alpine-accent-light);
}

.alp-bush-cta h2 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 18px 0 24px;
}

.alp-bush-cta p {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
  margin: 0 auto 40px;
  max-width: 520px;
}

.alp-bush-cta__actions {
  margin-bottom: 32px;
}

.alp-bush-cta .alp-btn--large {
  font-size: 1.1rem;
  padding: 20px 48px;
}

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

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

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

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

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

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

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .alp-bush-mosaic__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(180px, 24vw, 300px);
  }

  .alp-bush-trail {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

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

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

  .alp-bush-guide__inner {
    grid-template-columns: 1fr;
  }

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

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

  .alp-bush-hero__content h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

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

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

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

  .alp-bush-intro {
    padding: clamp(64px, 12vw, 120px) 0;
  }

  .alp-bush-intro__heading {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .alp-bush-mosaic__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: clamp(160px, 32vw, 260px);
  }

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

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

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

  .alp-bush-trail__number {
    font-size: 3.5rem;
  }

  .alp-bush-trail__content {
    padding: 24px;
  }

  .alp-bush-trail__content h3 {
    font-size: 1.6rem;
  }

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

  .alp-bush-interlude blockquote p {
    font-size: 1.4rem;
  }

  .alp-bush-guide__image {
    min-height: 280px;
  }

  .alp-bush-safety__grid {
    grid-template-columns: 1fr;
  }

  .alp-bush-packing__list {
    columns: 1;
  }

  .alp-bush-cta {
    padding: 72px 0;
  }

  .alp-bush-cta h2 {
    font-size: 2.4rem;
  }

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

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

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

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

  .alp-bush-mosaic__item img,
  .alp-bush-trail__img-wrap img,
  .alp-bush-safety__card {
    transition: none;
  }
  [data-bush-reveal] {
    opacity: 1;
  }
}

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

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

html[data-theme='dark'] .alp-bush-cta p,
html[data-theme='dark'] .alp-bush-cta__contact a {
  color: #f7fbff;
}
