/* ===========================================================
   DAS GASTEIN — Hotel Bad Hofgastein
   Design-Entwurf Startseite · maxonline 2026
   Funktioniert vollständig ohne JavaScript.
   =========================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Markenfarben (Mini-Styleguide) */
  --moss:        #666c4a;   /* Primär – Dunkles Grün */
  --moss-deep:   #4f5439;
  --moss-soft:   #7d8460;
  --taupe:       #cbbba0;   /* Sekundär – Taupe/Sand */
  --berry:       #932f67;   /* Sekundär – Beere (sehr sparsam) */
  --berry-deep:  #7c2857;
  --anthracite:  #545453;   /* Sekundär – Anthrazit */

  /* Abgeleitete Neutraltöne */
  --paper:       #fbf9f5;   /* Grundfläche warm-weiß */
  --cream:       #f4efe6;   /* Section-Wechselfläche */
  --sand:        #e9e1d3;   /* Karten / Rahmen */
  --ink:         #33332e;   /* starke Headlines */
  --text:        #4a4a45;   /* Fließtext */
  --muted:       #6b6960;   /* sekundärer Text – WCAG-AA-tauglich auf hellem Grund */
  --line:        rgba(84,84,83,.16);
  --line-soft:   rgba(84,84,83,.10);
  --white:       #ffffff;

  /* Typografie */
  --serif: "EB Garamond", "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  "Fira Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Typo-Skala (klare Stufen, überall wiederverwendet) */
  --fs-xs:   0.8rem;     /* ~13px  – Eyebrows, Mini-Labels */
  --fs-sm:   0.9rem;     /* ~14px  – Meta, Captions, Icon-Labels */
  --fs-base: 1.0625rem;  /* 17px   – GESAMTER Fließtext */
  --fs-lead: 1.0625rem;  /* 17px   – Einleitungen bewusst gleich groß wie Fließtext */

  /* Maße */
  --container: 1240px;
  --container-wide: 1440px;
  --radius: 6px;
  --shadow-sm: 0 2px 10px rgba(51,51,46,.06);
  --shadow-md: 0 14px 40px rgba(51,51,46,.12);
  --header-h: 84px;
  --hero-offset: 124px; /* Topbar 40 + Header 84 – Hero passt so exakt ins erste Sichtfeld */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset / Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; margin: 0; line-height: 1.12; letter-spacing: .01em; text-wrap: balance; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.container-wide { max-width: var(--container-wide); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.center { text-align: center; }
.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--moss-deep);
  display: inline-flex; align-items: center; gap: .7em;
  margin: 0 0 1.1rem;
}
.eyebrow::before { content:""; width: 26px; height: 1px; background: var(--moss); opacity: .6; }
.eyebrow--center::after { content:""; width: 26px; height: 1px; background: var(--moss); opacity: .6; }
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: var(--taupe); }
.eyebrow--light::before, .eyebrow--light--center::after { background: var(--taupe); }

