/* ============================================================
   BELMONTE — Appartements über Sölden
   Palette: Schnee / Fichte / Lärche / Stein
   Type: Bricolage Grotesque (Display) · Instrument Sans (Body)
         IBM Plex Mono (Daten & Eyebrows)
   ============================================================ */

:root {
  --snow: #F5F4F0;
  --paper: #FDFDFB;
  --pine: #16241D;
  --pine-2: #22352B;
  --larch: #B5854F;
  --larch-deep: #8F6636;
  --stone: #6A6F68;
  --mist: #E5E7E0;
  --ink: #1C2620;

  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --wrap: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --head-h: 76px;
}

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

html { scroll-behavior: auto; }

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

img { display: block; max-width: 100%; height: auto; }
picture { display: contents; }
figure { margin: 0; }
h1, h2, h3, p, ul, address { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; }
address { font-style: normal; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(5rem, 11vw, 10rem); }
.only-desktop { display: none; }
/* revert statt initial: stellt den Standardwert des jeweiligen Elements her.
   "initial" wäre immer inline und würde den <p>-Hinweis zum Inline-Element machen. */
@media (min-width: 900px) { .only-desktop { display: revert; } }

/* --larch-deep statt --larch: Weiß darauf erreicht 5,1:1 statt 3,3:1 (WCAG AA) */
:focus-visible { outline: 2px solid var(--larch-deep); outline-offset: 3px; }

.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -130%);
  z-index: 400;
  background: var(--pine);
  color: var(--snow);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform .25s ease;
}
.skip-link:focus { transform: translate(-50%, 0); }

::selection { background: var(--larch); color: var(--snow); }

/* ---------- Typography helpers ---------- */

.eyebrow {
  color: var(--larch-deep);
  margin-bottom: 1.4rem;
}
.eyebrow--light { color: var(--larch); }

.h2 {
  font-family: var(--font-display);
  font-weight: 640;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
  margin-bottom: 1.8rem;
}
.h2--light { color: var(--snow); }

.dark {
  background: var(--pine);
  color: #C9CFC6;
}

/* split lines get masked */
.split-line { overflow: hidden; }

/* ============================================================
   HEADER
   ============================================================ */

