/* Haraka Jet Ski Rental, Nyali Beach. Mobile-first one pager.
   Tokens: deep ocean ground, cream text, one orange. Montserrat only.
   Every interactive thing answers: cursor, hover, press, focus, selected.
   Sections alternate ocean / reef and meet at drifting wave cuts. */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/montserrat-latin-var.woff2") format("woff2");
}

:root {
  --ocean: #07161c;
  --reef: #0d2229;
  --reef-2: #132e37;
  --line: rgba(247, 239, 226, 0.14);
  --line-2: rgba(247, 239, 226, 0.28);
  --foam: #f7efe2;
  --foam-2: #c9d6d9;
  --mist: #9fb3b8;
  --orange: #f26537;
  --orange-2: #fb991c;
  --orange-glow: rgba(242, 101, 55, 0.45);
  --ink-on-orange: #07161c;
  --lagoon: #0b2b32;
  --lagoon-2: #2bb3a3;
  --sand: #f1e3c8;
  --sand-2: #e4d2b0;
  --ink-on-sand: #14262c;
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1180px;
  --pad: clamp(1.1rem, 4.5vw, 2.5rem);
  --bar-h: 64px;
  --top-h: 3.6rem;
  --radius: 18px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ocean);
  color: var(--foam);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  font-weight: 450;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom));
  overflow-x: clip;
}
img, video, svg { display: block; max-width: 100%; }
h1, h2, h3 { margin: 0; hyphens: none; overflow-wrap: normal; }
p { margin: 0; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
button { cursor: pointer; }
summary { cursor: pointer; }
::selection { background: var(--orange); color: var(--ink-on-orange); }
:focus-visible { outline: 3px solid var(--orange-2); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }
.wrap { max-width: var(--maxw); margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--orange); color: var(--ink-on-orange);
  padding: 0.7rem 1rem; border-radius: 999px; font-weight: 700; text-decoration: none;
  transition: top 0.2s;
}
.skip:focus { top: 1rem; }

/* Reveal once on scroll; headings wipe in like a wake */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
/* Der Wischer schneidet auf dem Rahmenkasten. Unterlaengen (y, g, p, q, j) ragen bei
   line-height 1.03 darunter hinaus und wurden abgeschnitten. Die negativen Werte oben,
   unten und rechts vergroessern nur den sichtbaren Bereich; die Animation laeuft
   unveraendert ueber den rechten Wert von 100% auf 0. */
.wipe { position: relative; display: inline-block; clip-path: inset(-0.2em 100% -0.32em 0); transition: clip-path 0.9s var(--ease) 0.1s; }
.is-in .wipe, .wipe.is-in { clip-path: inset(-0.25em -0.12em -0.35em -0.12em); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 3rem; padding: 0.75rem 1.4rem; border-radius: 999px;
  font-weight: 700; text-decoration: none; line-height: 1.1; white-space: nowrap;
  border: 2px solid transparent; cursor: pointer; position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease), background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.25s;
}
.btn svg { width: 1.25em; height: 1.25em; flex: none; }
.btn-primary { background: var(--orange); color: var(--ink-on-orange); border-color: var(--orange); box-shadow: 0 8px 24px -12px var(--orange-glow); }
.btn-primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%); transform: translateX(-120%); }
.btn-ghost { background: rgba(7, 22, 28, 0.25); color: var(--foam); border-color: rgba(247, 239, 226, 0.45); backdrop-filter: blur(6px); }
.btn-dark { background: var(--ocean); color: var(--foam); border-color: var(--ocean); }
.btn-big { min-height: 3.6rem; padding-inline: 2rem; font-size: 1.125rem; }
.btn:active { transform: scale(0.97); }
@media (hover: hover) {
  .btn-primary:hover { background: var(--orange-2); border-color: var(--orange-2); transform: translateY(-2px); box-shadow: 0 14px 30px -12px var(--orange-glow); }
  .btn-primary:hover::after { transition: transform 0.6s var(--ease); transform: translateX(120%); }
  .btn-ghost:hover { border-color: var(--foam); background: rgba(247, 239, 226, 0.1); transform: translateY(-2px); }
  .btn-dark:hover { background: var(--reef-2); transform: translateY(-2px); }
  .btn:active { transform: scale(0.97); }
}

/* Header */
.top {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 1rem;
  padding: calc(0.7rem + env(safe-area-inset-top)) var(--pad) 0.7rem;
  color: var(--foam);
  transition: background-color 0.3s, box-shadow 0.3s;
}
.top.is-solid { background: rgba(7, 22, 28, 0.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; margin-right: auto; }
.brand-mark { width: 2.1rem; height: 2.1rem; color: var(--orange); flex: none; transition: transform 0.3s var(--pop); }
@media (hover: hover) { .brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); } }
.brand-name { font-weight: 800; letter-spacing: 0.02em; line-height: 1; font-size: 1.05rem; display: flex; flex-direction: column; gap: 0.15rem; }
.brand-name small { font-weight: 500; font-size: 0.66rem; letter-spacing: 0.08em; color: var(--foam-2); }
.top-nav { display: none; }
.btn-top { background: var(--foam); color: var(--ocean); min-height: 2.6rem; padding: 0.5rem 1.1rem; font-size: 0.95rem; }
@media (hover: hover) { .btn-top:hover { background: var(--orange); transform: translateY(-1px); } }

