/* ==========================================================================
   Evolution Ski School — Zermatt
   Palette from the brand logo (black #000000 / star #f05010) + alpine blues
   and the team red sampled from the school's own photographs.
   Display face follows the source's own type stack (Palatino), accent italic
   follows the source's Didot stack, body follows the source's Open Sans stack.
   ========================================================================== */

:root {
  --ink: #08090b;
  --ink-2: #12151a;
  --ink-3: #1c222a;
  --snow: #f4f6f8;
  --paper: #ffffff;
  --ice: #e5eaef;
  --line: #d2d9e1;
  --slate: #55606c;
  --slate-2: #87919c;
  --orange: #f05010;
  --orange-2: #c93c07;
  --alpine: #14304a;
  --alpine-2: #23506f;
  --glacier: #7fb0d4;
  --crimson: #8c1f2f;

  --font-display: "Palatino Linotype", Palatino, P052, "Book Antiqua", "URW Palladio L", "Liberation Serif", Georgia, serif;
  --font-accent: Didot, "Bodoni MT", C059, "URW Bookman", "Liberation Serif", Georgia, serif;
  --font-ui: "Open Sans", "Helvetica Neue", Helvetica, Arial, "Liberation Sans", "Nimbus Sans", sans-serif;

  --edge: clamp(1.25rem, 4.4vw, 4.5rem);
  --rail: 1180px;
  --plate-scale: 1;
  --nav-h: 76px;
  --ease-scene: cubic-bezier(.22, .61, .36, 1);
  --ease-reveal: cubic-bezier(.65, 0, .35, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--snow);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--orange); color: #fff; padding: .7rem 1.1rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  transition: top .18s ease;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------- typography */

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
}

.h-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: .01em;
  margin: 0;
}

.overline {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin: 0;
  color: var(--slate);
}
.overline--orange { color: var(--orange); }
.overline--light { color: rgba(255, 255, 255, .72); }

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.68;
  color: var(--slate);
  max-width: 62ch;
  margin: 0;
}

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* --------------------------------------------------------------- shell */

.shell { width: min(100% - (var(--edge) * 2), var(--rail)); margin-inline: auto; }
.shell--wide { width: min(100% - (var(--edge) * 2), 1420px); margin-inline: auto; }

.eyebrow-row {
  display: flex; align-items: baseline; gap: 1rem;
  border-top: 1px solid var(--line); padding-top: .9rem;
}

/* --------------------------------------------------------------- nav */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(8, 9, 11, .34);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  transition: background .3s ease, border-color .3s ease, transform .35s var(--ease-scene);
}
.nav.is-solid {
  background: rgba(8, 9, 11, .96);
  border-bottom-color: rgba(255, 255, 255, .14);
}
.nav.is-hidden { transform: translateY(-100%); }

