/* ==========================================================================
   URLAUBSPLATZL — Alpine Editorial
   Corporate Design 2026
   Fonts:  Fraunces (Display Serif) · Instrument Sans (Grotesk)
   Colors: Paper #F4EFE5 · Ink #141815 · Pine #1C2B23 · Gold #C9AA6B
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --paper:     #F4EFE5;
  --paper-2:   #EAE3D3;
  --ink:       #141815;
  --ink-soft:  #3A3F3A;
  --pine:      #1C2B23;
  --pine-2:    #253A2E;
  --gold:      #C9AA6B;
  --gold-deep: #A8894C;
  --stone:     #837D6F;
  --line:      rgba(20, 24, 21, .14);
  --line-light:rgba(244, 239, 229, .18);

  /* Winter palette (season section) */
  --slate:     #16222C;
  --slate-2:   #1E2F3C;
  --ice:       #E8F0F4;
  --ice-soft:  #9FBDCE;

  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --nav-h: 5.25rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 2px;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--gold); color: var(--pine); }

/* Focus */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
main:focus { outline: none; }

/* Skip-Link: unsichtbar, bis er per Tastatur fokussiert wird */
.skip-link {
  position: fixed;
  top: 1rem; left: 1rem;
  z-index: 4000;
  padding: .8em 1.4em;
  background: var(--pine);
  color: var(--paper);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 4px;
  transform: translateY(calc(-100% - 1.5rem));
  transition: transform .25s var(--ease-out, ease);
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--gold);
  outline-offset: 0;
}

/* ---------- Film grain ---------- */
.noise {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -8%); }
  30% { transform: translate(3%, -12%); }
  50% { transform: translate(8%, 4%); }
  70% { transform: translate(-9%, 6%); }
  90% { transform: translate(5%, 10%); }
}

/* ---------- Typography helpers ---------- */
.kicker {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
  gap: .75em;
}
.kicker::before {
  content: "";
  width: 2.25em; height: 1px;
  background: var(--gold);
  flex: none;
}
.kicker--plain::before { display: none; }

.h-display {
  font-family: var(--font-display);
  font-weight: 380;
  line-height: .96;
  letter-spacing: -.015em;
}
.h-display em, .italic-gold {
  font-style: italic;
  font-weight: 340;
  color: var(--gold-deep);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--pine);
  --btn-fg: var(--paper);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .8em;
  padding: 1.05em 1.9em;
  border-radius: 99px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  overflow: hidden;
  transition: color .45s var(--ease-out);
  will-change: transform;
}
.btn__label { position: relative; z-index: 2; display: inline-block; }
.btn__arrow { position: relative; z-index: 2; transition: transform .45s var(--ease-out); }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform .5s var(--ease-out);
  z-index: 1;
}
.btn:hover::after { transform: translateY(0); }
.btn:hover { color: var(--pine); }
.btn:hover .btn__arrow { transform: translate(4px, -2px); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--pine); }
.btn--gold::after { background: var(--paper); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: currentColor;
  box-shadow: inset 0 0 0 1.5px currentColor;
}
.btn--ghost::after { background: var(--gold); }
.btn--ghost:hover { color: var(--pine); box-shadow: inset 0 0 0 1.5px var(--gold); }

