/* ============================================================
   Hundepension Sonnleiten — „Alpenwiese im Bilderbuch-Stil"
   Pastellgrün & Orange · Comic-Illustrationen · warm & einladend
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --paper:       #FDF9F0;
  --paper-deep:  #F7F0E0;
  --sky:         #DDF0F4;
  --sky-deep:    #C8E6ED;

  --green-50:    #EEF7EE;
  --green-100:   #E0F1E2;
  --green-200:   #C9E8CD;
  --green-300:   #A9D8B2;
  --green-400:   #82C293;
  --green-500:   #58A06C;
  --green-600:   #3E835A;
  --green-700:   #2F6B47;
  --green-800:   #265538;
  --green-900:   #1E4630;

  --orange-50:   #FFF3E4;
  --orange-100:  #FFE8D1;
  --orange-200:  #FFD9B3;
  --orange-300:  #FCC489;
  --orange-400:  #F5A85C;
  --orange-500:  #EE8E3C;
  --orange-600:  #D97429;
  --orange-700:  #B45A1B;

  --ink:         #33402F;
  --ink-soft:    #5D6B57;
  --line:        #2F4A38;

  --font-display: "Grandstander", system-ui, sans-serif;
  --font-body:    "Quicksand", system-ui, sans-serif;
  --font-hand:    "Caveat", cursive;

  /* handgezeichnet wirkende Eckenradien */
  --r-wonky:   1.4rem 1.1rem 1.5rem 1rem;
  --r-wonky-2: 1rem 1.5rem 1.05rem 1.4rem;

  --shadow-soft: 0 10px 30px -12px rgba(47, 74, 56, .25);
  --shadow-pop:  0.35rem 0.45rem 0 rgba(47, 74, 56, .16);

  --wrap: 72rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  /* fängt den seitlichen Überstand des geschlossenen Fly-out-Drawers ab
     (nur clip – schafft im Gegensatz zu hidden keinen Scroll-Container,
     Sticky-Header bleibt funktionsfähig) */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--green-800);
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: .005em;
}

p { margin: 0 0 1em; }
a { color: var(--green-700); }

strong { font-weight: 700; color: var(--green-800); }

::selection { background: var(--orange-200); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: .35rem;
}