.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--head-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad);
  color: var(--snow);
  transition: background .45s ease, color .45s ease, box-shadow .45s ease;
}
.site-head.is-scrolled {
  background: color-mix(in srgb, var(--snow) 92%, transparent);
  color: var(--ink);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgb(22 36 29 / 8%);
}
.site-head.is-scrolled.head-dark {
  background: color-mix(in srgb, var(--pine) 82%, transparent);
  color: var(--snow);
  box-shadow: 0 1px 0 rgb(245 244 240 / 8%);
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  position: relative;
  z-index: 5;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
}
.brand__sub { font-size: 0.58rem; opacity: 0.75; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
}
.site-nav > a:not(.btn) {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding-block: 0.3rem;
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.6,.05,.2,1);
}
.site-nav > a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
}
.lang span { opacity: 0.4; }
.lang a {
  text-decoration: none;
  opacity: 0.7;
  transition: opacity .3s ease, color .3s ease;
  padding: 0.3rem 0.1rem;
}
.lang a:hover { opacity: 1; }
.lang a[aria-current="page"] {
  opacity: 1;
  color: var(--larch);
  font-weight: 500;
}
.site-head.is-scrolled:not(.head-dark) .lang a[aria-current="page"] { color: var(--larch-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: currentColor;
  transition: transform .35s ease, opacity .35s ease;
}

@media (max-width: 899px) {
  .nav-toggle { display: flex; color: inherit; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--pine);
    color: var(--snow);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  /* visibility zusätzlich zu opacity: sonst bleiben die Menülinks bei
     geschlossenem Menü mit der Tab-Taste erreichbar (unsichtbare Fokusfallen). */
  .site-nav { visibility: hidden; transition: opacity .4s ease, visibility .4s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; visibility: visible; }
  .site-nav > a:not(.btn) {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
  }
  .site-nav .lang { font-size: 1rem; gap: 0.8rem; }
  .site-head.menu-open { color: var(--snow); background: transparent; box-shadow: none; backdrop-filter: none; }
  .site-head.menu-open .nav-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .site-head.menu-open .nav-toggle span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  --btn-bg: var(--larch-deep);   /* Weiß auf #8F6636 = 5,1:1 (WCAG AA erfüllt) */
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: color .4s ease, border-color .4s ease;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--btn-bg);
  transition: transform .5s cubic-bezier(.65,.05,.2,1);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--pine);
  transform: translateY(101%);
  transition: transform .5s cubic-bezier(.65,.05,.2,1);
}
.btn:hover::after { transform: translateY(0); }
.btn--solid { color: var(--btn-fg); }
.btn--ghost {
  color: var(--snow);
  border: 1px solid rgb(245 244 240 / 55%);
}
.btn--ghost::before { background: transparent; }
.btn--ghost::after { background: var(--snow); }
.btn--ghost:hover { color: var(--pine); border-color: var(--snow); }
.btn--line {
  color: var(--ink);
  border: 1px solid rgb(28 38 32 / 35%);
}
.btn--line::before { background: transparent; }
.btn--line::after { background: var(--pine); }
.btn--line:hover { color: var(--snow); border-color: var(--pine); }
.btn--small { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.btn--big { padding: 1.25rem 2.8rem; font-size: 1.1rem; }

.dark .btn--line { color: #C9CFC6; border-color: rgb(201 207 198 / 35%); }
.dark .btn--line::after { background: var(--snow); }
.dark .btn--line:hover { color: var(--pine); }

/* ============================================================
   TRAIL RAIL (fixed page progress)
   ============================================================ */

.trail {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--stone);
  mix-blend-mode: normal;
}
@media (min-width: 1200px) { .trail { display: flex; } }

.trail__peak { font-size: 0.6rem; color: var(--larch); }
.trail__line {
  position: relative;
  width: 1px;
  height: 34vh;
  background: rgb(124 129 120 / 35%);
}
.trail__fill {
  position: absolute;
  top: 0; left: -0.5px;
  width: 2px;
  height: 100%;
  background: var(--larch);
  transform: scaleY(0);
  transform-origin: top;
}
.trail__stations {
  position: absolute;
  inset: 0;
  top: calc(0.6rem + 0.8rem + 0.6rem);
  height: 34vh;
  width: 1px;
  left: 50%;
}
.trail__stations a {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.trail__stations a:nth-child(1) { top: 0%; }
.trail__stations a:nth-child(2) { top: 25%; }
.trail__stations a:nth-child(3) { top: 50%; }
.trail__stations a:nth-child(4) { top: 75%; }
.trail__stations a:nth-child(5) { top: 100%; }
.trail__stations i {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--snow);
  border: 1.5px solid var(--stone);
  transition: background .3s, border-color .3s, transform .3s;
}
.trail__stations em {
  position: absolute;
  right: 14px;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity .3s, transform .3s;
}
.trail__stations a:hover em,
.trail__stations a.is-active em { opacity: 1; transform: translateX(0); }
.trail__stations a.is-active i {
  background: var(--larch);
  border-color: var(--larch);
  transform: scale(1.35);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--snow);
  overflow: clip;
}
.hero__media {
  position: absolute;
  inset: -12% 0 0 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgb(22 36 29 / 32%) 0%, rgb(22 36 29 / 0%) 34%, rgb(22 36 29 / 12%) 55%, rgb(22 36 29 / 78%) 100%);
}

.hero__inner {
  padding: 0 var(--pad) clamp(1rem, 3vh, 2.5rem);
  max-width: var(--wrap);
  margin-inline: auto;
  width: 100%;
}
.hero .eyebrow { color: var(--snow); opacity: 0.85; margin-bottom: 1rem; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(4rem, 14.5vw, 13.5rem);
  line-height: 1.04;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  margin-left: -0.015em;
  margin-bottom: 1rem;
}
.hero__title .char { will-change: transform; }

.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 42ch;
  margin-bottom: 2rem;
  text-wrap: balance;
  text-shadow: 0 1px 3px rgb(22 36 29 / 55%), 0 6px 30px rgb(22 36 29 / 45%);
}
.hero .eyebrow,
.hero__foot {
  text-shadow: 0 1px 3px rgb(22 36 29 / 60%), 0 4px 20px rgb(22 36 29 / 45%);
}
.hero__title { text-shadow: 0 4px 44px rgb(22 36 29 / 30%); }

.hero__cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: var(--wrap);
  margin-inline: auto;
  width: 100%;
  padding: 2.2rem var(--pad) 1.6rem;
  opacity: 0.85;
}
.hero__foot span:first-child { display: none; }
@media (min-width: 700px) { .hero__foot span:first-child { display: block; } }