.link-line {
  position: relative;
  display: inline-block;
  padding-bottom: .15em;
  font-weight: 600;
}
.link-line::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.link-line:hover::after { transform: scaleX(0); transform-origin: left; }

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0; left: 0;
    width: 44px; height: 44px;
    margin: -22px 0 0 -22px;
    border: 1.5px solid rgba(201, 170, 107, .9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3000;
    transition: width .35s var(--ease-out), height .35s var(--ease-out),
                margin .35s var(--ease-out), background-color .35s,
                border-color .35s, opacity .3s;
    will-change: transform;
  }
  .cursor__label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--pine);
    opacity: 0;
    transition: opacity .25s;
    white-space: nowrap;
  }
  .cursor-dot {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 5px; height: 5px;
    margin: -2.5px 0 0 -2.5px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 3001;
    will-change: transform;
  }
  .cursor.is-hover {
    width: 72px; height: 72px;
    margin: -36px 0 0 -36px;
    background: rgba(201, 170, 107, .12);
  }
  .cursor.is-label {
    width: 92px; height: 92px;
    margin: -46px 0 0 -46px;
    background: var(--gold);
    border-color: var(--gold);
  }
  .cursor.is-label .cursor__label { opacity: 1; }
  .cursor.is-hidden { opacity: 0; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ---------- Hero-Entrance-Startzustände ----------
   Greifen nur mit JS (html.js via Inline-Script im <head>) und nur bis
   pageEntrance() übernimmt (html bekommt dann .is-ready). Verhindert,
   dass der fertige Hero vor Animationsstart kurz aufblitzt — der frühere
   Preloader hat das kaschiert, den gibt es nicht mehr. */
@media (prefers-reduced-motion: no-preference) {
  html.js:not(.is-ready) [data-page="home"] .nav { transform: translateY(-120%); opacity: 0; }
  html.js:not(.is-ready) [data-page="home"] .hero__title .line-inner { transform: translateY(130%); }
  html.js:not(.is-ready) [data-page="home"] .hero__media { clip-path: inset(0 0 100% 0); }
  html.js:not(.is-ready) [data-page="home"] .hero__media img { transform: scale(1.25); }
  html.js:not(.is-ready) [data-page="home"] .hero__meta > * { opacity: 0; }
  html.js:not(.is-ready) [data-page="home"] .hero__badge { opacity: 0; }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  transition: background-color .5s, backdrop-filter .5s, box-shadow .5s;
}
.nav.is-scrolled {
  background: rgba(244, 239, 229, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand {
  display: flex;
  align-items: center;
  flex: none;
}
.nav__brand img { height: 30px; width: auto; }
@media (max-width: 600px) {
  .nav__brand img { height: 25px; }
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__link {
  font-size: .92rem;
  font-weight: 600;
  position: relative;
  padding: .3em 0;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: .8em 1.5em; font-size: .88rem; }
/* DE/EN-Sprachumschalter */
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.nav__lang span { color: var(--stone); opacity: .55; }
.nav__lang a {
  position: relative;
  color: var(--stone);
  padding: .2em 0;
  transition: color .3s;
}
.nav__lang a:hover { color: var(--gold-deep); }
.nav__lang a.is-active { color: var(--ink); }
.nav__lang a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--gold);
}
.nav__progress {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  align-items: center;
}
.nav__burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  transition: transform .4s var(--ease-out), opacity .3s;
}
.menu-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
.menu-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu overlay */
.menu {
  position: fixed; inset: 0;
  z-index: 800;
  background: var(--pine);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}
.menu__links { display: flex; flex-direction: column; gap: .4rem; }
.menu__link {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(2.6rem, 9vw, 4.5rem);
  line-height: 1.15;
  display: inline-flex;
  align-items: baseline;
  gap: 1rem;
  overflow: hidden;
}
.menu__link small {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--gold);
}
.menu__link:hover { font-style: italic; color: var(--gold); }
.menu__meta {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: .9rem;
  color: rgba(244, 239, 229, .7);
}

/* ---------- Sections base ---------- */
.section { position: relative; }
.container {
  width: 100%;
  max-width: 96rem;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + 3vh);
  overflow: hidden;
}
.hero__titles {
  position: relative;
  z-index: 3;
  padding: 0 var(--gutter);
}
.hero__title {
  font-size: clamp(2.35rem, 8.4vw, 8.25rem);
  color: var(--ink);
}
.hero__title .line {
  display: block;
  overflow: hidden;
  /* Platz für Unterlängen (g, p) — die enge line-height clippt sie sonst;
     negative margin gleicht das Layout wieder aus */
  padding-bottom: .14em;
  margin-bottom: -.14em;
}
.hero__title .line-inner { display: inline-block; }
.hero__title .indent { padding-left: clamp(2rem, 12vw, 14rem); }
.hero__meta {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding: 2.2rem var(--gutter) 0;
}
.hero__meta-copy {
  max-width: 26rem;
  font-size: 1rem;
  color: var(--ink-soft);
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
}
.hero__scroll-line {
  width: 1px; height: 3.4rem;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  animation: scrollhint 2.2s var(--ease-out) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}