/* Hero with the video wall */
.hero {
  position: relative; min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr);
  align-items: center; isolation: isolate; overflow: hidden;
}
.wall { position: absolute; inset: 0; z-index: -1; display: grid; grid-template-columns: 1fr; background: var(--ocean); }
.wall-cell { position: relative; overflow: hidden; }
.wall-cell--b, .wall-cell--c { display: none; }
.wall-cell picture, .wall-cell img, .wall-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.wall-video { opacity: 0; transition: opacity 0.9s var(--ease); }
.wall-cell.is-playing .wall-video { opacity: 1; }
.wall::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(7, 22, 28, 0.55) 0%, rgba(7, 22, 28, 0.35) 22%, rgba(7, 22, 28, 0.55) 50%, rgba(7, 22, 28, 0.35) 72%, rgba(7, 22, 28, 0.9) 100%);
}
.hero-copy { position: relative; padding: calc(var(--top-h) + env(safe-area-inset-top) + 1rem) var(--pad) calc(var(--bar-h) + 7rem); max-width: 44rem; }
.hero-place { font-weight: 600; color: var(--orange-2); font-size: 0.95rem; margin-bottom: 0.6rem; }
.hero h1 {
  font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.9;
  font-size: clamp(2.2rem, 10.3vw, 4.4rem);
  text-shadow: 0 6px 30px rgba(7, 22, 28, 0.55);
}
.hero h1 span { display: block; }
.hero-sub { margin-top: 1rem; color: var(--foam-2); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }
.hero-actions .btn { min-height: 4rem; padding-inline: 2.3rem; font-size: 1.2rem; }
.hero-actions .btn-ghost { background: rgba(7, 22, 28, 0.55); border-color: rgba(247, 239, 226, 0.8); }
.hero-scroll { display: none; }

/* one orchestrated entrance: the lines rush in from the left */
.hero h1 span, .hero-place, .hero-sub, .hero-actions { animation: rush 0.9s var(--ease) both; }
.hero-place { animation-delay: 0.05s; }
.hero h1 span:nth-child(1) { animation-delay: 0.15s; }
.hero h1 span:nth-child(2) { animation-delay: 0.27s; }
.hero-sub { animation-delay: 0.45s; }
.hero-actions { animation-delay: 0.58s; }
@keyframes rush { from { opacity: 0; transform: translateX(-36px) skewX(-6deg); } to { opacity: 1; transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

/* Brand band: moving words, pauses under the cursor */
.band { background: var(--orange); color: var(--ink-on-orange); overflow: hidden; padding: 0.55rem 0; position: relative; z-index: 2; }
.band-track {
  display: flex; align-items: center; width: max-content;
  font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; font-size: clamp(1.05rem, 2.6vw, 1.5rem); white-space: nowrap;
  animation: slide 28s linear infinite;
}
.band-copy { display: flex; align-items: center; gap: 1.6rem; padding-right: 1.6rem; flex: none; }
.band-track svg { width: 1.1em; height: 1.1em; flex: none; }
.band:hover .band-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-25%); } }

/* Facts strip */
.facts { border-block: 1px solid var(--line); background: var(--reef); }
.facts-list {
  list-style: none; margin: 0; padding: 0.4rem var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.2rem;
}
.facts-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.15rem; }
.facts-list li:last-child { grid-column: 1 / -1; }
.facts-list li:last-child { border-bottom: 0; }
.facts-list strong { font-weight: 800; font-size: 0.98rem; }
.facts-list span { color: var(--mist); font-size: 0.85rem; }

/* Sections and the wave cuts between them */
section { padding: clamp(3.5rem, 9vw, 7rem) var(--pad); position: relative; }
.hero, .facts { padding: 0; }
.ski { background: var(--lagoon); }
.find { background: var(--sand); color: var(--ink-on-sand); }
.book, .gallery, .faq { background: var(--ocean); }
h2 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.02; font-size: clamp(2rem, 7vw, 3.4rem); }
.book-head p, .gallery-head p, .ski-copy > p, .find-copy > p { color: var(--foam-2); max-width: 52ch; margin-top: 1rem; }

.cut { position: absolute; left: 0; right: 0; top: -1px; height: clamp(34px, 6vw, 70px); overflow: hidden; pointer-events: none; }
.cut svg { position: absolute; left: 0; top: 0; width: 200%; max-width: none; height: 100%; }
.cut-front { animation: drift 16s linear infinite; }
.cut-foam { animation: drift 16s linear infinite; color: var(--foam); opacity: 0.55; }
.cut-back { animation: drift-back 26s linear infinite; color: var(--lagoon-2); opacity: 0.35; }
.cut--ocean { color: var(--ocean); }
.cut--reef { color: var(--reef); }
.cut--lagoon { color: var(--lagoon); }
.cut--sand { color: var(--sand); }
.cut--sand ~ * .cut-foam, .cut--sand .cut-foam { color: var(--lagoon-2); opacity: 0.6; }
@keyframes drift { to { transform: translateX(-50%); } }
@keyframes drift-back { from { transform: translate(-50%, 18%); } to { transform: translate(0, 18%); } }