.scrollcue {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.scrollcue i {
  display: block;
  width: 1px;
  height: 34px;
  background: rgb(245 244 240 / 45%);
  position: relative;
  overflow: hidden;
}
.scrollcue i::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%; height: 100%;
  background: var(--snow);
  animation: cue 1.8s cubic-bezier(.65,.05,.35,1) infinite;
}
@keyframes cue {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}
@media (prefers-reduced-motion: reduce) {
  .scrollcue i::after { animation: none; }
}

/* ============================================================
   INTRO / LEITIDEE
   ============================================================ */

.intro { background: var(--snow); }

.intro__statement {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.6rem, 3.4vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  max-width: 26ch;
  color: var(--pine);
}
.intro__statement .word { display: inline-block; }

.intro__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem 2rem;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: 2.5rem;
  border-top: 1px solid rgb(28 38 32 / 14%);
}
.stat__num {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--pine);
}
.stat__num b { font-weight: 500; }
.stat__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--stone);
}

/* ============================================================
   DAS HAUS
   ============================================================ */

.haus { background: var(--paper); }

.haus__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .haus__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: clamp(3rem, 6vw, 6rem);
  }
  .haus__text {
    position: sticky;
    top: calc(var(--head-h) + 2rem);
    align-self: start;
  }
}

.haus__text p { margin-bottom: 1.2rem; max-width: 52ch; color: #3A453E; }

.haus__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.5rem;
  color: var(--larch-deep);
}
.haus__list li {
  padding-top: 0.7rem;
  border-top: 1px solid rgb(28 38 32 / 14%);
}

.haus__media {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: start;
}
.haus__img {
  overflow: hidden;
  border-radius: 4px;
}
.haus__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.haus__img--a { grid-column: 1 / 9; aspect-ratio: 4 / 4.6; }
.haus__img--b { grid-column: 9 / 13; margin-top: 32%; aspect-ratio: 3 / 4.4; }
.haus__img--c { grid-column: 3 / 11; aspect-ratio: 16 / 10; margin-top: -6%; }

/* ============================================================
   APPARTEMENTS — pinned ascent
   ============================================================ */

.apts-section {
  background: var(--snow);
  padding-top: clamp(5rem, 11vw, 10rem);
}
.apts-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.apts-head__hint { color: var(--stone); margin-top: 0.5rem; }

.apts {
  position: relative;
}
.apts.is-pinned { min-height: 100svh; }

/* floor rail */
.apts__rail {
  position: absolute;
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
  flex-direction: column;
  gap: 2.6rem;
  color: var(--stone);
  border-left: 1px solid rgb(28 38 32 / 18%);
  padding-left: 1rem;
}
@media (min-width: 1200px) { .apts__rail { display: flex; } }
.apts__floor { font-size: 0.68rem; transition: color .3s; position: relative; }
.apts__floor.is-active { color: var(--larch-deep); }
.apts__marker {
  position: absolute;
  left: -2px;
  width: 3px;
  height: 1.15rem;
  background: var(--larch);
  top: 0;
}

.apts__counter {
  position: absolute;
  right: var(--pad);
  top: calc(var(--head-h) + 1.5rem);
  z-index: 10;
  display: none;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--stone);
}
@media (min-width: 900px) { .apts__counter { display: flex; } }
.apts__counter b {
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--pine);
}

/* panels */
.apt {
  position: relative;
  display: grid;
  align-content: center;
  gap: 2rem;
  padding: 3rem var(--pad);
  max-width: var(--wrap);
  margin-inline: auto;
}
.apts:not(.is-pinned) .apt + .apt { border-top: 1px solid rgb(28 38 32 / 12%); }

.apts.is-pinned .apt {
  position: absolute;
  inset: 0;
  max-width: none;
  background: var(--snow);
  will-change: clip-path;
  padding-top: calc(var(--head-h) + 1rem);
  padding-bottom: 2rem;
  padding-left: max(calc(var(--pad) + 4.5rem), calc((100% - var(--wrap)) / 2 + var(--pad) + 4.5rem));
  padding-right: max(var(--pad), calc((100% - var(--wrap)) / 2 + var(--pad)));
}
.apts.is-pinned .apt:first-child { position: relative; }

@media (min-width: 900px) {
  .apt {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }
}

.apt__media {
  position: relative;
}
.apt__img--main {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 10.5;
}
@media (min-width: 900px) {
  .apt__img--main { aspect-ratio: 4 / 3; max-height: 62vh; }
}
.apt__img--main img { width: 100%; height: 100%; object-fit: cover; }
.apt__img--small {
  display: none;
  position: absolute;
  right: -8%;
  bottom: -14%;
  width: 38%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgb(22 36 29 / 22%);
}
.apt__img--small img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) { .apt__img--small { display: block; } }

