/* =================================================================
   Villa by Zee - styles.css
   Design-Richtung: "INDIGO CALM" - clean, ruhig, foto-first.
   Material-Rhythmus (Kalk / Stein) + EIN Indigo-Panel als Akzent.
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Flächen / Text */
  --kalk: #F2EFE9;       /* Haupt-Hintergrund, warmes Off-White */
  --stein: #E7E3DC;      /* zweiter Sektionston, sanftes Stein */
  --tinte: #23221F;      /* Haupttext, warmes Fast-Schwarz */
  --beton: #65615C;      /* Sekundärtext / Captions / Hairlines (>=4.5:1 auf Kalk und Stein) */
  --beton-hell: #8B8782;
  --hairline: #D9D5CE;   /* sehr helle Linie auf Kalk */

  /* Akzent (genau einer) */
  --indigo: #3E6B43;     /* Hauptfarbe (warmes Grün): CTAs, Links, aktiv, Fokus, Panel */
  --indigo-tief: #2E5234;

  /* Tupfer (winzig) */
  --salbei: #A7B79A;     /* nur Detail Region/Garten, nie Fläche, nie Text */
  --türkis: #3FB8C4;    /* nur Pool-Kante / kleiner Unterstrich */

  /* Schrift */
  --font-display: "League Gothic", "Roboto Condensed", system-ui, sans-serif;
  --font-body: "Roboto Condensed", system-ui, sans-serif;
  --font-mono: "Roboto Condensed", system-ui, sans-serif;
  /* Akzentschrift: warm-tropisch, aber klassisch (Topbar-USPs, Preis, Buchen) */
  --font-accent: var(--font-body);

  /* Layout */
  --header-h: 64px;
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3rem, 6vw, 5.5rem);
  --section-y-tight: clamp(2.25rem, 4.5vw, 4rem);
  --radius: 10px;
  --radius-img: 14px;
  --shadow-img: 0 16px 38px -22px rgba(20, 18, 16, 0.42);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --reveal-dur: 600ms;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--tinte);
  background: var(--kalk);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture { max-width: 100%; display: block; }

a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { margin: 0; }
p { margin: 0; }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.narrow { max-width: 760px; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: var(--section-y-tight); }
.section--kalk { background: var(--kalk); }
.section--stein { background: var(--stein); }

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

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  z-index: 200;
  background: var(--indigo);
  color: #fff;
  padding: 0.6em 1em;
  border-radius: var(--radius);
  transform: translateY(-130%); /* komplett versteckt - lugt nie unter der Leiste hervor */
  transition: transform 160ms var(--ease);
}
.skip-link:focus { transform: translateY(0); text-decoration: none; }

/* ---------- Typografie-Skala ---------- */
.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.2rem, 8.5vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}
.display-m {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.display-s {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.lead {
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--tinte);
  text-wrap: pretty;
}
.body { font-size: 1.12rem; line-height: 1.6; color: var(--tinte); text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--beton);
  margin-bottom: 1rem;
}
.caption {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--beton);
  line-height: 1.4;
}

