/* =====================================================================
   Dominikushütte — Alpengasthaus, 1805 m
   Design im Stil von nivara (Gilda Display / MuseoModerno / Carattere),
   Farbidentität aus Logo + Hausfoto der Dominikushütte (Grün / Edelweiss).
   ===================================================================== */

@import url("fonts.css");

/* ---------------------------------------------------------------------
   1. Design-Tokens
   --------------------------------------------------------------------- */
:root {
  /* Grün — exakt aus dem Logo (Edelweiss-Schriftzug) ausgelesen */
  --gruen:       #6a9126;   /* lebhaftes Olivgrün der Logo-Schrift — Akzent/Buttons/Links */
  --gruen-d:     #4c641d;   /* dunkle Logo-Schattierung — Überschriften */
  --gruen-dark:  #2a380f;   /* sehr dunkles Oliv — Footer & dunkle Bänder */
  --hellgruen:   #cfe39a;   /* helle Logo-Tönung — zarte Flächen */

  /* Warmtöne — Holzbalken, wie nivaras Brauntöne */
  --braun:       #46372a;   /* Fließtext */
  --braun-leise: #6f6354;   /* gedämpfter Text */

  /* Akzent — Edelweiss-Blütenmitte */
  --gold:        #c39b3f;

  /* Neutrale */
  --cream:       #faf7ef;   /* warme Grundfläche (entspr. nivara off-white) */
  --cream-2:     #f2ecdd;   /* zarte Sektionsfläche */
  --weiss:       #ffffff;
  --linie:       #e4ddca;
  --linie-dark:  rgba(255,255,255,0.16);

  --serif:  "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:   "Mulish", system-ui, -apple-system, sans-serif;
  --script: "Carattere", "EB Garamond", cursive;

  --container: 1200px;
  --radius: 14px;
  --radius-s: 8px;
  --shadow:      0 30px 70px -34px rgba(40, 45, 25, 0.55);
  --shadow-soft: 0 16px 40px -24px rgba(40, 45, 25, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------------------------------------------------------------------
   2. Reset & Grundlagen
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--braun);
  background: var(--cream);
  line-height: 1.72;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.1rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--gruen-d);
  letter-spacing: 0;
}

::selection { background: var(--gruen); color: #fff; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------------------------------------------------------------------
   3. Layout-Hilfen
   --------------------------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container--narrow { --container: 900px; }
.container--wide { --container: 1340px; }

.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section--tint { background: var(--cream-2); }
.section--dark { background: var(--gruen-dark); color: var(--hellgruen); }
.section--dark h2, .section--dark h3 { color: var(--cream); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gruen);
}
.section--dark .eyebrow { color: var(--gold); }

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--gruen);
  line-height: 1;
  font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem);
}
.section--dark .script { color: var(--gold); }

.section-head { max-width: 52rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2.3rem, 1.5rem + 3.4vw, 4.3rem);
  margin-top: 0.8rem;
}
.section-head p { margin-top: 1.3rem; font-size: 1.18rem; color: var(--braun-leise); max-width: 46rem; }
.section-head.center p { margin-inline: auto; }
.section--dark .section-head p { color: var(--hellgruen); opacity: 0.85; }

.lead { font-size: clamp(1.15rem, 1rem + 0.6vw, 1.45rem); color: var(--braun); line-height: 1.65; }

/* ---------------------------------------------------------------------
   4. Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 7px;
  border: 1.5px solid transparent;
  transition: transform 0.4s var(--ease), background 0.35s var(--ease),
              color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn svg { transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--gruen); color: #fff; box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: var(--gruen-d); transform: translateY(-2px); }

.btn--outline { border-color: currentColor; color: var(--gruen-d); }
.btn--outline:hover { background: var(--gruen-d); color: #fff; border-color: var(--gruen-d); }

.btn--on-dark { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--on-dark:hover { background: #fff; color: var(--gruen-d); border-color: #fff; }

.textlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 500; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gruen-d); border-bottom: 1.5px solid var(--gruen); padding-bottom: 3px;
  transition: gap 0.35s var(--ease), color 0.3s var(--ease);
}
.textlink:hover { gap: 0.85rem; color: var(--gruen); }

/* ---------------------------------------------------------------------
   5. Navigation — schwebende „Pille" (immer hell, wie nivara)
   --------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 1.1rem clamp(0.5rem, 2vw, 1.5rem);
}

.nav {
  width: min(100% - 1.5rem, 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: rgba(250, 247, 239, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--linie);
  border-radius: 12px;
  padding: 0.55rem 0.7rem 0.55rem 1.4rem;
  box-shadow: 0 14px 36px -26px rgba(40,45,25,0.6);
  transition: box-shadow 0.4s var(--ease);
}

.brand { display: inline-flex; align-items: center; gap: 0.6rem; white-space: nowrap; }
.brand__logo { height: 40px; width: auto; display: block; }
@media (max-width: 480px) { .brand__logo { height: 38px; } }
.nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; justify-content: center; align-items: center;
  gap: clamp(0.6rem, 1.2vw, 1.5rem);
}
.nav-links a {
  font-family: var(--sans); font-weight: 400;
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap;
  color: var(--braun); position: relative; padding-block: 0.4rem;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--gruen); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gruen-d); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* Untermenü (Touren ▾) */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a::after { display: none; }
