/* ==========================================================================
   Deine Mongolei — Design „Steppenhimmel" (Runde 2)
   Himmelblau oben → Creme → Wiesengrün unten. Klein, hell, freundlich.
   Ersetzt das dunkle „Bold"-Design (eingefroren als case-study-v1).
   ========================================================================== */

/* --- Selbst gehostete Schriften (DSGVO — kein Google-Fonts-CDN) ------------ */
@font-face {
  font-family: "Fraunces"; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url("/assets/fonts/fraunces-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces"; font-style: italic; font-weight: 400 700; font-display: swap;
  src: url("/assets/fonts/fraunces-italic-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/atkinson-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/assets/fonts/atkinson-bold.woff2") format("woff2");
}
@font-face {
  font-family: "Atkinson Hyperlegible"; font-style: italic; font-weight: 400; font-display: swap;
  src: url("/assets/fonts/atkinson-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Caveat"; font-style: normal; font-weight: 500 600; font-display: swap;
  src: url("/assets/fonts/caveat-variable.woff2") format("woff2");
}

:root {
  /* Feedback #4: Gästebuch-Creme als Grundfarbe der ganzen Seite */
  --cream:       #F4F1EA;
  --cream-deep:  #ECE7DC;
  --card:        #FFFFFF;

  /* Feedback #5: Himmel oben, Gras unten */
  --sky:         #CDE6F2;
  --sky-soft:    #E4F2F9;
  --sky-deep:    #2C6E8F;
  --meadow:      #44703F;
  --meadow-deep: #2F5230;
  --meadow-dark: #24411F;

  --ink:         #2D332E;
  --ink-soft:    #5C645C;
  --line:        #DDD6C7;
  --amber:       #C97B3D;

  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "Atkinson Hyperlegible", "Segoe UI", sans-serif;
  --ff-hand: "Caveat", cursive;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 2px 10px rgba(45, 51, 46, .07), 0 10px 30px rgba(45, 51, 46, .06);
  --wrap: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}
body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: 2.2rem 0 2.6rem; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* Honeypot */
.hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 700; font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(45,51,46,.14); }
.btn-primary { background: var(--meadow); color: #fff; }
.btn-primary:hover { background: var(--meadow-deep); color: #fff; }
.btn-sky { background: var(--sky-deep); color: #fff; }
.btn-ghost { border-color: var(--meadow); color: var(--meadow-deep); background: transparent; }
.btn-ghost:hover { background: var(--meadow); color: #fff; }
.btn-lg { padding: .8rem 1.7rem; font-size: 1rem; }

/* --- Kicker / Headings (Feedback #3: klein!) ----------------------------- */
.kicker, .section-kicker {
  font-family: var(--ff-hand);
  font-size: 1.35rem;
  color: var(--sky-deep);
  display: block;
  margin-bottom: .15rem;
  transform: rotate(-1.2deg);
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);   /* bewusst klein */
  letter-spacing: -.01em;
  color: var(--ink);
}
.section-head { margin-bottom: 1.6rem; }
.section-head.center { text-align: center; }

.badge {
  align-self: flex-start; display: inline-block;
  background: var(--sky-soft); color: var(--sky-deep);
  font-size: .76rem; font-weight: 800;
  padding: .15rem .6rem; border-radius: 999px;
}
.more { color: var(--amber); font-weight: 700; font-size: .92rem; }

/* --- Alerts / Forms ------------------------------------------------------- */
.alert { border-radius: var(--radius); padding: .9rem 1.2rem; margin-bottom: 1.2rem; font-size: .95rem; }
.alert.ok  { background: #E5EFDF; border: 1px solid #BCD4AF; color: var(--meadow-dark); }
.alert.err { background: #F7E5DA; border: 1px solid #E3BFA4; color: #8A4516; }
.alert ul { margin: .4rem 0 0 1.2rem; }

.form-card {
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 1.6rem 1.7rem;
}
.form-card .field { margin-bottom: 1rem; }
.form-card .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-card label, .form-card .field-label {
  font-size: .85rem; font-weight: 800; display: block; margin-bottom: .3rem; color: var(--ink);
}
.form-card input[type="text"], .form-card input[type="email"],
.form-card select, .form-card textarea {
  width: 100%; padding: .6rem .8rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--ff-body); font-size: .95rem; background: #FDFCF9; color: var(--ink);
}
.form-card textarea { min-height: 120px; resize: vertical; }
.form-card input:focus, .form-card textarea:focus, .form-card select:focus {
  outline: 2px solid var(--sky-deep); border-color: transparent;
}
.form-card input[type="file"] { font-size: .9rem; color: var(--ink-soft); }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: .6rem; }

/* --- Scroll-Reveal -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   HEADER — Himmelzone (statisch, nicht mehr transparent über dem Hero)
   Der Himmel liegt als Verlauf hinter Kopfzeile + Seitenkopf jeder Seite.
   ========================================================================== */
body { position: relative; }
body::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 460px;
  background: linear-gradient(180deg, var(--sky) 0%, var(--sky-soft) 55%, var(--cream) 100%);
  pointer-events: none; z-index: 0;
}
.site-header, main, .meadow-zone { position: relative; z-index: 1; }
/* sanfte Wolken (nur Startseiten-Hero) */
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 999px;
  background: rgba(255,255,255,.55); filter: blur(2px);
  pointer-events: none; z-index: 0;
}
.hero::before { width: 220px; height: 54px; top: 12px; left: 5%; box-shadow: 60px 18px 0 -8px rgba(255,255,255,.45); }
.hero::after  { width: 170px; height: 44px; top: 56px; right: 8%; box-shadow: -70px 22px 0 -6px rgba(255,255,255,.4); }

.site-header { position: relative; z-index: 50; }
.header-inner {
  max-width: var(--wrap); margin: 0 auto; padding: .9rem 1.25rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.brand-logo { height: 52px; width: auto; }
.nav { margin-left: auto; }
.nav-list { display: flex; gap: 1.4rem; list-style: none; align-items: center; }
.nav-list > li > a {
  font-weight: 700; font-size: 1.02rem; color: var(--ink);
  padding-bottom: 2px; border-bottom: 2px solid transparent;
  display: inline-flex; align-items: center; gap: .25rem;
}
.nav-list > li > a:hover { border-bottom-color: var(--meadow); color: var(--meadow-deep); }
.nav-caret { font-size: .7rem; opacity: .6; }
.header-phone {
  font-weight: 800; font-size: .92rem; color: var(--sky-deep);
  background: rgba(255,255,255,.7); padding: .4rem .9rem; border-radius: 999px;
  white-space: nowrap;
}
.header-phone .phone-icon { display: none; }

/* Reisen-Dropdown */
.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + .8rem); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--card); border-radius: var(--radius-lg); box-shadow: 0 14px 40px rgba(45,51,46,.18);
  border: 1px solid var(--line);
  padding: 1.3rem 1.5rem 1rem; width: min(860px, 92vw);
  opacity: 0; visibility: hidden;
  /* kleines Schließ-Delay: kurzes Verlassen der Maus klappt das Menü nicht sofort zu */
  transition: opacity .18s ease .15s, transform .18s ease .15s, visibility 0s linear .33s;
  z-index: 60;
}
/* unsichtbare Hover-Brücke über die .8rem-Lücke zwischen Menüpunkt und Dropdown */
.nav-dropdown::before {
  content: ""; position: absolute;
  top: -1rem; left: 0; right: 0; height: 1.1rem;
}
.has-dropdown:hover .nav-dropdown, .has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}
.nav-dd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.nav-dd-head {
  font-family: var(--ff-display); font-weight: 600; font-size: .95rem;
  color: var(--sky-deep); margin-bottom: .5rem;
  border-bottom: 2px dotted var(--line); padding-bottom: .3rem;
}
.nav-dd-col ul { list-style: none; }
.nav-dd-col li a {
  display: block; font-size: .84rem; padding: .26rem 0; color: var(--ink-soft); font-weight: 600;
  line-height: 1.35;
}
.nav-dd-col li a:hover { color: var(--meadow-deep); }
.nav-dd-cta {
  display: inline-block; margin-top: 1rem;
  font-weight: 800; font-size: .88rem; color: var(--meadow-deep);
}
.nav-dd-cta:hover { text-decoration: underline; }