/* Light variants on photo / indigo */
.eyebrow--light { color: rgba(255,255,255,0.82); }
.lead--light, .body--light { color: rgba(255,255,255,0.92); }
.display-m--light, .display-s--light { color: #fff; }
.caption--light { color: rgba(255,255,255,0.9); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  padding: 0.9em 1.5em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease);
  text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn--primary { background: var(--indigo); color: #fff; }
.btn--primary:hover { background: var(--indigo-tief); }

.btn--ghost { background: transparent; border-color: var(--beton); color: var(--tinte); }
.btn--ghost:hover { border-color: var(--indigo); color: var(--indigo); }

/* Ghost button on a photo (hero) */

/* Inverted button on indigo panel */
.btn--invert { background: var(--kalk); color: var(--indigo); }
.btn--invert:hover { background: #fff; color: var(--indigo-tief); }

/* White focus ring on indigo panel */
.indigo-panel :focus-visible,
.hero :focus-visible {
  outline-color: #fff;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 239, 233, 0.88);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline);
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
/* Logo überragt die Topbar: ~1/3 in der Leiste, ~2/3 auf dem Video. */
.wordmark {
  position: relative;
  flex: 0 0 auto;
  width: 108px;
  height: var(--header-h);
  margin-left: clamp(0.25rem, 1.5vw, 1.25rem);
}
.wordmark__logo {
  position: absolute;
  left: 0;
  top: 12px;
  width: 108px; height: 108px;
  box-sizing: border-box;
  display: block;
  border-radius: 50%;
  box-shadow: 0 16px 32px -14px rgba(20, 18, 16, 0.5);
}
@media (min-width: 620px) {
  .wordmark { width: 172px; }
  .wordmark__logo { width: 172px; height: 172px; top: 7px; }
}
.wordmark:hover { text-decoration: none; }
.wordmark--light { color: var(--kalk); }

/* Key-USPs in der Topbar (nur breite Screens) */
.header-usps {
  display: none;
  list-style: none; margin: 0; padding: 0;
  gap: 1.3rem; align-items: center;
  font-family: var(--font-accent);
  font-weight: 500; font-size: 1.05rem; color: var(--tinte);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.header-usps li { position: relative; white-space: nowrap; }
.header-usps li + li::before {
  content: ""; position: absolute; left: -0.62rem; top: 50%;
  width: 3px; height: 3px; border-radius: 50%; background: var(--beton-hell);
  transform: translateY(-50%);
}
@media (min-width: 1080px) { .header-usps { display: flex; } }

/* Aktionsgruppe rechts: Preis, Buchen-Button, Burger */
.header-actions { display: flex; align-items: center; gap: clamp(0.7rem, 1.6vw, 1.25rem); }
.header-price { display: none; flex-direction: column; line-height: 1.1; text-align: right; margin: 0; }
.header-price__main { font-family: var(--font-accent); font-weight: 500; font-size: 1.22rem; color: var(--tinte); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.header-price__sub { font-family: var(--font-accent); font-weight: 400; font-size: 0.86rem; color: var(--beton); text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
@media (min-width: 620px) and (max-width: 899px) {
  .header-price__main { font-size: 1.02rem; }
  .header-price__sub { font-size: 0.78rem; }
}
@media (min-width: 620px) { .header-price { display: flex; } }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 1rem; }
.header-book { font-family: var(--font-accent); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* Burger */
.burger {
  position: relative; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; color: var(--tinte);
  -webkit-tap-highlight-color: transparent;
}
.burger__box { position: relative; display: block; width: 22px; height: 14px; }
.burger__bar, .burger__bar::before, .burger__bar::after {
  position: absolute; left: 0; width: 22px; height: 2px; border-radius: 2px; background: currentColor;
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}
.burger__bar { top: 50%; transform: translateY(-50%); }
.burger__bar::before { content: ""; top: -6px; }
.burger__bar::after  { content: ""; top: 6px; }
.burger[aria-expanded="true"] .burger__bar { transform: rotate(45deg); }
.burger[aria-expanded="true"] .burger__bar::before { transform: translateY(6px) rotate(90deg); }
.burger[aria-expanded="true"] .burger__bar::after  { opacity: 0; }

/* Off-canvas Navigation */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(15, 17, 22, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; right: 0; z-index: 120;
  width: min(86vw, 340px); height: 100%;
  background: var(--kalk);
  box-shadow: -18px 0 50px -28px rgba(20, 18, 16, 0.55);
  padding: 1.1rem clamp(1.25rem, 4vw, 2rem) 2rem;
  display: flex; flex-direction: column;
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.34s var(--ease), visibility 0.34s var(--ease);
  overflow-y: auto;
}
.nav-drawer.is-open { transform: none; visibility: visible; }
.nav-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.nav-drawer__title { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--beton); }
.nav-drawer__close { background: none; border: none; font-size: 1.9rem; line-height: 1; color: var(--tinte); cursor: pointer; width: 44px; height: 44px; }
.nav-drawer a {
  font-family: var(--font-display); font-weight: 400; font-size: 1.5rem;
  color: var(--tinte); text-decoration: none;
  padding: 0.6rem 0; border-bottom: 1px solid var(--hairline);
}
.nav-drawer a:hover { color: var(--indigo); text-decoration: none; }
.nav-drawer a[aria-current="true"] { color: var(--indigo); }
.nav-drawer .lang-switch { margin-top: 1.4rem; }

/* Ohne JS: Burger aus, Navigation statisch erreichbar */
.no-js .burger { display: none; }
.no-js .nav-backdrop, .no-js .nav-drawer__head { display: none; }
.no-js .nav-drawer {
  position: static; width: auto; height: auto;
  transform: none; visibility: visible; box-shadow: none;
  padding: 0.5rem var(--gutter) 1rem; flex-flow: row wrap; gap: 0.2rem 1.2rem;
}
.no-js .nav-drawer a { border: none; font-size: 1rem; padding: 0.3rem 0; }

/* Lang switch */
.lang-switch { display: inline-flex; align-items: center; gap: 0.6rem; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  background: none;
  border: none;
  color: var(--beton);
  cursor: pointer;
  padding: 0.6em 0.7em;
}
.lang-btn[aria-pressed="true"] { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }
.lang-sep { color: var(--beton-hell); font-family: var(--font-mono); font-size: 0.8rem; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; }
.hero__media { width: 100%; }
.hero__media img {
  width: 100%;
  height: clamp(460px, 62vw, 760px);
  object-fit: cover;
}
/* Hintergrund-Video deckt das Hero-Bild ab; Overlay + Text liegen darüber.
   Kein z-index nötig: das Video ist positioniert und steht im DOM nach dem
   Bild (liegt also darüber) und vor dem Overlay (liegt also darunter). */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Sonnenaufgang-Grade: warmer Morgenton über dem Footage, fädet beim Laden zum Tag aus */
.hero__grade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,176,112,0.34) 0%, rgba(255,142,74,0.20) 40%, rgba(110,58,30,0.30) 100%),
    radial-gradient(120% 80% at 78% 18%, rgba(255,206,138,0.40) 0%, rgba(255,206,138,0) 55%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(15,17,22,0.10) 0%, rgba(15,17,22,0.20) 42%, rgba(15,17,22,0.52) 78%, rgba(15,17,22,0.82) 100%);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-block: clamp(1.5rem, 4.5vw, 3rem);
}

/* Buchungs-Button + Preis */

/* Eckdaten als abgerundete Chips am unteren Bildrand */
.hero__facts {
  position: absolute;
  right: 0;
  bottom: clamp(1rem, 4vw, 2.2rem);
  z-index: 1;
  list-style: none; margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: clamp(180px, 21vw, 235px);
}
.hero__chip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--tinte);
  background: #fff;
  border: none;
  border-radius: 10px 0 0 10px;
  padding: 0.65rem 1rem;
  text-shadow: none;
  box-shadow: 0 12px 28px -16px rgba(15, 17, 22, 0.65);
}
.chip__icon { flex: 0 0 auto; display: grid; place-items: center; width: 1.25rem; height: 1.25rem; color: var(--indigo); }
.chip__icon svg { width: 100%; height: 100%; display: block; }

/* Hero Pause/Play (WCAG 2.2.2) */
.hero__videotoggle {
  position: absolute; left: clamp(0.9rem, 2.5vw, 1.6rem); bottom: clamp(0.9rem, 3vw, 1.6rem);
  z-index: 2; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(15, 17, 22, 0.42); border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero__videotoggle:hover { background: rgba(15, 17, 22, 0.6); }
.hero__videotoggle-i { position: relative; width: 12px; height: 12px; }
.hero__videotoggle-i::before, .hero__videotoggle-i::after {
  content: ""; position: absolute; top: 0; width: 3px; height: 12px; background: #fff; border-radius: 1px;
}
.hero__videotoggle-i::before { left: 2px; }
.hero__videotoggle-i::after { right: 2px; }
.hero__videotoggle.is-paused .hero__videotoggle-i::before {
  left: 3px; width: 0; height: 0; background: transparent; border-radius: 0;
  border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 10px solid #fff;
}
.hero__videotoggle.is-paused .hero__videotoggle-i::after { display: none; }

/* Türkis erscheint genau einmal: als kleiner Unterstrich am Wort Pool (Headline) */
.underline-pool {
  background-image: linear-gradient(var(--indigo), var(--indigo));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 3px;
  padding-bottom: 2px;
}

/* ---------- Section head ---------- */
.section-head { max-width: 56ch; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.section-head .display-m { margin-bottom: 0.8rem; }
.section-head--center { max-width: 60ch; margin-inline: auto; text-align: center; }


/* ---------- Intro + Callouts ---------- */
.intro {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: stretch;
}
@media (min-width: 880px) {
  .intro { grid-template-columns: 1.05fr 0.95fr; }
}
.intro__text { display: flex; flex-direction: column; max-width: 56ch; }
.intro__text .eyebrow { margin-bottom: 0.7rem; }
.intro__text .display-m { margin-bottom: 0.9rem; }
.intro__text .lead { margin-bottom: 0; }
.intro__callouts {
  list-style: none;
  margin: 1.9rem 0 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(35, 34, 31, 0.14);
  display: grid;
  gap: 1.3rem 1.9rem;
}
@media (min-width: 480px) { .intro__callouts { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .intro__callouts { margin-top: auto; } }
.callout {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.85rem;
  row-gap: 0.2rem;
  padding: 0;
}
.callout__icon {
  grid-row: 1 / 3;
  align-self: start;
  display: grid; place-items: center;
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  background: rgba(62, 107, 67, 0.1);
  color: var(--indigo);
}
.callout__icon svg { width: 1.4rem; height: 1.4rem; display: block; }
.callout__title {
  grid-column: 2;
  align-self: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.05;
  color: var(--tinte);
}
.callout__text { grid-column: 2; color: var(--beton); font-size: 0.95rem; line-height: 1.45; }
.intro__media { margin: 0; }
.intro__media picture { display: block; height: 100%; }
.intro__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-img);
  display: block;
}

/* ---------- FOTO-KARUSSELL (Herzstück) ---------- */
.carousel {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.carousel:focus-visible { outline: 2px solid var(--indigo); outline-offset: 4px; border-radius: var(--radius); }

.carousel__viewport {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-img);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__viewport::-webkit-scrollbar { display: none; }

.carousel__slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tinte);
}
@media (min-width: 760px) {
  .carousel__slide { aspect-ratio: 16 / 10; }
}

/* Foto füllt den Rahmen randlos: kein unscharfer Hintergrund, keine Seitenbalken. */
.carousel__pic { position: absolute; inset: 0; z-index: 1; }
.carousel__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0.7rem 1rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(15,17,22,0) 0%, rgba(15,17,22,0.62) 100%);
  text-align: center;
}