.nav__inner {
  width: min(100% - (var(--edge) * 1.4), 1560px);
  margin-inline: auto;
  display: flex; align-items: center; gap: clamp(.8rem, 2vw, 2.2rem);
}
.nav__brand { display: flex; align-items: center; margin-right: auto; }
.nav__brand img { width: clamp(126px, 13vw, 176px); height: auto; }
.nav__utils { display: none; align-items: center; gap: 1.4rem; font-size: .78rem; letter-spacing: .04em; }
.nav__utils a { color: rgba(255, 255, 255, .84); }
.nav__utils a:hover { color: #fff; }

.nav__menu { display: none; align-items: center; gap: clamp(.9rem, 1.5vw, 1.7rem); }
.nav__menu > li { list-style: none; position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .73rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase;
  padding: .5rem 0; color: rgba(255, 255, 255, .88);
  border-bottom: 2px solid transparent;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: #fff; border-bottom-color: var(--orange); }
.nav__caret { transition: transform .25s ease; }
.has-sub:hover .nav__caret, .has-sub:focus-within .nav__caret { transform: rotate(180deg); }

.sub {
  position: absolute; left: -.9rem; top: calc(100% + .6rem);
  min-width: 258px; padding: .55rem 0;
  background: rgba(8, 9, 11, .97); border: 1px solid rgba(255, 255, 255, .14);
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.sub a {
  display: block; padding: .6rem 1.1rem;
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}
.sub a:hover { background: rgba(255, 255, 255, .07); color: #fff; }

.nav__phone { display: none; }

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 8px; background: none; border: 0; cursor: pointer;
}
.burger span { display: block; height: 2px; background: #fff; transition: transform .25s ease, opacity .2s ease; }
body.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1080px) {
  .burger { display: none; }
  .nav__utils { display: flex; }
  .nav__phone { display: inline-flex; }
  .nav__menu { display: flex; }
}

/* -- mobile drawer -- */
.drawer {
  position: fixed; inset: var(--nav-h) 0 0 auto; z-index: 95;
  width: min(92vw, 420px);
  background: var(--ink); color: #fff;
  padding: 1.6rem var(--edge) 2.6rem;
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(102%);
  transition: transform .42s var(--ease-scene);
  border-left: 1px solid rgba(255, 255, 255, .12);
}
body.nav-open .drawer { transform: none; }
.drawer__backdrop {
  position: fixed; inset: 0; z-index: 94; background: rgba(4, 5, 7, .6);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
}
body.nav-open .drawer__backdrop { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

.drawer__group { border-top: 1px solid rgba(255, 255, 255, .14); padding: 1.15rem 0; }
.drawer__group:first-child { border-top: 0; }
.drawer__group h3 {
  font-family: var(--font-ui); font-size: .66rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase; color: var(--orange); margin: 0 0 .7rem;
}
.drawer a { display: block; padding: .58rem 0; font-size: .95rem; color: rgba(255, 255, 255, .9); }
.drawer a:hover { color: #fff; }
.drawer__contact a { font-size: .88rem; color: rgba(255, 255, 255, .82); }
.drawer .btn { margin-top: 1.2rem; width: 100%; justify-content: center; }
@media (min-width: 1080px) { .drawer, .drawer__backdrop { display: none; } }

/* --------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.5rem;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: var(--orange); color: #fff; border: 1px solid var(--orange);
  cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { background: var(--orange-2); border-color: var(--orange-2); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn--ink { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-3); border-color: var(--ink-3); }
.btn--line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--line:hover { border-color: var(--ink); background: transparent; }
.btn--sm { padding: .66rem 1.05rem; font-size: .68rem; }

.arrow { width: 1em; height: 1em; flex: none; }

/* --------------------------------------------------------------- scene (hero) */

.scene {
  position: relative;
  height: min(94svh, 880px);
  min-height: 560px;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.scene__plate {
  position: absolute;
  inset: 0;
  transform: scale(var(--plate-scale, 1));
  transform-origin: 50% 42%;
  will-change: transform;
}
.scene__layer {
  position: absolute; inset: 0;
  background-position: 50% 46%;
  background-size: cover;
  background-repeat: no-repeat;
}
/* base: the real lesson scene — always present so the first viewport is a place */
.scene__layer--lineup {
  background-image: url("../img/scene-lineup-1920.jpg");
  z-index: 1;
}
/* base alt: handed over once, by the single bounded scroll beat */
.scene__layer--instructors {
  background-image: url("../img/scene-instructors-1920.jpg");
  z-index: 2;
  opacity: 0;
  transition: opacity .9s var(--ease-scene);
}
/* poster: the school's own hero poster (badge on the team jacket) opens as a
   band over the scene, then hands the frame to the place. Poster-to-title. */
.scene__layer--poster {
  background-image: url("../img/poster-badge-1920.jpg");
  z-index: 3;
  background-position: 50% 50%;
  clip-path: inset(33% 0 33% 0);
  opacity: 1;
  transition: clip-path .95s var(--ease-scene), opacity .62s ease .78s;
}
body.is-ready .scene__layer--poster { clip-path: inset(0 0 0 0); opacity: 0; }

/* one bounded media hand-off, triggered by the single scroll beat (JS: .is-shifted) */
.scene.is-shifted .scene__layer--instructors { opacity: 1; }

/* readability tint: a soft vignette + a bottom scrim, so the real lesson
   image stays legible as a place rather than being flattened to grey */
.scene__tint {
  position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, .5) 0%, rgba(8, 9, 11, .04) 26%, rgba(8, 9, 11, .06) 52%, rgba(8, 9, 11, .82) 100%),
    radial-gradient(128% 92% at 50% 36%, rgba(20, 48, 74, 0) 52%, rgba(8, 9, 11, .5) 100%);
}

.scene__content {
  position: absolute; inset: auto 0 0 0; z-index: 5;
  padding: 0 var(--edge) clamp(2rem, 5vh, 3.2rem);
}
.scene__content-inner { width: min(100%, 1420px); margin-inline: auto; }

.scene__eyebrow {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(1.32rem, 3.1vw, 2.5rem);
  color: rgba(255, 255, 255, .95);
  margin: 0 0 .5rem;
}
.scene__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.35rem, 7.6vw, 6.6rem);
  line-height: .95; letter-spacing: .005em;
  color: #fff; margin: 0;
}
/* word-level mask reveal (JS wraps each word; no JS = plain text stays visible) */
.js-split .w {
  display: inline-block; overflow: hidden; vertical-align: bottom;
  padding: .07em 0 .16em; margin: -.07em 0 -.16em;
}
.js-split .word {
  display: inline-block; opacity: 0;
  transform: translateY(104%);
  transition: opacity .82s var(--ease-reveal), transform .82s var(--ease-reveal);
  transition-delay: calc(var(--i, 0) * 92ms);
}
.js-split--hero.is-in .word, body.is-ready .js-split--hero .word { opacity: 1; transform: none; }

.scene__sub {
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem 1.1rem;
  margin: 1.05rem 0 0;
  font-size: clamp(.84rem, 1.5vw, 1.02rem);
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .9);
  opacity: 0; transform: translateY(10px);
  transition: opacity .7s ease .62s, transform .7s ease .62s;
}
body.is-ready .scene__sub { opacity: 1; transform: none; }
.scene__sub .dot { width: 5px; height: 5px; background: var(--orange); flex: none; }
.scene__swap { position: relative; display: inline-block; min-height: 1.25em; }
.scene__swap span { display: block; transition: opacity .55s ease, transform .55s ease; }
.scene__swap span:nth-child(2) {
  position: absolute; left: 0; top: 0; right: 0; color: var(--glacier);
  opacity: 0; transform: translateY(80%);
}
.scene.is-shifted .scene__swap span:nth-child(1) { opacity: 0; transform: translateY(-80%); }
.scene.is-shifted .scene__swap span:nth-child(2) { opacity: 1; transform: none; }

.scene__actions {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: clamp(1.2rem, 3vh, 1.9rem);
  opacity: 0; transform: translateY(12px);
  transition: opacity .7s ease .78s, transform .7s ease .78s;
}
body.is-ready .scene__actions { opacity: 1; transform: none; }

.scene__rail {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 6;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, .18);
  background: rgba(8, 9, 11, .5);
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform .8s var(--ease-scene);
}
/* the rail only exists where the fixed booking bar does not (>=1080px) */
@media (min-width: 1080px) { .scene__rail { display: block; } }
body.is-ready .scene__rail { transform: none; }
.scene__rail-inner {
  width: min(100% - (var(--edge) * 2), 1420px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .72rem 0; color: rgba(255, 255, 255, .82);
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
}
.scene__rail a { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; }
.scene__rail a:hover { color: #fff; }
.scene__cue { display: none; align-items: center; gap: .6rem; }

@media (max-width: 700px) {
  .scene__sub { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .scene__sub .dot { display: none; }
  /* keep the hero CTAs clear of the fixed booking bar */
  .scene__content { padding-bottom: 5.8rem; }
}
.scene__cue i {
  display: block; width: 1px; height: 26px; background: rgba(255, 255, 255, .5);
  animation: cue 2.2s var(--ease-scene) infinite;
  transform-origin: top;
}
@keyframes cue { 0%, 100% { transform: scaleY(.25); opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }
@media (min-width: 860px) { .scene__cue { display: inline-flex; } }
/* the rail is padded so hero content never sits under it */
.scene__content { padding-bottom: clamp(3.4rem, 8vh, 5.2rem); }
@media (min-width: 860px) { .scene__content { padding-bottom: clamp(4.6rem, 10vh, 6rem); } }

/* --------------------------------------------------------------- sections */

.section { padding: clamp(3.6rem, 9vh, 7rem) 0; }
.section--tight { padding: clamp(2.6rem, 6vh, 4.2rem) 0; }
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink .lede { color: rgba(255, 255, 255, .72); }
.section--ink .overline { color: rgba(255, 255, 255, .6); }
.section--ink .rule { background: rgba(255, 255, 255, .16); }
.section--ice { background: var(--ice); }

.section__head {
  display: grid; gap: clamp(.9rem, 2.4vw, 1.6rem);
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: clamp(1.6rem, 4vh, 2.8rem);
}
@media (min-width: 880px) {
  .section__head { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); }
}
.section__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(1.7rem, 4.1vw, 3.1rem); line-height: 1.02; margin: 0;
}
.js-split--section .word {
  transition-duration: .78s;
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js-split--section.is-in .word { opacity: 1; transform: none; }

/* --------------------------------------------------------------- lesson index */

.index {
  border-top: 1px solid var(--line);
}
.index__row {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) 8.5rem 2.2rem;
  align-items: center; gap: 1rem;
  padding: 1.15rem .35rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .25s ease, color .25s ease, padding .25s ease;
}
.index__row:hover, .index__row:focus-visible { background: var(--ink); color: #fff; padding-inline: 1rem; }
.index__row:hover .index__no, .index__row:focus-visible .index__no { color: var(--orange); }
.index__row:hover .index__note, .index__row:focus-visible .index__note { color: rgba(255, 255, 255, .62); }
.index__no { font-size: .7rem; letter-spacing: .18em; color: var(--slate-2); transition: color .25s ease; }
.index__name {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.05rem, 2.4vw, 1.72rem); line-height: 1.1;
}
.index__note { font-size: .76rem; color: var(--slate); transition: color .25s ease; text-align: right; }
.index__go { justify-self: end; color: var(--orange); }
@media (max-width: 720px) {
  .index__row { grid-template-columns: 2rem minmax(0, 1fr) 1.6rem; gap: .7rem; padding: 1rem .2rem; }
  .index__note { display: none; }
}

/* --------------------------------------------------------------- lesson cards */

.cards {
  display: grid; gap: clamp(.9rem, 2vw, 1.35rem);
  grid-template-columns: 1fr;
}
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .cards { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.card {
  position: relative; display: block; background: var(--ink);
  overflow: hidden; min-height: 340px;
}
.card__media {
  position: absolute; inset: 0;
  background-size: cover; background-position: 50% 44%;
  transition: transform .8s var(--ease-scene), opacity .4s ease;
}
.card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, .05) 26%, rgba(8, 9, 11, .55) 62%, rgba(8, 9, 11, .92) 100%);
}
.card:hover .card__media, .card:focus-visible .card__media { transform: scale(1.045); }
.card__body {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.35rem; color: #fff; min-height: 340px;
}
.card__label {
  font-family: var(--font-ui); font-size: .63rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--glacier); margin: 0 0 .45rem;
}
.card__title {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(1.12rem, 1.9vw, 1.42rem); line-height: 1.08; margin: 0;
}
.card__meta {
  margin-top: .55rem; font-size: .74rem; letter-spacing: .1em;
  color: rgba(255, 255, 255, .68); text-transform: uppercase;
}
.card__line {
  margin-top: .9rem; height: 2px; width: 34px; background: var(--orange);
  transition: width .35s var(--ease-scene);
}
.card:hover .card__line, .card:focus-visible .card__line { width: 100%; }

