/* ==========================================================================
   Haus Wiesengrund – Schramberg-Sulgen
   Modernes, responsives Stylesheet (ohne externe Abhängigkeiten)
   ========================================================================== */

:root {
  --forest-950: #0f1f15;
  --forest-900: #15281c;
  --forest-800: #1c3526;
  --forest-700: #28462f;
  --moss: #6f8f3a;
  --meadow: #a9bd72;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --sand: #efe7d6;
  --line: #e2d9c6;
  --ink: #1d2a22;
  --muted: #5b685f;
  --accent: #c0392b;       /* Bollenhut-Rot */
  --accent-dark: #9f2d21;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(21, 40, 28, .06), 0 8px 24px rgba(21, 40, 28, .08);
  --shadow-lg: 0 2px 4px rgba(21, 40, 28, .06), 0 24px 48px rgba(21, 40, 28, .16);
  --container: 1180px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest-700); text-underline-offset: .2em; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--forest-900);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--accent); color: #fff; padding: .6rem 1rem; border-radius: 8px;
}
.skip-link:focus { top: 1rem; color: #fff; }

:focus-visible { outline: 3px solid var(--meadow); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.container-narrow { width: min(820px, 100% - 2.5rem); margin-inline: auto; }

.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .85em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  font: 600 1rem/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(192, 57, 43, .3); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-light { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .5); backdrop-filter: blur(4px); }
.btn-light:hover { background: #fff; color: var(--forest-900); }
.btn-outline { border-color: var(--forest-700); color: var(--forest-800); background: transparent; }
.btn-outline:hover { background: var(--forest-800); color: #fff; }
.btn-group { display: flex; flex-wrap: wrap; gap: .8rem; }

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  color: #fff;
  transition: background-color .3s ease, box-shadow .3s ease, color .3s ease, height .3s ease;
}
.site-header.scrolled {
  background: rgba(247, 243, 234, .92);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 6px 20px rgba(21, 40, 28, .06);
  color: var(--forest-900);
  --header-h: 66px;
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: .7rem; color: inherit; text-decoration: none; }
.brand:hover { color: inherit; }
.nav-open .site-header .brand { position: relative; z-index: 120; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; letter-spacing: .01em; }
.brand-text small { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; opacity: .8; }

.main-nav { display: flex; align-items: center; gap: 1.2rem; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .15rem; }
.main-nav a:not(.btn) {
  display: block; padding: .5rem .7rem; border-radius: 999px;
  color: inherit; text-decoration: none; font-weight: 500; font-size: .96rem;
  position: relative; transition: background-color .2s ease;
}
.main-nav a:not(.btn):hover { background: rgba(255, 255, 255, .14); }
.site-header.scrolled .main-nav a:not(.btn):hover { background: var(--sand); }
.main-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: .15rem; width: 18px; height: 2px;
  background: var(--accent); transform: translateX(-50%); border-radius: 2px;
}
.nav-cta { padding: .7em 1.2em; font-size: .92rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; border-radius: 50%;
  border: 0; background: rgba(255, 255, 255, .14); color: inherit; cursor: pointer;
  align-items: center; justify-content: center; position: relative; z-index: 120;
}
.site-header.scrolled .nav-toggle { background: var(--sand); }
.nav-toggle span:not(.sr-only) {
  position: absolute; left: 13px; right: 13px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 0; z-index: 110;
    flex-direction: column; justify-content: center; gap: 2rem;
    background: var(--forest-900) url("../img/huegel-dunkel.svg") bottom center / 100% 140px no-repeat;
    color: #fff;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .main-nav ul { flex-direction: column; align-items: center; gap: .3rem; }
  .main-nav a:not(.btn) { font-family: var(--serif); font-size: 1.7rem; padding: .35rem 1.2rem; }
  .main-nav a:not(.btn):hover, .site-header.scrolled .main-nav a:not(.btn):hover { background: rgba(255, 255, 255, .08); }
  .main-nav a[aria-current="page"] { color: var(--meadow); }
  .main-nav a[aria-current="page"]::after { display: none; }
  .nav-open .site-header { color: #fff; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-open .site-header .nav-toggle { background: rgba(255, 255, 255, .14); }
  .nav-open { overflow: hidden; }
}

/* --------------------------------------------------------------------------
   Hero (Startseite)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 11rem;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(169, 189, 114, .25), transparent 60%),
    radial-gradient(800px 500px at 10% 90%, rgba(111, 143, 58, .25), transparent 60%),
    linear-gradient(160deg, var(--forest-700) 0%, var(--forest-900) 55%, var(--forest-950) 100%);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 170px;
  background: url("../img/huegel.svg") bottom center / cover no-repeat;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.hero .eyebrow { color: var(--meadow); }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: italic; color: var(--meadow); font-weight: 500; }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 34em; color: rgba(255, 255, 255, .85); margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.2rem; }
.hero-badges span {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .45rem .9rem; border-radius: 999px;
  background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .16);
  font-size: .88rem; color: rgba(255, 255, 255, .92);
}
.hero-badges .icon { color: var(--meadow); }

.hero-collage { position: relative; aspect-ratio: 1 / .92; }
.hero-collage figure { position: absolute; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px rgba(0, 0, 0, .35); border: 5px solid rgba(255, 255, 255, .95); }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; }
.hero-collage .c1 { inset: 0 18% 26% 0; transform: rotate(-2deg); }
.hero-collage .c2 { width: 50%; aspect-ratio: 4 / 3; right: 0; top: 32%; transform: rotate(3deg); }
.hero-collage .c3 { width: 42%; aspect-ratio: 4 / 3; left: 12%; bottom: 0; transform: rotate(1.5deg); }
.hero-collage figcaption {
  position: absolute; left: .7rem; bottom: .7rem;
  background: rgba(15, 31, 21, .72); color: #fff; font-size: .78rem; padding: .25rem .65rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-stamp {
  position: absolute; right: 2%; top: -2%; z-index: 2;
  width: 118px; height: 118px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-content: center; text-align: center;
  font-family: var(--serif); line-height: 1.05; font-size: .95rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .3);
  transform: rotate(8deg);
}
.hero-stamp strong { display: block; font-size: 1.9rem; }

/* --------------------------------------------------------------------------
   Seitenkopf (Unterseiten)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 4.5rem) 0 9rem;
  color: #fff;
  background: var(--forest-900);
  overflow: hidden;
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15, 31, 21, .72) 0%, rgba(21, 40, 28, .55) 50%, rgba(21, 40, 28, .8) 100%);
}
.page-hero::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 130px; z-index: 1;
  background: url("../img/huegel.svg") bottom center / cover no-repeat;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: .3em; }
.page-hero p { max-width: 40em; font-size: 1.15rem; color: rgba(255, 255, 255, .88); margin: 0; }
.page-hero .eyebrow { color: var(--meadow); }

/* --------------------------------------------------------------------------
   Sektionen & Layout-Helfer
   -------------------------------------------------------------------------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-paper { background: var(--paper); }
.section-sand { background: var(--sand); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.lead { font-size: 1.2rem; color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split.reverse > :first-child { order: 2; }

.signature { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--forest-700); margin-top: 1.5rem; }

/* Foto mit Rahmen */
.photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--sand); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-stack { position: relative; padding: 0 0 12% 12%; }
.photo-stack .photo:first-child { aspect-ratio: 4 / 3; }
.photo-stack .photo:last-child {
  position: absolute; left: 0; bottom: 0; width: 46%; aspect-ratio: 1;
  border: 6px solid var(--cream);
}
.section-paper .photo-stack .photo:last-child { border-color: var(--paper); }

/* News-Hinweis */
.notice {
  display: flex; align-items: center; gap: 1rem;
  background: var(--forest-800); color: #fff;
  padding: 1rem 1.3rem; border-radius: var(--radius-sm); margin-top: 1.8rem;
}
.notice .icon { width: 2rem; height: 2rem; color: var(--meadow); }
.notice strong { color: var(--meadow); letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; display: block; }

/* --------------------------------------------------------------------------
   Feature-Kacheln
   -------------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; transition: transform .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.section-paper .feature { background: var(--cream); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(111, 143, 58, .14); color: var(--forest-700); margin-bottom: 1rem;
}
.feature-icon .icon { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.feature p { margin: 0; color: var(--muted); font-size: .98rem; }

/* --------------------------------------------------------------------------
   Kacheln / Karten mit Bild (Teaser)
   -------------------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none; color: inherit;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: inherit; }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card-body h3 { margin: 0; }
.card-body p { margin: 0; color: var(--muted); font-size: .98rem; }
.card-link { margin-top: auto; padding-top: .6rem; display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--accent); }
.card-link .icon { transition: transform .2s ease; }
.card:hover .card-link .icon { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Jahreszeiten-Band (Bildstreifen)
   -------------------------------------------------------------------------- */
.seasons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.season {
  position: relative; min-height: 380px; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow-lg);
}
.season img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.season:hover img { transform: scale(1.04); }
.season::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(15, 31, 21, .85)); z-index: 1; }
.season div { position: relative; z-index: 2; padding: 1.8rem; }
.season h3 { color: #fff; font-size: 1.7rem; margin-bottom: .3rem; }
.season p { margin: 0; color: rgba(255, 255, 255, .88); }

/* --------------------------------------------------------------------------
   Call-to-Action-Band
   -------------------------------------------------------------------------- */
.cta {
  position: relative; overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.2rem, 5vw, 3.8rem);
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(169, 189, 114, .3), transparent 70%),
    linear-gradient(135deg, var(--forest-700), var(--forest-900));
  color: #fff;
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
}
.cta h2 { color: #fff; margin-bottom: .3em; }
.cta p { margin: 0; color: rgba(255, 255, 255, .85); font-size: 1.1rem; }
.cta .btn-group { justify-content: flex-end; }

/* --------------------------------------------------------------------------
   Preise
   -------------------------------------------------------------------------- */
.price-intro { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .95rem; border-radius: 999px; font-size: .92rem;
  background: var(--paper); border: 1px solid var(--line); color: var(--forest-800);
}
.chip .icon { color: var(--moss); }

.price-table { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.price-row {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; align-items: center; gap: 1rem;
  padding: 1.25rem 1.8rem; border-top: 1px solid var(--line);
}
.price-row:first-child { border-top: 0; }
.price-head {
  background: var(--forest-800); color: rgba(255, 255, 255, .85);
  font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding-block: 1rem;
}
.price-head span:not(:first-child) { text-align: right; }
.price-row .room { display: flex; align-items: center; gap: .9rem; }
.price-row .room strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--forest-900); display: block; line-height: 1.2; }
.price-row .room small { color: var(--muted); font-size: .88rem; }
.room-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(111, 143, 58, .14); color: var(--forest-700); flex: none; }
.price { text-align: right; font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--forest-900); }
.price small { display: none; }
.price.best { color: var(--accent); }
.price-row:not(.price-head):hover { background: #fbf8f1; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.info-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; display: flex; gap: 1rem; }
.info-box .feature-icon { margin: 0; flex: none; }
.info-box h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.info-box p { margin: 0; color: var(--muted); font-size: .98rem; }

/* --------------------------------------------------------------------------
   Kontakt
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.contact-list { display: grid; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; text-decoration: none; color: inherit;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
a.contact-item:hover { border-color: var(--moss); transform: translateY(-2px); box-shadow: var(--shadow); color: inherit; }
.contact-item .feature-icon { margin: 0; }
.contact-item small { display: block; color: var(--muted); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-item span { font-weight: 600; color: var(--forest-900); word-break: break-word; }

.form-card { background: var(--paper); border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 4vw, 2.5rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 600; color: var(--forest-800); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
  width: 100%;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--moss); background: #fff; box-shadow: 0 0 0 4px rgba(111, 143, 58, .18); }
.form-note { font-size: .88rem; color: var(--muted); margin: 1rem 0 0; }
.form-error { color: var(--accent-dark); font-size: .92rem; margin: .8rem 0 0; min-height: 1.2em; }

/* --------------------------------------------------------------------------
   Galerie + Lightbox
   -------------------------------------------------------------------------- */
.filter { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.filter button {
  font: 600 .95rem var(--sans); cursor: pointer;
  padding: .6rem 1.15rem; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--paper); color: var(--forest-800);
  transition: all .2s ease;
}
.filter button:hover { border-color: var(--moss); }
.filter button[aria-pressed="true"] { background: var(--forest-800); border-color: var(--forest-800); color: #fff; }

.gallery { columns: 3 280px; column-gap: 1rem; }
.gallery a {
  display: block; margin: 0 0 1rem; break-inside: avoid;
  border-radius: var(--radius-sm); overflow: hidden; position: relative;
  box-shadow: var(--shadow); background: var(--sand);
}
.gallery a[hidden] { display: none; }
.gallery img { width: 100%; transition: transform .6s ease, filter .3s ease; }
.gallery a::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 31, 21, .55));
  opacity: 0; transition: opacity .3s ease;
}
.gallery a:hover img { transform: scale(1.04); }
.gallery a:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10, 20, 14, .94);
  display: none; align-items: center; justify-content: center;
  padding: 4rem 1rem;
}
.lightbox.open { display: flex; animation: fade .25s ease; }
.lightbox figure { margin: 0; max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-height: calc(100svh - 9rem); width: auto; border-radius: 10px; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.lightbox figcaption { color: rgba(255, 255, 255, .75); margin-top: .9rem; font-size: .95rem; }
.lb-btn {
  position: absolute; width: 52px; height: 52px; border-radius: 50%;
  border: 0; background: rgba(255, 255, 255, .1); color: #fff; cursor: pointer;
  display: grid; place-items: center; transition: background-color .2s ease;
}
.lb-btn:hover { background: rgba(255, 255, 255, .25); }
.lb-btn .icon { width: 26px; height: 26px; }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* --------------------------------------------------------------------------
   Anfahrt
   -------------------------------------------------------------------------- */
.route-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.route { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.4rem, 3vw, 2rem); }
.route-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #1f5fae; color: #fff; font-weight: 700; font-size: .9rem;
  padding: .3rem .75rem; border-radius: 6px; margin-bottom: .9rem; letter-spacing: .02em;
}
.route ol { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.route li { position: relative; padding: 0 0 1rem 2.6rem; counter-increment: step; }
.route li::before {
  content: counter(step); position: absolute; left: 0; top: .05rem;
  width: 1.8rem; height: 1.8rem; border-radius: 50%;
  background: rgba(111, 143, 58, .16); color: var(--forest-800);
  font-weight: 700; font-size: .85rem; display: grid; place-items: center;
}
.route li:not(:last-child)::after {
  content: ""; position: absolute; left: .87rem; top: 2.1rem; bottom: .2rem; width: 2px; background: var(--line);
}
.route li:last-child { padding-bottom: 0; }

.sketches { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.sketch { margin: 0; background: #fff; border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.sketch img { margin-inline: auto; }
.sketch figcaption { text-align: center; color: var(--muted); font-size: .92rem; margin-top: .6rem; }

.map-consent {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px;
  background:
    linear-gradient(rgba(21, 40, 28, .82), rgba(21, 40, 28, .88)),
    url("../img/anfahrt/anfahrt1.jpg") center / cover;
  display: grid; place-items: center; text-align: center; color: #fff; padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.map-consent h3 { color: #fff; }
.map-consent p { color: rgba(255, 255, 255, .82); max-width: 34em; margin-inline: auto; font-size: .95rem; }
.map-consent iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --------------------------------------------------------------------------
   Ausflugsziele
   -------------------------------------------------------------------------- */
.trips { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.2rem; }
.trip {
  display: grid; grid-template-columns: 112px 1fr; gap: 1.2rem; align-items: start;
  background: var(--paper); border-radius: var(--radius); padding: 1.2rem;
  box-shadow: var(--shadow); transition: transform .25s ease, box-shadow .25s ease;
}
.trip:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.trip-img { width: 112px; height: 112px; border-radius: 14px; overflow: hidden; background: var(--sand); }
.trip-img img { width: 100%; height: 100%; object-fit: cover; }
.trip h3 { font-size: 1.2rem; margin-bottom: .1rem; }
.trip .place { display: block; color: var(--moss); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .45rem; }
.trip p { font-size: .96rem; color: var(--muted); margin: 0 0 .7rem; }
.trip-meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: .9rem; }
.trip-meta a { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; text-decoration: none; }
.trip-meta .icon { width: 1.05em; height: 1.05em; }

/* --------------------------------------------------------------------------
   Rechtstexte
   -------------------------------------------------------------------------- */
.prose { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.5rem, 5vw, 3.2rem); }
.prose h2 { font-size: 1.6rem; margin-top: 2.2rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.prose p, .prose li { color: #34423a; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .35rem; }
.prose address { font-style: normal; background: var(--cream); border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1rem; }
.prose a { word-break: break-word; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { position: relative; margin-top: 4rem; background: var(--forest-900); color: rgba(255, 255, 255, .78); padding: 5rem 0 2rem; }
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 110px;
  background: url("../img/huegel-dunkel.svg") bottom center / cover no-repeat;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 1rem; font-family: var(--sans); letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
.site-footer a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.site-footer a:hover { color: var(--meadow); }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-list li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-list .icon { margin-top: .2rem; color: var(--meadow); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .9rem;
}
.footer-bottom nav { display: flex; gap: 1.4rem; }

/* Mobile Aktionsleiste */
.mobile-bar { display: none; }

/* --------------------------------------------------------------------------
   Einblende-Animationen
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .1s; }
.js .reveal.d2 { transition-delay: .2s; }
.js .reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .hero { padding-bottom: 9rem; }
  .hero-collage { max-width: 560px; width: 100%; margin-inline: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cta { grid-template-columns: 1fr; }
  .cta .btn-group { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  body { font-size: 1rem; padding-bottom: 68px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-text strong { font-size: 1.12rem; }
  .brand-text small { font-size: .64rem; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 2rem); }
  .hero-stamp { width: 92px; height: 92px; font-size: .78rem; right: 0; }
  .hero-stamp strong { font-size: 1.45rem; }
  .cards, .seasons, .route-grid, .sketches { grid-template-columns: 1fr; }
  .season { min-height: 280px; }
  .page-hero { padding-top: calc(var(--header-h) + 2.8rem); padding-bottom: 7rem; }
  .page-hero::after { height: 90px; }

  .price-head { display: none; }
  .price-row { grid-template-columns: 1fr 1fr; padding: 1.2rem; gap: .8rem 1rem; }
  .price-row .room { grid-column: 1 / -1; }
  .price { text-align: left; background: var(--cream); border-radius: 12px; padding: .6rem .8rem; font-size: 1.4rem; }
  .price small { display: block; font-family: var(--sans); font-size: .74rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

  .form-grid { grid-template-columns: 1fr; }
  .trips { grid-template-columns: 1fr; }
  .trip { grid-template-columns: 84px 1fr; gap: 1rem; padding: 1rem; }
  .trip-img { width: 84px; height: 84px; }
  .gallery { columns: 2 140px; column-gap: .6rem; }
  .gallery a { margin-bottom: .6rem; }
  .lb-prev, .lb-next { top: auto; bottom: 1rem; transform: none; }
  .lb-prev { left: calc(50% - 64px); }
  .lb-next { right: calc(50% - 64px); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }

  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(247, 243, 234, .95); backdrop-filter: blur(10px);
    box-shadow: 0 -1px 0 var(--line), 0 -8px 24px rgba(21, 40, 28, .08);
  }
  .mobile-bar .btn { padding: .8em 1em; }
}

@media print {
  .site-header, .mobile-bar, .site-footer::before, .hero::after, .page-hero::after { display: none; }
  .page-hero, .hero { background: none; color: var(--ink); padding: 1rem 0; }
  .page-hero h1, .hero h1 { color: var(--ink); }
}