/* Prev/Next */
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
  background: var(--indigo);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 18px -6px rgba(20,18,16,0.5);
  transition: background-color 160ms var(--ease);
}
.carousel__nav:hover { background: var(--indigo-tief); }
.carousel__nav--prev { left: calc(var(--gutter) + 0.6rem); }
.carousel__nav--next { right: calc(var(--gutter) + 0.6rem); }
.carousel__nav:focus-visible { outline-color: #fff; }

/* Zähler */
.carousel__count {
  position: absolute;
  top: calc(0.7rem);
  right: calc(var(--gutter) + 0.7rem);
  z-index: 3;
  color: #fff;
  background: rgba(15,17,22,0.5);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

/* Dots */
.carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
/* Sehr schmal: Punkte weglassen (Zaehler-Chip + Wischen reichen, kein Zweizeilen-Umbruch) */
@media (max-width: 539px) { .carousel__dots { display: none; } }
.carousel__dot {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.carousel__dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--beton-hell);
  transition: background-color 160ms var(--ease), transform 160ms var(--ease);
}
.carousel__dot[aria-current="true"]::before { background: var(--indigo); transform: scale(1.35); }

@media (max-width: 540px) {
  .carousel__nav { width: 44px; height: 44px; font-size: 1.4rem; }
  .carousel__nav--prev { left: calc(var(--gutter) - 0.2rem); }
  .carousel__nav--next { right: calc(var(--gutter) - 0.2rem); }
}

/* ---------- Räume (3 Karten) ---------- */
.room-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (min-width: 760px) {
  .room-grid { grid-template-columns: repeat(3, 1fr); }
}
.room-card { margin: 0; display: flex; flex-direction: column; }
.room-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-img);
}
.room-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Räume: Mini-Galerie im Kartenbild (Pfeile links/rechts, Bilder als Crossfade-Stapel) */
.room-gallery__pic {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms var(--ease);
}
.room-gallery__pic.is-active { opacity: 1; }
.room-gallery__pic img { width: 100%; height: 100%; object-fit: cover; }
.room-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
  background: rgba(15,17,22,0.45);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 160ms var(--ease);
}
.room-gallery__nav:hover { background: var(--indigo); }
.room-gallery__nav--prev { left: 0.6rem; }
.room-gallery__nav--next { right: 0.6rem; }
.room-gallery__nav:focus-visible { outline-color: #fff; }
.no-js .room-gallery__nav { display: none; }
@media (prefers-reduced-motion: reduce) { .room-gallery__pic { transition: none; } }

.room-card h3 { margin: 0.9rem 0 0.4rem; }
.room-card .body { color: var(--beton); font-size: 0.99rem; margin-bottom: 0.8rem; }
.room-card__features {
  list-style: none;
  margin: auto 0 0; /* an die Kartenunterkante schieben - drei Karten richten sich aus */
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.room-card__features li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  color: var(--tinte);
}
.room-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--indigo);
}

/* ---------- Ausstattung (dichtes Raster) ---------- */
.amenity-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .amenity-groups { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .amenity-groups { grid-template-columns: repeat(4, 1fr); }
}
.amenity-card {
  background: var(--kalk);
  border: 1px solid rgba(35, 34, 31, 0.08);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem 1.35rem;
}
.amenity-card__title {
  margin: 0 0 1rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--indigo);
}
.amenity-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.96rem;
  line-height: 1.35;
  color: var(--tinte);
}
.amenity__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(62, 107, 67, 0.09);
  color: var(--indigo);
}
.amenity__icon svg { width: 1.15rem; height: 1.15rem; display: block; }
.amenity__text { display: flex; flex-direction: column; gap: 0.05rem; }
.amenity__note { font-size: 0.82rem; line-height: 1.25; color: var(--beton); }

/* ---------- Pool-Bento (Text von Aussenaufnahmen umrahmt) ---------- */
.poolgrid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "haus   haus"
    "text   text"
    "garten nacht";
}
@media (min-width: 880px) {
  .poolgrid {
    gap: 0.9rem;
    grid-template-columns: 0.82fr 1.36fr 0.82fr;
    grid-template-rows: clamp(170px, 17vw, 235px) auto;
    grid-template-areas:
      "garten haus nacht"
      "garten text nacht";
  }
}
.poolgrid__img {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-img);
  box-shadow: var(--shadow-img);
  background: var(--stein);
  aspect-ratio: 4 / 3;
}
.poolgrid__img--haus { grid-area: haus; }
.poolgrid__img--garten { grid-area: garten; }
.poolgrid__img--nacht { grid-area: nacht; }
.poolgrid__img picture { display: block; height: 100%; }
.poolgrid__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.poolgrid__text {
  grid-area: text;
  align-self: center;
  max-width: 46ch;
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 880px) {
  .poolgrid__img { aspect-ratio: auto; }
  .poolgrid__text { padding-inline: clamp(0.5rem, 2vw, 1.6rem); }
}
.poolgrid__text .eyebrow { margin-bottom: 0.7rem; }
.poolgrid__text .display-m { margin-bottom: 0.9rem; }