.wrap {
  width: min(var(--wrap), 100% - 2.5rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  z-index: 200;
  background: var(--green-700);
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: 0 0 .8rem .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: top .25s;
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  border: 2.5px solid var(--line);
  box-shadow: var(--shadow-pop);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s;
  cursor: pointer;
  line-height: 1.2;
}
.btn:hover  { transform: translate(.12rem, .18rem); box-shadow: .2rem .25rem 0 rgba(47,74,56,.16); }
.btn:active { transform: translate(.35rem, .45rem); box-shadow: 0 0 0 rgba(47,74,56,.16); }
.btn svg { width: 1.25em; height: 1.25em; flex: none; }

.btn-primary { background: var(--orange-500); color: #fff; }
.btn-primary:hover { background: var(--orange-600); color: #fff; }
.btn-green   { background: var(--green-600); color: #fff; }
.btn-green:hover { background: var(--green-700); color: #fff; }
.btn-ghost   { background: #fff; color: var(--green-800); }
.btn-ghost:hover { background: var(--green-50); }
.btn-big { font-size: 1.2rem; padding: 1rem 2.1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(47, 74, 56, .08);
}
/* Glas-Effekt über Pseudoelement, damit der Header keinen Containing-Block
   für das fixe Mobil-Menü erzeugt (sonst hängt der Drawer am Header statt am Viewport). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(253, 249, 240, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .55rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.brand-badge { width: 3.1rem; height: 3.1rem; flex: none; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .brand-top {
  font-family: var(--font-hand);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--orange-600);
  letter-spacing: .02em;
}
.brand-text .brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--green-800);
}

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav > a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  color: var(--green-800);
  text-decoration: none;
  padding: .45rem .75rem;
  border-radius: 999px;
  transition: background .2s, color .2s;
}
.main-nav > a:not(.btn):hover { background: var(--green-100); }
.main-nav > a.is-active { background: var(--green-200); }
.main-nav > .btn { margin-left: .5rem; padding: .55rem 1.15rem; font-size: .95rem; }

/* Fly-out-Bausteine (nur mobil sichtbar) */
.nav-overlay, .drawer-head, .drawer-foot { display: none; }
body.nav-open { overflow: hidden; }

.nav-toggle {
  display: none;
  background: var(--green-100);
  border: 2.5px solid var(--line);
  border-radius: .9rem;
  width: 3rem; height: 3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.nav-toggle .icon-close { display: none; }
.nav-open .nav-toggle .icon-burger { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, var(--sky) 78%, var(--sky) 100%);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}
.hero-hand {
  font-family: var(--font-hand);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: var(--orange-600);
  display: inline-block;
  rotate: -2deg;
  margin-bottom: .4rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.6vw, 4.1rem);
  font-weight: 800;
  max-width: 24ch;
  margin-inline: auto;
}
.hero h1 .squiggle { color: var(--orange-500); position: relative; white-space: nowrap; }
.hero h1 .squiggle svg {
  position: absolute;
  left: 0; bottom: -.18em;
  width: 100%; height: .3em;
  overflow: visible;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 52ch;
  margin-inline: auto;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
  margin-top: 1.6rem;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .6rem;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  border: 2px solid rgba(47, 74, 56, .14);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--green-800);
}
.hero-chips svg { width: 1.05em; height: 1.05em; color: var(--orange-500); }

.hero-scene {
  position: relative;
  margin-top: clamp(-1rem, 1vw, 1rem);
  line-height: 0;
}
.hero-scene svg {
  width: 100%;
  height: clamp(300px, 38vw, 540px);
}

/* Szenen-Animationen */
.sun-rays { transform-origin: 1150px 130px; animation: spin 70s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.cloud-a { animation: drift 26s ease-in-out infinite alternate; }
.cloud-b { animation: drift 34s ease-in-out infinite alternate-reverse; }
.cloud-c { animation: drift 42s ease-in-out infinite alternate; }
@keyframes drift { from { transform: translateX(-40px); } to { transform: translateX(50px); } }

.tail-wag    { animation: wag 1.1s ease-in-out infinite; }
.tail-wag-2  { animation: wag 1.4s ease-in-out infinite .3s; }
@keyframes wag {
  0%, 100% { transform: rotate(-7deg); }
  50%      { transform: rotate(11deg); }
}

.dog-bob   { animation: dogbob 3.4s ease-in-out infinite; transform-box: fill-box; }
.dog-bob-2 { animation: dogbob 2.8s ease-in-out infinite .6s; transform-box: fill-box; }
.dog-sway  { animation: dogsway 4.2s ease-in-out infinite; transform-box: fill-box; transform-origin: 50% 100%; }
@keyframes dogbob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@keyframes dogsway {
  0%, 100% { transform: rotate(-1.2deg); }
  50%      { transform: rotate(1.2deg); }
}

.butterfly { animation: flutter 7s ease-in-out infinite; }
@keyframes flutter {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(-14px, -16px) rotate(-6deg); }
  55%      { transform: translate(8px, -26px) rotate(5deg); }
  80%      { transform: translate(-6px, -8px) rotate(-4deg); }
}
.butterfly .wing-l { animation: flapL .35s ease-in-out infinite alternate; }
.butterfly .wing-r { animation: flapR .35s ease-in-out infinite alternate; }
@keyframes flapL { from { transform: scaleX(1); } to { transform: scaleX(.45); } }
@keyframes flapR { from { transform: scaleX(.45); } to { transform: scaleX(1); } }

.bubble-pop { animation: bubblepop 7s cubic-bezier(.34,1.56,.64,1) infinite; }
@keyframes bubblepop {
  0%, 6%, 94%, 100% { transform: scale(0); }
  14%, 88% { transform: scale(1); }
}

/* ---------- Sektionen allgemein ---------- */
section { position: relative; }
.section-pad { padding-block: clamp(3.5rem, 7vw, 5.5rem); }

.sec-head { text-align: center; max-width: 46rem; margin-inline: auto; }
.sec-head .eyebrow {
  font-family: var(--font-hand);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--orange-600);
  display: inline-block;
  rotate: -1.5deg;
}
.sec-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
}
.sec-head .sec-intro { color: var(--ink-soft); font-weight: 600; }

.paw-divider {
  display: flex;
  justify-content: center;
  gap: .9rem;
  margin: .8rem 0 1.4rem;
}
.paw-divider svg { width: 1.5rem; height: 1.5rem; color: var(--green-400); }
.paw-divider svg:nth-child(2) { rotate: 14deg; translate: 0 -4px; color: var(--orange-400); }
.paw-divider svg:nth-child(3) { rotate: -10deg; }

/* Wellige Übergänge */
.wave { display: block; width: 100%; line-height: 0; }
.wave svg { width: 100%; height: clamp(40px, 6vw, 90px); display: block; }

/* ---------- Leistungen ---------- */
.bg-green { background: var(--green-100); }
.bg-paper-deep { background: var(--paper-deep); }
.bg-sky { background: var(--sky); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.card {
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: var(--r-wonky);
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-pop);
  position: relative;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.card:hover { transform: translateY(-.35rem) rotate(-.4deg); }
.card:nth-child(2n):hover { transform: translateY(-.35rem) rotate(.4deg); }
.card .card-illu {
  width: 5.2rem; height: 5.2rem;
  margin-bottom: 1rem;
  object-fit: contain;
}
.card h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.card p { color: var(--ink-soft); margin-bottom: 0; font-weight: 600; }
.card .card-hand {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--orange-600);
  display: block;
  margin-top: .8rem;
  rotate: -1deg;
}

.audience {
  margin-top: 2.6rem;
  text-align: center;
}
.audience h3 { font-size: 1.3rem; }
.audience-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  padding: 0;
  list-style: none;
  margin: 1rem 0 0;
}
.audience-chips li {
  background: var(--orange-100);
  border: 2px solid var(--orange-400);
  color: var(--orange-700);
  font-weight: 700;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.audience-chips svg { width: 1.1em; height: 1.1em; }

/* ---------- Ein Tag bei uns ---------- */
.day-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 2.5rem;
}
.day-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.day-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: var(--r-wonky-2);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-pop);
}
.day-list .day-ico {
  flex: none;
  width: 3rem; height: 3rem;
  border-radius: .9rem;
  display: grid;
  place-items: center;
  background: var(--green-100);
  border: 2px solid var(--green-300);
}
.day-list li:nth-child(2n) .day-ico { background: var(--orange-100); border-color: var(--orange-300); }
.day-list .day-ico svg { width: 1.7rem; height: 1.7rem; }
.day-list h3 { font-size: 1.15rem; margin: 0 0 .15rem; }
.day-list p { margin: 0; color: var(--ink-soft); font-weight: 600; font-size: .98rem; }