.hero__media {
  position: relative;
  z-index: 2;
  width: min(100% - 2 * var(--gutter), 96rem - 2 * var(--gutter));
  margin: 3.2rem auto 0;
  height: 62vh;
  overflow: hidden;
  border-radius: var(--radius);
}
.hero__media img {
  width: 100%; height: 115%;
  object-fit: cover;
  will-change: transform;
}
.hero__badge {
  position: absolute;
  z-index: 4;
  right: calc(var(--gutter) + 1.5rem);
  bottom: 2rem;
  width: clamp(90px, 9vw, 128px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero__badge-text { position: absolute; inset: 0; animation: spin 22s linear infinite; }
.hero__badge-text text {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  fill: var(--paper);
}
.hero__badge-heart { width: 34%; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.marquee__item .heart { width: 14px; opacity: .9; }

/* ---------- Intro / Manifest ---------- */
.intro {
  padding: clamp(7rem, 14vh, 11rem) 0 clamp(6rem, 12vh, 10rem);
  background: var(--paper);
  overflow: hidden; /* floating imgs clip */
  position: relative;
}
.intro__statement {
  font-size: clamp(2.1rem, 5.4vw, 4.9rem);
  max-width: 62rem;
  color: var(--ink);
}
.intro__statement .word { opacity: .16; display: inline-block; }
.intro__row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin-top: clamp(4rem, 9vh, 7rem);
  align-items: start;
}
.intro__copy {
  max-width: 30rem;
  color: var(--ink-soft);
  display: grid;
  gap: 1.2rem;
}
.intro__imgs {
  position: relative;
  min-height: 30rem;
}
.intro__img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
}
.intro__img img { width: 100%; height: 100%; object-fit: cover; }
.intro__img--a { width: 68%; aspect-ratio: 3/4; right: 0; top: 0; }
.intro__img--b { width: 46%; aspect-ratio: 4/5; left: 0; bottom: -8%; box-shadow: 0 30px 60px -30px rgba(20,24,21,.45); }
.intro__caption {
  position: absolute;
  left: 0; top: 12%;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Stats */
.stats {
  margin-top: clamp(5rem, 10vh, 8rem);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 2.2rem 1.5rem 2.2rem 0;
  border-right: 1px solid var(--line);
  display: grid;
  gap: .4rem;
  align-content: start;
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1;
  color: var(--pine);
  font-variant-numeric: tabular-nums;
}
.stat__num sup { font-size: .4em; color: var(--gold-deep); }
.stat__label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ---------- Apartments (horizontal) ---------- */
.apts { background: var(--pine); color: var(--paper); }
.apts__head {
  padding: clamp(6rem, 12vh, 9rem) 0 clamp(3rem, 6vh, 4.5rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.apts__head .kicker { color: rgba(244,239,229,.55); }
.apts__title { font-size: clamp(3rem, 8vw, 7.5rem); color: var(--paper); }
.apts__hint {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,239,229,.5);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  white-space: nowrap;
  padding-bottom: 1.2rem;
}
.apts__hint svg { width: 34px; }

.apts__stage { position: relative; overflow: hidden; }
.apts__track {
  display: flex;
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 0 var(--gutter) 6rem;
  width: max-content;
}
.apt-card {
  position: relative;
  width: min(66vw, 44rem);
  flex: none;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.4rem;
}
.apt-card__media {
  position: relative;
  height: clamp(20rem, 52vh, 30rem);
  overflow: hidden;
  border-radius: var(--radius);
}
.apt-card__media img {
  width: 112%; height: 100%;
  max-width: none;
  object-fit: cover;
  will-change: transform;
  transition: filter .5s;
}
.apt-card:hover .apt-card__media img { filter: brightness(1.07); }
.apt-card__num {
  position: absolute;
  top: 1.1rem; left: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--paper);
  z-index: 2;
  text-shadow: 0 1px 14px rgba(0,0,0,.35);
}
.apt-card__size {
  position: absolute;
  top: 1.1rem; right: 1.4rem;
  z-index: 2;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  padding: .45em .9em;
  border-radius: 99px;
  background: rgba(20, 24, 21, .5);
  color: var(--paper);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.apt-card__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.apt-card__name {
  font-family: var(--font-display);
  font-weight: 370;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  line-height: 1;
  transition: color .4s;
}
.apt-card:hover .apt-card__name { color: var(--gold); font-style: italic; }
.apt-card__meta {
  margin-top: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  font-size: .85rem;
  color: rgba(244,239,229,.65);
}
.apt-card__meta span { display: inline-flex; align-items: center; gap: .5em; }
.apt-card__meta svg { width: 15px; opacity: .75; }
.apt-card__price {
  display: block;
  margin-top: .75rem;
  font-size: .92rem;
  color: rgba(244, 239, 229, .75);
}
.apt-card__price b {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: 1.25em;
  color: var(--gold);
}
.apt-card__open {
  flex: none;
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(244,239,229,.35);
  display: grid;
  place-items: center;
  transition: background .4s, border-color .4s, transform .4s var(--ease-out);
}
.apt-card__open svg { width: 20px; transition: transform .4s var(--ease-out); }
.apt-card:hover .apt-card__open {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--pine);
}
.apt-card:hover .apt-card__open svg { transform: rotate(45deg); }

/* End panel inside horizontal scroll */
.apt-end {
  flex: none;
  width: min(60vw, 40rem);
  display: grid;
  place-content: center;
  gap: 1.8rem;
  text-align: center;
  padding: 2rem;
}
.apt-end__title { font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: var(--paper); }
.apts__progress {
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: 3.4rem;
  height: 1px;
  background: rgba(244,239,229,.18);
}
.apts__progress-bar {
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

/* Desktop: die GANZE Sektion wird gepinnt — Überschrift bleibt beim
   Side-Scroll sichtbar, die Karten sind sofort im Bild */
@media (min-width: 901px) {
  .apts {
    display: flex;
    flex-direction: column;
    height: 100svh;
  }
  .apts__head {
    padding: calc(var(--nav-h) + 1.1rem) 0 1.4rem;
    flex: none;
  }
  .apts__title { font-size: clamp(2.3rem, 5.4vw, 4.8rem); }
  .apts__stage { flex: 1; min-height: 0; }
  .apts__track { height: 100%; padding-bottom: 4.6rem; }
  .apt-card { grid-template-rows: minmax(0, 1fr) auto; }
  .apt-card__media { height: 100%; }
}
@media (min-width: 901px) and (prefers-reduced-motion: reduce) {
  .apts { height: auto; }
  .apts__track { flex-wrap: wrap; width: 100%; }
  .apt-card__media { height: clamp(16rem, 44vh, 26rem); }
}

/* ---------- Apartment modal ---------- */
.apt-modal {
  position: fixed; inset: 0;
  z-index: 1500;
  visibility: hidden;
}
.apt-modal__bg {
  position: absolute; inset: 0;
  background: rgba(20, 24, 21, .55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
}
.apt-modal__panel {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(100%, 100rem);
  height: 100%;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
}
.apt-modal__media {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 0;
  background: var(--pine);
}
.apt-modal__stage {
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.apt-modal__stage img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Foto-Hinweis (z. B. "Bild nicht mehr aktuell") auf dem aktiven Galeriebild */
.apt-modal__note {
  position: absolute;
  top: .9rem; left: .9rem; right: .9rem;
  display: none;
  background: rgba(20, 24, 21, .82);
  color: var(--paper);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
  padding: .55rem .8rem;
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
}
.apt-modal__note.is-visible { display: block; }
.apt-modal__thumbs {
  display: flex;
  gap: .5rem;
  padding: .9rem;
  background: var(--pine);
  overflow-x: auto;
}
.apt-modal__thumb {
  flex: none;
  width: 74px; height: 54px;
  border-radius: 2px;
  overflow: hidden;
  opacity: .45;
  transition: opacity .3s, outline-color .3s;
  outline: 1.5px solid transparent;
  outline-offset: 2px;
}
.apt-modal__thumb.is-active { opacity: 1; outline-color: var(--gold); }
.apt-modal__thumb img { width: 100%; height: 100%; object-fit: cover; }
.apt-modal__body {
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow-y: auto;
  display: grid;
  gap: 1.6rem;
  align-content: start;
}
.apt-modal__name {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .95;
}
.apt-modal__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-deep);
}
.apt-modal__price {
  font-size: .95rem;
  color: var(--ink-soft);
}
.apt-modal__price b {
  font-family: var(--font-display);
  font-weight: 430;
  font-size: 1.3em;
  color: var(--gold-deep);
}
.apt-modal__desc { color: var(--ink-soft); max-width: 34rem; }
.apt-modal__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.apt-modal__fact {
  padding: 1.1rem .5rem 1.1rem 0;
  display: grid;
  gap: .15rem;
}
.apt-modal__fact b {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: 1.6rem;
  line-height: 1;
}
.apt-modal__fact span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
}
.apt-modal__features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.apt-modal__features li {
  font-size: .82rem;
  font-weight: 600;
  padding: .5em 1em;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink-soft);
}
.apt-modal__cta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}
.apt-modal__note { font-size: .8rem; color: var(--stone); }
.apt-modal__close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  z-index: 5;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--paper);
  display: grid;
  place-items: center;
  transition: background .35s, transform .35s var(--ease-out);
}
.apt-modal__close:hover { background: var(--gold); color: var(--pine); transform: rotate(90deg); }
.apt-modal__close svg { width: 18px; }
.apt-modal__nav {
  position: absolute;
  bottom: calc(54px + 2rem); right: 1.2rem;
  z-index: 5;
  display: flex;
  gap: .5rem;
}
body.modal-open { overflow: hidden; }