/* ---------- Lage ---------- */
.lage-layout {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
}
@media (min-width: 880px) {
  .lage-layout { grid-template-columns: 1fr 1fr; }
}
.lage-map__frame {
  width: 100%;
  max-width: none;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-img);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-img);
}
.lage-map__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.lage-map__link { display: inline-block; margin-top: 0.6rem; }
.lage-side .display-s { margin-bottom: 0.9rem; }
.lage-side .body { margin-bottom: 1.5rem; }

.excursion-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.excursion-list li {
  padding-left: 0.9rem;
  border-left: 2px solid var(--hairline);
}
.excursion-list__name {
  display: block;
  font-weight: 500;
  color: var(--tinte);
  margin-bottom: 0.15rem;
}
.excursion-list__text { color: var(--beton); font-size: 0.98rem; }

/* Foto-Streifen */
.excursion-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
}
@media (min-width: 760px) {
  .excursion-strip { grid-template-columns: repeat(4, 1fr); }
}
.excursion-strip__item { margin: 0; display: flex; flex-direction: column; }
.excursion-strip__item picture {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-img);
}
.excursion-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.excursion-strip .caption { margin-top: 0.55rem; font-size: 0.85rem; color: var(--tinte); }

/* Services - 3 Karten, salbei nur als winziges Detail am Marker */
.services-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.services-grid li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.9rem;
  row-gap: 0.8rem;
  padding: 1.5rem;
  background: #fff;
  border: 1.5px solid rgba(62, 107, 67, 0.32);
  border-radius: var(--radius-img);
  box-shadow: 0 16px 34px -24px rgba(20, 18, 16, 0.55);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), transform 160ms var(--ease);
}
.services-grid li:hover {
  border-color: var(--indigo);
  box-shadow: 0 20px 38px -22px rgba(62, 107, 67, 0.4);
  transform: translateY(-3px);
}
.svc__icon {
  display: grid; place-items: center;
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  background: rgba(62, 107, 67, 0.1);
  color: var(--indigo);
}
.svc__icon svg { width: 1.45rem; height: 1.45rem; display: block; }
.svc__title {
  grid-column: 2; align-self: center;
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.35rem; line-height: 1.05; color: var(--tinte);
}
.svc__text { grid-column: 1 / -1; color: var(--beton); font-size: 0.96rem; line-height: 1.45; }

/* ---------- Indigo-Panel (der eine gesättigte Farbblock) ---------- */
.indigo-panel {
  background: var(--indigo);
  color: #fff;
  padding-block: var(--section-y);
}
.indigo-panel__inner {
  display: grid;
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: start;
  position: relative;
}

.indigo-panel .display-m { margin-bottom: 0.7rem; }
.indigo-panel .lead--light { margin-bottom: 0; }

/* Kopf über die volle Breite */
.book-head { order: 0; }
.book-head .lead--light { max-width: 44ch; }
.book-head .display-m, .book-head .lead--light { text-wrap: balance; }

/* Reihenfolge mobil: Kopf -> Buchungs-Box -> Argumente -> Reiseleiste */
.book-widget { order: 1; align-self: start; scroll-margin-top: calc(var(--header-h) + 1rem); }
.book-pitch { order: 2; }
.indigo-panel__inner > .trustline {
  order: 9;
  margin: 0.4rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  justify-content: flex-start;
}

/* Desktop: Überschrift + Argumente links, Box rechts - alles oben auf einer Höhe.
   Die Box überspannt Kopf- und Argument-Zeile, damit rechts kein Freiraum entsteht. */
@media (min-width: 880px) {
  .indigo-panel__inner {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(2.5rem, 5vw, 4.5rem);
    grid-template-areas:
      "head   widget"
      "pitch  widget"
      "trust  trust";
  }
  .book-head { grid-area: head; }
  .book-pitch { grid-area: pitch; align-self: start; }
  .book-widget { grid-area: widget; align-self: start; }
  .indigo-panel__inner > .trustline { grid-area: trust; }
  /* Benefits als 2x2-Raster (genug Breite in der linken Spalte) */
  .book-benefits { grid-template-columns: max-content max-content; gap: 1.1rem 1.8rem; }
}

