/* ==========================================================================
   Watt mit Jan – Stylesheet
   Farben, Schriftgrößen und Abstände zentral über die Variablen in :root.
   ========================================================================== */

/* Schriften liegen lokal in fonts/ (nicht bei Google geladen) — DSGVO:
   so wird beim Seitenaufruf keine Verbindung zu Google-Servern aufgebaut. */
@font-face {
  font-family: 'Lilita One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lilita-one-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122;
}
@font-face {
  font-family: 'Lilita One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lilita-one-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/nunito-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122;
}
@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/nunito-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0;
}

:root {
  /* Farben */
  --sand: #fdf4e4;          /* Seitenhintergrund */
  --creme: #fff9ef;         /* Text auf dunklem Grund */
  --tief: #1c4a63;          /* Dunkelblau (Überschriften, Footer) */
  --tief-dunkel: #123446;   /* Overlay / Schatten */
  --orange: #e2703a;        /* Akzent (Buttons, Termine) */
  --gelb: #f2c14e;          /* Badges, Preise */
  --hellblau: #dceaf0;      /* Info-Flächen */
  --weiss: #ffffff;
  --text: #23343d;
  --text-weich: #47585f;
  --text-leise: #7d9aa8;
  --skizze: #33505c;

  /* Typo */
  --font-display: 'Lilita One', cursive;
  --font-text: 'Nunito', system-ui, sans-serif;

  /* Layout */
  --breite: 1280px;
  --rand: clamp(18px, 4vw, 44px);
  --abschnitt: clamp(72px, 9vw, 130px);   /* Abstand zwischen Abschnitten */
  --block: clamp(46px, 5.5vw, 84px);      /* Abstand zwischen Blöcken */
  --radius-gross: 30px;
  --radius: 26px;
  --radius-klein: 20px;

  --schatten-karte: 0 16px 34px rgba(28, 74, 99, 0.1);
  --schatten-weich: 0 10px 22px rgba(28, 74, 99, 0.07);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* Platz für den sticky Kopf beim Anspringen von Ankern */
  overflow-x: hidden;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--text);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--tief); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }

img { max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--tief);
  line-height: 0.98;
  margin: 20px 0 22px;
}

p { text-wrap: pretty; }

/* --------------------------------------------------------- Grundbausteine */

.wrap {
  max-width: var(--breite);
  margin: 0 auto;
  padding-left: var(--rand);
  padding-right: var(--rand);
}

.abschnitt { padding-top: var(--abschnitt); }

.badge {
  display: inline-block;
  background: var(--orange);
  color: var(--creme);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}
.badge--gelb { background: var(--gelb); color: var(--text); }

.label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-leise);
}

.lead { font-size: 18.5px; line-height: 1.7; color: var(--text-weich); max-width: 52ch; }
.text { font-size: 17.5px; line-height: 1.65; color: var(--text-weich); max-width: 50ch; }

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 800;
  padding: 16px 30px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--orange { background: var(--orange); color: var(--creme); box-shadow: 0 10px 24px rgba(226, 112, 58, 0.28); }
.btn--orange:hover { background: var(--tief); color: var(--creme); }
.btn--tief { background: var(--tief); color: var(--creme); box-shadow: 0 10px 22px rgba(28, 74, 99, 0.22); }
.btn--tief:hover { background: var(--orange); color: var(--creme); }
.btn--linie { color: var(--tief); border: 2px solid rgba(28, 74, 99, 0.35); padding: 14px 28px; font-weight: 700; background: none; }
.btn--linie:hover { border-color: var(--orange); color: var(--orange); }

.rund {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 2px solid rgba(28, 74, 99, 0.2);
  background: var(--weiss);
  border-radius: 50%;
  color: var(--tief);
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.rund:hover { border-color: var(--orange); color: var(--orange); }

.karte {
  background: var(--weiss);
  border-radius: var(--radius-gross);
  padding: clamp(28px, 3.2vw, 42px);
  box-shadow: var(--schatten-karte);
}

/* 2-Spalten-Raster, bricht automatisch um */
.raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
}
.raster--eng { gap: clamp(24px, 3vw, 40px); }

/* ------------------------------------------------------------------ Header */