/* ---------- Activity modal ---------- */
.act-modal {
  position: fixed; inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: clamp(.75rem, 2.5vw, 2.5rem);
  visibility: hidden;
}
.act-modal__bg {
  position: absolute; inset: 0;
  background: rgba(20, 24, 21, .6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
}
.act-modal__panel {
  position: relative;
  width: min(100%, 68rem);
  max-height: min(88vh, 88svh);
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .55);
}
.act-modal__media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.act-modal__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.act-modal__season {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .5em 1.1em;
  border-radius: 99px;
  background: rgba(20, 24, 21, .55);
  color: var(--paper);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.act-modal__body {
  padding: clamp(1.8rem, 4vw, 3.4rem);
  overflow-y: auto;
  display: grid;
  gap: 1.15rem;
  align-content: start;
}
.act-modal__title { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1; }
.act-modal__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-deep);
}
.act-modal__copy { color: var(--ink-soft); }
.act-modal__facts {
  display: grid;
  gap: .55rem;
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.act-modal__facts li { display: flex; gap: .6em; align-items: baseline; }
.act-modal__facts li::before { content: "—"; color: var(--gold-deep); flex: none; }
.act-modal__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: .4rem;
}
.act-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--pine);
  color: var(--paper);
  display: grid;
  place-items: center;
  transition: background .35s, transform .35s var(--ease-out);
}
.act-modal__close:hover { background: var(--gold); color: var(--pine); transform: rotate(90deg); }
.act-modal__close svg { width: 16px; }
body.act-open { overflow: hidden; }