/* --------------------------------------------------------------- statement band (bounded pin) */

.band { position: relative; background: var(--ink); color: #fff; }
.band__track { position: relative; height: 250vh; }
.band__sticky {
  position: sticky; top: 0; height: 100svh; min-height: 520px;
  display: flex; align-items: center; overflow: hidden;
}
.band__media {
  position: absolute; inset: 0;
  background-image: url("../img/scene-instructors-1920.jpg");
  background-size: cover; background-position: 50% 42%;
  opacity: .62;
}
.band__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(112% 84% at 50% 46%, rgba(8, 9, 11, .42) 0%, rgba(8, 9, 11, .86) 100%),
    linear-gradient(rgba(16, 38, 58, .42), rgba(16, 38, 58, .42));
}
.band__inner { position: relative; width: min(100% - (var(--edge) * 2), 1180px); margin-inline: auto; }
.band__statements { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.band__statements li {
  font-family: var(--font-display); text-transform: uppercase; font-weight: 400;
  font-size: clamp(1.5rem, 5.6vw, 4.4rem); line-height: 1.02;
  color: rgba(255, 255, 255, .3);
  transition: color .5s ease;
  position: relative;
}
.band__statements li::after {
  content: ""; position: absolute; left: 0; bottom: .16em; height: 3px; width: 0;
  background: var(--orange);
  transition: width .7s var(--ease-scene);
}
.band__statements li.is-on { color: #fff; }
.band__statements li.is-on::after { width: min(190px, 30%); }
.band__foot {
  margin-top: clamp(1.4rem, 4vh, 2.4rem);
  display: flex; flex-wrap: wrap; gap: .85rem 1.4rem; align-items: center;
  color: rgba(255, 255, 255, .68); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
}
.band__hint { position: absolute; right: var(--edge); top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: center; font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.4); display: none; }
@media (min-width: 1080px) { .band__hint { display: block; } }

/* --------------------------------------------------------------- where to meet us */

.meet { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .meet { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); } }

