/* ==========================================================================
   ALPINE CARE — Recovery and Wellbeing · alpinecare.net
   Snow-luxury theme · navy #1c3461 + alpine red #d43d3d
   Design twist: piste-map — contour lines, altitude markers, run-grade dots
   ========================================================================== */

/* Self-hosted fonts (latin subset) — no third-party requests */
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/manrope-400.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/manrope-500.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/manrope-600.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/manrope-700.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/manrope-800.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/playfairdisplay-500.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/playfairdisplay-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/playfairdisplay-700.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 500; font-display: swap; src: url('../fonts/playfairdisplay-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 600; font-display: swap; src: url('../fonts/playfairdisplay-600-italic.woff2') format('woff2'); }

:root {
  --snow: #f7f9fb;
  --ice: #eaf0f6;
  --white: #ffffff;
  --navy: #1c3461;
  --navy-deep: #101f3d;
  --navy-ink: #22304a;
  --red: #d43d3d;
  --red-deep: #b52f2f;
  --muted: #5b6b85;
  --line: #d8e1ec;
  --gold: #c9a227;
  --piste-green: #2e9e5b;
  --piste-blue: #2f7fd1;
  --piste-red: #d43d3d;
  --piste-black: #1a1f2b;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --shadow-card: 0 2px 6px rgba(16, 31, 61, 0.06), 0 14px 34px rgba(16, 31, 61, 0.08);
  --shadow-lift: 0 6px 14px rgba(16, 31, 61, 0.10), 0 22px 48px rgba(16, 31, 61, 0.14);
  --radius: 10px;
  --wrap: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--snow);
  color: var(--navy-ink);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: var(--navy-ink); }