/* Hamburger (mobil) */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: .4rem; z-index: 70;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
body.nav-open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .hamburger span:nth-child(2) { opacity: 0; }
body.nav-open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO (Startseite) — klein, Slogan NEBEN dem Bild (Feedback #1, #2)
   ========================================================================== */
.hero { position: relative; z-index: 2; }
.hero-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 1.6rem 1.25rem 2.4rem;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.5rem; align-items: center;
}
.hero-copy .kicker { font-size: 1.5rem; }
.hero-title {
  font-family: var(--ff-display);
  font-weight: 620;
  font-variation-settings: "opsz" 60;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: .2rem 0 .8rem;
  color: var(--ink);
}
.hero-title em, .hero-title .accent {
  font-style: italic; color: var(--meadow-deep);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.hero-sub { color: var(--ink-soft); max-width: 42ch; margin-bottom: 1.2rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.hero-photo { position: relative; }
.hero-photo .hero-media {
  position: relative; height: 330px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  overflow: hidden;
}
.hero-photo .hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.1s ease;
}
.hero-photo .hero-slide.is-active { opacity: 1; }
.hero-stamp {
  position: absolute; right: -14px; top: -14px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--amber); color: #fff;
  display: grid; place-content: center; text-align: center;
  font-family: var(--ff-hand); font-size: 1.05rem; line-height: 1.1;
  transform: rotate(8deg);
  box-shadow: var(--shadow); z-index: 2;
}

/* ==========================================================================
   STARTSEITE — Kategorien in EINER Reihe + beliebte Reisen (Feedback #3, #6)
   ========================================================================== */
.reisen-home { padding: 2.2rem 0 1rem; }
.cat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cat-card {
  background: var(--card); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(45,51,46,.14); }