.meet__card { background: var(--paper); border: 1px solid var(--line); }
.meet__row { display: grid; grid-template-columns: 7.6rem minmax(0, 1fr); gap: 1rem; padding: 1.05rem 1.25rem; border-bottom: 1px solid var(--line); }
.meet__row:last-child { border-bottom: 0; }
.meet__k { font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--slate-2); padding-top: .2rem; }
.meet__v { font-size: .98rem; min-width: 0; overflow-wrap: anywhere; }
.meet__v a { border-bottom: 1px solid var(--line); }
.meet__v a:hover { border-bottom-color: var(--orange); color: var(--orange-2); }
.meet__addr { font-family: var(--font-display); font-size: clamp(1.15rem, 2.2vw, 1.5rem); line-height: 1.32; }

.plate-figure { position: relative; overflow: hidden; background: var(--ink); min-height: 300px; }
.plate-figure img { width: 100%; height: 100%; object-fit: cover; }
.plate-figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.35rem 1.2rem;
  color: #fff; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0) 0%, rgba(8, 9, 11, .82) 100%);
}
/* the shield badge is a mark, not a photograph: show all of it on dark ground */
.plate-figure--mark { display: grid; place-items: center; padding: clamp(2rem, 5vw, 3.4rem); }
.plate-figure--mark img { width: auto; max-width: min(74%, 300px); max-height: 300px; object-fit: contain; }