.kopf {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 244, 228, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(28, 74, 99, 0.12);
}
.kopf__inner {
  gap: 12px clamp(18px, 3vw, 48px);
  min-height: 80px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 26px;
}
.marke { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.marke__kreis {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--tief);
  color: var(--sand);
  font-family: var(--font-display);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.marke__text { display: flex; flex-direction: column; line-height: 1; }
.marke__name { font-family: var(--font-display); font-size: 22px; color: var(--tief); }
.marke__ort {
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-leise); margin-top: 4px;
}
.nav-schalter {
  display: none;
  width: 46px; height: 46px; flex-shrink: 0;
  border: 2px solid rgba(28, 74, 99, 0.18);
  background: var(--weiss);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-schalter span {
  display: block; width: 20px; height: 2.4px;
  background: var(--tief); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.kopf.offen .nav-schalter span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.kopf.offen .nav-schalter span:nth-child(2) { opacity: 0; }
.kopf.offen .nav-schalter span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.nav {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px clamp(12px, 1.8vw, 28px);
  font-size: 15px; font-weight: 700;
}
.nav__links {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px clamp(12px, 1.8vw, 28px);
  margin-right: auto;
}
.nav a { color: var(--text); white-space: nowrap; }
.nav a:hover { color: var(--orange); }
.nav__insta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px 11px 14px;
  border-radius: 999px;
  background: var(--weiss);
  border: 2px solid rgba(28, 74, 99, 0.18);
  color: var(--tief);
  font-size: 14px; font-weight: 800; letter-spacing: 0.04em;
  box-shadow: var(--schatten-weich);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.nav__insta:hover {
  color: var(--tief);
  border-color: #ee2a7b;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(190, 45, 120, 0.2);
}
.nav__insta svg { width: 19px; height: 19px; flex-shrink: 0; }
.nav .btn { padding: 13px 24px; font-size: 15px; box-shadow: 0 8px 18px rgba(226, 112, 58, 0.28); }

/* -------------------------------------------------------------------- Hero */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--tief);
}
.hero__bild {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__schleier {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top,
    rgba(18, 52, 70, 0.9) 0%,
    rgba(18, 52, 70, 0.45) 46%,
    rgba(18, 52, 70, 0.12) 100%);
}
.hero__inhalt {
  position: relative;
  width: 100%;
  padding-top: 130px;
  padding-bottom: clamp(96px, 9vw, 130px);
  color: var(--creme);
}
.hero__badge { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(52px, 10vw, 138px);
  line-height: 0.86;
  color: var(--creme);
  margin: 0;
  text-shadow: 0 6px 26px rgba(10, 30, 42, 0.45);
}
.hero__untertitel {
  font-size: 13px; font-weight: 800; letter-spacing: 0.34em;
  text-transform: uppercase; color: var(--gelb); margin: 22px 0 26px;
}
.hero__text {
  font-size: clamp(17px, 1.6vw, 22px); line-height: 1.55;
  max-width: 42ch; margin: 0 0 34px;
  color: rgba(255, 249, 239, 0.94);
}
.hero__aktionen { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero__aktionen .btn--orange { box-shadow: 0 12px 26px rgba(10, 30, 42, 0.35); padding: 17px 32px; }
.hero__aktionen .btn--orange:hover { background: var(--gelb); color: var(--text); }
.hero__aktionen .btn--hell {
  color: var(--creme);
  border: 2px solid rgba(255, 249, 239, 0.55);
  padding: 15px 30px; font-weight: 700; background: none;
}
.hero__aktionen .btn--hell:hover { border-color: var(--creme); background: rgba(255, 249, 239, 0.14); }
.hero__welle {
  position: absolute; bottom: -1px; left: 0;
  width: 100%; height: clamp(46px, 5vw, 74px);
  display: block; pointer-events: none;
}

/* --------------------------------------------------------- Skizzen (01) */

.wanderung {
  background: var(--weiss);
  border-radius: var(--radius-gross);
  padding: clamp(28px, 4vw, 60px) clamp(22px, 3.4vw, 52px) clamp(18px, 2.4vw, 34px);
  box-shadow: var(--schatten-karte);
}
.wanderung__text { max-width: 940px; margin: 0 auto; text-align: center; }
.wanderung__text h2 { margin-bottom: 26px; }
.wanderung__absaetze {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(18px, 3vw, 44px);
  text-align: left;
}
.wanderung__absaetze .lead { max-width: 46ch; margin: 0; }

.skizzen { display: flex; flex-direction: column; align-items: stretch; gap: 4px; }
.skizzen--quer {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.2vw, 22px);
  margin-top: clamp(30px, 4vw, 56px);
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.skizzen__reihe { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: end; }
.skizze { margin: 0; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.skizze svg { width: 100%; max-width: 150px; overflow: visible; animation: wackeln 8s ease-in-out infinite; }
.skizze figcaption { text-align: center; opacity: 0; animation: tinte .7s ease-out forwards; }
.skizze__wort {
  display: block; font-family: var(--font-display); font-size: 21px;
  color: var(--tief); text-transform: uppercase; letter-spacing: 0.02em;
}
.skizze--gross svg { max-width: 200px; }
.skizze--gross .skizze__wort { font-size: 27px; }
.skizzen--quer .skizzen__reihe { gap: clamp(4px, 1vw, 18px); min-width: 0; flex: 1 1 46%; }
.skizzen--quer .skizze svg { max-width: 132px; }
.skizzen--quer .skizze__wort { font-size: clamp(13px, 1.5vw, 21px); }
.skizzen--quer .skizze--gross { flex: 0 1 auto; min-width: 0; }
.skizzen--quer .skizze--gross svg { max-width: clamp(110px, 15vw, 200px); }
.skizzen--quer .skizze--gross .skizze__wort { font-size: clamp(17px, 2vw, 27px); }
.pfeil-quer { width: clamp(34px, 6vw, 120px); flex: 0 0 auto; overflow: visible; align-self: center; }
.pfeil-quer--klein { width: clamp(28px, 4.6vw, 96px); }
.skizzen--quer .spass { align-self: center; flex: 0 0 auto; padding: 0 8px 22px; }
.skizzen--quer .spass__wort { font-size: clamp(26px, 4vw, 66px); }
.pfeile { width: 100%; max-width: 480px; margin: 0 auto; display: block; overflow: visible; }
.pfeil-klein { width: 46px; margin: 2px auto -4px; display: block; overflow: visible; }
.spass { position: relative; align-self: center; transform: rotate(-1.6deg); padding: 0 14px 22px; }
.spass__wort {
  display: block; font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 66px); line-height: 1;
  color: var(--tief); text-transform: uppercase;
  opacity: 0; animation: tinte .8s ease-out 4.4s forwards;
}
.spass__strich {
  position: absolute; left: -6px; right: -6px; bottom: 0;
  width: calc(100% + 12px); height: 26px; overflow: visible;
}

/* --------------------------------------------------------------- Galerie */

.galerie { padding-top: clamp(64px, 8vw, 108px); }
.galerie__kopf {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 14px; margin-bottom: 20px;
}
.galerie__kopf .label { font-size: 13px; }
.galerie__hinweis { font-size: 13.5px; font-weight: 700; color: var(--text-leise); }

/* Bilderwand im Masonry-Stil (CSS-Spalten) */
.galerie__wand {
  columns: 3;
  column-gap: clamp(10px, 1.4vw, 18px);
}
.galerie__bild {
  margin: 0 0 clamp(10px, 1.4vw, 18px);
  break-inside: avoid;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--hellblau);
  box-shadow: 0 12px 26px rgba(28, 74, 99, 0.14);
  transition: transform .25s ease, box-shadow .25s ease;
}
.galerie__bild:nth-child(4n + 1) { transform: rotate(-0.5deg); }
.galerie__bild:nth-child(4n + 3) { transform: rotate(0.5deg); }
.galerie__bild:hover {
  transform: translateY(-3px) rotate(0deg);
  box-shadow: 0 20px 36px rgba(28, 74, 99, 0.2);
}
.galerie__bild img { width: 100%; height: auto; display: block; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(12, 34, 46, 0.92);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(8px, 2vw, 24px);
  padding: clamp(14px, 3vw, 40px);
  animation: tinte .2s ease-out both;
}
.lightbox[hidden] { display: none; }
.lightbox__inhalt {
  margin: 0; max-width: min(1100px, 100%); max-height: 100%;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.lightbox__inhalt img {
  max-width: 100%; max-height: 78vh;
  border-radius: 14px; display: block;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}
.lightbox__inhalt figcaption {
  font-size: 15px; font-weight: 700; color: rgba(255, 249, 239, 0.85);
  text-align: center;
}
.lightbox__pfeil, .lightbox__zu {
  width: 52px; height: 52px; flex-shrink: 0;
  border: 2px solid rgba(255, 249, 239, 0.4);
  background: rgba(255, 249, 239, 0.08);
  color: var(--creme);
  border-radius: 50%;
  font-family: var(--font-text); font-size: 24px; font-weight: 800; line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.lightbox__pfeil:hover, .lightbox__zu:hover {
  background: rgba(255, 249, 239, 0.22);
  border-color: var(--creme);
}
.lightbox__zu { position: absolute; top: clamp(14px, 3vw, 30px); right: clamp(14px, 3vw, 30px); }

/* --------------------------------------------------------------- Termine */

.termine__kopf {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(38px, 4.5vw, 58px);
}
.termine__kopf h2 { font-size: clamp(36px, 4.6vw, 66px); margin-bottom: 0; }

.kalender__kopf {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 22px;
}
.kalender__monat {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--tief); text-transform: uppercase;
  text-align: center; line-height: 1.1;
}
.kalender__kopf .rund { width: 44px; height: 44px; background: var(--sand); }
.kalender__wochentage {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 9px; margin-bottom: 14px;
}
.kalender__wochentage span {
  text-align: center; font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-leise);
}
.kalender__tage { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.tag {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 15px; font-weight: 600; color: #8a9aa2;
}
.tag--tour {
  flex-direction: column; gap: 2px;
  background: var(--orange); color: var(--creme);
  box-shadow: 0 8px 16px rgba(226, 112, 58, 0.32);
}
.tag--tour .tag__zahl { font-family: var(--font-display); font-size: 19px; line-height: 1; }
.tag--tour .tag__zeit { font-size: 9.5px; font-weight: 800; }
.tag--voll {
  background: var(--text-leise); color: var(--creme);
  box-shadow: none; opacity: 0.85;
}
.kalender__legende {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 28px; padding-top: 22px;
  border-top: 1px dashed rgba(28, 74, 99, 0.22);
  font-size: 14.5px; font-weight: 700; color: var(--text-weich);
}
.kalender__legende-zeile { display: flex; align-items: center; gap: 10px; }
.kalender__punkt { width: 16px; height: 16px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.kalender__punkt--voll { background: var(--text-leise); }

.termin-liste { display: flex; flex-direction: column; gap: 16px; }
.termin {
  background: var(--weiss);
  border: 2px solid transparent;
  border-radius: var(--radius-klein);
  padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  box-shadow: var(--schatten-weich);
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.termin:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(28, 74, 99, 0.12);
}
.termin__links { display: flex; flex-direction: column; gap: 3px; }
.termin__tag {
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
}
.termin__datum { font-family: var(--font-display); font-size: 24px; line-height: 1.05; color: var(--tief); }
.termin__rechts { display: flex; align-items: center; gap: 16px; }
.termin__zeitblock { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.termin__zeit { font-size: 16px; font-weight: 800; color: var(--text-weich); white-space: nowrap; }
.termin__hinweis {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-leise); white-space: nowrap;
}
.termin__hinweis--voll {
  background: var(--text-leise); color: var(--creme);
  padding: 4px 10px; border-radius: 999px;
}
.termin__pfeil {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--sand); color: var(--orange);
  font-size: 19px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.termin--ausgebucht {
  cursor: default;
  background: var(--hellblau);
  opacity: 0.85;
}
.termin--ausgebucht:hover {
  border-color: transparent;
  transform: none;
  box-shadow: var(--schatten-weich);
}
.termin--ausgebucht .termin__datum,
.termin--ausgebucht .termin__zeit { color: var(--text-leise); }
.leer-hinweis {
  background: var(--hellblau); border-radius: var(--radius-klein);
  padding: 22px; font-size: 16px; font-weight: 600; color: var(--text-weich);
}

/* --------------------------------------------------------------- Tickets */

.tickets {
  background: var(--hellblau);
  border-radius: var(--radius-gross);
  padding: clamp(28px, 3.4vw, 46px);
  margin-top: var(--block);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 3.6vw, 56px);
  align-items: center;
}
.tickets__text { padding: clamp(4px, 1vw, 14px); }
.tickets h3 { font-size: clamp(34px, 4.2vw, 60px); margin: 20px 0 18px; }
.tickets__adresse {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.25; color: var(--orange); margin: 0 0 16px;
}
.tickets__beschreibung {
  font-size: 17.5px; line-height: 1.68; color: var(--text-weich);
  margin: 0 0 28px; max-width: 46ch;
}
.tickets__aktionen { display: flex; flex-wrap: wrap; gap: 12px; }
.karte-rahmen {
  border-radius: 22px; overflow: hidden;
  background: #c7dde6; min-height: 340px; height: 100%;
  box-shadow: 0 16px 34px rgba(28, 74, 99, 0.16);
}
.karte-rahmen iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.karte-platzhalter {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; height: 100%; min-height: 340px; padding: 32px;
}
.karte-platzhalter p { margin: 0; color: var(--tief); font-weight: 700; }
.karte-platzhalter__hinweis { font-weight: 400 !important; font-size: 14px; color: var(--text-weich) !important; max-width: 34ch; }
.karte-platzhalter__hinweis a { color: inherit; }

/* ------------------------------------------------------- Cookie-Banner -- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  max-width: 640px; margin: 0 auto;
  background: var(--tief); color: var(--creme);
  border-radius: 18px; padding: 20px 24px;
  box-shadow: 0 16px 40px rgba(18, 52, 70, 0.35);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
}
.cookie-banner p { margin: 0; font-size: 14.5px; line-height: 1.5; flex: 1 1 260px; }
.cookie-banner a { color: var(--gelb); text-decoration: underline; }
.cookie-banner__aktionen { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn--linie { color: var(--creme); border-color: rgba(255, 249, 239, 0.45); }
.cookie-banner .btn--linie:hover { color: var(--gelb); border-color: var(--gelb); }

/* ---------------------------------------------------------------- Preise */

.preise {
  background: var(--tief); color: var(--creme);
  border-radius: var(--radius);
  padding: clamp(32px, 3.8vw, 52px);
  margin-top: var(--block);
}
.preise .label { color: var(--gelb); }
.preise__liste {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(32px, 4vw, 64px);
  margin-top: 18px;
}
.preis {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; padding: 13px 0;
  border-bottom: 1px dashed rgba(255, 249, 239, 0.28);
}
.preis__wer { font-size: 16.5px; font-weight: 600; color: rgba(255, 249, 239, 0.9); }
.preis__betrag { font-family: var(--font-display); font-size: 26px; color: var(--gelb); }
.preise__fussnote {
  font-size: 14.5px; line-height: 1.6;
  color: rgba(255, 249, 239, 0.7); margin: 20px 0 0;
}

/* ------------------------------------------------------------------- FAQ */

.faq {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: clamp(30px, 3.4vw, 48px) clamp(30px, 3.4vw, 52px);
  margin-top: var(--block);
  box-shadow: 0 14px 30px rgba(28, 74, 99, 0.08);
}
.faq details { border-bottom: 1px dashed rgba(28, 74, 99, 0.25); padding: 6px 0 20px; }
.faq details:last-of-type { border-bottom: none; }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 18px; padding: 14px 0;
  font-size: 18px; font-weight: 800; color: var(--tief);
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus { color: var(--orange); font-size: 22px; line-height: 1; transition: transform .2s ease; }
.faq details[open] .plus { transform: rotate(45deg); }
.faq p {
  font-size: 16.5px; line-height: 1.7; color: var(--text-weich);
  margin: 4px 0 0; max-width: 62ch;
}

/* -------------------------------------------------------------- Über mich */

.portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-gross);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(28, 74, 99, 0.14);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ueber h2 { font-size: clamp(34px, 4.2vw, 60px); margin-bottom: 24px; }
.ueber p { font-size: 18px; line-height: 1.72; color: var(--text-weich); margin: 0 0 16px; max-width: 56ch; }
.ueber p:last-child { margin-bottom: 0; }
.zitat {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(26px, 3vw, 44px); line-height: 1.18;
  color: var(--orange); text-align: center;
  margin: clamp(38px, 4.5vw, 64px) auto 0;
  background: var(--weiss); border-radius: 28px;
  padding: clamp(30px, 3.4vw, 48px) clamp(26px, 3vw, 56px);
  box-shadow: 0 16px 34px rgba(28, 74, 99, 0.08);
  max-width: 34ch; text-wrap: balance;
}