::selection { background: var(--navy); color: #fff; }

/* Grain overlay — light 0.022 */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* ==========================================================================
   OPENING — hero letter-fall intro (no cover screen; everything happens
   inside the hero). Initial hidden states are gated on body:has(.hero__bg)
   so inner pages render instantly; browsers without :has() never hide,
   which degrades safely.
   ========================================================================== */
body:has(.hero__bg) .nav { opacity: 0; transform: translateY(-12px); }
body:has(.hero__bg) .hero__bg img { transform: scale(1.07); }
body:has(.hero__bg) .hero__kicker,
body:has(.hero__bg) .hero__sub,
body:has(.hero__bg) .hero__actions { opacity: 0; transform: translateY(26px); }
body:has(.hero__bg) .hero__altitude { opacity: 0; transform: translateY(14px); }

/* headline letters — JS wraps each character in a .ltr span and sets a
   per-letter transition-delay; they fall from above and settle with a
   slight overshoot */
.hero h1 .ltr {
  display: inline-block; opacity: 0; transform: translateY(-0.7em);
}
body.is-open .hero h1 .ltr {
  opacity: 1; transform: none;
  transition: opacity 0.35s ease, transform 0.6s cubic-bezier(0.2, 1.4, 0.4, 1);
}

body.is-open .nav { opacity: 1; transform: none; transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s, background 0.35s ease, box-shadow 0.35s ease; }
body.is-open .hero__bg img { transform: scale(1); transition: transform 2.2s cubic-bezier(0.22, 1, 0.36, 1); }
body.is-open .hero__kicker, body.is-open .hero__sub, body.is-open .hero__actions,
body.is-open .hero__altitude { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
body.is-open .hero__kicker { transition-delay: 0.12s; }
body.is-open .hero__sub { transition-delay: 1.25s; }
body.is-open .hero__actions { transition-delay: 1.4s; }
body.is-open .hero__altitude { transition-delay: 1.55s; }

/* ==========================================================================
   NAV — split style, centred logo
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-solid { background: rgba(247, 249, 251, 0.94); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line), 0 8px 28px rgba(16, 31, 61, 0.07); }
.nav__inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 100px; gap: 20px;
}
.nav__side { display: flex; align-items: center; gap: 30px; }
.nav__side--right { justify-content: flex-end; }
.nav__link {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--navy); padding: 6px 2px; position: relative; white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav--dark-page .nav__link { color: #fff; }
.nav--dark-page.is-solid .nav__link { color: var(--navy); }

.nav__logo { display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; }
.nav__logo-mark {
  width: 58px; height: 58px; object-fit: contain;
  background: #fff; border-radius: 50%; padding: 5px;
  box-shadow: 0 2px 12px rgba(16, 31, 61, 0.18);
}
.nav__logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; letter-spacing: 0.2em; color: var(--navy); line-height: 1; }
.nav__logo-sub { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); }
.nav--dark-page .nav__logo-name { color: #fff; }
.nav--dark-page.is-solid .nav__logo-name { color: var(--navy); }

.nav__cta {
  background: var(--red); color: #fff; border: none; border-radius: 100px;
  padding: 12px 26px; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  display: inline-block;
}
.nav__cta:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212, 61, 61, 0.35); }

/* Language dropdown */
.lang { position: relative; }
.lang__btn {
  display: flex; align-items: center; gap: 7px;
  background: none; border: 1px solid transparent; border-radius: 6px; padding: 7px 10px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; color: var(--navy);
  transition: border-color 0.25s;
}
.nav--dark-page .lang__btn { color: #fff; }
.nav--dark-page.is-solid .lang__btn { color: var(--navy); }
.lang__btn:hover { border-color: var(--line); }
.lang__btn svg { width: 15px; height: 15px; }
.lang__menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 12px; border-radius: 6px; font-size: 0.86rem; font-weight: 600; color: var(--navy-ink);
}
.lang__item:hover { background: var(--ice); }
.lang__item.is-current { color: var(--navy); font-weight: 800; }
.lang__item .soon { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: var(--ice); padding: 2px 8px; border-radius: 100px; }

/* Mobile nav */
.nav__burger { display: none; background: none; border: none; width: 40px; height: 40px; position: relative; z-index: 1002; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px auto; transition: transform 0.3s, opacity 0.3s; }
.nav--dark-page .nav__burger span { background: #fff; }
.nav--dark-page.is-solid .nav__burger span { background: var(--navy); }
body.nav-open .nav__burger span { background: var(--navy); }
body.nav-open .nav .nav__logo-name { color: var(--navy); }
body.nav-open .nav .nav__logo-sub { color: var(--red); }
body.nav-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 998; background: var(--snow);
  display: flex; flex-direction: column; justify-content: center; padding: 40px 32px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
body.nav-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--navy); padding: 13px 0; border-bottom: 1px solid var(--line); }
.mobile-menu a.mm-cta { color: var(--red); }
.mobile-menu .mm-lang { margin-top: 26px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

/* ==========================================================================
   HERO — L9 cinematic centred BG
   ========================================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: grid; place-items: center; text-align: center;
  color: #fff; overflow: hidden; padding: 140px 0 110px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.62); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 52% at 50% 46%, rgba(28, 52, 97, 0.28), transparent 70%),
    linear-gradient(180deg, rgba(16, 31, 61, 0.55) 0%, rgba(16, 31, 61, 0.15) 38%, rgba(16, 31, 61, 0.22) 70%, rgba(16, 31, 61, 0.78) 100%);
}
/* contour lines — the piste-map thread */
.hero__contours {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.16;
}
.hero__content { position: relative; z-index: 2; max-width: 880px; padding: 0 28px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase;
  color: #fff; margin-bottom: 26px; text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hero__kicker::before, .hero__kicker::after { content: ""; width: 34px; height: 1px; background: rgba(255,255,255,0.55); }
.hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.08; letter-spacing: 0.01em;
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.55);
}
.hero h1 em { font-style: italic; color: #f4d9d9; white-space: nowrap; }
.hero__sub {
  margin: 26px auto 0; max-width: 640px; font-size: 1.12rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.92); text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hero__actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 36px; border-radius: 100px; border: none;
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-deep); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(212, 61, 61, 0.4); }
.btn--ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.65); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(28, 52, 97, 0.35); }
.btn--outline-navy { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: #fff; transform: translateY(-3px); }

/* altitude strip pinned to hero base */
.hero__altitude {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(16, 31, 61, 0.42); backdrop-filter: blur(6px);
}
.hero__altitude-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
  display: flex; justify-content: space-between; align-items: center; height: 64px;
}
.alt-mark { display: flex; align-items: baseline; gap: 7px; color: #fff; }
.alt-mark b { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.04em; }
.alt-mark span { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.66); }
.alt-mark i { font-style: normal; color: var(--red); font-size: 0.8rem; }