.cat-card img { height: 110px; width: 100%; object-fit: cover; }
.cat-card-body { padding: .7rem .9rem .85rem; }
.cat-card h3 {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 1.02rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cat-card .cat-count { font-size: .82rem; color: var(--ink-soft); }
.cat-card .cat-go { position: absolute; right: .7rem; bottom: .7rem; color: var(--meadow); font-weight: 800; }

.beliebte { padding: 2rem 0 2.4rem; }
.tour-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.tour-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(45,51,46,.15); }
.tour-card .card-photo { height: 150px; overflow: hidden; }
.tour-card .card-photo img { height: 100%; width: 100%; object-fit: cover; }
.tour-card-body, .tour-card .card-body { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.tour-card h3, .tour-card h4 { font-family: var(--ff-display); font-weight: 600; font-size: 1.04rem; line-height: 1.3; color: var(--ink); }
.tour-card .card-foot, .tour-card-foot {
  margin-top: auto; display: flex; justify-content: space-between; align-items: center;
  font-size: .9rem; gap: .5rem;
}
.tour-card .price { font-weight: 800; color: var(--meadow-deep); }

/* ==========================================================================
   GRUSSWORT + CTA mit Sidebar (Feedback #7, #8)
   ========================================================================== */
.grusswort { padding: 2.2rem 0; }
.split { display: grid; grid-template-columns: 1fr 270px; gap: 2rem; align-items: start; }
.grusswort-text p { margin-bottom: .9rem; max-width: 62ch; }
.grusswort-sign { font-family: var(--ff-hand); font-size: 1.7rem; color: var(--meadow-deep); transform: rotate(-2deg); display: inline-block; }

/* Reisen je Kategorie in der Grußwort-Spalte — Kategoriename in exakt der
   Grußwort-Titel-Typo (.section-title) */
.cat-group { margin-bottom: 1.8rem; }
.cat-group:last-child { margin-bottom: 0; }
.cat-group-title { margin-bottom: .8rem; }
.cat-group-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.cat-group-row .tour-card .card-photo { height: 110px; }
.cat-group-row .tour-card h3 { font-size: .92rem; }
.cat-group-row .tour-card-body { padding: .7rem .8rem .8rem; }
.cat-group-row .tour-card-foot { font-size: .82rem; }

/* Grußwort oben in der Sidebar */
.sidebar-grusswort { margin-bottom: 1.4rem; padding: .2rem .2rem 0; }
.sidebar-grusswort p { margin-bottom: .9rem; font-size: .95rem; }

.sidebar-card {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.sidebar-card img { height: 200px; width: 100%; object-fit: cover; object-position: top; }
.sidebar-card-body { padding: 1rem 1.2rem 1.2rem; }
.sidebar-card-body strong { font-family: var(--ff-display); font-size: 1.05rem; display: block; }
.sidebar-card-body span { color: var(--ink-soft); font-size: .88rem; display: block; margin-bottom: .6rem; }
.sidebar-mini {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1rem 1.2rem; margin-top: 1rem; font-size: .92rem;
}
.sidebar-mini h4 { font-family: var(--ff-display); font-size: .98rem; margin-bottom: .4rem; }
.sidebar-mini ul { list-style: none; }
.sidebar-mini li { padding: .3rem 0; border-bottom: 1px dashed var(--line); }
.sidebar-mini li:last-child { border-bottom: 0; }
.sidebar-mini a { color: var(--sky-deep); font-weight: 700; }

.cta { padding: 1.4rem 0 2.4rem; }
.cta-box {
  background: linear-gradient(135deg, var(--sky-soft), #fff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: center;
  box-shadow: var(--shadow);
}
.cta-box h2, .cta-title { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: .9rem; color: var(--ink); }
.cta-photo img {
  border-radius: var(--radius); height: 200px; width: 100%; object-fit: cover;
  border: 5px solid #fff; box-shadow: var(--shadow); transform: rotate(2deg);
}

/* ==========================================================================
   BLOG — Startseiten-Teaser + Listen-/Beitragsseite mit Sidebar (Feedback #9)
   ========================================================================== */
.home-blog { padding: 1rem 0 2.4rem; }
.home-blog .blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.post-card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex;
  transition: transform .18s ease;
}
.post-card:hover { transform: translateY(-3px); }
.post-card .card-photo { width: 150px; flex: none; overflow: hidden; }
.post-card .card-photo img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: .9rem 1rem; }
.post-date { font-size: .78rem; color: var(--ink-soft); font-weight: 700; }
.post-card h3 { font-family: var(--ff-display); font-weight: 600; font-size: 1rem; margin: .2rem 0 .3rem; color: var(--ink); }
.post-card p { font-size: .88rem; color: var(--ink-soft); }
.home-blog-cta { text-align: center; margin-top: 1.4rem; }

/* Blog-Liste + Beitrag: Inhalt links, Sidebar rechts */
.blog-layout {
  max-width: var(--wrap); margin: 0 auto; padding: 2rem 1.25rem 2.6rem;
  display: grid; grid-template-columns: 1fr 320px; gap: 2.2rem; align-items: start;
}
.blog-list { display: grid; gap: 1.1rem; }
.blog-list .post-card .card-photo { width: 220px; }
.blog-aside { position: sticky; top: 1.2rem; display: grid; gap: 1.1rem; }
.aside-widget {
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem;
}
.aside-widget h3 {
  font-family: var(--ff-display); font-size: 1.02rem; margin-bottom: .7rem;
  border-bottom: 2px dotted var(--line); padding-bottom: .35rem;
}
.aside-widget ul { list-style: none; font-size: .9rem; }
.aside-widget li { padding: .35rem 0; border-bottom: 1px dashed var(--line); }
.aside-widget li:last-child { border-bottom: 0; }
.aside-widget li a { color: var(--ink); font-weight: 600; line-height: 1.35; display: block; }
.aside-widget li a:hover { color: var(--meadow-deep); }
.aside-widget li .post-date { display: block; }
.aside-widget.aside-cta { text-align: center; background: linear-gradient(135deg, var(--sky-soft), #fff); }
.aside-widget.aside-cta p { font-size: .9rem; margin-bottom: .8rem; }

/* ==========================================================================
   GÄSTEBUCH-Vorschau (Start) + Seite
   ========================================================================== */
.guestbook { padding: 1rem 0 2.8rem; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.quote {
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.3rem 1.3rem 1.1rem;
  position: relative;
}
.quote-mark {
  font-family: var(--ff-display); font-size: 3rem; line-height: 1;
  color: var(--amber); position: absolute; top: .4rem; left: .9rem; opacity: .35;
}
.quote blockquote { font-size: .93rem; padding-top: 1rem; color: var(--ink); }
.quote figcaption { margin-top: .7rem; font-weight: 800; font-size: .88rem; color: var(--meadow-deep); }
.tour-tag {
  display: inline-block; margin-top: .3rem;
  background: var(--cream-deep); border-radius: 999px;
  font-size: .75rem; padding: .1rem .6rem; color: var(--ink-soft); font-weight: 700;
  font-style: normal;
}
.guestbook .more-row { text-align: center; margin-top: 1.5rem; }

/* Gästebuch-Seite: ein Eintrag pro Zeile + „Mehr laden" */
.guestbook-page { padding-bottom: 2.6rem; }
.guestbook-list {
  max-width: 880px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.gb-item {
  position: relative; margin: 0;
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--sky-deep);
  padding: 1.5rem 1.9rem 1.3rem;
}
.gb-mark {
  font-family: var(--ff-display); font-size: 3rem; line-height: .4;
  color: var(--amber); opacity: .35; display: inline-block;
}
.gb-item blockquote { margin: .7rem 0 .9rem; font-size: 1rem; line-height: 1.7; color: var(--ink); }
.gb-item figcaption { font-weight: 800; font-size: .9rem; color: var(--meadow-deep); }
.gb-more-wrap { text-align: center; padding: 2rem 1.25rem 0; }
.gb-more[hidden] { display: none; }

/* Gästebuch-Modal */
.modal {
  position: fixed; inset: 0; z-index: 220; display: none;
  align-items: flex-start; justify-content: center;
  padding: 4vh 1rem; overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal[hidden] { display: none; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(45,51,46,.5); }
.modal-dialog {
  position: relative; z-index: 1;
  background: var(--cream); border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  width: min(680px, 100%); padding: 2rem 2.2rem;
}
.modal-close {
  position: absolute; top: .8rem; right: 1rem;
  background: none; border: 0; font-size: 1.8rem; line-height: 1;
  color: var(--ink-soft); cursor: pointer;
}
.modal-close:hover { color: var(--ink); }
.modal .form-card { background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none; }
.gb-form-title { font-family: var(--ff-display); font-weight: 600; font-size: 1.4rem; margin-bottom: .3rem; }
.gb-form-intro { color: var(--ink-soft); margin: 0 0 1.4rem; font-size: .95rem; }

/* Sterne-Bewertung (5→1, rechts nach links gerendert) */
.gb-stars { display: inline-flex; flex-direction: row-reverse; border: 0; gap: .15rem; }
.gb-stars > label { font-size: 1.7rem; color: var(--line); cursor: pointer; transition: color .12s ease; }
.gb-stars > input:checked ~ label,
.gb-stars > label:hover,
.gb-stars > label:hover ~ label { color: var(--amber); }
.gb-stars > input:focus-visible + label { outline: 2px solid var(--sky-deep); outline-offset: 2px; border-radius: 4px; }

/* ==========================================================================
   UNTERSEITEN-KOPF — kompaktes Banner statt Vollbild-Hero (Feedback #1)
   ========================================================================== */
.page-hero {
  position: relative;
  max-width: var(--wrap);
  margin: .4rem auto 0;
  padding: 0 1.25rem;
}
.page-hero-media {
  height: 280px; border-radius: var(--radius-lg); overflow: hidden;
  border: 6px solid #fff; box-shadow: var(--shadow);
}
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0 1.25rem; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(45,51,46,0) 30%, rgba(45,51,46,.55) 100%);
  pointer-events: none;
}
.page-hero-inner {
  position: absolute; left: 2.5rem; right: 2.5rem; bottom: 1.4rem;
  color: #fff;
}
.hero-eyebrow {
  font-family: var(--ff-hand); font-size: 1.25rem; color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.hero-eyebrow span { display: none; }
.page-hero-title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);   /* klein statt 80px+ */
  line-height: 1.15; text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.page-hero-title br { display: none; }      /* einzeilig, kompakt */
.page-hero-sub { font-size: .95rem; opacity: .92; margin-top: .3rem; text-shadow: 0 1px 6px rgba(0,0,0,.4); }

/* Gästebuch-Hero: Titel + CTA nebeneinander */
.gb-hero .page-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.gb-hero-cta { flex: 0 0 auto; }

/* ==========================================================================
   REISEN-Übersicht — Kategorien klein, Karten-Raster (Feedback #3)
   ========================================================================== */
.offers { max-width: var(--wrap); margin: 0 auto; padding: 1.6rem 1.25rem 2.4rem; }
.offers .cat { margin-bottom: 2.2rem; }
.offers .cat-head {
  display: flex; align-items: baseline; gap: .7rem; margin-bottom: 1rem;
  border-bottom: 2px dotted var(--line); padding-bottom: .5rem;
}
.offers .cat-index {
  font-family: var(--ff-hand); font-size: 1.3rem; color: var(--amber);
}
.offers .cat-title {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.5rem);    /* klein, eine Zeile */
  color: var(--ink);
}
.offers .cat-title br { display: none; }
.offers .cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.offers .card {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.offers .card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(45,51,46,.15); }
.offers .card-photo { height: 150px; overflow: hidden; }
.offers .card-photo img { width: 100%; height: 100%; object-fit: cover; }
.offers .card-body { padding: .9rem 1rem 1rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.offers .card-body h4 { font-family: var(--ff-display); font-weight: 600; font-size: 1.02rem; line-height: 1.3; color: var(--ink); }
.offers .card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: .9rem; gap: .5rem; }
.offers .price { font-weight: 800; color: var(--meadow-deep); }

/* ==========================================================================
   TOUR-SEITE (Feedback #10–13)
   ========================================================================== */
.tour-main { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }
.tour-layout {
  padding: 2rem 0 2.6rem;
  display: grid; grid-template-columns: 1fr 330px; gap: 2.2rem; align-items: start;
}
.tour-section { margin-bottom: 2.2rem; }
.tour-section > h2 {
  font-family: var(--ff-display); font-weight: 600;
  font-size: 1.3rem; margin-bottom: .9rem;
  display: flex; align-items: center; gap: .6rem; color: var(--ink);
}
.tour-section > h2 .kicker-num {
  width: 10px; height: 10px; border-radius: 50%; background: var(--amber); flex: none;
  overflow: hidden; color: transparent; font-size: 0;   /* „00" → Punkt */
}
.tour-intro-text { max-width: 68ch; }
.tour-intro-text p { margin-bottom: .8rem; }

/* Reiseroute: Leaflet (Feedback #10) + Fallback-Bildkarte */
.route-map {
  height: 380px; border-radius: var(--radius-lg);
  border: 6px solid #fff; box-shadow: var(--shadow);
  z-index: 1;
}
.route-hint { font-size: .85rem; color: var(--ink-soft); margin-top: .5rem; }
.wp-marker {
  background: var(--meadow); color: #fff; border-radius: 50%;
  width: 26px; height: 26px; display: grid; place-content: center;
  font-weight: 800; font-size: .78rem; border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
/* Karten-Popups */
.leaflet-popup-content { font-family: var(--ff-body); font-size: .88rem; line-height: 1.5; margin: .8rem 1rem; }
.wp-popup-title { font-family: var(--ff-display); font-weight: 600; font-size: .98rem; color: var(--ink); margin: 0 0 .25rem; }
.wp-popup-km {
  display: inline-block; background: var(--sky-soft); color: var(--sky-deep);
  font-size: .74rem; font-weight: 800; padding: .08rem .55rem; border-radius: 999px; margin-bottom: .35rem;
}
.wp-popup-desc { color: var(--ink-soft); margin: .15rem 0 0; }
.leaflet-popup-content-wrapper { border-radius: 12px; box-shadow: var(--shadow); }

.tour-map { margin: 0; position: relative; }
.tour-map img { border-radius: var(--radius-lg); border: 6px solid #fff; box-shadow: var(--shadow); width: 100%; }
.tour-map-zoom {
  position: absolute; right: 1rem; bottom: 1rem;
  background: rgba(255,255,255,.9); color: var(--ink);
  font-size: .8rem; font-weight: 700; padding: .25rem .7rem; border-radius: 999px;
}

/* Video */
.tour-video { position: relative; padding-top: 56.25%; border-radius: var(--radius-lg); overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow); }
.tour-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Reiseverlauf */
.itinerary { border-left: 3px solid var(--sky); padding-left: 1.2rem; }
.tour-day { position: relative; padding-bottom: 1.1rem; display: grid; grid-template-columns: 110px 1fr; gap: .8rem; }
.tour-day::before {
  content: ""; position: absolute; left: calc(-1.2rem - 8.5px); top: .45rem;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--meadow); border: 2px solid var(--cream);
}
.tour-day-day { font-size: .92rem; font-weight: 800; color: var(--sky-deep); }
.tour-day-loc { font-weight: 700; font-size: .96rem; color: var(--ink); }
.tour-day-desc { font-size: .93rem; color: var(--ink-soft); max-width: 64ch; }

/* Leistungen */
.incl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.incl-box { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.1rem 1.2rem; }
.incl-box h3 { font-family: var(--ff-display); font-size: 1rem; margin-bottom: .5rem; }
.incl-box.yes h3 { color: var(--meadow-deep); }
.incl-box.no h3 { color: var(--amber); }
.incl-box .raw { font-size: .92rem; white-space: pre-line; color: var(--ink-soft); }

/* Galerie — ganz unten (Feedback #11) */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.gallery-grid a { display: block; }
.gallery-grid img {
  height: 160px; width: 100%; object-fit: cover;
  border-radius: var(--radius); border: 4px solid #fff; box-shadow: var(--shadow);
  transition: transform .18s ease;
}
.gallery-grid img:hover { transform: scale(1.03) rotate(.5deg); }

/* Stimme zu dieser Reise (Feedback #13) */
.tour-voice {
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 1.5rem 1.7rem; position: relative; overflow: hidden; margin: 0;
}
.tour-voice::before {
  content: "„"; font-family: var(--ff-display);
  position: absolute; top: -1.4rem; left: .6rem;
  font-size: 7rem; color: var(--sky); opacity: .8;
}
.tour-voice blockquote { position: relative; font-size: 1rem; margin-bottom: .7rem; }
.tour-voice figcaption { font-weight: 800; color: var(--meadow-deep); font-size: .9rem; }
.voice-actions { margin-top: 1rem; }
.all-voices { display: none; margin-top: 1.2rem; border-top: 1px dashed var(--line); padding-top: 1.2rem; }
.all-voices.open { display: grid; gap: 1rem; }
.all-voices .quote { box-shadow: none; border: 1px solid var(--line); }

/* Tour-Sidebar — TERMINE vor PREIS (Feedback #12) */
.tour-aside { position: sticky; top: 1.2rem; display: grid; gap: 1.1rem; }
.aside-box, .price-box {
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem;
}
.aside-box h3, .pb-kicker {
  font-family: var(--ff-display); font-weight: 600; font-size: 1.02rem; color: var(--ink);
  display: flex; align-items: center; gap: .5rem; margin-bottom: .7rem;
}
.aside-box.termine { border-top: 4px solid var(--sky-deep); }
.aside-box.preis { border-top: 4px solid var(--meadow); }
.aside-box ul, .price-meta { list-style: none; font-size: .9rem; }
.aside-box li, .price-meta li { padding: .35rem 0; border-bottom: 1px dashed var(--line); }
.aside-box li:last-child, .price-meta li:last-child { border-bottom: 0; }
.price-meta li { display: flex; justify-content: space-between; gap: .6rem; }
.price-meta li span:last-child { font-weight: 700; text-align: right; }
.aside-box .hint { font-size: .8rem; color: var(--ink-soft); margin-top: .5rem; }
.pb-price { font-size: 1rem; font-weight: 700; color: var(--meadow-deep); white-space: pre-line; margin-bottom: .6rem; }
.aside-events { white-space: pre-line; font-size: .92rem; color: var(--ink); }
.pdf-link {
  display: inline-block; margin-top: .8rem; font-weight: 700; font-size: .9rem; color: var(--sky-deep);
}
.pdf-link:hover { text-decoration: underline; }
.aside-cta { text-align: center; background: linear-gradient(135deg, var(--sky-soft), #fff); }
.aside-cta p { font-size: .9rem; margin-bottom: .8rem; color: var(--ink); }

/* ==========================================================================
   KONTAKT
   ========================================================================== */
.contact-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 2.2rem; align-items: start;
  padding: 2rem 0 2.6rem;
}
.contact-info {
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 1.4rem 1.5rem; position: sticky; top: 1.2rem;
}
.contact-info h3 {
  font-family: var(--ff-display); font-size: 1rem; margin: 1rem 0 .25rem; color: var(--sky-deep);
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: .94rem; }
.contact-info a { color: var(--ink); font-weight: 600; }
.contact-info a:hover { color: var(--meadow-deep); }

/* ==========================================================================
   ARTIKEL-INHALTE (Admin-HTML: Blog-Beiträge, statische Seiten, Über uns)
   ========================================================================== */
.article {
  max-width: 880px; margin: 0;
  padding: 0 0 2rem;
  font-size: 1.05rem; line-height: 1.75; color: var(--ink);
}
/* Statische Seiten (Über uns, AGB, …): Inhalt in voller Hero-Breite und mit
   Abstand zum Banner. Fließtext bleibt über ch-Limits lesbar. */
.tour-main > .article {
  max-width: none;
  padding: 2.2rem 0 2.6rem;
}
/* Text läuft in voller Sektionsbreite (wie die übrigen Inhalte) */
.tour-main > .article > p,
.tour-main > .article .ueber-text,
.tour-main > .article .ueber-lead { max-width: none; }
.tour-main > .article.ueber-form { padding-top: 0; }   /* hat schon margin-top */
.article h1, .article h2, .article h3 {
  font-family: var(--ff-display); font-weight: 600; color: var(--ink);
  line-height: 1.2; margin: 1.8rem 0 .9rem;
}
.article h2 { font-size: 1.4rem; }
.article h3 { font-size: 1.15rem; }
.article p { margin-bottom: .9rem; }
.article a { color: var(--sky-deep); text-decoration: underline; text-underline-offset: 3px; }
.article a:hover { color: var(--meadow-deep); }
.article img { border-radius: var(--radius); margin: 1.4rem 0; max-width: 100%; height: auto; }
.article ul, .article ol { padding-left: 1.4rem; margin-bottom: .9rem; }
.article blockquote {
  border-left: 3px solid var(--amber); margin: 1.4rem 0; padding-left: 1.3rem;
  color: var(--ink-soft); font-style: italic;
}
.article figure { margin: 1.4rem 0; }
.article table { width: 100%; border-collapse: collapse; }
.article td, .article th { border: 1px solid var(--line); padding: .6rem; }

/* Team-Raster (Über uns) */
.article .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; margin: 1.4rem 0 0; }
.article .team-card {
  background: var(--card); border-radius: var(--radius);
  border-top: 4px solid var(--sky-deep);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.4rem;
}
.article .team-card .team-photo {
  width: 100%; height: 210px; object-fit: cover; object-position: center 28%;
  border-radius: var(--radius); margin: 0 0 1rem; cursor: zoom-in;
  transition: filter .25s ease;
}
.article .team-card .team-photo:hover { filter: brightness(1.05); }
.article .team-card .team-name { font-family: var(--ff-display); font-weight: 600; color: var(--ink); font-size: 1.2rem; margin: 0; }
.article .team-card .team-role {
  color: var(--sky-deep); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em; margin: .25rem 0 .8rem;
}
.article .team-card p:last-child { margin-bottom: 0; }

/* Grußwort-Portraits */
.article .grusswort-portraits {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 3vw, 2rem);
  margin: 0 0 2.2rem;
  max-width: 70%;          /* Portraits ~30 % kleiner als die volle Sektionsbreite */
}
.article .gp-frame { position: relative; margin: 0; }
.article .gp-frame img {
  display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%;
  border: 5px solid #fff; box-shadow: var(--shadow); border-radius: var(--radius);
  margin: 0;
}
.article .gp-frame::before {
  content: ""; position: absolute; left: -10px; bottom: 22px; width: 52%; height: 38%;
  border-left: 4px solid var(--amber); border-bottom: 4px solid var(--amber); z-index: -1;
  border-radius: 0 0 0 8px;
}
.article .gp-frame figcaption {
  display: flex; flex-direction: column;
  font-weight: 800; font-size: .92rem; color: var(--ink); margin-top: .8rem;
}
.article .gp-frame figcaption span { margin-top: .2rem; font-weight: 600; font-size: .78rem; color: var(--ink-soft); }

/* Über-uns-Blöcke */
.article .ueber-block { margin-top: clamp(2.2rem, 5vw, 3.6rem); padding-top: clamp(1.4rem, 3vw, 2.2rem); border-top: 2px dotted var(--line); }
.article .ueber-kicker, .ueber-kicker {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--ff-hand); font-size: 1.3rem; color: var(--sky-deep);
  margin: 0 0 .5rem; transform: rotate(-1.2deg);
}
.article .ueber-kicker span, .ueber-kicker span { display: none; }
.article .ueber-head, .ueber-head {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);   /* klein (Feedback #3) */
  line-height: 1.18; margin: 0 0 .9rem; color: var(--ink);
}
.article .ueber-lead, .ueber-lead {
  max-width: 60ch; font-size: 1.05rem; line-height: 1.7; color: var(--ink-soft); margin: 0 0 1.4rem;
}
.article .ueber-text { max-width: 62ch; font-size: 1.02rem; line-height: 1.75; color: var(--ink); margin: 0 0 1rem; }
.article .ueber-text:last-child { margin-bottom: 0; }
.article .ueber-text a { color: var(--sky-deep); }
.article .ueber-text a:hover { color: var(--meadow-deep); }