.photo-stack { position: relative; display: grid; gap: 1.3rem; }
.polaroid {
  margin: 0;
  background: #fff;
  padding: .8rem .8rem 1rem;
  border: 2.5px solid var(--line);
  border-radius: .9rem;
  box-shadow: var(--shadow-soft);
  rotate: -2.2deg;
  position: relative;
}
.polaroid img { border-radius: .5rem; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.polaroid figcaption {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  text-align: center;
  padding-top: .55rem;
  color: var(--ink);
}
.polaroid.tilt-r { rotate: 1.8deg; }
.polaroid .tape {
  position: absolute;
  top: -.85rem; left: 50%;
  translate: -50% 0;
  width: 6.5rem; height: 1.7rem;
  background: var(--orange-200);
  opacity: .85;
  rotate: -3deg;
  border-radius: .2rem;
  box-shadow: 0 2px 6px rgba(47,74,56,.12);
}
.polaroid.tilt-r .tape { rotate: 2.5deg; background: var(--green-200); }

/* ---------- Preise ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  margin-top: 2.4rem;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: 1.3rem;
  box-shadow: var(--shadow-pop);
  padding: 2rem 1.7rem 1.7rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.price-card:hover { transform: translateY(-.4rem); }
.price-card.is-featured {
  background: var(--green-700);
  border-color: var(--green-900);
  color: #fff;
}
.price-card.is-featured h3, .price-card.is-featured .price-time { color: #fff; }
.price-card .badge {
  position: absolute;
  top: -1.1rem; left: 50%;
  translate: -50% 0;
  rotate: -2deg;
  background: var(--orange-500);
  color: #fff;
  border: 2.5px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  padding: .25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: .1rem; }
.price-time {
  font-weight: 700;
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 1rem;
}
.price-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--orange-500);
  margin-bottom: .2rem;
}
.price-card.is-featured .price-value { color: var(--orange-300); }
.price-unit { font-size: .95rem; font-weight: 700; color: var(--ink-soft); margin-bottom: 1.1rem; }
.price-card.is-featured .price-unit { color: var(--green-200); }
.price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 .5rem;
  display: grid;
  gap: .45rem;
  text-align: left;
  font-weight: 600;
  font-size: .98rem;
}
.price-feats li { display: flex; gap: .55rem; align-items: flex-start; }
.price-feats svg { width: 1.15rem; height: 1.15rem; flex: none; margin-top: .2rem; color: var(--green-500); }
.price-card.is-featured .price-feats svg { color: var(--orange-300); }

.price-notes {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}
.price-note {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: var(--orange-50);
  border: 2px dashed var(--orange-400);
  border-radius: 1rem;
  padding: .95rem 1.1rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
}
.price-note svg { width: 1.5rem; height: 1.5rem; flex: none; color: var(--orange-600); margin-top: .1rem; }
.price-note p { margin: 0; }

/* ---------- Galerie ---------- */
.gallery {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.gallery figure {
  margin: 0;
  border: 2.5px solid var(--line);
  border-radius: var(--r-wonky);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-pop);
  position: relative;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.gallery figure:hover { transform: scale(1.03) rotate(-.6deg); z-index: 2; }
.gallery figure:nth-child(2n):hover { transform: scale(1.03) rotate(.6deg); }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; }
.gallery figure.is-wide { grid-column: span 2; }
.gallery figure.is-wide img { aspect-ratio: 2.06 / 1; }

/* ---------- Zusatzleistungen ---------- */
.extra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2.4rem;
}
.extra-card {
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: var(--r-wonky-2);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
}
.extra-card .extra-img { position: relative; min-height: 15rem; }
.extra-card .extra-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.extra-card .extra-body { padding: 1.7rem 1.6rem; }
.extra-card h3 { font-size: 1.45rem; display: flex; align-items: center; gap: .6rem; }
.extra-card h3 svg { width: 1.5rem; height: 1.5rem; color: var(--orange-500); flex: none; }
.extra-card p { color: var(--ink-soft); font-weight: 600; }
.extra-price-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .9rem; }
.extra-price-tags span {
  background: var(--green-100);
  border: 2px solid var(--green-400);
  color: var(--green-800);
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  padding: .4rem .95rem;
}
.extra-card .hand-note {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--orange-600);
  display: block;
  margin-top: .9rem;
  rotate: -1deg;
}