/* ==========================================================================
   SECTION PRIMITIVES
   ========================================================================== */
.section { padding: 108px 0; position: relative; }
.section--ice { background: var(--ice); }
.section--navy { background: var(--navy-deep); color: #fff; }
.section--white { background: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--red); }
.section-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.15; color: var(--navy); max-width: 700px; }
.section--navy .section-title { color: #fff; }
.section-lede { margin-top: 18px; max-width: 620px; color: var(--muted); font-size: 1.05rem; }
.section--navy .section-lede { color: rgba(255, 255, 255, 0.78); }

/* contour divider between sections */
.contour-divider { display: block; width: 100%; height: 70px; color: var(--line); }

/* Giant altitude background numbers (twist) */
.alt-ghost {
  position: absolute; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(9rem, 22vw, 20rem); line-height: 1; color: var(--navy);
  opacity: 0.045; pointer-events: none; user-select: none; z-index: 0;
}

/* ==========================================================================
   PISTE GRADE DOTS (twist)
   ========================================================================== */
.grade { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.grade__dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.grade--green .grade__dot { background: var(--piste-green); } .grade--green { color: var(--piste-green); }
.grade--blue .grade__dot { background: var(--piste-blue); } .grade--blue { color: var(--piste-blue); }
.grade--red .grade__dot { background: var(--piste-red); } .grade--red { color: var(--piste-red); }
.grade--black .grade__dot { background: var(--piste-black); border-radius: 2px; transform: rotate(45deg); } .grade--black { color: var(--piste-black); }
.section--navy .grade--black { color: #cfd8e6; } .section--navy .grade--black .grade__dot { background: #cfd8e6; }

/* ==========================================================================
   TREATMENT CARDS
   ========================================================================== */
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; position: relative; z-index: 1; }
.t-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px 30px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.t-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: #c4d2e2; }
.t-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grade-c, var(--navy)); opacity: 0.85;
}
.t-card--green { --grade-c: var(--piste-green); }
.t-card--blue { --grade-c: var(--piste-blue); }
.t-card--red { --grade-c: var(--piste-red); }
.t-card--black { --grade-c: var(--piste-black); }
.t-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--navy); }
.t-card p { font-size: 0.95rem; color: var(--muted); flex: 1; }
.t-card__meta { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px dashed var(--line); }
.t-card__meta span { font-size: 0.8rem; font-weight: 700; color: var(--navy); letter-spacing: 0.05em; }
.t-card__book {
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s ease;
}
.t-card__book:hover { gap: 11px; }

/* ==========================================================================
   LOCATIONS — mountain profile (home page)
   ========================================================================== */