/* ---------- Season section (Ötztal) ---------- */
.season {
  --s-bg: var(--paper-2);
  --s-fg: var(--ink);
  --s-muted: var(--stone);
  --s-accent: var(--gold-deep);
  --s-line: rgba(20, 24, 21, .14);
  background: var(--s-bg);
  color: var(--s-fg);
  padding: clamp(6rem, 12vh, 10rem) 0 clamp(5rem, 10vh, 8rem);
  overflow: hidden;
}
.season__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 1.2rem;
}
/* Toggle-Leiste: klebt unter der Navigation, solange die Aktivitäten sichtbar sind */
.season__stickybar {
  position: sticky; /* nativer Fallback ohne ScrollSmoother */
  top: calc(var(--nav-h) + .75rem);
  z-index: 40;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.8rem;
  pointer-events: none;
}
.season__stickybar .season__toggle { pointer-events: auto; }
.season__title { font-size: clamp(3rem, 8vw, 7.5rem); }
.season__title .swap {
  display: inline-grid;
  vertical-align: baseline;
  overflow: hidden;
}
.season__title .swap span {
  grid-area: 1 / 1;
  font-style: italic;
  color: var(--s-accent);
  white-space: nowrap;
}
/* pre-JS state; JS normalizes this to yPercent on init */
.season__title .swap span:nth-child(2) { transform: translateY(110%); }
.season .kicker { color: var(--s-muted); }

/* Toggle */
.season__toggle {
  position: relative;
  display: inline-flex;
  border: 1.5px solid var(--s-line);
  border-radius: 99px;
  padding: .35rem;
  gap: .25rem;
  background: color-mix(in srgb, var(--s-bg) 86%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px -20px rgba(0, 0, 0, .5);
}
.season__toggle-knob {
  position: absolute;
  top: .35rem; left: .35rem;
  bottom: .35rem;
  width: calc(50% - .45rem);
  background: var(--gold);
  border-radius: 99px;
  z-index: 0;
}
.season__toggle button {
  position: relative;
  z-index: 1;
  padding: .75em 1.7em;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--s-muted);
  transition: color .4s;
  display: inline-flex;
  align-items: center;
  gap: .5em;
}
.season__toggle button.is-active { color: var(--pine); }
.season__toggle button svg { width: 15px; }