h1 { font-size: clamp(2.9rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--text); }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 1.05em 2.2em; border-radius: var(--radius);
  border: 1px solid transparent; transition: all .25s var(--ease);
  line-height: 1;
}
.btn--primary { background: var(--moss); color: var(--white); }
.btn--primary:hover { background: var(--moss-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--berry { background: var(--berry); color: #fff; }
.btn--berry:hover { background: var(--berry-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--moss); color: var(--moss); }
.btn--light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--light:hover { background: #fff; color: var(--moss-deep); border-color:#fff; }
.btn--block { width: 100%; }
.textlink {
  font-family: var(--sans); font-size: .8rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--moss);
  display: inline-flex; align-items: center; gap: .55em;
  min-height: 24px;
}
.textlink svg { width: 16px; height: 16px; flex: none; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(5px); }

/* ===========================================================
   HEADER  (Utility-Bar + Hauptnavigation)
   =========================================================== */
.topbar {
  background: var(--moss-deep); color: rgba(255,255,255,.92);
  font-size: .78rem; letter-spacing: .04em;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.topbar a { display: inline-flex; align-items: center; gap: .5em; padding: .4em 0; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar__group { display: flex; align-items: center; gap: 1.6rem; }
.topbar__group--right { gap: 1.3rem; }
.topbar svg { width: 15px; height: 15px; opacity: .85; }
.topbar .pill {
  background: var(--berry); color: #fff; padding: .45em 1em; border-radius: 40px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem;
}
.topbar .pill:hover { background: var(--berry-deep); color:#fff; }
.lang { display: inline-flex; gap: .5em; }
.lang a { opacity: .78; font-weight: 600; padding: .35em .15em; }
.lang a.is-active, .lang a:hover { opacity: 1; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,249,245,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 68px; width: auto; }

.mainnav > ul { display: flex; align-items: center; gap: 2.1rem; }
.mainnav a {
  font-family: var(--sans); font-size: .84rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ink);
  padding: .5em 0; position: relative; display: inline-flex; align-items: center; gap: .4em;
}
.mainnav a::after {
  content:""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--moss); transition: width .28s var(--ease);
}
.mainnav a:hover::after, .mainnav .has-sub:focus-within > a::after { width: 100%; }
.mainnav .caret { width: 10px; height: 10px; opacity: .6; }
/* aktiver Menüpunkt (statisch via aria-current + WordPress-Menüklassen) */
.mainnav > ul > li > a[aria-current="page"],
.mainnav > ul > li.current-menu-item > a,
.mainnav > ul > li.current_page_item > a,
.mainnav > ul > li.current-menu-ancestor > a,
.mainnav > ul > li.current-menu-parent > a,
.mainnav > ul > li.current-page-ancestor > a { color: var(--moss); }
.mainnav > ul > li > a[aria-current="page"]::after,
.mainnav > ul > li.current-menu-item > a::after,
.mainnav > ul > li.current_page_item > a::after,
.mainnav > ul > li.current-menu-ancestor > a::after,
.mainnav > ul > li.current-menu-parent > a::after,
.mainnav > ul > li.current-page-ancestor > a::after { width: 100%; }
.submenu a[aria-current="page"],
.submenu .current-menu-item > a,
.submenu .current_page_item > a { color: var(--moss); font-weight: 700; }

/* Dropdown (CSS-only) */
.has-sub { position: relative; }
.submenu {
  display: block; /* nicht das flex von .mainnav ul erben -> Punkte untereinander */
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 236px; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-md); padding: .6rem;
  opacity: 0; visibility: hidden; transition: all .22s var(--ease); z-index: 70;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu::before { content:""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.submenu li a {
  display: block; padding: .7em .9em; letter-spacing: .06em; font-size: .8rem;
  border-radius: 4px; text-transform: none; font-weight: 500;
}
.submenu li a::after { display: none; }
.submenu li a:hover { background: var(--cream); color: var(--moss); }

.header__actions { display: flex; align-items: center; gap: 1rem; }
.mainnav__cta { display: none; }

/* Burger + Mobile-Nav (Checkbox-Hack, kein JS) */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.burger { display: none; flex-direction: column; gap: 5px; padding: 10px; cursor: pointer; }
.burger span { width: 26px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav-backdrop { display: none; }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; min-height: max(500px, calc(100svh - var(--hero-offset) - 132px)); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--anthracite) center/cover no-repeat; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero::after {
  content:""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(38,40,30,.22) 0%, rgba(38,40,30,0) 30%),
    linear-gradient(0deg, rgba(28,30,22,.62) 0%, rgba(28,30,22,.20) 40%, rgba(28,30,22,0) 66%);
}
.hero__inner { width: 100%; padding-top: clamp(24px, 5vh, 52px); padding-bottom: clamp(72px, 10vh, 120px); }
.hero h1 { color: #fff; max-width: 18ch; font-size: clamp(2.3rem, 5vw, 4.1rem); text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: var(--taupe); opacity: 1; }
.hero__sub { font-size: var(--fs-lead); line-height: 1.55; max-width: 46ch; color: rgba(255,255,255,.92); margin-top: 1.1rem; }
/* Seitenname (Eyebrow) → Zwischenzeile (Teil der Headline) → H1 */
.hero .eyebrow, .roomhero .eyebrow { margin-bottom: .5rem; }
.hero__tag {
  font-family: var(--serif); font-weight: 500; font-style: normal;
  font-size: clamp(1.15rem, 2.4vw, 1.9rem); line-height: 1.2;
  letter-spacing: normal; text-transform: none;
  color: #fff; margin: 0 0 .25rem; text-shadow: 0 1px 16px rgba(0,0,0,.32);
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 118px; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: .7rem;
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.8);
  z-index: 3;
}
.hero__scroll .mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,.6); border-radius: 12px; position: relative; }
.hero__scroll .mouse::after { content:""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{opacity:0; transform: translate(-50%,0)} 40%{opacity:1} 80%{opacity:0; transform: translate(-50%,9px)} 100%{opacity:0} }

/* ---------- Buchungsleiste ---------- */
.bookingbar { position: relative; z-index: 20; max-width: 1120px; margin: -52px auto 0; }
.bookingbar__box {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1.05fr 1.05fr 1.05fr 1fr auto; gap: 0; overflow: hidden;
  border: 1px solid var(--line-soft);
}
.bookingbar__note { margin: .8rem 0 0; text-align: center; font-size: .78rem; color: var(--muted); }
.bfield { padding: 1.15rem 1.25rem; border-right: 1px solid var(--line-soft); display: flex; flex-direction: column; gap: .3rem; min-width: 0; }
.bfield label { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.bfield input, .bfield select {
  border: none; background: transparent; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 0; width: 100%; font-weight: 500;
}
.bfield input:focus, .bfield select:focus { outline: none; }
.bookingbar .btn { border-radius: 0; padding-inline: 2.4rem; font-size: .84rem; }

/* ===========================================================
   USP-Icons
   =========================================================== */
.usp { border-bottom: 1px solid var(--line-soft); }
.usp__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem 1.9rem; text-align: center; }
.usp__item { display: flex; flex-direction: column; align-items: center; gap: .7rem; padding: .5rem; flex: 0 1 150px; }
.usp__item svg, .usp__item .dg-ico { box-sizing: content-box; border-radius: 50%; color: #3c382c; object-fit: contain; display: block; }
.usp__item svg { width: 34px; height: 34px; padding: 21px; stroke-width: .8; }
.usp__item .dg-ico { width: 38px; height: 38px; padding: 19px; }
.usp__item:nth-child(odd)  svg, .usp__item:nth-child(odd)  .dg-ico { background: #f0e2e1; }
.usp__item:nth-child(even) svg, .usp__item:nth-child(even) .dg-ico { background: #e6ebdd; }
.usp__item .t { font-size: var(--fs-sm); font-weight: 600; letter-spacing: .03em; color: var(--ink); line-height: 1.3; min-height: 2.6em; display: flex; align-items: flex-start; justify-content: center; }
.usp__item .s { font-size: var(--fs-xs); color: var(--muted); }
/* Breites Icon-Raster (Zimmerdetail: Ausstattung & Gut zu wissen) –
   über die ganze Inhaltsbreite, möglichst viele Icons pro Reihe (z. B. 7). */
.usp__grid--wide { gap: 1.4rem .7rem; }
.usp__grid--wide .usp__item { flex: 1 1 108px; max-width: 152px; padding: .5rem .25rem; }

/* ===========================================================
   Split / Feature-Sektionen
   =========================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.split__media .badge {
  position: absolute; bottom: 20px; left: 20px; background: var(--white); color: var(--moss);
  padding: .7em 1.2em; border-radius: 40px; font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; box-shadow: var(--shadow-sm);
  display: inline-flex; align-items: center; gap: .5em;
}
.split__body h2 { margin-bottom: 1.2rem; }
.stat-inline { display: flex; gap: 2.4rem; margin: 1.8rem 0 2rem; }
.stat-inline .n { font-family: var(--serif); font-size: 2.2rem; color: var(--moss); line-height: 1; }
.stat-inline .l { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }

/* ===========================================================
   Zimmer-Karten
   =========================================================== */
.section-head { max-width: 640px; margin: 0 auto clamp(2.5rem,5vw,4rem); text-align: center; }
.section-head p { font-size: var(--fs-lead); line-height: 1.6; color: var(--muted); margin-top: 1rem; }
.rooms { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; }
.room {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
  display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.room:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.room__img { position: relative; overflow: hidden; aspect-ratio: 3/2.2; }
.room__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.room:hover .room__img img { transform: scale(1.05); }
.room__tag { position: absolute; top: 14px; left: 14px; background: rgba(251,249,245,.94); color: var(--moss); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .45em .9em; border-radius: 40px; }
.room__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.room__body h3 { margin-bottom: .5rem; min-height: 2.3em; min-height: 2lh; }
.room__meta { display: flex; align-items: center; gap: 1rem; font-size: var(--fs-sm); color: var(--muted); margin-bottom: 1rem; }
.room__meta .price { color: var(--ink); font-weight: 600; }
.room__meta .price b { font-family: var(--serif); font-size: 1.2rem; color: var(--moss); font-weight: 500; }
.room__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); }

/* ===========================================================
   Inklusiv-Band
   =========================================================== */
.inclusive { background: var(--moss); color: rgba(255,255,255,.9); position: relative; overflow: hidden; }
.inclusive__watermark { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 420px; opacity: .06; }
.inclusive .eyebrow { color: var(--taupe); }
.inclusive .eyebrow::before { background: var(--taupe); opacity: 1; }
.inclusive h2 { color: #fff; }
.inclusive__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 3rem; margin-top: 2.4rem; }
.inclusive__grid li { display: flex; align-items: flex-start; gap: .9rem; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: var(--fs-base); color: #fff; }
.inclusive__grid li svg { flex: none; width: 22px; height: 22px; color: var(--taupe); margin-top: 2px; }

/* ===========================================================
   Partner-Band
   =========================================================== */
.partner { text-align: center; }
.partner__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.partner__cards--single { grid-template-columns: minmax(0, 640px); justify-content: center; }
.partner__card {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: clamp(2rem,4vw,3rem); text-align: left; display: flex; gap: 1.6rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.partner__card .ic { flex: none; width: 62px; height: 62px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; color: #3c382c; }
.partner__card:nth-child(odd)  .ic { background: #f0e2e1; }
.partner__card:nth-child(even) .ic { background: #e6ebdd; }
.partner__card .ic svg { width: 28px; height: 28px; stroke-width: .8; }
.partner__card .ic .dg-ico { width: 34px; height: 34px; object-fit: contain; display: block; }
.partner__card h3 { margin-bottom: .5rem; }
.partner__card p { font-size: var(--fs-base); margin-bottom: .7rem; }
.partner__card .tag { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--moss); }

/* ===========================================================
   Gutschein-CTA (Beere)
   =========================================================== */
.voucher { background: var(--berry); color: #fff; text-align: center; position: relative; overflow: hidden; isolation: isolate; }
.voucher__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.voucher__bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
/* Beere-Overlay – so gewählt, dass das Hintergrundbild klar sichtbar bleibt */
.voucher::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(147, 47, 103, .9);
}
.voucher h2, .voucher p, .voucher .eyebrow { text-shadow: 0 2px 18px rgba(35,10,24,.5); }
.voucher h2 { color: #fff; max-width: 20ch; margin: 0 auto 1rem; }
.voucher p { color: rgba(255,255,255,.85); max-width: 48ch; margin: 0 auto 2rem; }
.voucher .eyebrow { color: rgba(255,255,255,.85); justify-content: center; }
.voucher .eyebrow::before { background: rgba(255,255,255,.7); }

/* ===========================================================
   Region / Gastein
   =========================================================== */
.region__links { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.chip { display: inline-flex; align-items: center; gap: .5em; padding: .7em 1.3em; border: 1px solid var(--line); border-radius: 40px; font-size: var(--fs-sm); font-weight: 500; color: var(--ink); transition: all .2s; }
.chip:hover { border-color: var(--moss); color: var(--moss); background: var(--white); }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: #34352c; color: rgba(255,255,255,.72); padding-block: clamp(56px,7vw,88px) 0; font-size: .92rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand img { height: 46px; margin-bottom: 1.4rem; }
.footer__brand p { font-size: .92rem; max-width: 34ch; }
.site-footer h3 { color: #fff; font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.3rem; }
.footer__col a { display: inline-flex; align-items: center; gap: .5em; padding: .5em 0; min-height: 24px; transition: color .2s; }
.footer__legal a { display: inline-flex; align-items: center; min-height: 24px; padding: .3em 0; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; gap: .7em; padding: .38em 0; align-items: flex-start; }
.footer__contact li a { padding: 0; display: inline; align-items: initial; }
.footer__contact svg { width: 17px; height: 17px; flex: none; color: var(--taupe); margin-top: .28em; }
.nowrap { white-space: nowrap; }
.footer__social { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer__social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; transition: all .2s; }
.footer__social a:hover { background: var(--moss); border-color: var(--moss); color:#fff; }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.6rem; font-size: .82rem; color: rgba(255,255,255,.72); }
.footer__legal { display: flex; gap: 1.6rem; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer__legal li { list-style: none; margin: 0; }
.footer__legal li::marker { content: none; }
.footer__legal a:hover { color: #fff; }

/* --- Auszeichnungen / Bewertungs-Badges im Footer --- */
.footer__awards { display: flex; flex-wrap: wrap; gap: 1rem; padding-block: 2rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.award { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: .6rem; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13); border-radius: 14px; padding: 1rem 1.25rem; min-width: 175px; color: #fff; text-decoration: none; transition: background .2s, border-color .2s; }
a.award:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.28); }
.award__logo { height: 24px; width: auto; display: block; }
.award__rating { font-size: .84rem; color: rgba(255,255,255,.72); display: flex; align-items: baseline; gap: .4rem; }
.award__num { font-family: var(--serif); font-size: 1.3rem; line-height: 1; color: #fff; font-weight: 400; }
.award__stars { letter-spacing: .14em; color: var(--taupe); }
.ta-bubbles { display: inline-flex; gap: 3px; flex: none; }
.ta-bubbles svg { width: 16px; height: 16px; display: block; }

/* ===========================================================
   Gäste-Bewertungen (Tripadvisor)
   =========================================================== */
.reviews { background: var(--paper); }
.reviews__head { text-align: center; max-width: 58ch; margin: 0 auto 2.8rem; }
.reviews__score { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1rem; font-size: var(--fs-sm); color: var(--muted); }
.reviews__score b { font-family: var(--serif); font-size: 1.5rem; color: var(--moss); line-height: 1; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.7rem 1.6rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-sm); }
.review__text { font-family: var(--serif); font-size: 1.12rem; line-height: 1.55; color: var(--ink); font-style: italic; }
.review__text::before { content: "\201C"; }
.review__text::after { content: "\201D"; }
.review__meta { margin-top: auto; display: flex; align-items: center; gap: .8rem; }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--moss); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 1.1rem; flex: none; }
.review__who { display: flex; flex-direction: column; line-height: 1.3; }
.review__name { font-weight: 600; color: var(--ink); }
.review__date { font-size: var(--fs-sm); color: var(--muted); }
.reviews__cta { text-align: center; margin-top: 2.6rem; }
.reviews__source { display: block; margin-top: .9rem; font-size: var(--fs-sm); color: var(--muted); }

/* ===========================================================
   FAQ (klappt ohne JS via <details>/<summary>)
   =========================================================== */
.faq { background: var(--cream); }
.faq__head { text-align: center; max-width: 60ch; margin: 0 auto 2.6rem; }
.faq__list { max-width: 840px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.35rem 0; font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.32rem); line-height: 1.3; color: var(--ink); transition: color .2s; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { content: ""; }
.faq__item summary:hover { color: var(--moss); }
.faq__icon { flex: none; display: inline-flex; color: var(--moss); transition: transform .3s var(--ease); }
.faq__icon svg { width: 22px; height: 22px; display: block; }
.faq__item[open] .faq__icon { transform: rotate(180deg); }
.faq__answer { padding: 0 0 1.5rem; max-width: 68ch; }
.faq__answer p { color: var(--text); margin: 0; }
.faq__answer a { color: var(--moss); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ===========================================================
   CTA-Band mit Berg-Kante (grün)
   =========================================================== */
.cta-band { position: relative; background: var(--moss); color: #fff; text-align: center; padding-block: clamp(64px, 9vw, 120px); }
.cta-band__peak { position: absolute; left: 50%; bottom: 100%; transform: translate(-50%, 14%); line-height: 0; pointer-events: none; }
.cta-band__peak svg { display: block; height: clamp(74px, 9vw, 124px); width: auto; }
.cta-band__peak path { fill: var(--moss); }
.cta-band .eyebrow { color: var(--taupe); justify-content: center; }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: var(--taupe); opacity: 1; }
.cta-band h2 { color: #fff; max-width: 22ch; margin: .4rem auto 1rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 52ch; margin: 0 auto 1.8rem; }
.cta-band__btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.cta-band .btn--primary { background: #fff; color: var(--moss-deep); border-color: #fff; }
.cta-band .btn--primary:hover { background: var(--cream); color: var(--moss-deep); }
.cta-band .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.cta-band .btn--ghost:hover { background: #fff; color: var(--moss-deep); border-color: #fff; }
/* Luft über dem CTA, damit der Bergkamm nicht in den Inhalt darüber ragt */
section:has(+ .cta-band) { padding-bottom: clamp(170px, 20vw, 230px); }
@media (prefers-reduced-motion: no-preference) {
  .faq__item[open] .faq__answer { animation: fade-up .4s var(--ease) both; }
}

/* ===========================================================
   Kontakt: Formular + Info-Liste
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-list { list-style: none; display: grid; gap: 1.3rem; margin-top: 1.5rem; }
.info-list li { display: flex; gap: .95rem; align-items: flex-start; }
.info-list svg { width: 22px; height: 22px; flex: none; color: var(--moss); margin-top: 3px; }
.info-list b { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: .2rem; font-weight: 700; }
.info-list a { color: var(--ink); }
.info-list a:hover { color: var(--moss); }
.cform { display: grid; gap: 1.1rem; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.cform .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.cform label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.cform input, .cform textarea { width: 100%; padding: .78rem .9rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); font: inherit; font-size: var(--fs-base); color: var(--ink); transition: border-color .2s; }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--moss); }
.cform textarea { min-height: 140px; resize: vertical; }
.cform .check { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); font-weight: 400; letter-spacing: normal; text-transform: none; color: var(--text); margin-bottom: 0; }
.cform .check input { width: auto; margin-top: .25rem; flex: none; }
.cform .check a { color: var(--moss); text-decoration: underline; text-underline-offset: 2px; }

/* ---- Fluent Forms vollständig an das Theme-Design angleichen (überschreibt FF-Standard) ---- */
.cform--ff { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-sm); }
.cform--ff .fluentform, .cform--ff .frm-fluent-form { margin: 0 !important; }
.cform--ff .ff-el-group { margin-bottom: 1.05rem !important; }
.cform--ff .ff-el-input--label label, .cform--ff .ff-el-input--label { font-family: var(--sans) !important; font-size: .74rem !important; font-weight: 700 !important; letter-spacing: .08em !important; text-transform: uppercase !important; color: var(--muted) !important; margin-bottom: .4rem !important; line-height: 1.3 !important; }
.cform--ff .ff-el-input--label .ff-el-is-required, .cform--ff .text-danger, .cform--ff .error { color: #b3541e !important; }
.cform--ff input[type=text], .cform--ff input[type=email], .cform--ff input[type=tel], .cform--ff input[type=number], .cform--ff input[type=url], .cform--ff input[type=date], .cform--ff textarea, .cform--ff select, .cform--ff .ff-el-form-control {
  width: 100% !important; padding: .78rem .9rem !important; border: 1px solid var(--line) !important; border-radius: var(--radius) !important; background: var(--paper) !important; font-family: var(--sans) !important; font-size: var(--fs-base) !important; color: var(--ink) !important; box-shadow: none !important; height: auto !important; min-height: 0 !important; line-height: 1.5 !important; }
.cform--ff input:focus, .cform--ff textarea:focus, .cform--ff select:focus, .cform--ff .ff-el-form-control:focus { outline: none !important; border-color: var(--moss) !important; box-shadow: none !important; }
.cform--ff textarea { min-height: 140px !important; resize: vertical !important; }
.cform--ff .ff-el-form-check label, .cform--ff .ff_ck_wrapper label, .cform--ff .ff-el-form-check-label { font-size: var(--fs-sm) !important; font-weight: 400 !important; letter-spacing: normal !important; text-transform: none !important; color: var(--text) !important; }
.cform--ff input[type=checkbox], .cform--ff input[type=radio] { accent-color: var(--moss); width: auto !important; height: auto !important; }
.cform--ff .ff-btn, .cform--ff button.ff-btn-submit, .cform--ff .ff_submit_btn_wrapper button, .cform--ff button[type=submit] {
  display: inline-flex !important; align-items: center; justify-content: center; gap: .6em;
  background: var(--moss) !important; color: #fff !important; border: 1px solid transparent !important; border-radius: var(--radius) !important;
  font-family: var(--sans) !important; font-size: .82rem !important; font-weight: 600 !important; letter-spacing: .16em !important; text-transform: uppercase !important;
  padding: 1.05em 2.2em !important; line-height: 1 !important; box-shadow: none !important; width: auto !important; cursor: pointer !important; transition: background .25s, transform .25s; }
.cform--ff .ff-btn:hover, .cform--ff button.ff-btn-submit:hover, .cform--ff .ff_submit_btn_wrapper button:hover { background: var(--moss-deep) !important; transform: translateY(-2px); }
.cform--ff .ff-message-success, .cform--ff .ff_submit_success { background: var(--cream) !important; border: 1px solid var(--line-soft) !important; color: var(--ink) !important; border-radius: var(--radius) !important; padding: 1rem 1.2rem !important; }
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cform .row2 { grid-template-columns: 1fr; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .usp__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1rem; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 920px) {
  :root { --header-h: 72px; --hero-offset: 108px; }
  .burger { display: flex; }
  .header__actions .btn--buchen-desktop,
  .header__actions .btn--gutschein-desktop { display: none; }
  /* backdrop-filter macht Header zum Containing Block für position:fixed -> auf Mobile entfernen, damit das Panel am Viewport hängt */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--paper); }

  .mainnav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 380px);
    background: var(--paper); box-shadow: var(--shadow-md);
    transform: translateX(100%); transition: transform .35s var(--ease);
    padding: calc(var(--header-h) + 30px) 2rem 2rem; overflow-y: auto; z-index: 80;
  }
  .mainnav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .mainnav > ul > li { border-bottom: 1px solid var(--line-soft); }
  .mainnav a { padding: 1.05em 0; font-size: .95rem; width: 100%; }
  .mainnav a::after { display: none; }
  /* Untermenü-Verhalten (Akkordeon) siehe weiter unten – hier bewusst nichts. */
  .nav-toggle:checked ~ .mainnav { transform: translateX(0); }
  .nav-toggle:checked ~ .nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(28,30,22,.45); z-index: 75; }
  /* Burger -> X (burger liegt in .header__actions, daher via Geschwister-Kombinator dorthin) */
  .nav-toggle:checked ~ .header__actions .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .header__actions .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .header__actions .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .burger { position: relative; z-index: 85; }
  /* CTA im Mobile-Panel */
  .mainnav__cta { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); }
  .mainnav__cta .btn { width: 100%; }
  .mainnav__cta .btn--primary, .mainnav__cta .btn--primary:hover { color: var(--white); }
  .mainnav__cta a.phone { font-size: .95rem; font-weight: 600; letter-spacing: .04em; color: var(--moss); display: inline-flex; align-items: center; gap: .6em; justify-content: center; }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .rooms { grid-template-columns: 1fr 1fr; }
  .partner__cards { grid-template-columns: 1fr; }
  .inclusive__grid { grid-template-columns: 1fr; }
  /* Buchungsleiste ist hier zweireihig (höher) -> Hero stärker einziehen, damit die Leiste above the fold bleibt */
  .hero { min-height: max(460px, calc(100svh - var(--hero-offset) - 210px)); }
  .bookingbar__box { grid-template-columns: 1fr 1fr; }
  .bookingbar .btn { grid-column: 1 / -1; }
  .bfield { border-bottom: 1px solid var(--line-soft); }
  .bfield:nth-child(2n) { border-right: none; }
}
@media (max-width: 620px) {
  .topbar__group--left .hide-sm { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__group--left { display: none; }
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .rooms { grid-template-columns: 1fr; }
  .bookingbar__box { grid-template-columns: 1fr; }
  .bfield { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .stat-inline { gap: 1.6rem; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .bookingbar { margin-top: -40px; }
  .cinema { min-height: 60svh; }
  .marquee__track { gap: 1.6rem; padding: .9rem 0; }
}

/* ===========================================================
   MOTION & DESIGN-DETAILS  ·  komplett CSS-only (kein JS)
   Scroll-Reveals via animation-timeline: view().
   Ohne Browser-Support ist ALLES sofort sichtbar (kein
   versteckter Inhalt) – wichtig für Crawler/KI ohne JS.
   =========================================================== */

@keyframes fade-up   { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: none; } }
@keyframes img-zoom  { from { transform: scale(1.14); }                to { transform: scale(1); } }
@keyframes marquee   { to { transform: translateX(-50%); } }
@keyframes spin      { to { transform: rotate(360deg); } }
@keyframes floaty    { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes voucher-zoom { from { transform: scale(1.06); } to { transform: scale(1.16); } }
/* Parallax: Bild wandert langsamer als der Scroll (leicht überskaliert für lückenlose Deckung) */
@keyframes voucher-parallax { from { transform: translateY(-9%) scale(1.18); } to { transform: translateY(9%) scale(1.18); } }

/* --- Marquee-Band (bewegtes Erlebnis-Stichwort-Band) --- */
.marquee { background: var(--cream); border-block: 1px solid var(--line-soft); overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 2.6rem; width: max-content; padding: 1.15rem 0; }
.marquee__track span { font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.7rem); color: var(--moss); white-space: nowrap; letter-spacing: .015em; }
.marquee__track svg { width: 16px; height: 18px; color: var(--taupe); flex: none; }

/* --- Cinema: zweites Video als Vollbild-Statement --- */
.cinema { position: relative; min-height: clamp(440px, 72svh, 720px); display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; }
.cinema__media { position: absolute; inset: 0; z-index: -2; background: var(--moss-deep) center/cover; }
.cinema__media video, .cinema__media img { width: 100%; height: 100%; object-fit: cover; }
.cinema::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(28,30,22,.5), rgba(28,30,22,.42)); }
.cinema__inner { padding-block: clamp(64px, 10vh, 120px); }
.cinema .eyebrow { color: var(--taupe); justify-content: center; }
.cinema .eyebrow::before, .cinema .eyebrow::after { background: var(--taupe); opacity: 1; }
.cinema h2 { color: #fff; max-width: 20ch; margin: .5rem auto 1.1rem; font-size: clamp(2.1rem, 4.6vw, 3.7rem); text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.cinema p { color: rgba(255,255,255,.9); max-width: 48ch; margin: 0 auto; }
.cinema__hex { width: 60px; height: 60px; margin: 0 auto 1.5rem; display: block; }

/* --- dezente Bewegung (respektiert reduced-motion) --- */
@media (prefers-reduced-motion: no-preference) {
  .marquee__track { animation: marquee 38s linear infinite; }
  .voucher__bg img { animation: voucher-zoom 22s ease-in-out infinite alternate; }

  /* Hero-Inhalt beim Laden gestaffelt einblenden */
  .hero .eyebrow { animation: fade-up .8s .15s var(--ease) both; }
  .hero h1       { animation: fade-up .9s .30s var(--ease) both; }
  .hero__sub     { animation: fade-up .9s .45s var(--ease) both; }
  #buchen        { animation: fade-up .9s .62s var(--ease) both; }
}

/* --- Scroll-Reveals: nur bei Support, sonst sofort sichtbar --- */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section-head, .split__body, .usp__item, .room, .partner__card,
    .inclusive__grid li, .region__links, .voucher > .container, .cinema__inner {
      opacity: 0;
      animation: reveal-up .9s var(--ease) both;
      animation-timeline: view();
      animation-range: entry 6% entry 44%;
    }
    .split__media {
      opacity: 0;
      animation: reveal-up 1s var(--ease) both;
      animation-timeline: view();
      animation-range: entry 4% entry 46%;
    }
    .split__media img {
      animation: img-zoom 1.5s var(--ease) both;
      animation-timeline: view();
      animation-range: entry 2% cover 30%;
    }
    /* Gutschein-Bild: scroll-gesteuerter Parallax statt Endlos-Zoom */
    .voucher__bg img {
      animation: voucher-parallax linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
    /* Gestaffelter Reihen-Einlauf */
    .usp__item:nth-child(2){ animation-range: entry 9% entry 46%; }
    .usp__item:nth-child(3){ animation-range: entry 12% entry 49%; }
    .usp__item:nth-child(4){ animation-range: entry 15% entry 52%; }
    .usp__item:nth-child(5){ animation-range: entry 18% entry 55%; }
    .usp__item:nth-child(6){ animation-range: entry 21% entry 58%; }
    .rooms .room:nth-child(2){ animation-range: entry 13% entry 51%; }
    .rooms .room:nth-child(3){ animation-range: entry 20% entry 58%; }
    .partner__card:nth-child(2){ animation-range: entry 13% entry 51%; }
    .inclusive__grid li:nth-child(even){ animation-range: entry 10% entry 48%; }
  }
}

/* Bild-Zoom braucht einen sauberen Beschnitt */
.split__media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* ===========================================================
   ZIMMER-DETAILSEITE
   =========================================================== */
.breadcrumb { padding: 1.1rem 0; font-size: var(--fs-sm); color: var(--muted); }
.breadcrumb a:hover { color: var(--moss); }
.breadcrumb .sep { margin: 0 .55em; opacity: .5; }
.breadcrumb .current { color: var(--ink); }

.roomhero { position: relative; min-height: 58vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.roomhero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.roomhero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(28,30,22,.82) 0%, rgba(28,30,22,.52) 38%, rgba(28,30,22,.16) 68%, rgba(28,30,22,0) 100%); }
.roomhero__inner { padding-bottom: clamp(2rem, 4vw, 3.5rem); padding-top: 6rem; }
.roomhero .eyebrow { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.3); }
.roomhero .eyebrow::before { background: rgba(255,255,255,.85); opacity: 1; }
.roomhero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); text-shadow: 0 2px 26px rgba(0,0,0,.28); }

.roomfacts { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line-soft); }
.roomfacts .fact { display: inline-flex; align-items: center; gap: .5em; font-size: var(--fs-sm); font-weight: 500; color: var(--ink); }
.roomfacts .fact svg { width: 20px; height: 20px; color: var(--moss); }
.roomfacts .spacer { flex: 1; }
.roomfacts .price { font-family: var(--serif); font-size: 1.15rem; color: var(--moss); }
.roomfacts .price b { font-size: 1.7rem; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 1rem; }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-tall { grid-row: span 2; }

.amenities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 2.4rem; }
.amenities li { display: flex; align-items: flex-start; gap: .7rem; padding: .6rem 0; border-bottom: 1px solid var(--line-soft); font-size: var(--fs-base); }
.amenities li svg { flex: none; width: 20px; height: 20px; color: var(--moss); margin-top: 3px; }

/* ===========================================================
   GUTSCHEIN-MODAL (CSS-only via :target, ohne JS nutzbar)
   =========================================================== */
.modal { position: fixed; inset: 0; z-index: 300; display: none; }
.modal:target { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(28,30,22,.62); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.modal__box { position: relative; width: min(940px, 94vw); height: min(86vh, 820px); margin: 6vh auto 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.modal__head { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.3rem; border-bottom: 1px solid var(--line-soft); }
.modal__head span { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.modal__close { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; font-size: 1.5rem; line-height: 1; color: var(--ink); }
.modal__close:hover { background: var(--cream); color: var(--moss); }
.modal__box iframe { flex: 1; width: 100%; border: 0; }

@media (max-width: 920px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery .g-wide { grid-column: span 2; }
  .gallery .g-tall { grid-row: span 1; }
  .amenities { grid-template-columns: 1fr; }
  .roomfacts .price { width: 100%; margin-top: .4rem; }
}

/* ===========================================================
   ZIMMERPLAN + LIGHTBOX (CSS-only via :target)
   =========================================================== */
.gallery a { display: block; width: 100%; height: 100%; cursor: zoom-in; }

.zplan__box { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(1rem, 2.5vw, 2rem); box-shadow: var(--shadow-sm); }
.zplan__box a { display: block; cursor: zoom-in; }
.zplan__box img { width: 100%; height: auto; }
.zplan__hint { display: inline-flex; align-items: center; gap: .5em; font-size: var(--fs-sm); color: var(--muted); margin-top: 1rem; }
.zplan__hint svg { width: 18px; height: 18px; }

.lightbox { position: fixed; inset: 0; z-index: 320; display: none; }
.lightbox:target { display: flex; align-items: center; justify-content: center; padding: 5vh 4vw; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(20,22,16,.9); }
.lightbox figure { position: relative; margin: 0; z-index: 1; }
.lightbox figure img { max-width: min(1150px, 90vw); max-height: 84vh; width: auto; height: auto; border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.55); display: block; }
.lightbox__close { position: absolute; top: -14px; right: -14px; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: rgba(20,22,16,.85); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 1.5rem; line-height: 1; }
.lightbox__close:hover { background: var(--moss); }
.lightbox .prev, .lightbox .next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: rgba(0,0,0,.35); border-radius: 50%; font-size: 1.8rem; line-height: 1; }
.lightbox .prev { left: 2vw; } .lightbox .next { right: 2vw; }
.lightbox .prev:hover, .lightbox .next:hover { background: rgba(0,0,0,.6); }
@media (max-width: 620px) {
  .lightbox .prev { left: .5rem; } .lightbox .next { right: .5rem; }
  .lightbox__close { top: -50px; right: 0; }
}

/* Modal/Lightbox per JS-Klasse öffnen (kein Hash -> kein Scroll-Sprung beim Schließen) */
.modal.is-open { display: block; }
.lightbox.is-open { display: flex; align-items: center; justify-content: center; padding: 5vh 4vw; }
/* Gutschein-Button in der Fußzeile */
.footer__voucher { margin-top: 1.6rem; }

/* ===========================================================
   WordPress-Ergänzungen
   =========================================================== */
/* „Zum Inhalt springen"-Link: visuell verborgen, nur bei Tastatur-Fokus sichtbar */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute !important; word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto !important; clip-path: none; height: auto; width: auto;
  display: block; top: 8px; left: 8px; z-index: 100000;
  background: #fff; color: var(--moss); padding: 14px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); font-size: .95rem; text-decoration: none;
}
/* Auf Zimmer-Detailseiten sitzt die Buchungsleiste in einer eigenen Section –
   dort darf sie den darüberliegenden Inhalt NICHT überlappen. */
.single-zimmer .bookingbar { margin-top: 0; }
/* Zimmerplan als anklickbares Bild */
.plan-link { display: block; cursor: zoom-in; }

/* ===========================================================
   v1.1 — Mobile-Korrekturen
   =========================================================== */
/* Telefon-Icon im Mobile-Menü nicht riesig (dg_icon liefert kein width/height) */
.mainnav__cta .phone svg { width: 18px; height: 18px; flex: none; }

/* iOS-Datendetektoren (Adresse/Datum) nicht eigenwillig umstylen → keine gepunktete Linie / kein Versatz */
[x-apple-data-detectors] { color: inherit !important; text-decoration: none !important; -webkit-text-decoration: none !important; font: inherit !important; -webkit-text-size-adjust: none; }

/* Buchungsleiste auf Unterseiten (Bild-Hero) NICHT in die H1 ragen */
.roomhero + #buchen .bookingbar { margin-top: 1.75rem; }

/* Submenü-Toggle „Info" (Basis; Desktop unverändert per Hover) */
.dg-subtoggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.dg-subtoggle-lbl { display: inline-flex; align-items: center; }

@media (max-width: 920px) {
  /* „Info" wird zum aufklappbaren Toggle statt dauerhaft offen */
  .has-sub { display: flex; flex-wrap: wrap; align-items: center; position: relative; }
  .has-sub > a { flex: 1 1 auto; width: auto; }
  .dg-subtoggle-lbl { flex: none; align-self: stretch; width: 3.4em; justify-content: center; cursor: pointer; }
  .dg-subtoggle-lbl .caret { display: block; width: 16px; height: 16px; opacity: 1; color: var(--ink); transition: transform .3s var(--ease); }
  /* Untermenü im mobilen Panel: statisch, sichtbar, in den Fluss – NICHT die
     Desktop-Card (absolut/versteckt). Höhere Spezifität (.mainnav .submenu)
     erzwingt das Überschreiben unabhängig von der Quellreihenfolge. */
  .mainnav .submenu {
    flex-basis: 100%; display: none;
    position: static; inset: auto; left: auto; top: auto; right: auto; bottom: auto;
    transform: none; opacity: 1; visibility: visible; transition: none;
    min-width: 0; width: 100%; background: none; border: 0; box-shadow: none; padding: 0; margin: 0;
  }
  .mainnav .dg-subtoggle:checked ~ .submenu { display: block; }
  /* Desktop-Hover/Focus-Dropdown-Verhalten hier abschalten – sonst schiebt
     :focus-within (höhere Spezifität) das Untermenü beim Fokus nach links. */
  .mainnav .has-sub:hover .submenu,
  .mainnav .has-sub:focus-within .submenu { transform: none; opacity: 1; visibility: visible; }
  .dg-subtoggle:checked ~ .dg-subtoggle-lbl .caret { transform: rotate(180deg); }
  .mainnav .submenu li { border-top: 1px solid var(--line-soft); }
  .mainnav .submenu li a { padding: .95em 0 .95em 1.4rem; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; border-radius: 0; }
  .mainnav .submenu li a:hover { color: var(--moss); background: none; }
}

/* --- v1.2.0: Einbettung (iFrame, z. B. Eventkalender) ------------------- */
.embed__frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: var(--cream, #f5f3ec);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.embed__frame iframe {
  display: block;
  width: 100%;
  height: 900px;
  max-height: 82vh;
  border: 0;
}
.embed__fallback { margin-top: 1rem; text-align: center; }
.embed__fallback .textlink,
.embed__fallback a { display: inline-flex; align-items: center; gap: .4rem; }
.embed__fallback svg { width: 16px; height: 16px; flex: none; }

/* --- v1.2.0: WhatsApp-Button ------------------------------------------- */
.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.btn--wa:hover { background: #1da851; border-color: #1da851; color: #fff; }
.btn--wa svg { width: 18px; height: 18px; flex: none; fill: #fff; }
.footer__social a svg,
.footer__contact svg { flex: none; }

/* --- v1.3.0: Rechtsseiten (Impressum, Datenschutz) --------------------- */
.legal { padding-block: 0; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1.4rem; }
.legal h2 { margin-top: 2.2rem; margin-bottom: .6rem; font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
.legal h3 { margin-top: 1.4rem; margin-bottom: .3rem; font-size: 1.02rem; }
.legal p { margin-bottom: 1rem; line-height: 1.7; }
.legal a { color: var(--moss, #666c4a); text-decoration: underline; text-underline-offset: 2px; }

/* --- v2.0.0: WhatsApp-Button (fix unten rechts, ohne JavaScript) -------- */
.wa-float {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 90;
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff; border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform .2s var(--ease), background .2s;
}
.wa-float:hover { background: #1da851; transform: translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@media print { .wa-float { display: none; } }

/* Google-Logo im Footer (quadratisch, farbig) */
.award__logo--google { height: 26px; width: 26px; }

/* Header-Logo auf Mobil etwas kleiner halten */
@media (max-width: 920px) {
  .brand img { height: 50px; }
}

/* Zimmer-Übersichtskarten: Eckdaten als Icon-Liste untereinander (à la Motel One) */
.room__lead { font-size: .92rem; color: var(--muted); margin: .1rem 0 1rem; line-height: 1.5; min-height: 3em; min-height: 2lh; }
.room__facts { display: flex; flex-direction: column; gap: 0; margin: .2rem 0 1.2rem; list-style: none; }
.room__facts .rf { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--text); padding: .5rem 0; border-bottom: 1px solid var(--line-soft); }
.room__facts .rf:last-child { border-bottom: none; }
.room__facts .rf svg { width: 18px; height: 18px; flex: none; color: var(--moss, #666c4a); }
.amenities--wide { max-width: 900px; margin-inline: auto; }
.amenities .am-sub { color: var(--muted); }

/* Zimmer-Karten vollflächig klickbar (Stretched-Link) */
.room { position: relative; }
.room__link { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.room__foot a, .room .textlink { position: relative; z-index: 2; }