.subnav { list-style: none; margin: 0; padding: 0; }
@media (min-width: 941px) {
  /* Hover-Brücke: Punkt nach unten verlängern, damit der Weg zum Dropdown
     nicht über eine tote Lücke führt (sonst schließt das Menü). */
  .nav-links .has-sub { padding-bottom: 14px; margin-bottom: -14px; }
  .subnav {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--cream); border: 1px solid var(--linie); border-radius: 12px;
    box-shadow: var(--shadow-soft); padding: 0.5rem; min-width: 190px;
    display: flex; flex-direction: column; gap: 0.15rem;
    opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease); z-index: 130;
  }
  .nav-links .has-sub:hover .subnav, .nav-links .has-sub:focus-within .subnav {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  }
  /* unsichtbare Brücke über die Lücke: hält :hover beim Weg zum Dropdown */
  .subnav::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
  .subnav a { display: block; padding: 0.55rem 0.85rem; border-radius: 7px; color: var(--braun); }
  .subnav a::after { display: none; }
  .subnav a:hover, .subnav a[aria-current="page"] { background: var(--hellgruen); color: var(--gruen-d); }
}

.nav-end { display: inline-flex; align-items: center; gap: 1rem; }
.lang { display: inline-flex; gap: 0.4rem; align-items: center; font-size: 0.72rem; }
.lang a { font-weight: 500; letter-spacing: 0.08em; color: var(--braun-leise); opacity: 0.6; transition: opacity 0.25s, color 0.25s; }
.lang a[aria-current="true"], .lang a:hover { opacity: 1; color: var(--gruen-d); }
.lang .sep { opacity: 0.3; }
.nav-end .btn { padding: 0.7rem 1.2rem; }

.nav-toggle { display: none; background: none; border: 0; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gruen-d); margin: 5px 0; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }

@media (max-width: 940px) {
  /* backdrop-filter würde einen Containing-Block bilden → das feste Panel
     würde sich an der Nav statt am Viewport ausrichten. Daher mobil aus. */
  .nav { grid-template-columns: auto auto; backdrop-filter: none; }
  .nav-toggle { display: block; justify-self: end; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 380px);
    background: var(--braun); display: flex; flex-direction: column; align-items: flex-start;
    gap: 1.6rem; padding: 6rem 2rem 2rem;
    transform: translateX(100%); transition: transform 0.45s var(--ease);
    box-shadow: -24px 0 60px -34px rgba(0,0,0,0.6); z-index: 105;
  }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1.3rem; }
  .nav-links a { font-size: 1.1rem; font-weight: 500; color: #fff; }
  .nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
  .nav-links a::after { background: var(--gold); }
  .nav-links .has-sub { width: 100%; }
  .subnav { display: flex; flex-direction: column; gap: 0.9rem; padding: 0.9rem 0 0.2rem 1.1rem; }
  .subnav a { font-size: 0.95rem; font-weight: 400; color: #fff; opacity: 0.8; }
  .subnav a[aria-current="page"] { color: var(--gold); opacity: 1; }
  .nav-end { flex-direction: column; align-items: flex-start; gap: 1.3rem; width: 100%; }
  .nav-menu .lang a { color: #fff; opacity: 0.85; }
  .nav-menu .lang a[aria-current="true"] { color: var(--gold); opacity: 1; }
  .nav-menu .lang .sep { color: rgba(255,255,255,0.4); }
  body.nav-open { overflow: hidden; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
/* Desktop: nav-menu löst sich auf, Kinder sitzen direkt im Nav-Grid.
   Mobile (<=940px): nav-menu ist das feste Panel (display:flex, siehe oben). */
@media (min-width: 941px) { .nav-menu { display: contents; } }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(20,25,12,0.45); z-index: 99;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------------------------------------------------------------------
   6. Hero
   --------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh;
  display: grid; align-items: end;
  color: #fff; isolation: isolate; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  transform: scale(1.06); animation: heroZoom 2.4s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20,26,12,0.85) 2%, rgba(20,26,12,0.15) 48%, rgba(20,26,12,0.4) 100%);
}
.hero__inner { padding-bottom: clamp(4rem, 11vh, 9rem); padding-top: 9rem; max-width: 60rem; }
.hero__label { color: rgba(255,255,255,0.92); }
.hero .script { color: var(--hellgruen); display: block; margin-bottom: 0.4rem; }
.hero h1 {
  color: #fff; font-weight: 600;
  font-size: clamp(3.1rem, 1.2rem + 7.6vw, 7.4rem);
  line-height: 1.0; margin-top: 0.4rem; text-shadow: 0 4px 40px rgba(0,0,0,0.35);
}
.hero__sub { margin-top: 1.6rem; max-width: 44ch; font-size: 1.2rem; color: rgba(255,255,255,0.92); font-weight: 300; }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__badge {
  position: absolute; top: clamp(7rem, 17vh, 12rem); right: clamp(1.25rem, 5vw, 4.5rem); z-index: 1;
  width: clamp(98px, 13vw, 138px); aspect-ratio: 1; display: grid; place-content: center; text-align: center;
  border: 1px solid rgba(255,255,255,0.45); border-radius: 50%; backdrop-filter: blur(3px);
  background: rgba(63,85,35,0.22);
}
.hero__badge strong { font-family: var(--serif); font-size: 1.85rem; color: #fff; line-height: 1; }
.hero__badge span { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hellgruen); margin-top: 0.3rem; }
@media (max-width: 600px) { .hero__badge { display: none; } }

/* schmale Saison-Zeile unter der Hero */
.season {
  background: var(--gruen-dark); color: var(--hellgruen);
  text-align: center; font-size: 0.82rem; letter-spacing: 0.1em;
  padding: 0.75rem 1rem; font-weight: 300;
}
.season strong { color: #fff; font-weight: 500; }

/* ---------------------------------------------------------------------
   7. Intro / Split (Bild + Text, editorial)
   --------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; gap: 2.5rem; } .split--reverse .split__media { order: 0; } }

.split__media { position: relative; }
.split__media { border-radius: var(--radius); overflow: hidden; }
/* Stempel-Variante darf nicht klippen, sonst wird das Edelweiss-Badge abgeschnitten */
.split__media--tall { overflow: visible; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3.2; object-fit: cover; transition: transform 0.7s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__body a[data-lightbox] { display: block; overflow: hidden; }
.split__body a[data-lightbox] img { transition: transform 0.7s var(--ease); }
.split__body a[data-lightbox]:hover img { transform: scale(1.05); }
.split__media--tall img { aspect-ratio: 3/3.4; }
.split__media .badge-img {
  position: absolute; bottom: -1.6rem; left: -1.6rem; background: var(--cream);
  padding: 1rem 1.3rem; border-radius: var(--radius-s); box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 0.85rem; max-width: 80%;
}
.split__media .badge-img img { width: auto; height: 52px; box-shadow: none; border-radius: 0; aspect-ratio: auto; object-fit: contain; }
.split__media .badge-img span { font-family: var(--serif); font-size: 1.05rem; color: var(--gruen-d); line-height: 1.2; }
@media (max-width: 840px) { .split__media .badge-img { left: 1rem; bottom: 1rem; } }

.prose p + p { margin-top: 1.2rem; }
.signature { font-family: var(--script); font-size: 2.4rem; color: var(--gruen); margin-top: 1rem; line-height: 1; }

/* ---------------------------------------------------------------------
   8. Übernachten — große Bildkarten mit Overlay-Titel
   --------------------------------------------------------------------- */
.feature-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 760px) { .feature-cards { grid-template-columns: 1fr; } }

.feature {
  position: relative; border-radius: var(--radius); overflow: hidden; isolation: isolate;
  min-height: clamp(300px, 42vw, 460px); display: grid; place-items: center; text-align: center;
  color: #fff; box-shadow: var(--shadow-soft);
}
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.9s var(--ease); }
.feature::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(20,26,12,0.7), rgba(20,26,12,0.15)); transition: background 0.5s; }
.feature:hover img { transform: scale(1.05); }
.feature__body { padding: 2rem; display: grid; gap: 1.2rem; justify-items: center; }
.feature__body h3 { color: #fff; font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.6rem); }
.feature__body p { color: rgba(255,255,255,0.9); max-width: 32ch; font-size: 0.98rem; }

/* kleinere Info-Kacheln */
.grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .grid { grid-template-columns: 1fr; } }

.tile { position: relative; border-radius: var(--radius); overflow: hidden; isolation: isolate; min-height: 340px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-soft); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.9s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(20,26,12,0.88), rgba(20,26,12,0.05) 72%); }
.tile:hover img { transform: scale(1.06); }
.tile__body { padding: 1.6rem; }
.tile__body h3 { color: #fff; font-size: 1.7rem; }
.tile__body p { color: rgba(255,255,255,0.86); font-size: 0.9rem; margin-top: 0.3rem; }
.tile__tag { display: inline-block; font-family: var(--sans); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }

/* ---------------------------------------------------------------------
   9. Editorial-Collage (Statement + überlappende Bilder)
   --------------------------------------------------------------------- */
.collage { position: relative; margin-top: clamp(2.5rem, 6vw, 5rem); min-height: 480px; }
.collage__a, .collage__b { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.collage__a img, .collage__b img { width: 100%; height: 100%; object-fit: cover; }
.collage { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(1rem,4vw,3rem); align-items: center; }
.collage__a { aspect-ratio: 3/4; max-width: 78%; justify-self: end; z-index: 2; }
.collage__b { aspect-ratio: 4/3; }
@media (max-width: 720px){ .collage { grid-template-columns: 1fr; } .collage__a { max-width: 70%; margin-bottom: -3rem; } }

/* ---------------------------------------------------------------------
   10. Preise
   --------------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (max-width: 640px){ .price-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card h3 { font-size: 1.9rem; }
.price-card .rows { margin-top: 1.4rem; display: grid; gap: 1rem; }
.price-card .row { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--linie); }
.price-card .row:last-child { border-bottom: 0; padding-bottom: 0; }
.price-card .row .label { color: var(--braun-leise); font-size: 0.95rem; }
.price-card .row .amount { font-family: var(--serif); font-size: 2rem; color: var(--gruen-d); }
.price-card .row .amount sup { font-size: 0.95rem; vertical-align: super; margin-right: 2px; }
.price-note { margin-top: 1.6rem; color: var(--braun-leise); font-size: 0.95rem; }
.price-note strong { color: var(--braun); }

/* ---------------------------------------------------------------------
   11. Akkordeon (Info / Touren-Details, nivara „Experiences")
   --------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--linie); }
.section--dark .accordion { border-color: var(--linie-dark); }
.acc { border-bottom: 1px solid var(--linie); }
.section--dark .acc { border-color: var(--linie-dark); }
.acc__head {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0.2rem; font-family: var(--serif); font-weight: 600; color: var(--gruen-d);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.2rem);
}
.section--dark .acc__head { color: var(--cream); }
.acc__icon { flex: none; width: 26px; height: 26px; position: relative; }
.acc__icon::before, .acc__icon::after { content: ""; position: absolute; background: var(--gruen); border-radius: 2px; transition: transform 0.4s var(--ease); }
.section--dark .acc__icon::before, .section--dark .acc__icon::after { background: var(--gold); }
.acc__icon::before { top: 12px; left: 0; width: 26px; height: 2px; }
.acc__icon::after { left: 12px; top: 0; width: 2px; height: 26px; }
.acc.is-open .acc__icon::after { transform: scaleY(0); }
.acc__panel { overflow: hidden; max-height: 0; transition: max-height 0.5s var(--ease); }
.acc__panel-inner { padding: 0 0.2rem 1.8rem; color: var(--braun-leise); max-width: 60ch; }
.section--dark .acc__panel-inner { color: var(--hellgruen); opacity: 0.85; }

/* ---------------------------------------------------------------------
   12. Bild-Band (Feiern, nivara „Personal Playground")
   --------------------------------------------------------------------- */
.band { position: relative; min-height: clamp(420px, 60vh, 620px); display: grid; place-items: center; text-align: center; color: #fff; overflow: hidden; isolation: isolate; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(20,26,12,0.45); }
.band__inner { padding: 2rem; max-width: 50rem; }
.band__inner .script { color: var(--hellgruen); display: block; }
.band__inner h2 { color: #fff; font-size: clamp(2.2rem, 1.4rem + 3.2vw, 4rem); margin: 0.4rem 0 1.4rem; }
.band__inner p { color: rgba(255,255,255,0.9); max-width: 40ch; margin: 0 auto 1.8rem; }

/* ---------------------------------------------------------------------
   13. Galerie
   --------------------------------------------------------------------- */
.masonry { columns: 3 260px; column-gap: 1.1rem; }
.masonry a { display: block; margin-bottom: 1.1rem; border-radius: var(--radius-s); overflow: hidden; break-inside: avoid; box-shadow: var(--shadow-soft); }
.masonry img { width: 100%; transition: transform 0.8s var(--ease), filter 0.5s var(--ease); }
.masonry a:hover img { transform: scale(1.05); filter: brightness(1.05); }

/* ---------------------------------------------------------------------
   13b. Sub-Hero (Seitenkopf für Unterseiten)
   --------------------------------------------------------------------- */
.page-hero {
  position: relative; min-height: clamp(360px, 56vh, 560px);
  display: grid; align-items: end; color: #fff; isolation: isolate; overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: -2; transform: scale(1.05); animation: heroZoom 2.4s var(--ease) forwards; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(20,26,12,0.82), rgba(20,26,12,0.15) 60%, rgba(20,26,12,0.45)); }
.page-hero__inner { padding-bottom: clamp(2.5rem, 6vh, 5rem); padding-top: 8rem; }
.page-hero h1 { color: #fff; font-weight: 600; font-size: clamp(2.6rem, 1.6rem + 4vw, 5rem); line-height: 1.0; margin-top: 0.5rem; text-shadow: 0 4px 40px rgba(0,0,0,0.35); }
.page-hero .crumb { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.page-hero .crumb a { color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.4); }
.page-hero .crumb a:hover { color: #fff; }

/* Foto-Raster (gleichmäßige, abgerundete Bilder) */
.photo-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(2, 1fr); }
.photo-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) { .photo-grid, .photo-grid.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .photo-grid, .photo-grid.cols-3 { grid-template-columns: 1fr; } }
.photo-grid a, .photo-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.photo-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.8s var(--ease); }
.photo-grid a:hover img { transform: scale(1.05); }

/* Kapitel-Trenner (z. B. Touren: Mountainbike / Wandern) */
.chapter { background: var(--cream-2); text-align: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); border-top: 1px solid var(--linie); }
.chapter .eyebrow { justify-content: center; display: flex; align-items: center; gap: 0.6rem; }
.chapter h2 { font-size: clamp(2.4rem, 1.6rem + 3vw, 4.2rem); margin-top: 0.6rem; }
.chapter .num { font-family: var(--serif); color: var(--gold); font-size: 1.1rem; display: block; margin-bottom: 0.4rem; }

/* Info-Liste mit Häkchen */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.7rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; }
.checklist svg { flex: none; margin-top: 0.35rem; color: var(--gruen); }

/* Prosa-Block (Lauftext-Seiten wie Geschichte/Impressum) */
.prose-block { max-width: 62ch; }
.prose-block h3 { margin: 2rem 0 0.6rem; font-size: clamp(1.5rem,1.1rem+1.4vw,2rem); }
.prose-block p { margin-bottom: 1.1rem; }
.prose-block a { color: var(--gruen-d); border-bottom: 1px solid var(--gruen); }

/* Touren-/Info-Karten (Text) */
.info-cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .info-cards { grid-template-columns: 1fr; } }
.info-card { background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius); padding: clamp(1.5rem,3vw,2.2rem); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info-card h3 { font-size: 1.6rem; }
.info-card .stat { display: inline-flex; gap: 1.2rem; margin: 0.8rem 0 0.4rem; font-family: var(--sans); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--gruen); text-transform: uppercase; }
.info-card p { margin-top: 0.6rem; color: var(--braun-leise); }