/* --------------------------------------------------------------- testimonials */

.quote-block { display: grid; gap: clamp(1.2rem, 3vw, 2rem); justify-items: start; }
.reviews-link {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  border-bottom: 1px solid var(--slate-2); padding-bottom: .3rem;
}
.reviews-link:hover { color: var(--orange-2); border-bottom-color: var(--orange); }

.notice {
  border-left: 3px solid var(--orange);
  padding: .9rem 0 .9rem 1.1rem;
  font-size: .9rem; color: var(--slate); max-width: 66ch;
}
.notice strong { color: var(--ink); }

/* --------------------------------------------------------------- team teaser */

.split { display: grid; gap: clamp(1.4rem, 4vw, 3rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.split__media { position: relative; overflow: hidden; background: var(--ink); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* --------------------------------------------------------------- footer */

.footer { background: var(--ink); color: rgba(255, 255, 255, .74); padding: clamp(3rem, 7vh, 4.6rem) 0 2rem; }
.footer__grid { display: grid; gap: clamp(1.8rem, 4vw, 2.6rem); grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }
.footer h3 {
  font-family: var(--font-ui); font-size: .64rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--orange); margin: 0 0 1rem;
}
.footer a { color: rgba(255, 255, 255, .78); }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; font-size: .88rem; }
.footer__brand img { width: 168px; margin-bottom: 1rem; }
.footer__addr { font-size: .88rem; line-height: 1.7; font-style: normal; }
.footer__partners {
  display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 1.1rem;
  margin-top: clamp(2.2rem, 5vh, 3.4rem); padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
/* the source supplies these marks in mixed formats (some flat white, some
   transparent dark artwork), so they sit on one uniform light chip */
.footer__partners a, .footer__partners span {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; padding: .55rem .85rem; min-height: 44px;
  opacity: .82; transition: opacity .25s ease;
}
.footer__partners a:hover { opacity: 1; }
.footer__partners img { height: 22px; width: auto; max-width: 150px; object-fit: contain; }
.footer__legal {
  margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; align-items: center;
  font-size: .74rem; color: rgba(255, 255, 255, .55);
}
.footer__legal .to-top { margin-left: auto; }
.ext::after { content: "\2197"; font-size: .85em; margin-left: .3em; }

/* --------------------------------------------------------------- route pages */

.route-head { background: var(--ink); color: #fff; padding: calc(var(--nav-h) + clamp(2.4rem, 7vh, 4.6rem)) 0 clamp(2.4rem, 7vh, 4.2rem); position: relative; overflow: hidden; }
.route-head__media {
  position: absolute; inset: 0; background-size: cover; background-position: 50% 38%;
  opacity: .38;
}
.route-head__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 9, 11, .72) 0%, rgba(8, 9, 11, .55) 46%, rgba(8, 9, 11, .96) 100%);
}
.route-head__inner { position: relative; }
.route-head .h-display { font-size: clamp(2rem, 6.4vw, 4.6rem); margin: .55rem 0 0; }
.route-head .scene__eyebrow { font-size: clamp(1.05rem, 2.6vw, 1.9rem); }