.peak-map { position: relative; margin-top: 64px; }
.peak-map__slope {
  position: absolute; top: 0; left: 0; width: 100%; height: 220px;
  z-index: 0; pointer-events: none;
}
.peak-map__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.peak-stop { text-align: center; }
.peak-stop__zone { position: relative; height: 220px; }
.peak-stop__dot {
  position: absolute; left: 50%; top: var(--dot-y); transform: translate(-50%, -50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 4px solid var(--navy);
  box-shadow: 0 0 0 5px rgba(28, 52, 97, 0.08);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.peak-stop__label {
  position: absolute; left: 50%; top: calc(var(--dot-y) + 16px); transform: translateX(-50%);
  white-space: nowrap;
}
.peak-stop__label h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--navy); line-height: 1.15; }
.peak-stop__label span { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); }
.peak-stop p { font-size: 0.88rem; color: var(--muted); max-width: 230px; margin: 10px auto 0; }
.peak-stop:hover .peak-stop__dot {
  border-color: var(--red); transform: translate(-50%, -50%) scale(1.25);
  box-shadow: 0 0 0 7px rgba(212, 61, 61, 0.15);
}
.peak-map__note {
  margin-top: 44px; text-align: center; font-size: 0.95rem; color: var(--muted);
}
.peak-map__note a { color: var(--red); font-weight: 800; }
.peak-map__note a:hover { text-decoration: underline; }
@media (max-width: 860px) {
  .peak-map__slope { display: none; }
  .peak-map__grid { grid-template-columns: 1fr 1fr; gap: 34px 16px; }
  .peak-stop__zone { height: auto; }
  .peak-stop__dot { position: static; transform: none; margin: 0 auto 12px; display: block; }
  .peak-stop__label { position: static; transform: none; }
  .peak-stop:hover .peak-stop__dot { transform: scale(1.25); }
}

/* ==========================================================================
   LOCATIONS — altitude line (twist)
   ========================================================================== */
.alt-line { position: relative; margin-top: 70px; padding-bottom: 10px; }
.alt-line__track { position: absolute; left: 4%; right: 4%; top: 58px; height: 2px; background: linear-gradient(90deg, var(--line), var(--navy) 50%, var(--line)); }
.alt-line__stops { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.alt-stop { text-align: center; padding-top: 0; }
.alt-stop__el { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; }
.alt-stop__dot { width: 15px; height: 15px; border-radius: 50%; background: #fff; border: 3.5px solid var(--navy); margin: 14px auto; position: relative; z-index: 1; }
.alt-stop h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--navy); }
.alt-stop p { font-size: 0.88rem; color: var(--muted); max-width: 220px; margin: 8px auto 0; }

/* ==========================================================================
   MEDIA SPLIT (story teaser, about blocks)
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split--rev > *:first-child { order: 2; }
.split__img { position: relative; }
.split__img img { border-radius: var(--radius); box-shadow: var(--shadow-lift); aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.split__img--wide img { aspect-ratio: 4/3.1; }
.split__badge {
  position: absolute; bottom: -22px; right: -18px;
  background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 20px 26px; box-shadow: var(--shadow-lift); text-align: center;
}
.split__badge b { font-family: var(--font-display); font-size: 1.7rem; display: block; }
.split__badge span { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.split__body p { color: var(--muted); margin-top: 16px; }
.split__body .btn { margin-top: 30px; }

/* ==========================================================================
   HOW IT WORKS — gondola steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; counter-reset: step; }
.step { position: relative; padding: 30px 24px 26px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); transition: background 0.3s, transform 0.3s; }
.step:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--red);
  display: block; margin-bottom: 12px; opacity: 0.95;
}
.step h3 { font-size: 1.02rem; font-weight: 800; letter-spacing: 0.02em; color: #fff; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.72); }

/* ==========================================================================
   JOIN BANNER — full-bleed image with overlaid text
   ========================================================================== */