/* ---------- Über mich ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-top: 2.4rem;
}
.about-photos {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.2rem;
  align-items: start;
}
.about-photos .polaroid img { aspect-ratio: 4 / 4.4; }
.about-photos .polaroid.small { rotate: 2.6deg; margin-top: 3.2rem; }
.about-photos .polaroid.small img { aspect-ratio: 4 / 4.8; }
.about h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.cred-list {
  list-style: none;
  padding: 0;
  margin: .8rem 0 0;
  display: grid;
  gap: .55rem;
}
.cred-list li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 600; }
.cred-list svg { width: 1.3rem; height: 1.3rem; flex: none; margin-top: .22rem; color: var(--green-500); }
.about-quote {
  font-family: var(--font-hand);
  font-size: clamp(1.45rem, 2.6vw, 1.8rem);
  line-height: 1.35;
  color: var(--green-700);
  border-left: .35rem solid var(--orange-400);
  padding-left: 1.1rem;
  margin: 1.4rem 0;
  rotate: -.5deg;
}

/* ---------- Ablauf ---------- */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 2.6rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.5rem, 1fr));
  gap: 1.4rem;
}
.steps li {
  counter-increment: step;
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: var(--r-wonky);
  box-shadow: var(--shadow-pop);
  padding: 2.4rem 1.5rem 1.5rem;
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  top: -1.3rem; left: 1.2rem;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  background: var(--orange-500);
  border: 2.5px solid var(--line);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  rotate: -4deg;
}
.steps h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.steps p { margin: 0; color: var(--ink-soft); font-weight: 600; font-size: .98rem; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 50rem; margin: 2.4rem auto 0; display: grid; gap: .9rem; }
details.faq {
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: var(--r-wonky-2);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
details.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--green-800);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .faq-ico {
  flex: none;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--green-100);
  border: 2px solid var(--green-400);
  display: grid;
  place-items: center;
  transition: rotate .3s, background .3s;
}
details.faq summary .faq-ico svg { width: 1.1rem; height: 1.1rem; color: var(--green-700); }
details.faq[open] summary .faq-ico { rotate: 45deg; background: var(--orange-200); border-color: var(--orange-400); }
details.faq .faq-body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-weight: 600; }
details.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Kontakt ---------- */
.contact-band {
  background: var(--green-700);
  position: relative;
  overflow: hidden;
}
.contact-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 2.5px, transparent 2.5px);
  background-size: 34px 34px;
  pointer-events: none;
}
.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact-band h2, .contact-band h3 { color: #fff; }
.contact-band .eyebrow { color: var(--orange-300); }
.contact-band p { color: var(--green-100); font-weight: 600; }
.contact-band strong { color: #fff; }
.contact-band .contact-card strong { color: var(--green-800); }
.contact-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin: .4rem 0 1rem;
  transition: color .2s;
}
.contact-phone:hover { color: var(--orange-300); }
.contact-phone svg { width: 1.1em; height: 1.1em; color: var(--orange-400); }
.contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.2rem; }
.contact-hint {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  background: rgba(255,255,255,.1);
  border: 2px dashed rgba(255,255,255,.35);
  border-radius: 1rem;
  padding: .95rem 1.1rem;
  margin-top: 1.6rem;
  max-width: 34rem;
}
.contact-hint svg { width: 1.4rem; height: 1.4rem; flex: none; color: var(--orange-300); margin-top: .15rem; }
.contact-hint p { margin: 0; font-size: .96rem; }