.article .ueber-split { display: flex; flex-direction: column; gap: clamp(1.2rem, 3vw, 1.8rem); }
.article .ueber-split-text { order: 1; }
.article .ueber-figure { order: 2; position: relative; margin: 0; }
.article .ueber-figure img {
  display: block; width: 100%; height: auto; cursor: zoom-in;
  border: 5px solid #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  margin: 0;
}
/* Leistungen-Galerie: Masonry (CSS-Spalten) — Bilder behalten ihr
   Seitenverhältnis und füllen die Spalten lückenlos. */
.article .ueber-gallery {
  display: block;
  columns: 4 240px;
  column-gap: .8rem;
}
.article .ueber-gallery a {
  display: block;
  margin: 0 0 .8rem;
  break-inside: avoid;
}
.article .ueber-gallery img {
  width: 100%; height: auto; margin: 0;
  border-radius: var(--radius); border: 4px solid #fff; box-shadow: var(--shadow);
  transition: transform .18s ease;
}
.article .ueber-gallery img:hover { transform: scale(1.02); }

/* Über-uns-Anfrageformular */
.ueber-form { margin-top: clamp(2.2rem, 5vw, 3.6rem); padding-top: clamp(1.4rem, 3vw, 2.2rem); border-top: 2px dotted var(--line); }
.ueber-form .form-card { margin-top: 1.4rem; }