.join-banner { position: relative; overflow: hidden; padding: 150px 0; color: #fff; }
.join-banner__bg { position: absolute; inset: 0; z-index: 0; }
.join-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.join-banner__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 34, 0.82) 0%, rgba(8, 16, 34, 0.55) 45%, rgba(8, 16, 34, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 16, 34, 0.35) 0%, transparent 30%, transparent 70%, rgba(8, 16, 34, 0.45) 100%);
}
.join-banner__content { position: relative; z-index: 1; max-width: 560px; }
.join-banner__content .section-title { color: #fff; text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55); }
.join-banner__content p { color: rgba(255, 255, 255, 0.92); margin-top: 16px; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6); }
.join-banner__content .eyebrow { color: #ff8a8a; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); }
.join-banner__content .eyebrow::before { background: #ff8a8a; }
.join-banner__content .btn { margin-top: 30px; }
@media (max-width: 860px) {
  .join-banner { padding: 100px 0; }
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner { position: relative; overflow: hidden; text-align: center; padding: 120px 0; background: var(--navy); color: #fff; }
.cta-banner .hero__contours { opacity: 0.1; }
.cta-banner h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.12; position: relative; }
.cta-banner p { margin: 20px auto 0; max-width: 560px; color: rgba(255, 255, 255, 0.8); position: relative; }
.cta-banner .hero__actions { margin-top: 38px; position: relative; }

/* ==========================================================================
   PAGE HEADER (inner pages)
   ========================================================================== */
.page-head { position: relative; padding: 190px 0 90px; background: var(--navy-deep); color: #fff; overflow: hidden; }
.page-head .hero__contours { opacity: 0.12; }
.page-head__inner { position: relative; z-index: 1; }
.page-head h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.3rem, 5vw, 3.8rem); line-height: 1.1; max-width: 800px; }
.page-head p { margin-top: 18px; max-width: 620px; color: rgba(255, 255, 255, 0.8); font-size: 1.08rem; }

/* ==========================================================================
   BOOKING WIZARD
   ========================================================================== */
.book-shell { max-width: 860px; margin: 0 auto; }
.book-progress { display: flex; align-items: center; justify-content: space-between; margin: 0 0 46px; position: relative; }
.book-progress::before { content: ""; position: absolute; left: 18px; right: 18px; top: 17px; height: 2px; background: var(--line); z-index: 0; }
.book-progress__fill { position: absolute; left: 18px; top: 17px; height: 2px; background: var(--red); z-index: 1; transition: width 0.4s ease; }
.bp-stop { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; width: 36px; }
.bp-stop__dot {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--line); color: var(--muted);
  font-size: 0.78rem; font-weight: 800; transition: all 0.3s ease;
}
.bp-stop.is-active .bp-stop__dot { border-color: var(--red); color: var(--red); box-shadow: 0 0 0 5px rgba(212, 61, 61, 0.12); }
.bp-stop.is-done .bp-stop__dot { background: var(--navy); border-color: var(--navy); color: #fff; }
.bp-stop span { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.bp-stop.is-active span { color: var(--red); }

.book-panel { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-card); padding: 46px 48px 42px; }
.book-step { display: none; }
.book-step.is-current { display: block; animation: stepIn 0.4s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.book-step h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.book-step > p.hint { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.choice {
  position: relative; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; cursor: pointer; background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  display: block;
}
.choice:hover { border-color: #b7c7da; }
.choice:focus-within { outline: 3px solid rgba(28, 52, 97, 0.45); outline-offset: 2px; }
.slot:focus-visible, .slot-pill:focus-visible, .book-back:focus-visible,
.btn:focus-visible, .nav__link:focus-visible, .nav__cta:focus-visible {
  outline: 3px solid rgba(28, 52, 97, 0.45); outline-offset: 2px;
}
.book-step h2:focus { outline: none; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice.is-selected { border-color: var(--navy); background: #f4f8fc; box-shadow: 0 0 0 1px var(--navy), var(--shadow-card); }
.choice__title { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-weight: 800; color: var(--navy); font-size: 1.02rem; }
.choice__desc { font-size: 0.87rem; color: var(--muted); margin-top: 6px; }
.choice__price { font-size: 0.85rem; font-weight: 800; color: var(--red); white-space: nowrap; }

.slot-pills { display: flex; gap: 12px; margin: 20px 0 18px; flex-wrap: wrap; }
.slot-pill {
  border: 1.5px solid var(--line); background: #fff; border-radius: 100px; padding: 11px 26px;
  font-size: 0.85rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy-ink);
  transition: all 0.25s;
}
.slot-pill:hover { border-color: #b7c7da; }
.slot-pill.is-selected { background: var(--navy); border-color: var(--navy); color: #fff; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 10px; }
.slot {
  border: 1.5px solid var(--line); background: #fff; border-radius: 8px; padding: 11px 4px;
  font-size: 0.9rem; font-weight: 700; color: var(--navy-ink); text-align: center; transition: all 0.2s;
}
.slot:hover:not(:disabled) { border-color: var(--navy); }
.slot.is-selected { background: var(--red); border-color: var(--red); color: #fff; }
.slot:disabled { opacity: 0.32; cursor: not-allowed; text-decoration: line-through; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field input[type="date"],
.field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 8px; background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28, 52, 97, 0.1); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--navy-ink); margin-bottom: 14px; cursor: pointer; }
.check input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--red); flex: none; }
.check a { color: var(--red); font-weight: 700; text-decoration: underline; }

.notice {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fdf6ec; border: 1px solid #ecd9b4; border-radius: 8px;
  padding: 14px 16px; font-size: 0.88rem; color: #7a5c1e; margin: 18px 0 0;
}
.notice--info { background: #eef4fb; border-color: #c9dcf1; color: #2c5382; }
.notice svg { flex: none; width: 18px; height: 18px; margin-top: 2px; }

.book-nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.book-back { background: none; border: none; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding: 10px 6px; }
.book-back:hover { color: var(--navy); }

.summary-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 4px; }
.summary-list dl { display: flex; justify-content: space-between; gap: 20px; padding: 15px 20px; margin: 0; font-size: 0.95rem; }
.summary-list dl:nth-child(odd) { background: var(--ice); }
.summary-list dt { color: var(--muted); font-weight: 600; }
.summary-list dd { font-weight: 800; color: var(--navy); text-align: right; }
.summary-total { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding: 20px 22px; background: var(--navy); color: #fff; border-radius: var(--radius); }
.summary-total span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.summary-total b { font-family: var(--font-display); font-size: 1.9rem; }

.call-strip {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-top: 26px; text-align: center; font-size: 0.92rem; color: var(--muted);
}
.call-strip a { color: var(--red); font-weight: 800; display: inline-flex; align-items: center; gap: 7px; }
.call-strip a:hover { text-decoration: underline; }
.call-strip svg { width: 16px; height: 16px; }

.form-status { margin-top: 18px; font-size: 0.92rem; text-align: center; min-height: 1.4em; color: transparent; transition: color 0.3s; }
.form-status.is-success { color: var(--piste-green); font-weight: 700; }
.form-status.is-error { color: var(--red-deep); font-weight: 700; }
.form-submit:disabled { opacity: 0.7; cursor: wait; transform: none; box-shadow: none; }

/* ==========================================================================
   MENU PAGE — full treatment rows
   ========================================================================== */
.menu-row {
  display: grid; grid-template-columns: 130px 1fr auto; gap: 34px; align-items: center;
  padding: 40px 0; border-bottom: 1px solid var(--line); position: relative;
}
.menu-row:last-child { border-bottom: none; }
.menu-row__grade { text-align: center; }
.menu-row__grade .grade { flex-direction: column; gap: 10px; }
.menu-row__grade .grade__dot { width: 20px; height: 20px; }
.menu-row h3 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.menu-row p { color: var(--muted); max-width: 640px; }
.menu-row__aside { text-align: right; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.menu-row__dur { font-size: 0.8rem; font-weight: 700; color: var(--navy); letter-spacing: 0.06em; }

/* ==========================================================================
   RECRUITING
   ========================================================================== */
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 50px; }
.req-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--navy); border-radius: var(--radius); padding: 28px 28px 24px; box-shadow: var(--shadow-card); }
.req-card--red { border-left-color: var(--red); }
.req-card h3 { font-size: 1rem; font-weight: 800; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.req-card h3 svg { width: 20px; height: 20px; color: var(--red); flex: none; }
.req-card p { font-size: 0.92rem; color: var(--muted); }

.perk-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
.perk { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 26px 24px; }
.perk h3 { font-size: 0.95rem; font-weight: 800; color: #fff; margin-bottom: 7px; letter-spacing: 0.03em; }
.perk p { font-size: 0.88rem; color: rgba(255,255,255,0.74); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 780px; margin: 50px auto 0; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 26px; cursor: pointer; font-weight: 800; color: var(--navy); font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--red); transition: transform 0.3s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--muted); font-size: 0.96rem; }

/* ==========================================================================
   LEGAL / PROSE
   ========================================================================== */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin: 44px 0 14px; }
.prose p, .prose li { color: var(--muted); margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.footer .hero__contours { opacity: 0.07; }
.footer__disclaimer {
  position: relative; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0; text-align: center;
}
.footer__disclaimer p {
  max-width: 760px; margin: 0 auto; font-size: 0.86rem; color: rgba(255, 255, 255, 0.78);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.footer__disclaimer svg { width: 16px; height: 16px; color: var(--red); flex: none; }
.footer__main {
  position: relative; max-width: var(--wrap); margin: 0 auto; padding: 66px 28px 50px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px;
}
.footer__logo-mark {
  width: 56px; height: 56px; object-fit: contain;
  background: #fff; border-radius: 50%; padding: 5px;
}
.footer__brand-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.16em; margin-top: 14px; }
.footer__brand-sub { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-top: 3px; }
.footer__brand p { margin-top: 18px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.62); max-width: 300px; }
.footer h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 20px; }
.footer__col li { margin-bottom: 12px; }
.footer__col a { font-size: 0.94rem; color: rgba(255, 255, 255, 0.82); transition: color 0.25s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  position: relative; border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 28px; max-width: var(--wrap); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.5);
}
.footer__bottom a { color: rgba(255, 255, 255, 0.7); }
.footer__bottom a:hover { color: #fff; }
.footer__social { display: flex; gap: 14px; }
.footer__social a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; transition: all 0.25s; }
.footer__social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; color: #fff; }

/* ==========================================================================
   REVEALS — opacity + transform only
   ========================================================================== */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rv-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rv-right { opacity: 0; transform: translateX(36px); transition: opacity 0.75s ease, transform 0.75s ease; }
.rv-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.75s ease, transform 0.75s ease; }
.rv.is-in, .rv-left.is-in, .rv-right.is-in, .rv-scale.is-in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .rv, .rv-left, .rv-right, .rv-scale { opacity: 1; transform: none; transition: none; }
  body:has(.hero__bg) .nav, body:has(.hero__bg) .hero__bg img,
  body:has(.hero__bg) .hero__kicker, body:has(.hero__bg) .hero__sub,
  body:has(.hero__bg) .hero__actions, body:has(.hero__bg) .hero__altitude,
  .hero h1 .ltr {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1020px) {
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .split { gap: 44px; }
  /* altitude strip joins the flow below the content so it can never
     overlap the hero buttons on short viewports */
  .hero { display: flex; flex-direction: column; padding-bottom: 0; }
  .hero__content { margin: auto; width: 100%; }
  .hero__altitude { position: static; margin-top: 48px; }
  .hero__altitude-inner { flex-wrap: wrap; height: auto; padding-top: 12px; padding-bottom: 12px; gap: 8px 26px; justify-content: center; }
}
@media (max-width: 860px) {
  .nav__side { display: none; }
  .nav__burger { display: block; justify-self: end; }
  .nav__inner { grid-template-columns: auto 1fr auto; height: 74px; }
  .nav__logo { flex-direction: row; gap: 10px; }
  .nav__logo-mark { width: 46px; height: 46px; }
  .nav__logo-sub { display: none; }
  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev > *:first-child { order: 0; }
  .req-grid, .choice-grid, .field-row { grid-template-columns: 1fr; }
  .alt-line__stops { grid-template-columns: 1fr 1fr; gap: 34px 16px; }
  .alt-line__track { display: none; }
  .menu-row { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .menu-row__grade { text-align: left; }
  .menu-row__grade .grade { flex-direction: row; }
  .menu-row__aside { align-items: flex-start; text-align: left; }
  .book-panel { padding: 32px 24px 30px; }
  .bp-stop span { display: none; }
  .section { padding: 76px 0; }
  .perk-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .treatments-grid, .steps { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .split__badge { right: 8px; bottom: -18px; padding: 14px 18px; }
}