.apt__meta { color: var(--larch-deep); margin-bottom: 0.8rem; }
.apt__name {
  font-family: var(--font-display);
  font-weight: 680;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pine);
  margin-bottom: 1.3rem;
}
.apt__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
}
.apt__facts li {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgb(28 38 32 / 22%);
  border-radius: 999px;
  font-size: 0.66rem;
  color: #3A453E;
}
.apt__desc {
  color: #3A453E;
  max-width: 46ch;
  margin-bottom: 1.8rem;
}

.apt__actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* Badge-Leiste ("In 3D ansehen", "N Fotos") auf dem Apartment-Hauptbild */
.media-badges {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.media-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem;
  border: 0;
  border-radius: 999px;
  background: rgb(22 36 29 / 55%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--snow);
  cursor: pointer;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background .3s ease, transform .3s ease;
}
.media-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.media-badge:hover {
  background: var(--larch);
  transform: translateY(-1px);
}

.apt__img--main.is-clickable { cursor: zoom-in; }

/* Foto-Galerie-Lightbox */
.gal-modal {
  position: fixed;
  inset: 0;
  z-index: 340;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  visibility: hidden;
}
.gal-modal.is-open { visibility: visible; }
.gal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(22 36 29 / 88%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
}
.gal-modal__stage {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: min(1150px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  opacity: 0;
}
.gal-modal__frame {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}
.gal-modal__frame img {
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 30px 90px rgb(0 0 0 / 45%);
}
.gal-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: clamp(42px, 5vw, 54px);
  height: clamp(42px, 5vw, 54px);
  border: 0;
  border-radius: 50%;
  background: rgb(22 36 29 / 60%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--snow);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .3s ease;
}
.gal-modal__nav:hover { background: var(--larch); }
.gal-modal__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gal-modal__nav--prev { left: clamp(0.5rem, 1.5vw, 1.2rem); }
.gal-modal__nav--next { right: clamp(0.5rem, 1.5vw, 1.2rem); }
.gal-modal__close {
  position: absolute;
  top: -0.4rem;
  right: 0;
  transform: translateY(-100%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgb(245 244 240 / 14%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background .3s ease;
}
.gal-modal__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 1.5px;
  background: var(--snow);
}
.gal-modal__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.gal-modal__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.gal-modal__close:hover { background: var(--larch); }
.gal-modal__bar {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  color: var(--snow);
  text-align: center;
}
.gal-modal__count { opacity: 0.65; }

/* Grundriss-Button */
.plan-link {
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--larch-deep);
  padding: 0.4rem 0;
  position: relative;
}
.plan-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linejoin: round;
}
.plan-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.6,.05,.2,1);
}
.plan-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* Grundriss-Lightbox */
.plan-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  visibility: hidden;
}
.plan-modal.is-open { visibility: visible; }
.plan-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(22 36 29 / 80%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
}
.plan-modal__panel {
  position: relative;
  margin: 0;
  background: var(--snow);
  border-radius: 6px;
  padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.2rem, 3vw, 2.4rem) 1.4rem;
  max-width: min(1080px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 90px rgb(0 0 0 / 35%);
  opacity: 0;
}
.plan-modal__panel img {
  max-height: min(72vh, 900px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-inline: auto;
}
.plan-modal__panel figcaption {
  text-align: center;
  color: var(--larch-deep);
  margin-top: 1rem;
}
.plan-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(28 38 32 / 25%);
  background: var(--paper);
  cursor: pointer;
  transition: background .3s ease;
  z-index: 2;
}
.plan-modal__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 1.5px;
  background: var(--pine);
}
.plan-modal__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.plan-modal__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.plan-modal__close:hover { background: var(--mist); }

/* ============================================================
   AUSSTATTUNG (dark)
   ============================================================ */

.amen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgb(201 207 198 / 14%);
  border: 1px solid rgb(201 207 198 / 14%);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 640px) { .amen__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .amen__grid { grid-template-columns: repeat(4, 1fr); } }