.contact-card {
  background: var(--paper);
  border: 2.5px solid var(--line);
  border-radius: var(--r-wonky);
  box-shadow: .45rem .55rem 0 rgba(0,0,0,.18);
  padding: 1.9rem 1.7rem;
  rotate: 1.2deg;
}
.contact-card h3 { color: var(--green-800); font-size: 1.3rem; }
.contact-card address {
  font-style: normal;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.contact-card p { color: var(--ink-soft) !important; font-weight: 600; font-size: .98rem; }
.contact-card .btn { margin-top: .4rem; }
.contact-card hr {
  border: none;
  border-top: 2px dashed var(--green-300);
  margin: 1.2rem 0;
}
.contact-card .mini-label {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--orange-600);
  display: block;
  margin-bottom: .2rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: var(--green-200);
  padding: 3rem 0 7rem;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.site-footer .brand-text .brand-name { color: #fff; }
.site-footer .brand-text .brand-top { color: var(--orange-300); }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: .7rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .4rem; }
.site-footer a { color: var(--green-200); text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: var(--orange-300); text-decoration: underline; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.footer-paws { display: flex; gap: .6rem; }
.footer-paws svg { width: 1.2rem; height: 1.2rem; color: var(--green-600); }
.footer-ig { display: inline-flex; align-items: center; gap: .45rem; }
.footer-ig svg { width: 1.2rem; height: 1.2rem; }

/* ---------- Mobile Call-Bar ---------- */
.call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  gap: .7rem;
  padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(253, 249, 240, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 2px solid rgba(47,74,56,.12);
}
.call-bar .btn { flex: 1; justify-content: center; padding: .8rem 1rem; }

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity .7s ease, translate .7s cubic-bezier(.22,.9,.3,1);
}
.reveal.is-visible { opacity: 1; translate: 0 0; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

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

/* ---------- Ratgeber ---------- */
.article-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1.4rem;
  margin-top: 2.2rem;
}
a.card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
}
a.card-link h3 { transition: color .2s; }
a.card-link:hover h3 { color: var(--orange-600); }
.card-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  align-self: flex-start;
  background: var(--orange-100);
  border: 2px solid var(--orange-300);
  color: var(--orange-700);
  font-weight: 700;
  font-size: .82rem;
  padding: .2rem .8rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}
.card-tag svg { width: 1em; height: 1em; }
.card-more {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}
.card-more svg { width: 1.1em; height: 1.1em; transition: translate .2s; }
a.card-link:hover .card-more svg { translate: .25rem 0; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: .9rem;
  font-weight: 700;
  justify-content: center;
}
.breadcrumbs li { display: inline-flex; align-items: center; gap: .35rem; }
.breadcrumbs li + li::before { content: "›"; color: var(--orange-500); font-weight: 800; }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--green-700); text-decoration: underline; }
.breadcrumbs [aria-current] { color: var(--green-800); }

.article-meta {
  text-align: center;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .92rem;
  margin-top: .4rem;
}
.prose .lead { font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.prose table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.2rem 0 1.6rem;
  border: 2.5px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  font-size: .98rem;
}
.prose th, .prose td { padding: .7rem .95rem; text-align: left; }
.prose thead th {
  background: var(--green-200);
  color: var(--green-900);
  font-family: var(--font-display);
  font-weight: 700;
}
.prose tbody tr:nth-child(even) { background: var(--green-50); }
.prose tbody td { border-top: 1.5px solid var(--green-100); }