/* ------------------------------------------------------------ Empfehlung */

.empfehlung { margin-top: var(--abschnitt); }
.empfehlung__box {
  background: var(--hellblau);
  border-radius: var(--radius-gross);
  padding: clamp(32px, 4.5vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 32px; align-items: center;
}
.empfehlung h3 { font-size: clamp(28px, 3.2vw, 46px); line-height: 1.02; margin: 0 0 14px; }
.empfehlung__aktionen { display: flex; flex-wrap: wrap; gap: 12px; }

.verweis-generation {
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid rgba(28, 74, 99, 0.14);
  text-align: center;
}
.verweis-generation p { margin: 0; font-size: 16px; color: var(--text-weich); }
.verweis-generation a { color: var(--tief); font-weight: 700; white-space: nowrap; }
.verweis-generation a:hover { color: var(--orange); }

/* --------------------------------------------------------------- Kontakt */

.kontakt { padding-bottom: clamp(72px, 8vw, 120px); }
.kontakt h2 { font-size: clamp(34px, 4.2vw, 60px); margin-bottom: 26px; }
.kontakt__daten {
  display: flex; flex-direction: column; gap: 20px;
  font-size: 17.5px; color: var(--text-weich);
}
.kontakt__daten span.mini {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-leise); margin-bottom: 6px;
}
.kontakt__daten a { font-weight: 700; }