/* Collage */
.season__collage {
  position: relative;
  height: clamp(24rem, 58vh, 36rem);
  margin-bottom: clamp(3.5rem, 8vh, 6rem);
}
.season__panel {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius);
}
.season__panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0s;
}
.season__panel img.winter { opacity: 0; }
.season__panel--a { left: 0; top: 6%; width: 30%; height: 72%; }
.season__panel--b { left: 33.5%; top: 0; width: 39%; height: 100%; }
.season__panel--c { right: 0; top: 14%; width: 24%; height: 64%; }
.season__word {
  position: absolute;
  z-index: 3;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 330;
  font-size: clamp(4rem, 13vw, 11rem);
  color: var(--paper);
  text-shadow: 0 6px 60px rgba(0, 0, 0, .35);
  pointer-events: none;
  white-space: nowrap;
}

/* Activity rows */
.season__listwrap { position: relative; }
.act-list { border-top: 1px solid var(--s-line); }
.act-list[hidden] { display: none; }
.act-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--s-line);
  transition: padding .45s var(--ease-out);
  cursor: pointer;
}
.act-row:hover { padding-left: 1.2rem; }
.act-row__idx {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--s-accent);
  width: 2.4em;
}
.act-row__name {
  font-family: var(--font-display);
  font-weight: 370;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.05;
  transition: font-style .2s, color .3s;
}
.act-row:hover .act-row__name { font-style: italic; color: var(--s-accent); }
.act-row__desc {
  font-size: .92rem;
  color: var(--s-muted);
  max-width: 22rem;
  text-align: right;
}
.act-row__arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--s-line);
  display: grid;
  place-items: center;
  transition: background .35s, border-color .35s;
}
.act-row__arrow svg { width: 16px; transition: transform .35s var(--ease-out); }
.act-row:hover .act-row__arrow { background: var(--gold); border-color: var(--gold); color: var(--pine); }
.act-row:hover .act-row__arrow svg { transform: rotate(45deg); }

/* Floating preview image following cursor */
.act-preview {
  position: absolute;
  z-index: 10;
  top: 0; left: 0;
  width: clamp(200px, 22vw, 320px);
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(.85);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, .5);
}
.act-preview img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
}
.act-preview img.is-active { opacity: 1; }

/* Season footnote chips */
.season__chips {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.season__chips li {
  font-size: .8rem;
  font-weight: 600;
  padding: .55em 1.1em;
  border-radius: 99px;
  border: 1px solid var(--s-line);
  color: var(--s-muted);
}

/* ---------- Hosts ---------- */
.hosts {
  background: var(--paper);
  padding: clamp(7rem, 14vh, 11rem) 0;
  overflow: hidden;
}
.hosts__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.hosts__media {
  position: relative;
}
.hosts__img {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}
.hosts__img img { width: 100%; height: 108%; object-fit: cover; }
.hosts__heart {
  position: absolute;
  right: -1.6rem; top: -1.6rem;
  width: clamp(60px, 6vw, 88px);
  filter: drop-shadow(0 12px 24px rgba(201, 170, 107, .45));
}
.hosts__body { display: grid; gap: 1.6rem; }
.hosts__title { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
.hosts__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 340;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
  color: var(--pine);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
}
.hosts__copy { color: var(--ink-soft); max-width: 32rem; display: grid; gap: 1.1rem; }
.hosts__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-deep);
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--paper-2);
  padding: clamp(6rem, 12vh, 10rem) 0;
}
.reviews__head {
  max-width: 46rem;
  display: grid;
  gap: 1.3rem;
  margin-bottom: clamp(2.8rem, 6vh, 4.5rem);
}
.reviews__title { font-size: clamp(2.6rem, 6.5vw, 5.5rem); }
.reviews__sub { color: var(--ink-soft); max-width: 34rem; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1rem;
}
.review-card {
  display: grid;
  gap: 1.05rem;
  align-content: start;
  padding: 1.7rem 1.6rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .45s var(--ease-out), border-color .45s, box-shadow .45s;
}
.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 26px 50px -30px rgba(20, 24, 21, .4);
}
.review-card__platform {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.review-card__platform::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.review-card__score { display: flex; align-items: baseline; gap: .45rem; }
.review-card__num {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(2.6rem, 3.6vw, 3.6rem);
  line-height: 1;
  color: var(--pine);
  font-variant-numeric: tabular-nums;
}
.review-card__score small {
  font-size: .95rem;
  font-weight: 600;
  color: var(--stone);
}
.review-card__bar {
  display: block;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.review-card__fill {
  display: block;
  height: 100%;
  width: calc(var(--fill, 1) * 100%);
  background: var(--gold);
  transform-origin: left;
}
.review-card__count { font-size: .88rem; color: var(--ink-soft); }
.review-card__link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold-deep);
  margin-top: .2rem;
}
.review-card__link svg { width: 15px; flex: none; transition: transform .35s var(--ease-out); }
.review-card:hover .review-card__link svg { transform: rotate(45deg); }
.reviews__note {
  margin-top: 2.5rem;
  font-size: .78rem;
  color: var(--stone);
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(6rem, 12vh, 10rem) 0; }
.faq__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 901px) {
  .faq__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); }
  .faq__head { position: sticky; top: 7rem; }
}
.faq__head { display: grid; gap: 1.3rem; }
.faq__title { font-size: clamp(2.6rem, 6.5vw, 5rem); }
.faq__sub { color: var(--ink-soft); max-width: 26rem; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-of-type { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.3;
  list-style: none;
  transition: color .3s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold-deep); }