/* Argumente als Entscheidungshilfen - Icon-Badges */
.book-benefits { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: 0.9rem; }
.book-benefits li { display: flex; gap: 0.85rem; align-items: center; font-size: 1.02rem; line-height: 1.35; color: #fff; white-space: nowrap; }
.book-benefits__icon {
  flex: 0 0 auto;
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.book-benefits__icon svg { width: 1.2rem; height: 1.2rem; }
.book-fineprint { text-wrap: balance; opacity: 0.82; }
.book-widget .lodgify-embed { margin: 0; }

/* Preis-Schätzer im Rates-Panel */
.estimate { margin: 1.25rem 0 1.1rem; }
.estimate__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: 0.6rem; }
.estimate__field { display: flex; flex-direction: column; gap: 0.3rem; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.82); }
.estimate__field select, .estimate__field input {
  font-family: var(--font-body); font-size: 1rem; text-transform: none; letter-spacing: 0;
  padding: 0.55rem 0.6rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.12); color: #fff;
}
.estimate__field input:focus-visible, .estimate__field select:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.estimate__field select option { color: #1a1a1a; }
.estimate__out { margin: 1rem 0 0.5rem; font-size: 1.02rem; line-height: 1.45; color: #fff; }
.estimate__out strong { font-size: 1.25rem; font-family: var(--font-display); font-weight: 400; }
.estimate__out span { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.estimate__note { margin: 0 0 1.2rem; }
.form-error { color: #ffd2cc; margin-top: 0.6rem; }

/* Vertrauenszeile unter dem Buchungs-CTA: Anreise-Einwände am Entscheidungspunkt */
.trustline {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
}
.trustline__item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}
.trustline__check { font-weight: 700; color: #fff; }

/* Anreise-Leiste: schmaler Sektions-Trenner zwischen Story und Rundgang
   (gleiche Botschaft wie .trustline, hier als ruhige Icon-Zeile in Eyebrow-Optik) */
.travelbar {
  background: var(--indigo);
  padding: 0.7rem var(--gutter);
}
.travelbar__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--container);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem clamp(1.5rem, 4vw, 3.5rem);
}
.travelbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.travelbar__icon { display: grid; place-items: center; width: 1.15rem; height: 1.15rem; color: #fff; flex: 0 0 auto; }
.travelbar__icon svg { width: 100%; height: 100%; }
@media (max-width: 480px) {
  .travelbar__item { font-size: 0.78rem; letter-spacing: 0.06em; }
}

/* ---------- Kontaktformular ---------- */
.contact-layout { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
@media (min-width: 880px) {
  .contact-layout { grid-template-columns: 1fr 1.2fr; align-items: start; }
  .contact-layout .section-head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.contact-form label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--beton);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--tinte);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0.7em 0.85em;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--indigo);
  outline-offset: 1px;
  border-color: var(--indigo);
}
.contact-form textarea { resize: vertical; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-privacy { font-size: 0.85rem; color: var(--beton); margin: 0; }
.form-success {
  font-family: var(--font-body);
  color: var(--indigo);
  font-weight: 500;
  background: var(--stein);
  border-radius: var(--radius);
  padding: 0.9em 1em;
  margin: 0;
}

@media (max-width: 520px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ---------- Legal ---------- */
/* ---------- Footer (dunkel) ---------- */
.site-footer {
  background: var(--tinte);
  color: var(--kalk);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
/* Mobil: Platz fuer den Sticky-CTA, damit das Kleingedruckte lesbar bleibt */
@media (max-width: 759px) {
  .site-footer { padding-bottom: calc(clamp(2.5rem, 5vw, 3.5rem) + 84px + env(safe-area-inset-bottom, 0px)); }
}
.footer-inner {
  display: grid;
  gap: 1.8rem;
  align-items: start;
}
.footer-top {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 760px) {
  .footer-top { grid-template-columns: 1fr auto; }
}
/* Impressum + Datenschutz direkt im Footer (keine eigenen Sektionen) */
.footer-legal {
  display: grid;
  gap: 1.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(242,239,233,0.14);
}
@media (min-width: 620px) {
  .footer-legal { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
}
.footer-legal__h {
  font-family: var(--font-mono);
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(242,239,233,0.92);
  margin-bottom: 0.45rem;
}
.footer-legal__text {
  font-size: 0.82rem; line-height: 1.55;
  color: rgba(242,239,233,0.6);
  max-width: 54ch;
}
.site-footer :focus-visible { outline-color: #fff; }
.footer-meta { display: grid; gap: 0.75rem; }
.footer-meta .lang-btn { color: rgba(242,239,233,0.7); }
.footer-meta .lang-btn[aria-pressed="true"] { color: #fff; }
.footer-meta .lang-sep { color: rgba(242,239,233,0.4); }
.footer-rights { font-size: 0.82rem; color: rgba(242,239,233,0.7); }

/* ---------- Consent Banner ---------- */
.consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 150;
  background: var(--tinte);
  color: var(--kalk);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.18);
}
.consent[hidden] { display: none; }
.consent__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-block: 1.1rem;
}
.consent__text { flex: 1 1 320px; color: rgba(242,239,233,0.9); font-size: 0.95rem; margin: 0; }
.consent__actions { display: flex; gap: 0.7rem; }
.consent .btn--ghost { border-color: rgba(242,239,233,0.55); color: var(--kalk); }
.consent .btn--ghost:hover { border-color: #fff; color: #fff; }
.consent :focus-visible { outline-color: #fff; }

/* ---------- Scroll-Reveal (EIN orchestrierter Reveal) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Wenn GSAP die Bewegung übernimmt: CSS-Transition aus (GSAP steuert per Inline-Style),
   will-change ebenfalls (GSAP setzt es selbst waehrend aktiver Tweens) */
html.gsap-on .reveal { transition: none; will-change: auto; }

/* no-js: alles sichtbar */
.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .skip-link, .main-nav a { transition: none; }
  .carousel__viewport { scroll-behavior: auto; }
  .carousel__nav, .carousel__dot::before { transition: none; }
  /* Bei reduzierter Bewegung kein Auto-Play-Video: Hero-Bild bleibt sichtbar. */
  .hero__video { display: none; }
  .umg__cap { transition: none; }
  .lightbox { transition: none; }
}

/* ---------- Lightbox ---------- */
.is-zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(0.5rem, 3vw, 2rem);
  background: rgba(11, 13, 17, 0.94);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__fig {
  margin: 0; max-width: min(1120px, 94vw); max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.lightbox__img {
  max-width: 100%; max-height: 80vh; width: auto; height: auto;
  border-radius: 8px; object-fit: contain;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
}
.lightbox__cap {
  font-family: var(--font-mono); font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  display: flex; gap: 0.85rem; align-items: baseline; flex-wrap: wrap; justify-content: center;
}
.lightbox__count { color: rgba(255, 255, 255, 0.6); font-variant-numeric: tabular-nums; }
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 1;
  border: none; cursor: pointer; color: #fff;
  background: rgba(255, 255, 255, 0.14);
  display: grid; place-items: center; line-height: 1;
  transition: background 0.18s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox__close:focus-visible, .lightbox__nav:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.lightbox__close {
  top: clamp(0.6rem, 2vw, 1.4rem); right: clamp(0.6rem, 2vw, 1.4rem);
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.9rem;
}
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 1.9rem; }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.4rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.4rem); }
@media (max-width: 560px) { .lightbox__nav { width: 44px; height: 44px; bottom: clamp(0.5rem,3vw,1.4rem); top: auto; transform: none; } }

/* ========== Audit-Fixes: Anker, Topbar-Verhalten, Sticky-CTA ========== */
/* Anchor-Jumps landen unter der Topbar statt darunter versteckt */
main [id], #top { scroll-margin-top: clamp(76px, 12vw, 94px); }

/* BOOK NOW: nie umbrechen, Touch-Mindesthöhe 44px */
.header-book { white-space: nowrap; min-height: 44px; display: inline-flex; align-items: center; }

/* Logo-Dock: der grosse Badge gehoert dem Hero; nach dem Hero gleitet er IN die Leiste
   (52px auf allen Breakpoints) und verdeckt keine Inhalte mehr. */
.wordmark { transition: width .28s var(--ease); }
.wordmark__logo { transition: width .28s var(--ease), height .28s var(--ease), top .28s var(--ease); }
.site-header.is-scrolled .wordmark { width: 52px !important; }
.site-header.is-scrolled .wordmark__logo { width: 52px !important; height: 52px !important; top: 6px !important; }

/* Hero-Chips auf sehr schmalen Screens kompakter (kein Clipping bei 320px) */
@media (max-width: 420px) {
  .hero__facts { width: clamp(148px, 46vw, 196px); }
  .hero__chip { font-size: 0.8rem; padding: 0.55rem 0.7rem; letter-spacing: 0.03em; }
  .chip__icon { width: 1.05rem; height: 1.05rem; }
}

/* Sticky Mobile-CTA: Anfrage immer einen Daumentipp entfernt */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 0.6rem clamp(0.9rem, 4vw, 1.25rem) calc(0.6rem + env(safe-area-inset-bottom, 0px));
  background: rgba(242, 239, 233, 0.96); border-top: 1px solid var(--hairline);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; gap: 0.7rem; align-items: center;
  transform: translateY(130%); transition: transform .3s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { flex: 1; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
.sticky-cta__price { font-family: var(--font-accent); font-size: 0.8rem; color: var(--beton); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
@media (min-width: 760px) { .sticky-cta { display: none; } }
@media (prefers-reduced-motion: reduce) { .sticky-cta, .wordmark__logo { transition: none; } }

/* Storytelling-Band: zentrierter, ruhiger Erzählblock */
.story { max-width: 64ch; margin-inline: auto; text-align: center; }
.story .eyebrow { margin-bottom: 0.85rem; }
.story .display-m { margin-bottom: 1.1rem; text-wrap: balance; }
.story__lead { margin-bottom: 1rem; }
.story__body { color: var(--beton); max-width: 52ch; margin-inline: auto; }

/* Story-Atmosphäre: grüner Morgenlicht-Schleier über dem Abschnitt + Anker-Ornamente */
#ort { position: relative; isolation: isolate; }
#ort > .container { position: relative; z-index: 1; }
.story__haze {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(115% 78% at 50% 0%, rgba(62,107,67,0.20), rgba(62,107,67,0) 58%),
    radial-gradient(130% 72% at 50% 108%, rgba(62,107,67,0.12), rgba(62,107,67,0) 62%),
    radial-gradient(80% 50% at 82% 30%, rgba(231,227,220,0.5), rgba(231,227,220,0) 70%);
}
.story__frond {
  display: block;
  width: 26px; height: 26px;
  margin: 0 auto 0.7rem;
  color: var(--indigo);
}
.story__frond svg { display: block; }
.story__sep {
  display: block;
  width: min(46ch, 100%);
  height: 1px;
  margin: 0.4rem auto 1.4rem;
  background: var(--hairline);
  transform: scaleX(0);
  transform-origin: center;
}

/* Auszeichnung: "State of Retreats Report 2026" - Wellnessziel Nr. 1 weltweit.
   Verlinkt die Quelle (BookRetreats); Lorbeer-Ornamente im Frond-Strichstil. */
.story__award {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  color: var(--indigo);
}
.story__award:hover { text-decoration: none; }
.story__award:hover .award__title { border-bottom-color: currentColor; }
.award__laurel { display: block; width: 19px; height: 34px; color: var(--indigo); }
.award__laurel svg { display: block; width: 100%; height: 100%; }
.award__laurel--r svg { transform: scaleX(-1); }
.award__text { display: flex; flex-direction: column; gap: 0.3rem; align-items: center; }
.award__title {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--indigo);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms var(--ease);
}
.award__sub {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: var(--beton);
}
@media (max-width: 480px) {
  .award__title { font-size: 0.8rem; letter-spacing: 0.11em; max-width: 14rem; text-wrap: balance; }
  .award__sub { font-size: 0.7rem; }
  .story__award { gap: 0.65rem; }
  .award__laurel { width: 16px; height: 29px; }
}
/* Kein-GSAP-Fallback: Atmosphäre/Ornamente statisch sichtbar zeigen */
html:not(.gsap-on) .story__haze { opacity: 1; }
html:not(.gsap-on) .story__sep { transform: scaleX(1); }

/* Story-Seitenbilder: gestreute Sri-Lanka-Quadrate links/rechts vom Text, Scroll-Parallax */
.story__media {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1180px);
  pointer-events: none;
  z-index: 0;
}
.story__pic {
  position: absolute;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px -18px rgba(20, 18, 16, 0.45);
  background: var(--stein);
}
.story__pic img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Positionen, Größen + statische Neigung (Fallback ohne GSAP) */
.story__pic--l1 { width: 150px; height: 150px; top: 5%;  left: 0;      transform: rotate(-5deg); }
.story__pic--r1 { width: 138px; height: 138px; top: 14%; right: 1%;    transform: rotate(4deg); }
.story__pic--l2 { width: 128px; height: 128px; top: 42%; left: 5%;     transform: rotate(-3deg); }
.story__pic--r2 { width: 158px; height: 158px; top: 49%; right: 4%;    transform: rotate(5deg); }
.story__pic--l3 { width: 162px; height: 162px; top: 72%; left: 1%;     transform: rotate(-4deg); }
.story__pic--r3 { width: 132px; height: 132px; top: 77%; right: 0;     transform: rotate(3deg); }

/* Flash-Schutz: nur mit JS verstecken; ohne GSAP / reduced-motion sichtbar */
.js .story__pic { opacity: 0; }
html:not(.gsap-on) .story__pic { opacity: 1 !important; }
@media (prefers-reduced-motion: reduce) { .story__pic { opacity: 1 !important; } }

/* Book-Button in der Story nur auf dem Handy */
.story__cta { display: none; margin-top: 1.5rem; }

/* Handy: alle 6 geneigten Bilder als AUTO-Karussell (nicht swipebar, läuft ruhig) + Button */
@media (max-width: 1023px) {
  .story__media {
    position: static;
    transform: none;
    display: flex;
    align-items: center;
    gap: 4vw;
    width: auto;
    max-width: none;
    margin: clamp(1.6rem, 8vw, 3rem) 0 clamp(1.4rem, 5vw, 2rem);
    padding: 20px 6vw;
    box-sizing: border-box;
    overflow-x: auto;
    scrollbar-width: none;
    pointer-events: none;   /* nicht swipebar - scrollt automatisch */
  }
  .story__media::-webkit-scrollbar { display: none; }
  .story__pic--l1, .story__pic--r1, .story__pic--l2,
  .story__pic--r2, .story__pic--l3, .story__pic--r3 {
    display: block;
    position: static;
    top: auto; left: auto; right: auto;
    flex: 0 0 auto;
    width: 58vw; height: auto;
    aspect-ratio: 1;
  }
  .story__cta { display: inline-flex; }
}

/* How-it-works Schritte */
.steps { list-style: none; margin: 0 0 clamp(2.25rem, 4.5vw, 3.25rem); padding: 0; display: grid; gap: 1.4rem; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2.25rem); } }
.step { display: grid; grid-template-columns: auto 1fr; column-gap: 0.9rem; row-gap: 0.35rem; align-items: center; }
.step__num {
  grid-row: 1 / 3; align-self: start;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--indigo); color: #fff;
  font-family: var(--font-display); font-size: 1.25rem;
  display: grid; place-items: center;
}
.step__t { grid-column: 2; font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; line-height: 1.05; color: var(--tinte); }
.step__b { grid-column: 1 / -1; color: var(--beton); font-size: 0.96rem; line-height: 1.5; }
@media (min-width: 700px) { .step__b { grid-column: 2; } }