/* ==========================================================================
   404
   ========================================================================== */
.notfound {
  min-height: 62vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 4rem 1.25rem 4rem;
}
.notfound .code {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(4rem, 14vw, 8rem); line-height: .95; color: var(--sky); margin: 0;
  text-shadow: 0 2px 0 #fff;
}
.notfound h1 { font-family: var(--ff-display); font-weight: 600; font-size: 1.5rem; margin: .8rem 0 .8rem; }
.notfound p { color: var(--ink-soft); max-width: 46ch; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(34, 40, 35, .92); display: none;
  align-items: center; justify-content: center; padding: 4vh 4vw; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lb-stage { display: flex; align-items: center; justify-content: center; max-width: 100%; max-height: 92vh; cursor: zoom-out; }
.lightbox img { max-width: 100%; max-height: 92vh; object-fit: contain; border-radius: 6px; cursor: default; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; z-index: 2;
  background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.3);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: background .2s, transform .2s;
}
.lb-close { top: 1.2rem; right: 1.4rem; width: 48px; height: 48px; font-size: 1.9rem; border-radius: 50%; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2.2rem; border-radius: 50%; padding-bottom: 4px; }
.lb-prev { left: 1.6rem; }
.lb-next { right: 1.6rem; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--meadow); border-color: var(--meadow); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.07); }
.lb-meta {
  position: fixed; bottom: 1.3rem; left: 0; right: 0; text-align: center; pointer-events: none;
  color: rgba(255,255,255,.9); font-size: .92rem;
}
.lb-count { color: #fff; font-weight: 700; margin-right: .6rem; }

/* ==========================================================================
   FOOTER — Wiesenzone (Feedback #5: unten Naturgrün)
   ========================================================================== */
.meadow-zone { position: relative; margin-top: 2rem; }
.grass-edge { display: block; width: 100%; height: 42px; }
.site-footer {
  background: linear-gradient(180deg, var(--meadow) 0%, var(--meadow-dark) 100%);
  color: #E9F0E4; padding: 2.2rem 0 1.4rem;
}
.footer-grid {
  max-width: var(--wrap); margin: 0 auto 1.6rem; padding: 0 1.25rem;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem;
}
.footer-col h5 { font-family: var(--ff-display); font-weight: 600; font-size: 1rem; margin-bottom: .6rem; color: #fff; }
.footer-col p { font-size: .92rem; }
.footer-col a:hover { text-decoration: underline; }
.footer-logo { height: 54px; margin-bottom: .6rem; filter: brightness(0) invert(1); opacity: .9; }
.footer-tag { font-family: var(--ff-hand); font-size: 1.25rem; color: #fff; opacity: .9; }
.footer-bar {
  max-width: var(--wrap); margin: 0 auto; padding: 1rem 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: .82rem; opacity: .75;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  .hero-grid, .cta-box, .split, .contact-layout, .blog-layout { grid-template-columns: 1fr; }
  .cat-row { grid-template-columns: repeat(2, 1fr); }
  .tour-row, .quotes, .offers .cards { grid-template-columns: 1fr 1fr; }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-aside, .blog-aside, .contact-info { position: static; }
  .nav-dd-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobile Navigation */
  .hamburger { display: flex; margin-left: auto; }   /* rechtsbündig, weg vom Logo */
  .nav {
    position: fixed; inset: 0; background: var(--cream);
    display: none; align-items: flex-start; justify-content: center;
    padding: 5.5rem 1.5rem 2rem; z-index: 60; overflow-y: auto;
    margin-left: 0;
  }
  body.nav-open .nav { display: flex; }
  .nav-list { flex-direction: column; gap: .4rem; width: 100%; max-width: 420px; }
  .nav-list > li { width: 100%; }
  .nav-list > li > a {
    display: block; width: 100%; font-size: 1.15rem; padding: .8rem 0;
    border-bottom: 1px dashed var(--line);
  }
  .nav-dropdown { display: none; }      /* mobil: nur „Reisen"-Link */
  .header-phone { display: none; }
}
@media (max-width: 960px) and (min-width: 601px) {
  .cat-group-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .cat-row, .tour-row, .quotes, .home-blog .blog-grid, .incl-grid, .gallery-grid,
  .offers .cards, .cat-group-row, .form-card .field-row { grid-template-columns: 1fr; }
  .hero-photo .hero-media { height: 220px; }
  .page-hero-media { height: 210px; }
  .page-hero-inner { left: 2rem; right: 2rem; bottom: 1rem; }
  .tour-day { grid-template-columns: 1fr; gap: .15rem; }
  .blog-list .post-card { flex-direction: column; }
  .blog-list .post-card .card-photo { width: 100%; height: 170px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}