/* Timeline (Geschichte) */
.timeline { position: relative; max-width: 760px; margin-inline: auto; }
.timeline::before { content: ""; position: absolute; left: 14px; top: 6px; bottom: 6px; width: 2px; background: var(--linie); }
.tl { position: relative; padding: 0 0 2.2rem 3rem; }
.tl::before { content: ""; position: absolute; left: 7px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--gruen); border: 3px solid var(--cream); }
.tl .year { font-family: var(--serif); font-weight: 600; color: var(--gruen-d); font-size: 1.5rem; line-height: 1; }
.tl p { margin-top: 0.5rem; color: var(--braun-leise); }

/* Formular */
.form { display: grid; gap: 1.3rem; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 560px) { .form .row2 { grid-template-columns: 1fr; } }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--sans); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--braun); }
.field label .req { color: var(--gruen); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--braun); background: var(--weiss);
  border: 1px solid var(--linie); border-radius: var(--radius-s); padding: 0.8rem 0.95rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gruen); box-shadow: 0 0 0 3px rgba(94,122,51,0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--braun-leise); }

/* Karten-Einbettung */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--linie); }
.map-embed iframe { display: block; width: 100%; height: clamp(300px, 50vh, 460px); border: 0; }
/* eigener Stacking-Context: Leaflets interne z-index (bis 700) bleiben im #map
   gekapselt und heben sich nicht über die fixe Nav (z-index 100). */