.faq__icon {
  position: relative;
  flex: none;
  width: .95rem; height: .95rem;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 0; top: calc(50% - 1px);
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--gold-deep);
  transition: transform .35s var(--ease-out);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0deg); }
.faq__a {
  padding: .2rem 2.6rem 1.5rem 0;
  color: var(--ink-soft);
  max-width: 40rem;
}
.faq__note {
  margin-top: 2.2rem;
  font-size: .88rem;
  color: var(--ink-soft);
}

/* ---------- Booking CTA ---------- */
.book-cta {
  position: relative;
  background: var(--pine);
  color: var(--paper);
  padding: clamp(7rem, 15vh, 12rem) 0;
  overflow: hidden;
  text-align: center;
}
.book-cta__logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(72vw, 46rem);
  opacity: .05;
  pointer-events: none;
}
.book-cta__inner { position: relative; display: grid; gap: 2.2rem; justify-items: center; }
.book-cta__title { font-size: clamp(3rem, 8vw, 7.5rem); color: var(--paper); }
.book-cta__sub { max-width: 30rem; color: rgba(244, 239, 229, .7); }
.book-cta__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}
.book-cta__chips li {
  font-size: .8rem;
  font-weight: 600;
  padding: .55em 1.1em;
  border-radius: 99px;
  border: 1px solid var(--line-light);
  color: rgba(244, 239, 229, .75);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: clamp(5rem, 10vh, 8rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(4rem, 8vh, 6rem);
}
.footer__claim { font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: var(--paper); max-width: 18ch; }
.footer h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col ul { display: grid; gap: .65rem; }
.footer__col a { color: rgba(244, 239, 229, .75); transition: color .3s; font-size: .95rem; }
.footer__col a:hover { color: var(--gold); }
.footer__col address { font-style: normal; color: rgba(244, 239, 229, .75); font-size: .95rem; line-height: 1.7; }
.footer__clock { margin-top: 1.2rem; font-size: .8rem; color: rgba(244,239,229,.45); font-variant-numeric: tabular-nums; }
.footer__marquee {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 1.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.footer__marquee .marquee__item {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: 0;
  text-transform: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 239, 229, .4);
  gap: 3.5rem;
  padding-right: 3.5rem;
}
.footer__marquee .heart { width: clamp(26px, 3vw, 42px); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2rem;
  font-size: .8rem;
  color: rgba(244, 239, 229, .45);
}
.footer__legal { display: flex; gap: 1.6rem; }
.footer__legal a:hover { color: var(--gold); }

/* ---------- Booking page ---------- */
.book-page {
  min-height: 100vh;
  background: var(--paper);
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vh, 4.5rem));
}
.book-page__head {
  display: grid;
  gap: 1.4rem;
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
  max-width: 52rem;
}
.book-page__title { font-size: clamp(2.5rem, 6.2vw, 5.5rem); }
.book-page__sub { color: var(--ink-soft); max-width: 34rem; }
.book-page__grid {
  /* single column: the Feratel widget needs the full width to breathe */
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(5rem, 10vh, 8rem);
}
.book-widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(.75rem, 2vw, 2rem);
  min-height: 44rem;
  box-shadow: 0 30px 60px -40px rgba(20, 24, 21, .35);
}
#dw-widget { min-width: 0; }
.book-widget__loading {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
  padding: 6rem 1rem;
  color: var(--stone);
  font-size: .9rem;
  letter-spacing: .08em;
}
.book-widget__loading .heartbeat { width: 44px; animation: beat 1.1s ease-in-out infinite; }
@keyframes beat {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.14); }
  45% { transform: scale(1); }
  60% { transform: scale(1.1); }
}
.book-aside {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.book-aside__card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.6rem;
  display: grid;
  gap: .9rem;
  background: var(--paper-2);
}
.book-aside__card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
}
.book-aside__card ul { display: grid; gap: .55rem; font-size: .9rem; color: var(--ink-soft); }
.book-aside__card li { display: flex; gap: .6em; align-items: baseline; }
.book-aside__card li::before { content: "—"; color: var(--gold-deep); flex: none; }
.book-aside__card a.link-line { font-size: .95rem; }