.amen__item {
  background: var(--pine);
  padding: 2rem 1.8rem;
  transition: background .4s ease;
}
.amen__item:hover { background: var(--pine-2); }
.amen__item svg {
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--larch);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1.1rem;
}
.amen__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--snow);
  margin-bottom: 0.4rem;
}
.amen__item p { font-size: 0.92rem; line-height: 1.55; color: #9AA79C; }

.amen__note {
  margin-top: 2rem;
  color: #8C9C90;
}

/* ============================================================
   JAHRESZEITEN
   ============================================================ */

.seasons { background: var(--pine); }
.seasons__stage {
  position: relative;
  height: 100svh;
  overflow: clip;
}
.seasons__layer {
  position: absolute;
  inset: 0;
}
.seasons__layer img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.seasons__layer--winter {
  clip-path: inset(0 0 0 100%);
  will-change: clip-path;
}
.seasons__layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(22 36 29 / 45%), rgb(22 36 29 / 0%) 45%);
}

.seasons__labels {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.seasons__word {
  grid-area: 1 / 1;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(3.5rem, 12vw, 11rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--snow);
  text-shadow: 0 4px 40px rgb(22 36 29 / 35%);
}
.seasons__word--winter { opacity: 0; }

.seasons__caption {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  transform: translateX(-50%);
  color: var(--snow);
  opacity: 0.9;
  text-align: center;
  padding-inline: var(--pad);
  width: 100%;
}

/* ============================================================
   SOMMER & WINTER  (Erleben)
   ============================================================ */

.season-guide {
  position: relative;
  overflow: clip;
  transition: background-color .7s ease, color .7s ease;
}
.season-guide[data-season="summer"] { background: var(--paper); color: var(--ink); }
.season-guide[data-season="winter"] { background: var(--pine); color: #C9CFC6; }

/* Dezente Hintergrund-Atmosphäre (Sonnenstrahlen / Schneeflocken) */
.season-fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.season-fx__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.season-guide[data-season="summer"] .season-fx__layer--summer { opacity: 1; }
.season-guide[data-season="winter"] .season-fx__layer--winter { opacity: 1; }

.sun-rays {
  position: absolute;
  top: -45%;
  left: -15%;
  width: 95%;
  height: 155%;
  background: repeating-conic-gradient(from 0deg at 32% 0%,
    rgba(255, 236, 190, 0) 0deg,
    rgba(255, 236, 190, .55) 1.6deg,
    rgba(255, 236, 190, 0) 5deg);
  transform-origin: 32% 0%;
  opacity: .05;
  -webkit-mask-image: radial-gradient(115% 85% at 32% 0%, #000 0%, rgba(0,0,0,.35) 45%, transparent 72%);
          mask-image: radial-gradient(115% 85% at 32% 0%, #000 0%, rgba(0,0,0,.35) 45%, transparent 72%);
  animation: sun-sway 16s ease-in-out infinite alternate;
}
@keyframes sun-sway {
  from { transform: rotate(-6deg); opacity: .035; }
  to   { transform: rotate(6deg);  opacity: .075; }
}

.snowflake {
  position: absolute;
  top: 0;
  border-radius: 50%;
  background: #fff;
  will-change: transform;
  animation: snow-fall linear infinite;
}
@keyframes snow-fall {
  from { transform: translate3d(0, -40px, 0); }
  to   { transform: translate3d(var(--dx, 12px), var(--fall, 720px), 0); }
}
/* Im Sommer sind die Flocken unsichtbar — dann müssen sie auch nicht
   dauerhaft weiterlaufen und Rechenzeit (auf Mobil: Akku) verbrauchen. */
.season-guide[data-season="summer"] .snowflake { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .sun-rays { animation: none; opacity: .04; }
  .snowflake { animation: none; display: none; }
}

.season-guide__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.season-guide__head .eyebrow { margin-bottom: 0; }
.season-guide[data-season="winter"] .eyebrow { color: var(--larch); }

/* Jahreszeiten-Umschalter */
.season-switch {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  background: color-mix(in srgb, currentColor 5%, transparent);
}
.season-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.3rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.65;
  transition: background .45s cubic-bezier(.65,.05,.2,1), color .4s ease, opacity .3s ease;
}
.season-switch__btn svg {
  width: 15px; height: 15px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.season-switch__btn:hover { opacity: 1; }
.season-switch__btn.is-active {
  background: var(--larch-deep);   /* Weiß darauf = 5,1:1 statt 3,3:1 */
  color: #fff;
  opacity: 1;
}

/* Layout */
.season-guide__grid { position: relative; z-index: 1; display: grid; gap: 3rem; }
@media (min-width: 900px) {
  .season-guide__grid {
    grid-template-columns: minmax(0, 4.4fr) minmax(0, 6.6fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
  }
  .season-guide__intro {
    position: sticky;
    top: calc(var(--head-h) + 2.5rem);
  }
}

.season-guide__intro { position: relative; }
.season-pane { display: none; }
.season-pane.is-active { display: block; }
.season-guide__title {
  font-family: var(--font-display);
  font-weight: 640;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: inherit;
  margin-bottom: 1.4rem;
}
.season-guide__intro p { max-width: 42ch; opacity: 0.82; }
.season-guide__base {
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  color: color-mix(in srgb, currentColor 75%, transparent);
  line-height: 2;
  font-size: 0.64rem;
}

/* Aktivitäten-Liste */
.season-guide__list { display: grid; }
.activity { border-top: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
/* Abschlusslinie an der Liste statt am letzten Eintrag: :last-child würde auf
   einen ausgeblendeten Winter-Eintrag zeigen, sodass sie im Sommer fehlt. */
.season-guide__list { border-bottom: 1px solid color-mix(in srgb, currentColor 16%, transparent); }
.activity[hidden] { display: none; }

.activity__row {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem 1.5rem;
  padding: clamp(1.4rem, 2.3vw, 2rem) 0.4rem;
  position: relative;
  transition: padding-left .5s cubic-bezier(.65,.05,.2,1);
}
.activity__row::before {
  content: "";
  position: absolute;
  inset: 0 -0.4rem;
  background: color-mix(in srgb, currentColor 5%, transparent);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.activity__row:hover::before { opacity: 1; }
@media (hover: hover) {
  .activity__row:hover { padding-left: 1.5rem; }
}
.activity__idx {
  align-self: start;
  font-size: 0.62rem;
  color: var(--larch);
  padding-top: 0.55rem;
}
.season-guide[data-season="summer"] .activity__idx { color: var(--larch-deep); }
.activity__body { display: flex; flex-direction: column; gap: 0.55rem; min-width: 0; }
.activity__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.activity__teaser {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.75;
  max-width: 48ch;
}
.activity__go {
  width: clamp(42px, 4.5vw, 54px);
  height: clamp(42px, 4.5vw, 54px);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .4s ease, border-color .4s ease, transform .5s cubic-bezier(.65,.05,.2,1);
}
.activity__go svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke .4s ease;
}
.activity__row:hover .activity__go {
  background: var(--larch);
  border-color: var(--larch);
  transform: scale(1.06);
}
.activity__row:hover .activity__go svg { stroke: #fff; }

/* Aktivitäts-Popup */
.act-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  visibility: hidden;
}
.act-modal.is-open { visibility: visible; }
.act-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(22 36 29 / 82%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
}
.act-modal__panel {
  position: relative;
  display: grid;
  width: min(1000px, 100%);
  max-height: 100%;
  background: var(--snow);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  box-shadow: 0 40px 100px rgb(0 0 0 / 40%);
}
@media (min-width: 760px) {
  .act-modal__panel { grid-template-columns: 0.82fr 1fr; }
}
.act-modal__media { position: relative; margin: 0; background: var(--mist); }
.act-modal__media img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
@media (max-width: 759px) { .act-modal__media img { max-height: 38vh; } }
.act-modal__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgb(22 36 29 / 55%);
  color: var(--snow);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-size: 0.6rem;
}
.act-modal__body {
  padding: clamp(1.8rem, 3.2vw, 2.8rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.act-modal__body .eyebrow { color: var(--larch-deep); margin-bottom: 1rem; }
.act-modal__title {
  font-family: var(--font-display);
  font-weight: 680;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--pine);
  margin-bottom: 0.7rem;
}
.act-modal__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--larch-deep);
  margin-bottom: 1.3rem;
}
.act-modal__text p { color: #3A453E; margin-bottom: 1.3rem; }
.act-modal__text ul { display: grid; gap: 0.65rem; margin-bottom: 1.8rem; }
.act-modal__text li {
  position: relative;
  padding-left: 1.4rem;
  color: #3A453E;
  font-size: 0.94rem;
}
.act-modal__text li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 0.75rem; height: 1px;
  background: var(--larch);
}
.act-modal__cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  padding-top: 0.4rem;
}
.act-modal__ask {
  color: var(--pine);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}
.act-modal__ask::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: left;
  transition: transform .35s cubic-bezier(.6,.05,.2,1);
}
.act-modal__ask:hover::after { transform: scaleX(0); transform-origin: right; }
.act-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 0;
  background: rgb(22 36 29 / 55%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: background .3s ease;
}
.act-modal__close span {
  position: absolute;
  left: 50%; top: 50%;
  width: 15px; height: 1.5px;
  background: var(--snow);
}
.act-modal__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.act-modal__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.act-modal__close:hover { background: var(--pine); }

/* ============================================================
   KONTAKT / FOOTER
   ============================================================ */

.kontakt {
  padding-bottom: 0;
  overflow: clip;
}
.kontakt__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(2rem, 6vw, 5rem);
}
.kontakt__title {
  font-family: var(--font-display);
  font-weight: 720;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--snow);
  margin-bottom: 1.8rem;
}
.kontakt__sub {
  max-width: 46ch;
  color: #9AA79C;
  margin-bottom: 2.6rem;
  text-wrap: balance;
}
.kontakt__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.kontakt__hint { color: #8C9C90; }

.kontakt__direct {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}
.kontakt__direct a {
  color: var(--snow);
  text-decoration: none;
  border-bottom: 1px solid rgb(245 244 240 / 35%);
  padding-bottom: 0.2rem;
  transition: border-color .3s ease, color .3s ease;
}
.kontakt__direct a:hover { border-color: var(--larch); color: var(--larch); }
.kontakt__direct-sep { color: #77857A; }

.footer__col:not(.footer__nav) a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgb(201 207 198 / 30%);
  transition: color .3s ease, border-color .3s ease;
}
.footer__col:not(.footer__nav) a:hover { color: var(--snow); border-color: var(--larch); }

.route-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
  color: var(--snow);
  opacity: 0.85;
  text-decoration: none;
  border-bottom: 1px solid rgb(245 244 240 / 35%);
  padding-bottom: 0.25rem;
  transition: opacity .3s ease, border-color .3s ease;
}
.route-link:hover { opacity: 1; border-color: var(--larch); }
.route-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linejoin: round;
}