/* Booking: three steps, all in view */
.book-head { display: grid; gap: 1.2rem; }
.rail {
  list-style: none; margin: 0; padding: 0.4rem 0; display: flex; gap: 0.4rem; counter-reset: none;
  position: sticky; top: calc(var(--top-h) + env(safe-area-inset-top)); z-index: 20;
  background: rgba(7, 22, 28, 0.88); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.rail-step { flex: 1; min-width: 0; }
.rail-step a {
  display: flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.6rem; border-radius: 999px; text-decoration: none;
  border: 1px solid var(--line); color: var(--mist); font-weight: 700; font-size: 0.85rem; white-space: nowrap; overflow: hidden;
  transition: border-color 0.25s, color 0.25s, background-color 0.25s;
}
.rail-num {
  flex: none; width: 1.5rem; height: 1.5rem; border-radius: 50%; display: grid; place-items: center;
  border: 2px solid var(--line-2); font-size: 0.75rem; transition: background-color 0.25s, border-color 0.25s, color 0.25s;
}
.rail-txt { overflow: hidden; text-overflow: ellipsis; }
.rail-step.is-current a { border-color: var(--orange); color: var(--foam); }
.rail-step.is-current .rail-num { background: var(--orange); border-color: var(--orange); color: var(--ink-on-orange); }
.rail-step.is-done a { color: var(--foam); border-color: var(--line-2); }
.rail-step.is-done .rail-num { background: #2f7d55; border-color: #2f7d55; color: #fff; font-size: 0; }
.rail-step.is-done .rail-num::after { content: ""; width: 0.35rem; height: 0.65rem; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); margin-top: -0.15rem; }
@media (hover: hover) { .rail-step a:hover { border-color: var(--orange-2); color: var(--foam); } }

.book-grid { display: grid; gap: 1.8rem; margin-top: 1.6rem; }
.steps { display: grid; gap: 2rem; }
.step { border: 0; margin: 0; padding: 0; min-width: 0; scroll-margin-top: calc(var(--top-h) + 3.2rem); }
.step-head { display: grid; grid-template-columns: auto 1fr; column-gap: 0.8rem; align-items: center; padding: 0; margin: 0 0 0.9rem; }
.step-num {
  grid-row: 1 / 3; width: 2.2rem; height: 2.2rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange); color: var(--ink-on-orange); font-weight: 900; font-size: 1.05rem;
  box-shadow: 0 0 0 4px rgba(242, 101, 55, 0.18);
}
.step-title { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; line-height: 1.1; }
.step-hint { color: var(--mist); font-size: 0.88rem; }

.rides { display: grid; gap: 0.45rem; }
.ride, .addon {
  display: grid; grid-template-columns: auto 1fr auto; grid-template-areas: "check name price" "check note price";
  column-gap: 0.8rem; align-items: center;
  padding: 0.75rem 0.9rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(13, 34, 41, 0.55);
  position: relative; cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s var(--ease), box-shadow 0.25s;
}
.ride input, .addon input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.ride-check {
  grid-area: check; width: 1.4rem; height: 1.4rem; border-radius: 50%; border: 2px solid var(--line-2);
  display: grid; place-items: center; transition: border-color 0.2s, background-color 0.2s, transform 0.3s var(--pop);
}
.ride-check::after {
  content: ""; width: 0.45rem; height: 0.8rem; border: solid var(--ink-on-orange); border-width: 0 3px 3px 0;
  transform: rotate(45deg) scale(0); margin-top: -0.2rem; transition: transform 0.25s var(--pop);
}
.ride-name { grid-area: name; font-weight: 700; font-size: 1.05rem; }
.ride-note { grid-area: note; color: var(--mist); font-size: 0.82rem; }
.ride-note:empty { display: none; }
.ride-price { grid-area: price; font-weight: 800; font-size: 1.3rem; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; white-space: nowrap; transition: color 0.2s; }
.ride-price small { font-weight: 600; font-size: 0.66rem; color: var(--mist); margin-right: 0.15rem; vertical-align: 0.35em; }
.ride:active, .addon:active { transform: scale(0.985); }
@media (hover: hover) {
  .ride:hover, .addon:hover { border-color: var(--line-2); background: var(--reef); transform: translateX(3px); }
  .ride:hover .ride-check, .addon:hover .switch { border-color: var(--orange-2); }
}
.ride:has(input:checked), .addon:has(input:checked) { border-color: var(--orange); background: var(--reef-2); box-shadow: 0 0 0 1px var(--orange), 0 12px 30px -18px var(--orange-glow); }
.ride:has(input:checked) .ride-check { background: var(--orange); border-color: var(--orange); transform: scale(1.08); }
.ride:has(input:checked) .ride-check::after { transform: rotate(45deg) scale(1); }
.ride:has(input:checked) .ride-price, .addon:has(input:checked) .ride-price { color: var(--orange-2); }
.ride:has(input:focus-visible), .addon:has(input:focus-visible) { outline: 3px solid var(--orange-2); outline-offset: 2px; }