.cta-box {
  background: var(--green-100);
  border: 2.5px solid var(--line);
  border-radius: var(--r-wonky);
  box-shadow: var(--shadow-pop);
  padding: 1.6rem 1.5rem;
  margin: 2.4rem 0;
  text-align: center;
}
.cta-box .cta-hand {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--orange-600);
  display: block;
  rotate: -1deg;
}
.cta-box h2, .cta-box h3 { margin-top: .2rem; }
.cta-box .hero-cta { margin-top: 1.1rem; }

.check-list { list-style: none; padding: 0; display: grid; gap: .55rem; }
.check-list li { display: flex; gap: .6rem; align-items: flex-start; }
.check-list li::before {
  content: "✓";
  flex: none;
  width: 1.35rem; height: 1.35rem;
  margin-top: .2rem;
  border: 2px solid var(--green-400);
  border-radius: .4rem;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 800;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Interaktives Formular (Annahmeschein) ---------- */
.f {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-weight: 600;
  min-width: 0;
}
.f-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.f-label .req { color: var(--orange-600); }
.f-in {
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 2px dotted var(--ink-soft);
  border-radius: 0;
  padding: .3rem .1rem;
  min-height: 2.1rem;
  width: 100%;
  min-width: 0;
}
.f-in:focus {
  outline: none;
  border-bottom: 2.5px solid var(--green-600);
  background: var(--green-50);
}
.f-in:user-invalid { border-bottom-color: #C24B2A; }
textarea.f-in { resize: vertical; min-height: 3.2rem; line-height: 1.5; }
select.f-in { cursor: pointer; }

.f-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem 1.6rem; }
.f-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 38rem) { .f-grid { grid-template-columns: minmax(0, 1fr); } .f-grid .span-2 { grid-column: auto; } }

.f-checks {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  align-items: center;
  min-height: 2.1rem;
  font-weight: 600;
}
.f-checks label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
}
.f-checks input, .agree input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--green-600);
  cursor: pointer;
}
.agree {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-weight: 600;
  background: var(--green-50);
  border: 2px dashed var(--green-300);
  border-radius: .9rem;
  padding: .8rem 1rem;
  margin-bottom: .7rem;
}
.agree input { margin-top: .2rem; flex: none; }

/* Unterschriften-Pad */
.sig-box {
  border: 2.5px dashed var(--green-500);
  border-radius: 1rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.sig-box canvas {
  display: block;
  width: 100%;
  height: 11rem;
  touch-action: none;
  cursor: crosshair;
}
.sig-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: var(--ink-soft);
  font-family: var(--font-hand);
  font-size: 1.5rem;
  opacity: .7;
  transition: opacity .25s;
}
.sig-box.has-ink .sig-hint { opacity: 0; }
.sig-tools {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.sig-clear {
  background: none;
  border: none;
  color: var(--orange-700);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: .2rem;
}
.form-actions { text-align: center; margin-top: 1.8rem; }
.form-actions .btn[disabled] { opacity: .6; pointer-events: none; }
.form-note { font-size: .85rem; color: var(--ink-soft); font-weight: 600; margin-top: .8rem; }
.hp-field { position: absolute !important; left: -5000px !important; top: -5000px !important; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Galerie-Lightbox ---------- */
.gallery figure { cursor: zoom-in; }
.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(24, 56, 39, .78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lb.is-open { opacity: 1; pointer-events: auto; }
.lb-frame {
  position: relative;
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: 1rem;
  padding: .9rem .9rem 1rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .55);
  max-width: min(58rem, 94vw);
  rotate: -1.2deg;
  scale: .82;
  transition: scale .32s cubic-bezier(.34,1.56,.64,1), rotate .32s cubic-bezier(.34,1.56,.64,1);
}
.lb.is-open .lb-frame { scale: 1; rotate: -.6deg; }
.lb-frame::before {
  content: "";
  position: absolute;
  top: -.95rem; left: 50%;
  translate: -50% 0;
  width: 7rem; height: 1.8rem;
  background: var(--orange-200);
  opacity: .9;
  rotate: -2.5deg;
  border-radius: .2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.lb-img {
  display: block;
  max-width: 100%;
  max-height: min(72vh, 60rem);
  border-radius: .55rem;
  background: var(--green-50);
}
.lb-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding-top: .6rem;
  font-family: var(--font-hand);
  font-size: 1.45rem;
  color: var(--ink);
  text-align: center;
}
.lb-caption svg { width: 1.15rem; height: 1.15rem; color: var(--orange-500); flex: none; }
.lb-count {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--green-100);
  border-radius: 999px;
  padding: .15rem .7rem;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  z-index: 210;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  border: 2.5px solid var(--line);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-pop);
  transition: transform .2s, background .2s;
  padding: 0;
}
.lb-close { top: 1rem; right: 1rem; background: var(--orange-400); }
.lb-close:hover { background: var(--orange-500); transform: rotate(90deg); }
.lb-prev, .lb-next { top: 50%; translate: 0 -50%; background: var(--paper); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: var(--green-100); transform: scale(1.08); }
.lb-prev svg, .lb-next svg, .lb-close svg { width: 1.4rem; height: 1.4rem; }
@media (max-width: 44rem) {
  .lb-prev, .lb-next { top: auto; bottom: 1.1rem; translate: 0 0; }
  .lb-prev { left: 18%; }
  .lb-next { right: 18%; }
  .lb-frame { max-width: 96vw; }
  .lb-img { max-height: 62vh; }
}