.footer {
  margin-top: clamp(4rem, 9vw, 8rem);
  border-top: 1px solid rgb(201 207 198 / 14%);
  position: relative;
}
.footer__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 17.5vw, 17rem);
  line-height: 0.8;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgb(201 207 198 / 22%);
  user-select: none;
  transform: translateY(0.12em);
  pointer-events: none;
}
.footer__grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding-block: 3rem;
  border-top: 1px solid rgb(201 207 198 / 14%);
}
@media (min-width: 800px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); }
}
.footer__col { color: #9AA79C; line-height: 2.1; text-transform: none; letter-spacing: 0.04em; }
.footer__nav { display: flex; flex-direction: column; }
.footer__nav a { text-decoration: none; width: fit-content; }
.footer__nav a:hover { color: var(--snow); }
.footer__meta {
  padding-block: 1.5rem 0.6rem;
  color: #8B998F;
}

/* ============================================================
   Urheber-Credit im Fuß
   Erbt die Farbe des jeweiligen Fußes, damit er auf dem dunklen
   Startseiten-Fuß wie auf den hellen Rechtsseiten stimmig sitzt.
   ============================================================ */

.footer__credit {
  padding-block: 0 2rem;
  color: #8B998F;
}
/* .legal-footer a setzt text-decoration:none und steht weiter unten —
   darum hier bewusst spezifischer, sonst ist der Link von normalem
   Text nicht zu unterscheiden. */
.footer__credit a,
.legal-footer .credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .3s ease;
}
/* Hover-Ton je Untergrund: auf dem dunklen Grün trägt nur das helle
   --larch (5,4:1), auf hellem Papier nur das dunkle --larch-deep
   (5,1:1). Vertauscht faellt jeweils der AA-Kontrast durch. */