/* FAQ-Akkordeon (details/summary) */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__item:first-child { border-top: 1px solid var(--hairline); }
.faq__q {
  cursor: pointer; list-style: none; position: relative;
  padding: 1.15rem 2.2rem 1.15rem 0;
  font-family: var(--font-display); font-weight: 400; font-size: 1.35rem; line-height: 1.1; color: var(--tinte);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; border-radius: 4px; }
.faq__q::after {
  content: "+"; position: absolute; right: 0.15rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-size: 1.7rem; line-height: 1; color: var(--indigo);
}
.faq__item[open] .faq__q::after { content: "\2013"; }
.faq__a { padding: 0 0 1.2rem; }
.faq__a p { margin: 0; color: var(--beton); font-size: 1.02rem; line-height: 1.6; max-width: 66ch; }

/* Gastgeber-Hinweis (Vertrauen) im Kontaktbereich */
.host-note { margin-top: 1.1rem; color: var(--beton); max-width: 48ch; }

/* ---------- Lage: Karte (Leaflet) + nummerierte Ziel-Boxen ---------- */
.lage-explore {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 900px) {
  .lage-explore { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
  /* Karte wächst auf die natürliche Höhe der Ziel-Boxen -> beide Spalten gleich hoch */
  .lage-map { display: flex; flex-direction: column; }
  .lage-map__canvas { height: auto; flex: 1 1 auto; min-height: 360px; }
  .dest-list { align-content: start; }
}
.lage-map__canvas {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(360px, 52vw, 540px);
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-img);
  background: var(--beton-hell);
}
.lage-map__fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.dest-list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(0.7rem, 1.5vw, 0.9rem); }
.dest {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid rgba(62, 107, 67, 0.38);
  border-radius: var(--radius);
  padding: 0.7rem;
  box-shadow: 0 16px 34px -24px rgba(20, 18, 16, 0.6);
  cursor: pointer;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), transform 160ms var(--ease);
}
.dest:hover, .dest:focus-visible {
  border-color: var(--indigo);
  box-shadow: 0 20px 38px -22px rgba(62, 107, 67, 0.42);
  transform: translateY(-3px);
  outline: none;
}
.dest__thumb {
  position: relative; flex: 0 0 auto; width: 96px;
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(62, 107, 67, 0.22);
}
.dest__thumb picture { display: block; width: 100%; height: 100%; }
.dest__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dest__num {
  position: absolute; top: 6px; left: 6px; z-index: 1;
  width: 1.55rem; height: 1.55rem; border-radius: 50%;
  background: var(--indigo); color: #fff;
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
.dest__body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.dest__name {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.5rem; line-height: 1; letter-spacing: 0.01em;
  margin: 0 0 0.35rem; color: var(--tinte);
}
.dest__text { font-size: 0.9rem; line-height: 1.4; color: var(--beton); margin: 0; }
.lage-region { max-width: 72ch; }
.lage-region .display-s { margin-bottom: 0.6rem; }

/* ---------- Umgebungs-Galerie (Masonry) ---------- */
.umg { margin-top: clamp(2.75rem, 6vw, 4.5rem); }
.umg__head { text-align: center; margin: 0 0 0.75rem; }
.umg__intro { text-align: center; max-width: 52ch; color: var(--beton); margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem); font-size: 1.06rem; text-wrap: balance; }
/* Kurze Abschnitts-Intros sauber ausbalanciert auf zwei Zeilen (kein hässlicher Umbruch) */
#rundgang .section-head .lead { max-width: 44ch; margin-inline: auto; text-wrap: balance; }
/* Bento-Raster aus QUADRATEN: gemischte Foto-Formate, quadratische Rahmen (Cover-Crop) */
.umg__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; grid-auto-flow: dense; }
@media (min-width: 680px) { .umg__grid { grid-template-columns: repeat(3, 1fr); gap: 0.85rem; } }
@media (min-width: 1100px) { .umg__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.umg__tile {
  position: relative;
  margin: 0;
  aspect-ratio: 1;               /* quadratische Kontur unabhängig vom Foto-Format */
  break-inside: avoid;
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: var(--shadow-img);
  background: var(--stein);
}
/* ein paar größere Quadrate für den gemischten Bento-Look (ab Tablet) */
@media (min-width: 680px) {
  .umg__tile--xl { grid-column: span 2; grid-row: span 2; }
}
.umg__tile picture { display: block; width: 100%; height: 100%; }
.umg__tile img { display: block; width: 100%; height: 100%; object-fit: cover; }
.umg__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 0.85rem 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.25;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 17, 22, 0) 0%, rgba(15, 17, 22, 0.78) 100%);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.umg__tile:hover .umg__cap,
.umg__tile:focus-within .umg__cap { opacity: 1; transform: none; }
/* Touch-Geräte ohne Hover: Bildunterschriften dauerhaft zeigen */
@media (hover: none) {
  .umg__cap { opacity: 1; transform: none; }
}