#map { width: 100%; height: clamp(360px, 55vh, 520px); background: var(--cream-2); position: relative; z-index: 0; isolation: isolate; }
#map .leaflet-popup-content { font-family: var(--sans); }
#map .leaflet-popup-content strong { font-family: var(--serif); font-weight: 600; color: var(--gruen-d); font-size: 1.1rem; }

/* Partner-Hütten */
.hut-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .hut-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .hut-grid { grid-template-columns: 1fr; } }
.hut { border-radius: var(--radius); overflow: hidden; background: var(--weiss); border: 1px solid var(--linie); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.hut:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.hut .pic { aspect-ratio: 4/3; overflow: hidden; }
.hut .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.hut:hover .pic img { transform: scale(1.05); }
.hut .cap { padding: 1rem 1.2rem 1.3rem; }
.hut .cap h3 { font-size: 1.35rem; }
.hut .cap p { font-size: 0.9rem; color: var(--braun-leise); margin-top: 0.3rem; }

/* Partner-/Marken-Logos */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); }
.logo-strip a, .logo-strip span { display: block; }
.logo-strip img { height: 44px; width: auto; object-fit: contain; opacity: 0.85; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.logo-strip a:hover img { opacity: 1; transform: translateY(-2px); }

/* ---------------------------------------------------------------------
   14. Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--gruen-dark); color: rgba(255,255,255,0.72); position: relative; overflow: hidden; }
.footer-top { padding-block: clamp(3.5rem, 7vw, 6rem); display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 760px){ .footer-top { grid-template-columns: 1fr; gap: 2.5rem; } }
.footer-cta .script { color: var(--gold); display: block; }
.footer-cta h2 { color: #fff; font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); margin: 0.3rem 0 1.6rem; }
.footer-nav { list-style: none; padding: 0; margin: 0; text-align: right; display: grid; gap: 0.5rem; }
@media (max-width: 760px){ .footer-nav { text-align: left; } }
.footer-nav a { font-family: var(--serif); font-weight: 600; font-size: clamp(1.5rem, 1rem + 1.5vw, 2.1rem); color: rgba(255,255,255,0.82); transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }

.footer-info { padding-block: 2rem; border-top: 1px solid var(--linie-dark); display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; font-size: 0.92rem; }
@media (max-width: 760px){ .footer-info { grid-template-columns: 1fr; gap: 1.5rem; } }
.footer-info h4 { color: var(--gold); font-family: var(--sans); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-info a:hover { color: #fff; }
.footer-info strong { color: #fff; font-weight: 500; }
.footer-info p { margin-bottom: 0.4rem; }

.footer-bottom { padding-block: 1.4rem 0.5rem; border-top: 1px solid var(--linie-dark); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; font-size: 0.78rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.footer-bottom a { color: rgba(255,255,255,0.66); }
.footer-bottom a:hover { color: #fff; }

.footer-wordmark { font-family: var(--serif); text-align: center; color: rgba(255,255,255,0.07); font-size: clamp(3rem, 16vw, 14rem); line-height: 0.8; letter-spacing: 0.02em; padding-bottom: 0.1em; user-select: none; }

/* ---------------------------------------------------------------------
   15. Scroll-Reveals (sanft, gestaffelt — keine Endlos-Animation)
   --------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

body { animation: pageIn 0.7s var(--ease); }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .hero__media img { animation: none; transform: none; }
}

/* Skip-Link */
.skip { position: absolute; left: 1rem; top: -3rem; z-index: 200; background: var(--gruen-d); color: #fff; padding: 0.6rem 1rem; border-radius: var(--radius-s); transition: top 0.3s var(--ease); }
.skip:focus { top: 1rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(15,20,8,0.95); display: grid; place-items: center; padding: 2rem; opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: var(--radius-s); box-shadow: 0 30px 80px -20px #000; }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; }