/* Stilisierte Anfahrtskarte (klickbar -> Google Maps) */
.route-map {
  display: block;
  margin: .2rem 0 .9rem;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.route-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -22px rgba(20, 24, 21, .4);
}
.route-map svg { display: block; width: 100%; height: auto; background: var(--paper); }
.rm-frame { fill: none; stroke: var(--line); }
.rm-highway { stroke: #B9B2A4; stroke-width: 5; fill: none; }
.rm-road { stroke: var(--gold-deep); stroke-width: 3.5; fill: none; stroke-linecap: round; }
.rm-river { stroke: #A9C6D4; stroke-width: 2.5; fill: none; stroke-linecap: round; opacity: .8; }
.rm-ridge { stroke: var(--gold); stroke-width: 1.6; fill: none; opacity: .5; stroke-linejoin: round; }
.rm-lake { fill: #BCD3DE; }
.rm-dot { fill: var(--ink); }
.rm-dot--minor { fill: var(--stone); }
.rm-heart { color: var(--gold); }
.rm-label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  fill: var(--ink-soft);
}
.rm-label--road { fill: var(--stone); letter-spacing: .08em; text-transform: uppercase; font-size: 9.5px; }
.rm-label--minor { fill: var(--stone); font-size: 9px; }
.rm-label--strong { font-size: 13px; font-weight: 700; fill: var(--ink); }
.rm-label--gold {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11.5px;
  fill: var(--gold-deep);
}

/* ---------- Legal pages ---------- */
.legal {
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vh, 4rem));
  padding-bottom: clamp(5rem, 10vh, 8rem);
}
.legal__title { font-size: clamp(2.8rem, 7vw, 5.5rem); margin-bottom: 2.5rem; }
.legal article { max-width: 46rem; display: grid; gap: 1.1rem; color: var(--ink-soft); }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: 1.7rem;
  color: var(--ink);
  margin-top: 1.6rem;
}
.legal h3 { font-size: 1.05rem; color: var(--ink); margin-top: .8rem; }
.legal a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal helpers (JS hooks) ---------- */
.js .reveal-fade { opacity: 0; transform: translateY(40px); }
.js [data-parallax] { will-change: transform; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .apt-modal__panel { grid-template-columns: 1fr; grid-template-rows: 44% 1fr; }
  .apt-modal__media { grid-template-rows: 1fr auto; }
}
@media (max-width: 900px) {
  :root { --nav-h: 4.5rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 1.6rem; }
  .hero__media { height: 52vh; }
  .intro__row { grid-template-columns: 1fr; }
  .intro__imgs { min-height: 24rem; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }

  /* Apartments become vertical cards */
  .apts__track {
    flex-direction: column;
    width: 100%;
    padding-bottom: 4rem;
  }
  .apt-card { width: 100%; }
  .apt-card__media img { width: 100%; }
  .apt-end { width: 100%; padding: 3rem 1rem; }
  .apts__progress { display: none; }
  .apts__hint { display: none; }

  .act-row { grid-template-columns: auto 1fr auto; }
  .act-row__desc { display: none; }
  .act-preview { display: none; }
  .season__collage { height: 20rem; }
  .season__panel--a { width: 44%; }
  .season__panel--b { left: 48%; width: 52%; }
  .season__panel--c { display: none; }

  .hosts__grid { grid-template-columns: 1fr; }
  .hosts__heart { right: 1rem; }

  .book-aside { grid-template-columns: 1fr; }

  .act-modal__panel {
    grid-template-columns: 1fr;
    grid-template-rows: 32vh 1fr;
    max-height: 92vh;
  }
  .act-modal__media { min-height: 0; }

  .footer__top { grid-template-columns: 1fr; gap: 2.2rem; }
  .apt-modal__nav { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .hero__title .indent { padding-left: 1.4rem; }
  .hero__badge { display: none; }
  .season__head { flex-direction: column; align-items: flex-start; }
  .apt-modal__facts { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .noise, .hero__scroll-line::after, .hero__badge-text { animation: none !important; }
  .js .reveal-fade { opacity: 1; transform: none; }
  * { scroll-behavior: auto !important; }
}