/* Leaflet-Pin (nummerierter Marker, passend zur Box-Nummer) */
.map-pin {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--indigo); color: #fff;
  border: 2px solid #fff; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: transform 140ms var(--ease);
}
.map-pin--home { background: var(--tinte); font-size: 0.95rem; }
.map-pin--active { transform: scale(1.3); }
.leaflet-container { font-family: var(--font-body); background: var(--beton-hell); }

/* ============================================================
   Lage "Tuk-Tuk-Reiseband" — gezeichneter Faden durch die Ziel-Liste.
   Reines DOM/SVG-Overlay auf der dest-list. Keine Leaflet-Kopplung.
   ============================================================ */
.dest-list { position: relative; }

.dest-thread {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;   /* dest-Klick / Tastatur / Hover-Pin bleibt intakt */
  z-index: 0;
  overflow: visible;
}
.dest-thread__guide {
  fill: none;
  stroke: rgba(62, 107, 67, 0.34);   /* warme Forstgrün-Haarlinie als Spur */
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 4 7;             /* handgezeichnete Punktspur */
}
.dest-thread__draw {
  fill: none;
  stroke: var(--indigo);             /* solides Reveal, Brand-Grün */
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dest-thread__tuk { opacity: 0; will-change: transform; }
.dest-thread__tukbg { fill: var(--indigo); }

/* Karten müssen über dem Faden liegen. */
.dest { position: relative; z-index: 1; }

/* Fahrzeit-Label, in jede .dest__body injiziert. */
.dest__eta {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--indigo);
  white-space: nowrap;
}
.dest__eta svg { flex: 0 0 auto; width: 0.95rem; height: 0.95rem; }