.formular {
  background: var(--weiss);
  border-radius: 28px;
  padding: clamp(26px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--schatten-karte);
}
.feld {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-leise);
}
.feld input, .feld textarea {
  font-family: var(--font-text);
  border: 2px solid rgba(28, 74, 99, 0.18);
  border-radius: 14px;
  background: var(--sand);
  padding: 13px 14px;
  font-size: 16px; font-weight: 600; color: var(--text);
  outline: none;
  transition: border-color .2s ease;
}
.feld textarea { font-weight: 500; resize: vertical; }
.feld input:focus, .feld textarea:focus { border-color: var(--orange); }
.formular__hinweis { font-size: 14px; font-weight: 600; color: var(--text-leise); }
.formular .btn { align-self: flex-start; }

/* ----------------------------------------------------- Reservierungs-Popup */

.popup {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(18, 52, 70, 0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(14px, 3vw, 36px);
  animation: tinte .25s ease-out both;
}
.popup[hidden] { display: none; }
.popup__box {
  background: var(--sand);
  border-radius: var(--radius-gross);
  padding: clamp(24px, 3vw, 42px);
  width: min(660px, 100%);
  max-height: 88vh; overflow: auto;
  box-shadow: 0 30px 70px rgba(10, 30, 42, 0.4);
}
.popup__kopf {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 18px; margin-bottom: 26px;
}
.popup__kopf h3 { font-size: clamp(26px, 3vw, 40px); line-height: 1.02; margin: 16px 0 6px; }
.popup__zeit { font-size: 16px; font-weight: 800; color: var(--orange); }
.popup__kopf .rund { width: 44px; height: 44px; }
.popup .feld input, .popup .feld textarea { background: var(--weiss); }
.popup__formular { display: flex; flex-direction: column; gap: 22px; }
.popup__formular[hidden], .popup__danke[hidden] { display: none; }
.anzahl { display: flex; flex-wrap: wrap; gap: 8px; }
.anzahl__btn {
  min-width: 52px; padding: 13px 8px;
  border: 2px solid rgba(28, 74, 99, 0.18);
  background: var(--weiss); color: var(--tief);
  border-radius: 14px; cursor: pointer;
  font-family: var(--font-display); font-size: 20px; line-height: 1;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.anzahl__btn:hover { border-color: var(--orange); }
.anzahl__btn.aktiv { background: var(--orange); border-color: var(--orange); color: var(--creme); }
.anzahl-gruppe > .label { display: block; margin-bottom: 10px; }
.popup__absenden { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.popup__summe { font-size: 15px; font-weight: 700; color: var(--text-leise); }
.popup__danke {
  background: var(--weiss); border-radius: 22px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 14px 30px rgba(28, 74, 99, 0.08);
}
.popup__danke h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2;
  color: var(--orange); margin: 0 0 12px;
}
.popup__danke p { font-size: 16.5px; line-height: 1.65; color: var(--text-weich); margin: 0 0 24px; }

/* ------------------------------------------------------------------ Footer */

.fuss { background: var(--tief); color: rgba(255, 249, 239, 0.8); margin-top: var(--abschnitt); }
.fuss__inner {
  padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 34px; align-items: start;
}
.fuss__name { font-family: var(--font-display); font-size: 28px; color: var(--creme); text-transform: uppercase; }
.fuss p { font-size: 15px; line-height: 1.65; margin: 12px 0 0; max-width: 34ch; }
.fuss nav { display: flex; flex-direction: column; gap: 11px; font-size: 15px; font-weight: 700; }
.fuss a { color: rgba(255, 249, 239, 0.8); }
.fuss a:hover { color: var(--gelb); }
.fuss__treffpunkt {
  font-size: 13px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 249, 239, 0.55); line-height: 2;
}
.fuss__unten { border-top: 1px solid rgba(255, 249, 239, 0.16); }
.fuss__unten div {
  padding-top: 20px; padding-bottom: 20px;
  font-size: 13px; font-weight: 700; color: rgba(255, 249, 239, 0.5);
}

/* ------------------------------------------------------- Mobil (Handy) --- */

@media (max-width: 700px) {
  /* Preise: auf dem Smartphone lieber alle Zeilen untereinander */
  .preise__liste { grid-template-columns: 1fr; }

  /* Kompakterer Kopf auf dem Smartphone braucht weniger Sprung-Abstand */
  html { scroll-padding-top: 76px; }

  /* Kompakter Kopf: nur Marke + Menü-Schalter in der Sticky-Leiste */
  .kopf__inner { min-height: 64px; padding-top: 9px; padding-bottom: 9px; flex-wrap: nowrap; position: relative; }
  .nav-schalter { display: flex; margin-left: auto; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px var(--rand) 18px;
    background: rgba(253, 244, 228, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 2px solid rgba(28, 74, 99, 0.12);
    box-shadow: 0 18px 30px rgba(28, 74, 99, 0.12);
  }
  .kopf.offen .nav { display: flex; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; margin-right: 0; }
  .nav__links a { padding: 12px 2px; font-size: 17px; }
  .nav__insta { align-self: flex-start; margin-top: 10px; }
  .marke__name { font-size: 19px; }

  /* Skizzenkette: kompakt, Trio in zwei Zeilen (2 + 1) */
  .skizzen--quer { flex-direction: column; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
  .skizzen--quer .skizzen__reihe {
    flex: 1 1 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 14px;
    justify-items: center;
    align-items: end;
  }
  .skizzen--quer .skizzen__reihe .skizze:nth-child(3) { grid-column: 1 / -1; }
  .skizzen--quer .skizze svg { max-width: 92px; }
  .skizzen--quer .skizze--gross svg { max-width: 106px; }
  .skizzen--quer .skizze__wort { font-size: 17px; }
  .skizzen--quer .skizze--gross .skizze__wort { font-size: 21px; }
  /* Pfeile zeigen nach unten */
  .pfeil-quer, .pfeil-quer--klein { width: 38px; transform: rotate(90deg); margin: 4px 0; }
  .pfeil-quer path { stroke-width: 3.4; }
  .skizzen--quer .spass { padding-bottom: 16px; }
  .skizzen--quer .spass__wort { font-size: 38px; }

  /* Kalender: Kreise dürfen in die Lücken wachsen, damit die Zeit passt */
  .kalender__tage { gap: 9px; }
  .tag--tour { margin: -4px; }
  .tag--tour .tag__zahl { font-size: 18px; }
  .tag--tour .tag__zeit { font-size: 9.5px; letter-spacing: -0.02em; }

  /* Galerie: zwei Spalten */
  .galerie__wand { columns: 2; }
  /* Lightbox: Pfeile aus dem Fluss nehmen, Bild nutzt die volle Breite */
  .lightbox { gap: 0; padding: 14px 14px 84px; }
  .lightbox__inhalt { max-width: 100%; width: 100%; }
  .lightbox__inhalt img { max-height: 72vh; width: auto; }
  .lightbox__pfeil {
    position: absolute;
    bottom: 18px;
    width: 52px; height: 52px;
  }
  .lightbox__pfeil--links { left: 26%; }
  .lightbox__pfeil--rechts { right: 26%; }
}

/* ------------------------------------------------------------- Animationen */

@keyframes skizze { to { stroke-dashoffset: 0; } }
@keyframes tinte {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
@keyframes wackeln {
  0%, 100% { transform: rotate(-0.7deg); }
  50% { transform: rotate(0.7deg); }
}

/* Gezeichnete Linien: Verzögerung je Pfad über --d */
.zeichnen {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: skizze 1.6s ease-out var(--d, 0s) forwards;
}

/* ---------------------------------------------------- Rechtstexte (Seiten) */
.rechtstext { padding-bottom: var(--abschnitt); max-width: 74ch; }
.rechtstext h1 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); color: var(--tief); margin: 0 0 8px; }
.rechtstext .rechtstext__stand { color: var(--text-leise); font-size: 14px; margin: 0 0 40px; }
.rechtstext h2 { font-size: 24px; color: var(--tief); margin: 40px 0 12px; }
.rechtstext h2:first-of-type { margin-top: 0; }
.rechtstext h3 { font-size: 18px; color: var(--tief); margin: 24px 0 8px; }
.rechtstext p { font-size: 16px; line-height: 1.72; color: var(--text-weich); margin: 0 0 14px; }
.rechtstext ul { margin: 0 0 14px; padding-left: 22px; color: var(--text-weich); }
.rechtstext li { font-size: 16px; line-height: 1.68; margin-bottom: 6px; }
.rechtstext a { color: var(--orange); }
.rechtstext strong { color: var(--text); }

/* --------------------------------------------------- Die erste Generation */
.gedenken__kopf {
  padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 4vw, 48px);
  text-align: center;
}
.gedenken__vorspann { color: var(--text-leise); font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin: 0 0 6px; }
.gedenken__name {
  font-family: var(--font-display); font-weight: 400; text-transform: none;
  font-size: clamp(38px, 5.4vw, 72px); color: var(--tief); margin: 0 0 10px; line-height: 1.05;
}
.gedenken__jahre { color: var(--text-leise); font-size: 17px; margin: 0; }
.gedenken__zitat {
  max-width: 60ch; margin: 28px auto 0; font-size: 19px; line-height: 1.6;
  color: var(--text-weich); font-style: italic;
}

.gedenken__zeile { margin-bottom: clamp(40px, 6vw, 72px); }
.gedenken__zeile:last-of-type { margin-bottom: 0; }
.gedenken__zeile .portrait { align-self: center; }
.gedenken__zeile:has(.portrait:first-child) { grid-template-columns: minmax(min(180px, 100%), 300px) minmax(0, 1fr); }
.gedenken__zeile:has(.portrait:last-child) { grid-template-columns: minmax(0, 1fr) minmax(min(180px, 100%), 300px); }

.gedenken__text p { font-size: 17px; line-height: 1.8; color: var(--text-weich); margin: 0 0 18px; }
.gedenken__text p:last-child { margin-bottom: 0; }
.gedenken__platzhalter {
  border: 1px dashed rgba(28, 74, 99, 0.3); border-radius: var(--radius);
  padding: 22px 26px; color: var(--text-leise); font-size: 15px; font-style: italic;
}

.gedenken__schluss {
  max-width: 62ch; margin: 0 auto; text-align: center;
  padding: clamp(8px, 2vw, 16px) 0 clamp(64px, 8vw, 96px);
}
.gedenken__schluss p {
  font-size: 19px; line-height: 1.7; color: var(--text-weich); font-style: italic; margin: 0;
}

@media (max-width: 700px) {
  .gedenken__zeile,
  .gedenken__zeile:has(.portrait:first-child),
  .gedenken__zeile:has(.portrait:last-child) { grid-template-columns: 1fr; }
}