.addons { display: grid; gap: 0.45rem; margin-top: 0.8rem; }
.addon { grid-template-areas: "check text price"; border-style: dashed; }
.addon:has(input:checked) { border-style: solid; }
.switch { grid-area: check; width: 2.5rem; height: 1.4rem; border-radius: 999px; border: 2px solid var(--line-2); position: relative; transition: background-color 0.25s, border-color 0.25s; }
.switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 0.9rem; height: 0.9rem; border-radius: 50%; background: var(--foam-2); transition: transform 0.25s var(--pop), background-color 0.25s; }
.addon:has(input:checked) .switch { background: var(--orange); border-color: var(--orange); }
.addon:has(input:checked) .switch::after { transform: translateX(1.1rem); background: var(--ink-on-orange); }
.addon-text { grid-area: text; display: flex; flex-direction: column; gap: 0.1rem; }
.addon-text strong { font-weight: 700; font-size: 0.98rem; }
.addon-text span { color: var(--mist); font-size: 0.82rem; }

.when { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field-label { font-weight: 700; font-size: 0.95rem; }
.optional { font-weight: 500; color: var(--mist); font-size: 0.85rem; margin-left: 0.3rem; }
.field input {
  min-height: 3rem; padding: 0.6rem 0.8rem; border-radius: 12px;
  background: var(--reef); border: 1px solid var(--line); color: var(--foam);
  color-scheme: dark; width: 100%; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder { color: var(--mist); opacity: 0.8; }
.field input:hover { border-color: var(--line-2); }
.field input:focus { border-color: var(--orange-2); outline: none; box-shadow: 0 0 0 3px rgba(251, 153, 28, 0.35); }
.field-hint { color: var(--mist); font-size: 0.85rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  min-height: 2.7rem; padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--reef); color: var(--foam); font-weight: 600;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.chip:active { transform: scale(0.96); }
@media (hover: hover) { .chip:hover { border-color: var(--orange-2); transform: translateY(-1px); } }
.chip[aria-pressed="true"] { background: var(--orange); border-color: var(--orange); color: var(--ink-on-orange); }
.date-wrap { margin-top: 0.6rem; }
.seg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; background: var(--reef); }
.seg-item { position: relative; cursor: pointer; }
.seg-item input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.seg-item span { display: grid; place-items: center; min-height: 3rem; font-weight: 700; transition: background-color 0.2s, color 0.2s; }
.seg-item + .seg-item span { border-left: 1px solid var(--line); }
@media (hover: hover) { .seg-item:hover span { background: var(--reef-2); } }
.seg-item:has(input:checked) span { background: var(--orange); color: var(--ink-on-orange); }
.seg-item:has(input:focus-visible) span { box-shadow: inset 0 0 0 3px var(--orange-2); }
.seg-item.is-off { cursor: not-allowed; }
.seg-item.is-off span { opacity: 0.32; }
@media (hover: hover) { .seg-item.is-off:hover span { background: transparent; } }

.ticket-wrap { min-width: 0; scroll-margin-top: calc(var(--top-h) + 3.2rem); }
.ticket {
  background: var(--foam); color: var(--ocean); border-radius: var(--radius); padding: 1.2rem 1.2rem 1.1rem;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7); position: relative;
  transition: box-shadow 0.4s;
}
.is-ready .ticket { box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7), 0 0 0 3px var(--orange); }
.ticket::before, .ticket::after {
  content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--ocean);
  top: 4.2rem; transform: translateY(-50%);
}
.ticket::before { left: -9px; }
.ticket::after { right: -9px; }
.ticket-head { margin-bottom: 0; padding-bottom: 0.9rem; border-bottom: 2px dashed rgba(7, 22, 28, 0.25); }
.ticket-head .step-num { box-shadow: 0 0 0 4px rgba(242, 101, 55, 0.22); }
.ticket-label { margin-top: 1rem; font-weight: 700; font-size: 0.8rem; color: #4b6069; }
.ticket-msg { margin: 0.4rem 0 0; display: grid; align-content: start; gap: 0.15rem; font-size: 0.95rem; line-height: 1.45; color: #1d3038; min-height: 5.2rem; overflow-wrap: anywhere; }
.tl { display: block; border-radius: 4px; padding: 0 0.2rem; margin: 0 -0.2rem; }
.tl.is-new { animation: mark 1.2s var(--ease) both; }
@keyframes mark { 0% { background: rgba(242, 101, 55, 0.55); } 100% { background: rgba(242, 101, 55, 0); } }
.ticket-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1rem; padding-top: 0.9rem; border-top: 2px dashed rgba(7, 22, 28, 0.25); }
.ticket-total span { font-weight: 600; color: #4b6069; }
.ticket-total strong { font-weight: 900; font-size: 1.5rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.ticket-total strong.is-bump { animation: bump 0.35s var(--pop); }
@keyframes bump { 50% { transform: scale(1.12); color: var(--orange); } }
.ticket-hint { margin-top: 0.5rem; font-size: 0.88rem; color: #4b6069; }
.is-ready .ticket-hint { color: #1f6b47; font-weight: 600; }
.ticket-actions { display: grid; gap: 0.6rem; margin-top: 1rem; }
.ticket .btn-ghost { color: var(--ocean); border-color: rgba(7, 22, 28, 0.35); background: transparent; backdrop-filter: none; }
@media (hover: hover) { .ticket .btn-ghost:hover { background: rgba(7, 22, 28, 0.06); border-color: var(--ocean); } }
.ticket-note { margin-top: 0.8rem; font-size: 0.82rem; color: #4b6069; }
.ticket-note a { color: inherit; text-decoration-color: var(--orange); text-underline-offset: 2px; }

/* Calendar dialog */
.cal {
  border: 0; padding: 0; margin: auto; width: min(92vw, 22.5rem); border-radius: 22px;
  background: var(--foam); color: var(--ocean); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
  animation: calin 0.35s var(--pop);
}
.cal::backdrop { background: rgba(7, 22, 28, 0.7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
@keyframes calin { from { opacity: 0; transform: translateY(14px) scale(0.96); } to { opacity: 1; transform: none; } }
.cal-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1rem 0.6rem; }
.cal-head h3 { font-size: 1.05rem; font-weight: 800; }
.cal-nav {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 1px solid rgba(7, 22, 28, 0.2); background: transparent; color: var(--ocean);
  display: grid; place-items: center; transition: background-color 0.2s, transform 0.2s var(--ease);
}
.cal-nav svg { width: 1.2rem; height: 1.2rem; }
.cal-nav:disabled { opacity: 0.3; cursor: default; }
@media (hover: hover) { .cal-nav:not(:disabled):hover { background: rgba(7, 22, 28, 0.08); transform: scale(1.06); } }
.cal-week, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); padding: 0 0.8rem; }
.cal-week span { text-align: center; font-size: 0.72rem; font-weight: 700; color: #6b7d85; padding: 0.3rem 0; }
.cal-grid { gap: 0.2rem; padding-bottom: 0.6rem; }
.cal-day {
  aspect-ratio: 1; border-radius: 50%; border: 0; background: transparent; color: var(--ocean); font-weight: 700; font-size: 0.98rem;
  display: grid; place-items: center; transition: background-color 0.15s, color 0.15s, transform 0.2s var(--pop);
}
.cal-day:disabled { color: rgba(7, 22, 28, 0.28); cursor: default; }
.cal-day.is-today { box-shadow: inset 0 0 0 2px var(--orange); }
.cal-day.is-selected { background: var(--orange); color: var(--ink-on-orange); }
@media (hover: hover) { .cal-day:not(:disabled):not(.is-selected):hover { background: rgba(242, 101, 55, 0.18); transform: scale(1.08); } }
.cal-day:active:not(:disabled) { transform: scale(0.92); }
.cal-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.6rem 1rem 1rem; border-top: 1px dashed rgba(7, 22, 28, 0.2); }
.cal-hint { font-size: 0.85rem; color: #4b6069; }
.cal-close { color: var(--ocean); border-color: rgba(7, 22, 28, 0.3); background: transparent; backdrop-filter: none; min-height: 2.6rem; padding-inline: 1rem; }
@media (hover: hover) { .cal-close:hover { background: rgba(7, 22, 28, 0.06); border-color: var(--ocean); } }

/* The ski */
.ski-grid { display: grid; gap: 1.6rem; }
.ski-photo { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; position: relative; }
.ski-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 6s var(--ease); }
.ski-photo.is-in img { transform: scale(1); }
.ski-badge {
  position: absolute; left: 1rem; top: 1rem; background: var(--orange); color: var(--ink-on-orange);
  font-weight: 900; padding: 0.35rem 0.7rem; border-radius: 999px; font-size: 0.95rem; letter-spacing: 0.04em;
}
.spec { margin: 1.6rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.spec div { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.spec dt { color: var(--mist); font-size: 0.8rem; font-weight: 600; }
.spec dd { margin: 0.1rem 0 0; font-weight: 900; font-size: 1.5rem; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.spec dd.spec-sub { font-weight: 500; font-size: 0.85rem; color: var(--foam-2); letter-spacing: 0; }
.ski-copy .btn { margin-top: 1.6rem; }

/* Gallery: clips run on their own, sound is one tap */
.clips { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.8rem; grid-template-columns: 1fr 1fr; }
.clip { position: relative; border-radius: 14px; overflow: hidden; background: var(--reef); aspect-ratio: 9 / 16; cursor: pointer; }
.clip.has-sound { box-shadow: 0 0 0 3px var(--orange); }
.clip video { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.clip-sound {
  position: absolute; right: 0.6rem; bottom: 0.6rem; width: 2.7rem; height: 2.7rem; border-radius: 50%; border: 0;
  background: rgba(7, 22, 28, 0.7); color: var(--foam); display: grid; place-items: center;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.2s, transform 0.25s var(--pop);
}
.clip-sound svg { width: 1.25rem; height: 1.25rem; grid-area: 1 / 1; }
.clip-sound .ico-on { display: none; }
.clip-sound[aria-pressed="true"] { background: var(--orange); color: var(--ink-on-orange); }
.clip-sound[aria-pressed="true"] .ico-on { display: block; }
.clip-sound[aria-pressed="true"] .ico-off { display: none; }
.clip-sound:active { transform: scale(0.92); }
@media (hover: hover) { .clip-sound:hover { transform: scale(1.1); } }
.clip.is-playing::after { content: ""; position: absolute; left: 0.7rem; top: 0.7rem; width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(242, 101, 55, 0.6); animation: live 1.8s ease-out infinite; }
@keyframes live { 70% { box-shadow: 0 0 0 8px rgba(242, 101, 55, 0); } 100% { box-shadow: 0 0 0 0 rgba(242, 101, 55, 0); } }
.gallery-social { margin-top: 1.4rem; color: var(--foam-2); }
.gallery-social a { font-weight: 700; text-decoration-color: var(--orange); text-underline-offset: 3px; transition: color 0.2s; }
@media (hover: hover) { .gallery-social a:hover { color: var(--orange-2); } }

/* Find us */
.find-grid { display: grid; gap: 1.6rem; }
.find .btn-primary { box-shadow: 0 10px 24px -14px rgba(7, 22, 28, 0.6); }
.find-copy > p { color: #3c5058; }
.find-contact a { text-decoration-color: rgba(20, 38, 44, 0.35); }
.map { box-shadow: 0 20px 40px -24px rgba(7, 22, 28, 0.6); }
.map figcaption { color: var(--foam); }
.find .btn { margin-top: 1.4rem; }
.find-contact { font-style: normal; margin-top: 1.4rem; display: grid; gap: 0.5rem; }
.find-contact a { font-weight: 600; text-decoration-color: rgba(247, 239, 226, 0.35); text-underline-offset: 3px; transition: color 0.2s, text-decoration-color 0.2s; }
@media (hover: hover) { .find-contact a:hover { color: var(--orange); text-decoration-color: var(--orange); } }
.map { margin: 0; position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 2; }
.map-link { display: block; position: relative; height: 100%; }
.map img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
@media (hover: hover) { .map-link:hover img { transform: scale(1.04); } .map-link:hover .map-pin { transform: translate(-50%, -50%) scale(1.15); } }
.map-pin {
  position: absolute; left: 50%; top: 50%; width: 18px; height: 18px; border-radius: 50%; transform: translate(-50%, -50%);
  background: var(--orange); box-shadow: 0 0 0 5px rgba(242, 101, 55, 0.35), 0 0 0 12px rgba(242, 101, 55, 0.14);
  transition: transform 0.3s var(--pop);
}
.map-pin::before { content: ""; position: absolute; inset: -14px; border-radius: 50%; border: 2px solid var(--orange); animation: ping 2.4s ease-out infinite; }
@keyframes ping { 0% { transform: scale(0.5); opacity: 0.9; } 100% { transform: scale(1.8); opacity: 0; } }
.map figcaption { position: absolute; right: 0.5rem; bottom: 0.4rem; font-size: 0.7rem; color: var(--foam-2); background: rgba(7, 22, 28, 0.6); padding: 0.15rem 0.45rem; border-radius: 6px; }
.map figcaption a { color: inherit; }

/* FAQ */
.faq-wrap { max-width: 52rem; }
.faq-list { margin-top: 1.6rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.1rem 2.4rem 1.1rem 0; font-weight: 700; font-size: 1.1rem; position: relative;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
@media (hover: hover) { .faq summary:hover { color: var(--orange-2); } }
.faq summary::before, .faq summary::after {
  content: ""; position: absolute; right: 0.5rem; top: 50%; width: 16px; height: 2px; background: var(--orange); transition: transform 0.3s var(--ease);
}
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq details p { padding: 0 0 1.2rem; color: var(--foam-2); max-width: 60ch; }
.faq details[open] p { animation: rise 0.4s var(--ease) both; }
.faq details p a { text-decoration-color: var(--orange); text-underline-offset: 3px; }

/* Closer: back on the water */
.closer {
  position: relative; min-height: 72vh; display: grid; align-items: center; isolation: isolate; overflow: hidden;
  background: var(--ocean); color: var(--foam); text-align: center; padding-top: clamp(6rem, 14vw, 10rem); padding-bottom: clamp(5rem, 12vw, 8rem);
}
.closer-media { position: absolute; inset: 0; z-index: -1; }
.closer-media picture, .closer-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 18% 55%; }
.closer-media img { transform: scale(1.06); transition: transform 8s var(--ease); }
.closer.is-in .closer-media img { transform: scale(1); }
.closer-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(7, 22, 28, 0.5) 0%, rgba(7, 22, 28, 0.3) 45%, rgba(7, 22, 28, 0.88) 100%); }
.closer-wrap { display: grid; justify-items: center; gap: 1rem; max-width: 46rem; padding: clamp(1.6rem, 4vw, 2.8rem) clamp(1.2rem, 4vw, 2.4rem); border-radius: 26px; background: rgba(7, 22, 28, 0.58); border: 1px solid rgba(247, 239, 226, 0.14); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8); }
.closer-place { font-weight: 600; color: var(--orange-2); font-size: 0.95rem; }
.closer h2 { font-size: clamp(2.4rem, 9vw, 5.2rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; max-width: 12ch; line-height: 0.95; text-shadow: 0 8px 30px rgba(7, 22, 28, 0.6); }
.closer-sub { color: var(--foam-2); max-width: 36ch; font-size: 1.1rem; }
.closer-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-top: 0.4rem; }

/* Footer */
.foot { position: relative; padding: clamp(3rem, 7vw, 5rem) var(--pad) 1.5rem; border-top: 1px solid var(--line); background: var(--ocean); color: var(--foam-2); font-size: 0.95rem; overflow: hidden; }
.foot-grid { display: grid; gap: 2.2rem; }
.foot-brand .brand { margin-right: 0; }
.foot-addr { margin-top: 1rem; color: var(--foam-2); line-height: 1.5; }
.foot-map { display: inline-block; margin-top: 0.6rem; font-weight: 700; color: var(--foam); text-decoration-color: var(--orange); text-underline-offset: 3px; transition: color 0.2s; }
.foot-col h2 { font-size: 0.95rem; font-weight: 800; color: var(--foam); margin-bottom: 0.8rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.foot-col a { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--foam-2); min-height: 2rem; transition: color 0.2s, transform 0.2s var(--ease); }
.foot-col svg { width: 1.15rem; height: 1.15rem; flex: none; color: var(--orange); }
@media (hover: hover) { .foot-col a:hover { color: var(--foam); transform: translateX(3px); } .foot-map:hover { color: var(--orange-2); } }
.foot-word {
  margin: clamp(1.2rem, 3vw, 2.4rem) 0 0.6rem; text-align: center; font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.85;
  font-size: clamp(4rem, 14.5vw, 13.5rem); color: transparent; user-select: none; pointer-events: none;
  background: linear-gradient(to bottom, rgba(43, 179, 163, 0.28), rgba(247, 239, 226, 0.03)); -webkit-background-clip: text; background-clip: text;
}
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem 1.5rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: 0.85rem; }
.foot-legal { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.2rem; }
.foot-legal a { color: var(--foam-2); text-decoration-color: rgba(247, 239, 226, 0.35); text-underline-offset: 3px; }
@media (hover: hover) { .foot-legal a:hover { color: var(--orange-2); } }
/* Agency credit, a quiet line of its own under the legal row */
.foot-credit { flex: 1 0 100%; margin-top: 0.5rem; color: var(--mist); font-size: 0.8rem; }
.foot-credit a { color: var(--foam-2); text-decoration-color: rgba(247, 239, 226, 0.35); text-underline-offset: 3px; white-space: nowrap; }
@media (hover: hover) { .foot-credit a:hover { color: var(--orange-2); } }

/* Legal pages */
.legal-body { padding-bottom: 0; }
.legal-doc { max-width: 46rem; margin: 0 auto; padding: calc(var(--top-h) + env(safe-area-inset-top) + 3.5rem) var(--pad) 4rem; }
.legal-eyebrow { color: var(--orange-2); font-weight: 600; font-size: 0.95rem; }
.legal-doc h1 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; font-size: clamp(2rem, 6vw, 3rem); margin-top: 0.4rem; }
.legal-date { color: var(--mist); font-size: 0.9rem; margin-top: 0.6rem; }
.legal-lead { margin-top: 1.4rem; font-size: 1.1rem; color: var(--foam); }
.legal-doc h2 { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; margin-top: 2.2rem; }
.legal-doc h2 + p, .legal-doc p + p, .legal-doc ul + p, .legal-doc p + ul { margin-top: 0.7rem; }
.legal-doc p, .legal-doc li { color: var(--foam-2); }
.legal-doc ul { margin: 0; padding-left: 1.2rem; display: grid; gap: 0.35rem; }
.legal-doc a { text-decoration-color: var(--orange); text-underline-offset: 3px; }
.legal-doc strong { color: var(--foam); }
.legal-back { margin-top: 3rem; }
.legal-foot { border-top: 1px solid var(--line); padding: 1.5rem var(--pad); text-align: center; color: var(--mist); font-size: 0.85rem; }
.legal-foot a { color: var(--foam-2); text-decoration-color: rgba(247, 239, 226, 0.35); text-underline-offset: 3px; }

/* Phone action bar */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr 1.7fr; gap: 0.4rem;
  padding: 0.45rem 0.6rem calc(0.45rem + env(safe-area-inset-bottom));
  background: rgba(7, 22, 28, 0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem;
  min-height: 3.1rem; border-radius: 12px; text-decoration: none; font-size: 0.72rem; font-weight: 600; color: var(--foam);
  transition: background-color 0.2s, transform 0.2s var(--ease);
}
.bar a:active { transform: scale(0.96); }
.bar svg { width: 1.3rem; height: 1.3rem; }
.bar-book { background: var(--orange); color: var(--ink-on-orange) !important; }
.bar-book-main { font-size: 0.95rem; font-weight: 800; line-height: 1.1; }
.bar-book-sub { font-size: 0.72rem; font-weight: 700; line-height: 1; }
.bar-book-sub:empty { display: none; }
.bar-book.is-live { animation: glow 1.2s var(--ease) 1; }
@keyframes glow { 0%, 100% { box-shadow: 0 0 0 0 rgba(242, 101, 55, 0); } 40% { box-shadow: 0 0 0 8px rgba(242, 101, 55, 0.45); } }

/* Tablet */
@media (min-width: 760px) {
  body { font-size: 1.125rem; }
  .facts-list { grid-template-columns: repeat(3, 1fr); column-gap: 2rem; }
  .facts-list li:last-child { grid-column: auto; }
  .facts-list li:nth-child(3), .facts-list li:nth-child(4) { border-bottom: 0; }
  .rail { position: static; background: transparent; backdrop-filter: none; padding: 0; }
  .book-head { grid-template-columns: 1fr auto; align-items: end; }
  .rail { width: 27rem; }
  .book-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: start; }
  .steps { display: contents; }
  #step-ride { grid-column: 1; grid-row: 1 / 3; }
  #step-when { grid-column: 2; grid-row: 1; }
  .ticket-wrap { grid-column: 2; grid-row: 2; }
  .ski-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .clips { grid-template-columns: repeat(3, 1fr); }
  .find-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .foot-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* Desktop */
@media (min-width: 1080px) {
  :root { --bar-h: 0px; }
  body { padding-bottom: 0; }
  .bar { display: none; }
  .top { padding-inline: clamp(2rem, 4vw, 4rem); }
  .top-nav { display: flex; gap: 1.6rem; margin-right: 1.5rem; }
  .top-nav a { text-decoration: none; font-weight: 600; font-size: 0.95rem; color: var(--foam-2); position: relative; padding: 0.3rem 0; transition: color 0.2s; }
  .top-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
  .top-nav a:hover { color: var(--foam); }
  .top-nav a:hover::after { transform: scaleX(1); }
  /* Der Abstand um eine Trennlinie kam vorher aus drei Quellen: padding-right 1.2rem,
     margin-right 1.2rem und dem column-gap 2rem aus dem Tablet-Block, der auf dem
     Flex-Container weiterwirkt. Ergebnis waren 20 px vor und 51 px nach der Linie.
     Jetzt traegt allein der symmetrische Innenabstand den ganzen Abstand, damit jede
     Linie genau mittig zwischen zwei Texten sitzt. Aussen faellt er weg, sonst
     rechnet justify-content: center ihn mit und das Band steht neben der Mitte. */
  .facts-list { display: flex; justify-content: center; padding-block: 0.2rem; column-gap: 0; }
  .facts-list li { flex: none; border-bottom: 0; border-right: 1px solid var(--line); padding: 1rem 1.6rem; margin-right: 0; }
  .facts-list li:first-child { padding-left: 0; }
  .facts-list li:last-child { border-right: 0; padding-right: 0; }
  .facts-list strong, .facts-list span { white-space: nowrap; }

  .hero { min-height: 100vh; align-items: center; padding: 6rem clamp(2rem, 4vw, 4rem) 4rem; }
  .wall { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .wall-cell--b, .wall-cell--c { display: block; }
  .wall-cell--b .wall-video, .wall-cell--b img { object-position: 50% 40%; }
  .wall::after { background: linear-gradient(to right, rgba(7, 22, 28, 0.92) 0%, rgba(7, 22, 28, 0.8) 30%, rgba(7, 22, 28, 0.35) 62%, rgba(7, 22, 28, 0.2) 100%), linear-gradient(to bottom, rgba(7, 22, 28, 0.35) 0%, rgba(7, 22, 28, 0) 25%, rgba(7, 22, 28, 0) 70%, rgba(7, 22, 28, 0.8) 100%); }
  .hero-copy { padding: 0; max-width: 50rem; align-self: center; }
  .hero h1 { font-size: clamp(4.2rem, 6.05vw, 5.65rem); }
  .hero-sub { font-size: 1.2rem; }
  .hero-scroll {
    display: grid; place-items: center; position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
    width: 2.8rem; height: 2.8rem; border-radius: 50%; border: 1px solid var(--line-2); color: var(--foam);
    animation: nudge 2.2s var(--ease) infinite; transition: border-color 0.2s, background-color 0.2s;
  }
  .hero-scroll svg { width: 1.2rem; height: 1.2rem; }
  .hero-scroll:hover { border-color: var(--orange); background: var(--orange); color: var(--ink-on-orange); animation: none; }
  @keyframes nudge { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

  .book { padding-top: 5rem; }
  .book-head p { max-width: 46ch; }
  .book-grid { gap: 2rem; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr); margin-top: 1.4rem; }
  #step-ride { grid-column: 1; grid-row: 1; }
  #step-when { grid-column: 2; grid-row: 1; }
  .ticket-wrap { grid-column: 3; grid-row: 1; position: sticky; top: 5.2rem; }
  .when { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .ride { padding: 0.55rem 0.8rem; }
  .ride-price { font-size: 1.15rem; }
  .ride-name { font-size: 1rem; }
  .ticket { padding: 1.3rem; }
  .ski-grid { gap: 4rem; }
  .find-grid { gap: 4rem; }
  .closer { min-height: 80vh; }
  .closer-media img { object-position: 30% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero h1 span, .hero-place, .hero-sub, .hero-actions, .hero-scroll, .map-pin::before, .bar-book.is-live, .faq details[open] p, .tl.is-new, .ticket-total strong.is-bump, .cut-front, .cut-back, .clip.is-playing::after { animation: none; }
  .band-track { animation: none; width: auto; flex-wrap: wrap; white-space: normal; justify-content: center; padding-inline: var(--pad); }
  .band-copy:nth-child(n+2) { display: none; }
  .band-copy { flex-wrap: wrap; justify-content: center; padding-right: 0; }
  .cal { animation: none; }
  .cut-foam { animation: none; }
  .closer-media img { transform: none; transition: none; }
  .wall-video { display: none; }
  .clip video { pointer-events: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .wipe { clip-path: none; transition: none; }
  .ski-photo img { transform: none; transition: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