/* ---------- Danke-Seite ---------- */
.thanks {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 0;
}
.thanks h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
.thanks .bande {
  max-width: min(46rem, 92%);
  margin: 1.5rem auto 0;
}
.thanks-card {
  max-width: 36rem;
  margin: 0 auto;
  background: #fff;
  border: 2.5px solid var(--line);
  border-radius: var(--r-wonky);
  box-shadow: var(--shadow-pop);
  padding: 1.6rem 1.5rem;
  text-align: left;
}
.thanks-card ul { margin: .4rem 0 0; padding-left: 1.2rem; }

/* ---------- Unterseiten (AGB etc.) ---------- */
.subpage-hero {
  background: linear-gradient(180deg, var(--paper), var(--green-100));
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
  text-align: center;
}
.subpage-hero h1 { font-size: clamp(2rem, 5vw, 3rem); }
.prose {
  max-width: 46rem;
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .45rem; }
.prose .note-box {
  background: var(--orange-50);
  border: 2px dashed var(--orange-400);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  font-weight: 600;
}
.back-home { margin-top: 2.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 64rem) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .extra-grid { grid-template-columns: 1fr; }
  .extra-card { grid-template-columns: 1fr 1.4fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 52rem) {
  .nav-toggle { display: inline-flex; }

  /* Abdunkelung hinter dem Fly-out */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(30, 70, 48, .45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
  }
  .nav-open .nav-overlay { opacity: 1; pointer-events: auto; }

  /* Fly-out-Drawer von rechts */
  .main-nav {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: auto;
    z-index: 120;
    width: min(21.5rem, 88vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
    background: var(--paper);
    border-left: 2.5px solid var(--line);
    border-radius: 1.6rem 0 0 1.6rem;
    padding: 1.1rem 1.2rem calc(1.2rem + env(safe-area-inset-bottom));
    box-shadow: -24px 0 60px -24px rgba(30, 70, 48, .55);
    overflow-y: auto;
    transform: translateX(110%);
    visibility: hidden;
    transition: transform .42s cubic-bezier(.22,.9,.3,1.04), visibility 0s linear .42s;
  }
  .nav-open .main-nav {
    transform: translateX(0);
    visibility: visible;
    transition: transform .42s cubic-bezier(.22,.9,.3,1.04);
  }

  /* Kopfzeile im Drawer: Logo + Schließen */
  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding-bottom: .9rem;
    margin-bottom: .7rem;
    border-bottom: 2px dashed var(--green-300);
  }
  .drawer-head .brand-badge { width: 2.7rem; height: 2.7rem; }
  .drawer-head .brand-text .brand-top { font-size: .95rem; }
  .drawer-head .brand-text .brand-name { font-size: 1.2rem; }
  .drawer-close {
    flex: none;
    width: 2.8rem; height: 2.8rem;
    border-radius: .9rem;
    border: 2.5px solid var(--line);
    background: var(--green-100);
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 0;
    transition: background .2s, rotate .25s;
  }
  .drawer-close:hover { background: var(--orange-200); rotate: 90deg; }
  .drawer-close svg { width: 1.3rem; height: 1.3rem; }

  /* Menüpunkte: groß, gestaffelt einfliegend */
  .main-nav > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .8rem .9rem;
    font-size: 1.16rem;
    border-radius: .9rem;
    opacity: 0;
    translate: 26px 0;
    transition: opacity .3s ease, translate .3s cubic-bezier(.22,.9,.3,1), background .2s;
  }
  .main-nav > a:not(.btn)::after {
    content: "›";
    color: var(--orange-400);
    font-weight: 800;
    font-size: 1.25em;
    line-height: 1;
  }
  .nav-open .main-nav > a { opacity: 1; translate: 0 0; }
  .nav-open .main-nav > a:nth-of-type(1) { transition-delay: .10s; }
  .nav-open .main-nav > a:nth-of-type(2) { transition-delay: .14s; }
  .nav-open .main-nav > a:nth-of-type(3) { transition-delay: .18s; }
  .nav-open .main-nav > a:nth-of-type(4) { transition-delay: .22s; }
  .nav-open .main-nav > a:nth-of-type(5) { transition-delay: .26s; }
  .nav-open .main-nav > a:nth-of-type(6) { transition-delay: .30s; }
  .nav-open .main-nav > a:nth-of-type(7) { transition-delay: .34s; }

  /* Desktop-Telefon-Pille im Drawer ausblenden – unten gibt's die große Version */
  .main-nav > .btn { display: none; }

  /* Kontaktblock unten im Drawer */
  .drawer-foot {
    display: grid;
    gap: .65rem;
    margin-top: auto;
    background: var(--green-100);
    border: 2px solid var(--green-300);
    border-radius: 1.2rem;
    padding: 1.1rem 1rem 1rem;
    text-align: center;
    opacity: 0;
    translate: 0 18px;
    transition: opacity .35s ease .3s, translate .35s ease .3s;
  }
  .nav-open .drawer-foot { opacity: 1; translate: 0 0; }
  .drawer-foot .drawer-hand {
    font-family: var(--font-hand);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--orange-600);
    rotate: -1.5deg;
  }
  .drawer-foot .btn { justify-content: center; }
  .drawer-foot address {
    font-style: normal;
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink-soft);
    line-height: 1.5;
  }
  .drawer-foot address strong { color: var(--green-800); }

  .day-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .photo-stack { grid-template-columns: 1fr 1fr; align-items: start; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-card { rotate: 0deg; }
}