/* Kein-GSAP-Fallback: <html> bekommt nie .gsap-on -> Reise voll aufgelöst zeigen. */
html:not(.gsap-on) .dest-thread__draw { stroke-dashoffset: 0 !important; }
html:not(.gsap-on) .dest__eta { opacity: 1 !important; }
html:not(.gsap-on) .dest-thread__tuk { opacity: 0 !important; }

/* Reduced motion: nie das fahrende Glyph zeigen. */
@media (prefers-reduced-motion: reduce) {
  .dest-thread__tuk { opacity: 0 !important; }
}

/* ===== #umgebung — Galerie-Kaskade (Per-Tile) + Hover-Lift =====
   Ersetzt den frühen Block-Reveal (yPercent auf dem ~2000px hohen .umg
   = ~156px Sprung). Jetzt erscheinen die Kacheln einzeln, ruhig, in Wellen. */
.js .umg__grid[data-umg-cascade="1"] .umg__tile { opacity: 0; }
html.gsap-on .umg__grid[data-umg-cascade="1"] .umg__tile { transition: none; }
/* Kein-GSAP / no-js / reduced-motion: alle Kacheln voll sichtbar */
html:not(.gsap-on) .umg__grid .umg__tile { opacity: 1 !important; }
.no-js .umg__grid .umg__tile { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .js .umg__grid[data-umg-cascade="1"] .umg__tile { opacity: 1 !important; }
}

/* Dezenter Hover-Lift — signalisiert, dass die Kachel die Lightbox öffnet */
.umg__tile img {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.umg__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-img);
  box-shadow: inset 0 0 0 1px rgba(62, 107, 67, 0);
  pointer-events: none;
  transition: box-shadow 0.4s var(--ease);
  z-index: 1;
}
@media (hover: hover) {
  .umg__tile:hover img,
  .umg__tile:focus-within img { transform: scale(1.035); }
  .umg__tile:hover,
  .umg__tile:focus-within { box-shadow: 0 22px 46px -20px rgba(20, 18, 16, 0.5); }
  .umg__tile:hover::after,
  .umg__tile:focus-within::after { box-shadow: inset 0 0 0 1px rgba(62, 107, 67, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .umg__tile img { transition: none; transform: none !important; }
  .umg__tile::after { transition: none; }
}

/* ===== "Mehr über das Haus" — ruhiges Accordion unter dem Rundgang-Karussell ===== */
.house-more {
  max-width: 64ch;
  margin: clamp(1.4rem, 3.5vw, 2.2rem) auto 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.house-more__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0.25rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--tinte);
}
.house-more__summary::-webkit-details-marker { display: none; }
.house-more__summary:hover { color: var(--indigo); }
.house-more__chev {
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-right: 2px solid var(--indigo);
  border-bottom: 2px solid var(--indigo);
  transform: rotate(45deg);
  transition: transform 200ms var(--ease);
}
.house-more[open] .house-more__chev { transform: rotate(-135deg); }
.house-more__body { padding: 0.35rem 0.25rem 1.4rem; }
.house-more__body .display-s { margin-bottom: 0.7rem; }
.house-more__body .body { color: var(--beton); margin-bottom: 1.1rem; }
@media (prefers-reduced-motion: reduce) { .house-more__chev { transition: none; } }

/* ===== "Gut zu wissen"-Box (Visa, Direktflüge, Preisbeispiel, Service) ===== */
.knowbox {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(1.1rem, 2.5vw, 1.6rem) clamp(1.1rem, 2.5vw, 1.8rem);
  background: rgba(62, 107, 67, 0.07);
  border: 1px solid rgba(62, 107, 67, 0.25);
  border-radius: var(--radius);
}
.knowbox__head {
  font-family: var(--font-mono);
  font-size: 0.88rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--indigo);
  margin: 0 0 0.9rem;
}
.knowbox__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
@media (min-width: 880px) { .knowbox__list { grid-template-columns: 1fr 1fr; gap: 1rem 2rem; } }
.knowbox__item { display: flex; gap: 0.75rem; align-items: flex-start; }
.knowbox__icon {
  flex: 0 0 auto;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(62, 107, 67, 0.12);
  color: var(--indigo);
}
.knowbox__icon svg { width: 1.05rem; height: 1.05rem; }
.knowbox__text { font-size: 0.95rem; line-height: 1.55; color: var(--tinte); }
.knowbox__text a {
  color: var(--indigo);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.knowbox__text a:hover { color: var(--indigo-tief); }
.knowbox__sep { color: var(--beton); margin: 0 0.15rem; }

/* ---------- Hero: Scroll-Cue (Haarlinie unten mittig) ---------- */
.hero__cue {
  position: absolute;
  left: 50%;
  bottom: clamp(0.9rem, 3vw, 1.6rem);
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 34px;
  pointer-events: none;
  display: block;
}
.hero__cue-line {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  transform-origin: 50% 0%;
  transform: scaleY(1);
}

/* ---------- Hero: Chip-Hover-Lift ---------- */
.hero__chip {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.chip__icon { transition: color 0.25s ease; }
@media (hover: hover) and (pointer: fine) {
  .hero__chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -16px rgba(15, 17, 22, 0.7);
  }
  .hero__chip:hover .chip__icon { color: #2E5234; }
}
html:not(.gsap-on) .hero__cue-line { transform: scaleY(1); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__cue-line { transform: scaleY(1) !important; opacity: 1 !important; transition: none; }
  .hero__chip { transition: none; will-change: auto; }
  .chip__icon { transition: none; }
}