.footer__credit a:hover,
.footer__credit a:focus-visible { color: var(--larch); }

.legal-footer .credit a:hover,
.legal-footer .credit a:focus-visible { color: var(--larch-deep); }

/* Emojis sitzen auf der Grundlinie optisch zu hoch und zu groß */
.credit__heart {
  font-size: 0.92em;
  vertical-align: -0.06em;
}

/* ============================================================
   Mobile apartment fallback (no pin < 900px)
   ============================================================ */

@media (max-width: 899px) {
  .apts__counter, .apts__rail { display: none; }
}

/* ============================================================
   Rechtsseiten (Impressum, Datenschutz)
   ============================================================ */

.site-head--solid {
  position: static;
  background: var(--snow);
  color: var(--ink);
}

.legal {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad) clamp(4rem, 8vw, 6rem);
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 680;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--pine);
  margin-bottom: 0.8rem;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: 1.45rem;
  color: var(--pine);
  margin: 2.6rem 0 0.8rem;
}
.legal p, .legal li { color: #3A453E; margin-bottom: 0.9rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal a { color: var(--larch-deep); text-underline-offset: 3px; }
.legal a:hover { color: var(--pine); }
.legal .legal__lead { color: var(--stone); margin-bottom: 2.5rem; }
.legal address {
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--larch);
  background: var(--paper);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.legal-footer {
  border-top: 1px solid rgb(28 38 32 / 12%);
  padding: 2rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  color: var(--stone);
}
.legal-footer a { text-decoration: none; }
.legal-footer a:hover { color: var(--pine); }

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .site-head, .btn, .btn::before, .btn::after,
  .trail__stations i, .trail__stations em {
    transition: none;
  }
}