.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--orange); }

.seg { display: flex; flex-wrap: wrap; gap: .5rem; }
.seg a {
  padding: .62rem 1rem; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid var(--line); background: var(--paper); color: var(--slate);
}
.seg a:hover { border-color: var(--ink); color: var(--ink); }
.seg a[aria-current="page"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.seg a[aria-current="page"] .tick { color: var(--orange); }
@media (max-width: 700px) {
  .seg { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .4rem; }
  .seg a { padding: .58rem .55rem; font-size: .62rem; letter-spacing: .08em; text-align: left; }
}

.facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (min-width: 700px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.facts > div { background: var(--paper); padding: 1.15rem 1.25rem; min-width: 0; }
.facts dt { font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--slate-2); margin: 0 0 .45rem; }
.facts dd { margin: 0; font-size: .98rem; overflow-wrap: anywhere; word-break: break-word; }

.prose { max-width: 66ch; min-width: 0; }
.prose p { margin: 0 0 1.05rem; }
.prose h2 { font-family: var(--font-display); text-transform: uppercase; font-weight: 400; font-size: clamp(1.3rem, 3vw, 2rem); margin: 2rem 0 .9rem; }
.prose blockquote {
  margin: 1.6rem 0; padding-left: 1.2rem; border-left: 3px solid var(--orange);
  font-family: var(--font-accent); font-style: italic; font-size: 1.12rem; color: var(--ink-3);
}

/* --------------------------------------------------------------- mobile booking bar */

.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 88;
  display: grid; grid-template-columns: 1fr auto;
  background: var(--ink); border-top: 1px solid rgba(255, 255, 255, .16);
  padding: .6rem max(.8rem, env(safe-area-inset-left)) calc(.6rem + env(safe-area-inset-bottom)) max(.8rem, env(safe-area-inset-right));
  gap: .6rem;
  transform: translateY(110%);
  transition: transform .4s var(--ease-scene);
}
body.is-ready .callbar { transform: none; }
.callbar .btn { width: 100%; }
.callbar__call {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .92rem 1.1rem; border: 1px solid rgba(255, 255, 255, .4); color: #fff;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.callbar__call:hover { background: rgba(255, 255, 255, .12); }
@media (min-width: 1080px) { .callbar { display: none; } }
body { padding-bottom: 4.6rem; }
@media (min-width: 1080px) { body { padding-bottom: 0; } }

/* --------------------------------------------------------------- utilities */

.grid-2 { display: grid; gap: clamp(1.2rem, 3vw, 2.4rem); grid-template-columns: 1fr; }
@media (min-width: 860px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stack { display: grid; gap: clamp(.8rem, 2vw, 1.2rem); }
.mt-l { margin-top: clamp(1.6rem, 4vh, 2.6rem); }
.mt-m { margin-top: 1.2rem; }
.center { text-align: center; }

.page-404 { min-height: 100svh; display: grid; place-items: center; background: var(--ink); color: #fff; text-align: center; padding: var(--edge); }
.page-404 .h-display { font-size: clamp(4rem, 18vw, 12rem); line-height: .9; }
.page-404 p { color: rgba(255, 255, 255, .7); }

/* --------------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .scene { height: auto; min-height: 0; padding: clamp(7rem, 22vh, 11rem) 0 clamp(2.6rem, 7vh, 4rem); }
  .scene__plate { position: absolute; inset: 0; transform: none !important; }
  .scene__layer--poster { clip-path: none !important; opacity: 0 !important; }
  .js-split .word { opacity: 1 !important; transform: none !important; }
  .scene__eyebrow, .scene__sub, .scene__actions, .scene__rail, .callbar { opacity: 1 !important; transform: none !important; }
  .scene__content { position: static; padding-bottom: 0; }
  .scene__rail { position: static; margin-top: 2rem; }
  .scene__swap { min-height: 0; }
  .scene__swap span:nth-child(1) { display: none; }
  .scene__swap span:nth-child(2) { position: static; opacity: 1 !important; transform: none !important; }
  .band__track { height: auto; }
  .band__sticky { position: static; height: auto; min-height: 0; padding: clamp(3.4rem, 10vh, 5.6rem) 0; }
  .band__statements li { color: #fff; }
  .band__statements li::after { width: min(190px, 30%); }
  .scene__cue i { animation: none; }
  .card__media { transition: none; }
}

/* no-js: never hide content behind motion */
html.no-js .js-split .word { opacity: 1; transform: none; }
html.no-js .scene__eyebrow,
html.no-js .scene__sub,
html.no-js .scene__actions,
html.no-js .scene__rail,
html.no-js .callbar { opacity: 1; transform: none; }
html.no-js .scene__layer--poster { clip-path: none; opacity: 0; }
html.no-js .scene__swap span:nth-child(1) { display: none; }
html.no-js .scene__swap span:nth-child(2) { position: static; opacity: 1; transform: none; }
html.no-js .scene__content { position: static; padding-bottom: 0; }
html.no-js .scene__rail { position: static; margin-top: 2rem; }
html.no-js .band__track { height: auto; }
html.no-js .band__sticky { position: static; height: auto; min-height: 0; padding: 4rem 0; }
html.no-js .band__statements li { color: #fff; }
html.no-js .band__statements li::after { width: min(190px, 30%); }