@media (max-width: 38rem) {
  body { font-size: 1rem; }
  .brand-text .brand-top { font-size: .92rem; }
  .brand-text .brand-name { font-size: 1.12rem; }
  .photo-stack { grid-template-columns: 1fr; }
  .polaroid figcaption { font-size: 1.1rem; }
  .about-photos { gap: .9rem; }
  .about-photos .polaroid.small { margin-top: 2rem; }
  .prose table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .prose th, .prose td { padding: .55rem .7rem; font-size: .92rem; }
  .extra-card { grid-template-columns: 1fr; }
  .extra-card .extra-img { min-height: 13rem; }
  .gallery { gap: .8rem; }
  .gallery figure.is-wide img { aspect-ratio: 16 / 9; }
  .call-bar { display: flex; }
  .site-footer { padding-bottom: 8.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn-big { width: 100%; justify-content: center; }
}

/* ====== Cookie-Einwilligung (Banner + Footer-Link) ====== */
.cc-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(160%);
  width: min(46rem, calc(100% - 1.6rem));
  z-index: 95;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: var(--r-wonky);
  box-shadow: var(--shadow-pop);
  padding: 1.05rem 1.2rem;
  opacity: 0;
  transition: transform .45s cubic-bezier(.2, .8, .3, 1), opacity .35s ease;
}
.cc-banner.is-open { transform: translateX(-50%) translateY(0); opacity: 1; }
.cc-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .9rem 1.25rem;
}
.cc-text { flex: 1 1 17rem; }
.cc-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}
.cc-text p { margin: .35rem 0 0; font-size: .92rem; line-height: 1.5; color: var(--ink-soft); }
.cc-text a { color: var(--green-700); font-weight: 700; }
.cc-actions { display: flex; gap: .6rem; flex: 0 0 auto; }
.cc-actions .btn { padding: .62rem 1.25rem; font-size: .95rem; }
.cc-settings {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--green-200);
  text-decoration: none;
  cursor: pointer;
}
.cc-settings:hover { color: var(--orange-300); text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  .cc-banner { transition: opacity .25s ease; }
}
/* Hinweis: Über der mobilen Call-Bar wird das Banner per JS exakt positioniert
   (consent.js → positionAboveCallBar), damit es sie nie überdeckt. */
@media (max-width: 30rem) {
  .cc-actions { width: 100%; }
  .cc-actions .btn { flex: 1 1 auto; justify-content: center; }
}