/* ============================================================
   BUCHUNGSSEITE  (/buchen/ und /en/booking/)
   ============================================================ */

.page-book { background: var(--snow); }

.book-nav { gap: 1.5rem; }
.book-nav a { text-decoration: none; font-size: 0.92rem; font-weight: 500; }
.site-head--solid .lang a[aria-current="page"] { color: var(--larch-deep); }

/* ---------- Kopfbereich ---------- */
.book-hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(3.5rem, 9vw, 7rem);
  color: var(--snow);
  isolation: isolate;
}
.book-hero__media { position: absolute; inset: 0; z-index: -2; }
.book-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.book-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgb(22 36 29 / 72%), rgb(22 36 29 / 55%));
}
.book-hero .eyebrow { color: var(--snow); opacity: 0.85; margin-bottom: 1rem; text-shadow: 0 1px 3px rgb(22 36 29 / 60%); }
.book-hero__title {
  font-family: var(--font-display);
  font-weight: 680;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgb(22 36 29 / 40%);
}
.book-hero__sub {
  max-width: 52ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  text-shadow: 0 1px 3px rgb(22 36 29 / 55%);
}

/* ---------- Buchungsmaske ---------- */
.booking { padding-block: clamp(2.5rem, 5vw, 4rem); }
.booking__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgb(28 38 32 / 14%);
  padding-bottom: 0.9rem;
  margin-bottom: 1.2rem;
}
.booking__head .eyebrow { margin-bottom: 0; }
.booking__note { color: var(--stone); }

/* feratel schreibt volle Breite vor: In einem schmalen Container werden
   Auswahlboxen abgeschnitten und die Maske verzerrt. Deshalb kein
   max-width, kein seitlicher Innenabstand, keine eigene Rahmung. */
.booking__widget {
  width: 100%;
  min-height: 0;
  margin-bottom: 1.5rem;
}
.booking__widget.is-empty { display: none; }
.booking__widget iframe { width: 100%; border: 0; min-height: 620px; display: block; }

/* Rückfallebene */
.booking__fallback {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.6rem) 1rem;
}
.booking__fallback.is-secondary {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgb(28 38 32 / 12%);
}
.booking__fallback.is-secondary .booking__fallback-icon,
.booking__fallback.is-secondary h2 { display: none; }
.booking__fallback-icon {
  width: 34px; height: 34px;
  margin: 0 auto 1rem;
  fill: none; stroke: var(--larch-deep); stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.booking__fallback h2 {
  font-family: var(--font-display);
  font-weight: 640;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--pine);
  margin-bottom: 0.6rem;
}
.booking__fallback p { color: #3A453E; max-width: 46ch; margin: 0 auto 1.6rem; }
.booking__fallback-cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Die Einheiten ---------- */
.book-units .h2 { margin-bottom: 2rem; }
.unit-list { display: grid; }
.unit {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  flex-wrap: wrap;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgb(28 38 32 / 12%);
}
.unit:first-child { border-top: 1px solid rgb(28 38 32 / 12%); }
.unit__name {
  font-family: var(--font-display);
  font-weight: 620;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--pine);
}
.unit__meta { color: var(--stone); }
.book-units__link { margin-top: 1.8rem; }

/* ---------- Gut zu wissen ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgb(201 207 198 / 14%);
  border: 1px solid rgb(201 207 198 / 14%);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.info-grid li { background: var(--pine); padding: 1.6rem 1.5rem; }
.info-grid h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--snow);
  margin-bottom: 0.4rem;
}
.info-grid p { font-size: 0.92rem; line-height: 1.55; color: #9AA79C; }
.book-info__contact { margin-top: 2rem; color: #8C9C90; display: flex; gap: 0.7rem; flex-wrap: wrap; }
.book-info__contact a { color: var(--snow); text-decoration: none; border-bottom: 1px solid rgb(245 244 240 / 35%); }
.book-info__contact a:hover { border-color: var(--larch); }
