/* ============================================================
   HUNDESTUBE BREMEN
   Design: warm & handgemacht
   Siehe design.md für Tokens, Komponenten und Konventionen.
   ============================================================ */


/* ---------------------------------------------------------------
   1. LOCAL FONTS (DSGVO — keine Google-Fonts-CDN)
   --------------------------------------------------------------- */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Caveat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/Caveat-VariableFont_wght.ttf') format('truetype-variations');
}


/* ---------------------------------------------------------------
   2. TOKENS
   --------------------------------------------------------------- */

:root {
  /* — Warm-erdige Basis — */
  --bg:           #f4ede1;   /* Oat */
  --bg-soft:      #ede0c8;   /* Sand — alternierende Sektionen */
  --bg-card:      #fbf6ec;   /* Karten, Polaroids */
  --ink:          #2a1f17;   /* Headlines */
  --ink-soft:     #5c4a3a;   /* Body */
  --muted:        #8a7a68;   /* Captions, Meta */

  /* — Marken-Akzente — */
  --green:        #5e7d3a;   /* primärer Akzent: CTAs, Links, Highlights */
  --green-d:      #455c2a;   /* Hover */
  --olive:        #7a8650;   /* sekundär: Pfoten, Tape-Variation */
  --terracotta:   #b3502e;   /* Wärme-Pop (sehr sparsam) */
  --caramel:      #c8956d;   /* Washi-Tape */
  --line:         #e2d4ba;   /* Linien, Form-Borders */

  /* — Type — */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-hand:    'Caveat', 'Brush Script MT', cursive;

  /* — Spacing & Radii — */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;

  /* — Shadows — */
  --shadow-sm: 0 4px 14px rgba(60, 40, 20, 0.08);
  --shadow-md: 0 18px 40px rgba(60, 40, 20, 0.14);
  --shadow-lg: 0 30px 60px rgba(60, 40, 20, 0.18);
}


/* ---------------------------------------------------------------
   3. BASE / RESET
   --------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-soft);
  background-color: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--green-d); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  font-variation-settings: "opsz" 72;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-variation-settings: "opsz" 120, "SOFT" 50;
}
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

strong { color: var(--ink); font-weight: 600; }
em { font-style: italic; }

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .polaroid, .journal-entry, .polaroid-hero { transform: none !important; }
}


/* ---------------------------------------------------------------
   4. LAYOUT HELPERS
   --------------------------------------------------------------- */

.container { width: min(1180px, 92%); margin-inline: auto; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}
.section-alt { background: var(--bg-soft); }
.section > .container,
.dogs-section > .container {
  position: relative;
  z-index: 2;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-head p { font-size: 1.05rem; margin-top: 1rem; }
.centered { text-align: center; }


/* ---------------------------------------------------------------
   5. COMPONENTS
   --------------------------------------------------------------- */

/* Buttons --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: #fff;
  padding: 0.9em 1.7em;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none;
  line-height: 1.2;
}
.btn:hover {
  background: var(--green-d);
  border-color: var(--green-d);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-small { padding: 0.55em 1.2em; font-size: 0.88rem; }


/* Eyebrows --------------------------------------------------- */
.eyebrow-hand {
  font-family: var(--font-hand);
  font-size: clamp(2rem, 2.2vw, 2.25rem);
  font-weight: 700;
  color: var(--green);
  display: inline-block;
  position: relative;
  transform: rotate(-1.5deg);
  margin-bottom: 0.55rem;
  line-height: 1;
}
.eyebrow-hand::after {
  content: "";
  position: absolute;
  left: 0.1em;
  right: 0.05em;
  bottom: -0.16em;
  height: 6px;
  border-bottom: 2px solid rgba(94, 125, 58, 0.28);
  border-radius: 50%;
  transform: rotate(1deg);
}


/* Pfoten als wiederkehrender Akzent -------------------------- */
.scatter-paw {
  position: absolute;
  color: var(--olive);
  opacity: 0.24;
  pointer-events: none;
  z-index: 1;
  fill: currentColor;
  display: none;
}

.hero::after,
.section::after,
.alltag-section::after,
.dogs-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' fill='%237a8650'%3E%3Cellipse cx='30' cy='35' rx='8' ry='11' transform='rotate(-15 30 35)'/%3E%3Cellipse cx='50' cy='25' rx='8' ry='11'/%3E%3Cellipse cx='70' cy='35' rx='8' ry='11' transform='rotate(15 70 35)'/%3E%3Cellipse cx='82' cy='55' rx='7' ry='9' transform='rotate(30 82 55)'/%3E%3Cpath d='M 30 60 Q 30 80 50 85 Q 70 85 70 60 Q 70 50 50 50 Q 30 50 30 60 Z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' fill='%237a8650'%3E%3Cellipse cx='30' cy='35' rx='8' ry='11' transform='rotate(-15 30 35)'/%3E%3Cellipse cx='50' cy='25' rx='8' ry='11'/%3E%3Cellipse cx='70' cy='35' rx='8' ry='11' transform='rotate(15 70 35)'/%3E%3Cellipse cx='82' cy='55' rx='7' ry='9' transform='rotate(30 82 55)'/%3E%3Cpath d='M 30 60 Q 30 80 50 85 Q 70 85 70 60 Q 70 50 50 50 Q 30 50 30 60 Z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg' fill='%237a8650'%3E%3Cellipse cx='30' cy='35' rx='8' ry='11' transform='rotate(-15 30 35)'/%3E%3Cellipse cx='50' cy='25' rx='8' ry='11'/%3E%3Cellipse cx='70' cy='35' rx='8' ry='11' transform='rotate(15 70 35)'/%3E%3Cellipse cx='82' cy='55' rx='7' ry='9' transform='rotate(30 82 55)'/%3E%3Cpath d='M 30 60 Q 30 80 50 85 Q 70 85 70 60 Q 70 50 50 50 Q 30 50 30 60 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size:
    clamp(110px, 9vw, 170px),
    clamp(58px, 5vw, 92px),
    clamp(38px, 3.4vw, 64px);
  background-position:
    3% 78%,
    92% 16%,
    86% 58%;
  opacity: 0.16;
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  background-size: clamp(112px, 9vw, 174px), clamp(62px, 5vw, 96px), clamp(42px, 3.5vw, 66px);
  background-position: 90% 14%, 45% 80%, 8% 10%;
  opacity: 0.16;
}
.section-alt::after {
  background-position: 4% 78%, 92% 18%, 9% 38%;
}
.ueber-section::after {
  background-position: 4% 82%, 90% 26%, 7% 54%;
}
.alltag-section::after {
  background-position: 93% 14%, 4% 78%, 88% 58%;
  opacity: 0.13;
}
.dogs-section::after {
  background-position: 4% 18%, 92% 82%, 88% 36%;
  opacity: 0.14;
}
.kontakt-section::after {
  background-position: 4% 82%, 94% 18%, 8% 48%;
}

/* Hero-Pfoten */
.hero-paw.one   { top: 8%;  right: 6%;  width: 104px; transform: rotate(20deg);  opacity: 0.34; }
.hero-paw.two   { bottom: 12%; left: 42%; width: 62px; transform: rotate(-25deg); opacity: 0.3; }
.hero-paw.three { top: 4%;  left: 8%;  width: 54px; transform: rotate(-15deg); opacity: 0.2; }

/* Alltag-Pfoten */
.alltag-paw.one   { top: 12%; right: 4%; width: 82px; transform: rotate(35deg);  opacity: 0.2; }
.alltag-paw.two   { bottom: 18%; left: 3%; width: 66px; transform: rotate(-20deg); opacity: 0.18; }
.alltag-paw.three { top: 48%; right: 7%; width: 52px; transform: rotate(10deg);  opacity: 0.15; }

/* Dogs-Pfoten */
.dogs-paw.one   { top: 8%; left: 5%; width: 92px; transform: rotate(-30deg); opacity: 0.2; color: var(--green); }
.dogs-paw.two   { bottom: 8%; right: 6%; width: 74px; transform: rotate(40deg);  opacity: 0.21; }
.dogs-paw.three { top: 30%; right: 3%; width: 50px; transform: rotate(15deg);  opacity: 0.15; }


/* Polaroids -------------------------------------------------- */
.polaroid {
  background: var(--bg-card);
  padding: 0.9rem 0.9rem 1.4rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.polaroid-caption {
  text-align: center;
  padding: 1.1rem 0.4rem 0;
}
.polaroid .name {
  font-family: var(--font-hand);
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 0.3rem;
}
.polaroid .role {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  margin: 0;
  line-height: 1.3;
}

/* Foto-Platzhalter (bis echte Fotos da sind) */
.photo-placeholder {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.photo-placeholder img,
.hero-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-placeholder svg {
  width: 55%;
  height: 55%;
  opacity: 0.25;
}
.ph-1 { background: linear-gradient(135deg, #a89478 0%, #8a7a60 100%); color: #5c4a3a; }
.ph-2 { background: linear-gradient(135deg, #b3502e 0%, #8f3e22 100%); color: #2a1f17; }
.ph-3 { background: linear-gradient(135deg, #c8956d 0%, #a87a52 100%); color: #5c4a3a; }
.ph-4 { background: linear-gradient(135deg, #7a8650 0%, #5e7d3a 100%); color: #2a1f17; }
.polaroid.memorial .photo-placeholder::after {
  content: "♥";
  position: absolute;
  top: 10px;
  left: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
}


/* Washi-Tape (Utility) --------------------------------------- */
/* Großes Tape für das Hero-Polaroid */
.polaroid-hero .hero-tape {
  width: 150px;
  height: 30px;
  top: -14px;
  z-index: 5;
  transform: translateX(-50%) rotate(-2.5deg);
  background: rgba(200, 149, 109, 0.6);
}

.tape {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 90px;
  height: 22px;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(200, 149, 109, 0.5);
  border-left: 1px dashed rgba(0, 0, 0, 0.06);
  border-right: 1px dashed rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}
.tape--wide {
  width: 150px;
  height: 30px;
  top: -14px;
  z-index: 5;
}


/* Section-Bridge (Pfoten-Trail zwischen Sektionen) ----------- */
.section-bridge {
  position: relative;
  height: 150px;
  max-width: 280px;
  margin: 0 auto;
  pointer-events: none;
}
.bridge-paw {
  position: absolute;
  fill: var(--olive);
  display: block;
}
.bridge-paw.p1 { top: 0;   left: 38%; width: 22px; opacity: 0.28; transform: rotate(-18deg); }
.bridge-paw.p2 { top: 18%; left: 56%; width: 26px; opacity: 0.4;  transform: rotate(15deg); }
.bridge-paw.p3 { top: 38%; left: 36%; width: 30px; opacity: 0.55; transform: rotate(-12deg); }
.bridge-paw.p4 { top: 60%; left: 58%; width: 34px; opacity: 0.7;  transform: rotate(18deg); }
.bridge-label {
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-hand);
  color: var(--green);
  font-size: 1.35rem;
  transform: rotate(-2deg);
  line-height: 1;
}


/* ---------------------------------------------------------------
   6. HEADER / NAV
   --------------------------------------------------------------- */

.site-header {
  padding: 1.2rem 0 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-soft);
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(60, 40, 20, 0.10);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.brand img { height: 40px; width: auto; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.btn { color: #fff; }
.nav-links a.btn:hover { color: #fff; }


/* ---------------------------------------------------------------
   7. SECTIONS
   --------------------------------------------------------------- */

/* HERO ------------------------------------------------------- */
.hero {
  padding: 1rem 0 4.25rem;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-greeting {
  font-family: var(--font-hand);
  font-size: clamp(1.95rem, 2.2vw, 2.25rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: -0.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform: rotate(-2deg);
}
.hero h1 { margin: 0.5rem 0 0.6rem; }
.hero-subline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
  max-width: 34rem;
  margin: 0 0 1.4rem;
}
.hero h1 .accent {
  color: var(--green);
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 120;
}
.hero-lead {
  font-size: clamp(1.18rem, 1.5vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
/* WhatsApp-Icon in der Navigation (neben Kontakt) */
.nav-links .nav-wa {
  margin-left: -1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg-card);
  transition: background 0.2s, transform 0.2s;
}
.nav-links .nav-wa svg { width: 22px; height: 22px; }
.nav-links .nav-wa:hover {
  background: var(--green-d);
  color: var(--bg-card);
  transform: translateY(-1px);
}
.hero-cta .btn {
  min-height: 52px;
  padding: 0.95em 1.65em;
  box-shadow: 0 10px 24px rgba(69, 92, 42, 0.16);
}
.hero-cta .btn-ghost {
  background: rgba(251, 246, 236, 0.72);
  color: var(--green-d);
  border-color: rgba(94, 125, 58, 0.45);
  box-shadow: inset 0 0 0 1px rgba(251, 246, 236, 0.5);
}
.hero-cta .btn-ghost:hover {
  background: var(--bg-card);
  color: var(--ink);
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(60, 40, 20, 0.1);
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: -0.3rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  max-width: 34rem;
}
.hero-badges li {
  display: flex;
  align-items: center;
  font-size: 0.96rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
}
.hero-badges li + li::before {
  content: "•";
  color: var(--green);
  margin: 0 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
}
.hero-badges span {
  display: inline-block;
  position: relative;
}
.hero-badges span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 3px;
  background: rgba(94, 125, 58, 0.24);
  border-radius: 999px;
  transform: rotate(-1deg);
}

/* Hero-Polaroid */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.polaroid-hero {
  background: var(--bg-card);
  padding: 1rem 1rem 1.05rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
  transition: transform 0.4s ease;
  max-width: 420px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.polaroid-hero:hover { transform: rotate(0deg); }
.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  color: var(--olive);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.hero-photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border: 1px solid rgba(251, 246, 236, 0.45);
  pointer-events: none;
}
.hero-photo-placeholder svg {
  width: 56%;
  height: 56%;
  opacity: 0.26;
  transform: rotate(-7deg);
}
.polaroid-hero .caption {
  text-align: center;
  font-family: var(--font-hand);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
  padding: 0.2rem 0.4rem 0.3rem;
  transform: rotate(-1.5deg);
}


/* ALLTAG (Journal — abgerissene Notizbuchseite, nahtlos eingebettet) */
.alltag-section {
  padding: 5rem 0 5rem;
  /* Negative Margin: Sektion überlappt vorherige um clip-Tiefe (25px)
     → der Sand-Hintergrund von Über uns scheint durch die torn-transparenten
     Stellen oben durch. Gleiche Logik unten: Sand-Hintergrund von Team. */
  margin: -28px 0 -28px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 31px,
      rgba(42, 31, 23, 0.06) 31px,
      rgba(42, 31, 23, 0.06) 32px
    );
  /* Deutlich sichtbare Papier-Rip-Kanten oben und unten */
  clip-path: polygon(
    0 28px, 4% 8px, 8% 24px, 13% 6px, 17% 22px, 22% 10px, 26% 26px,
    31% 5px, 35% 20px, 40% 8px, 44% 25px, 49% 12px, 53% 22px, 58% 6px,
    62% 24px, 67% 10px, 71% 26px, 76% 8px, 80% 21px, 85% 11px, 89% 24px,
    94% 7px, 100% 20px,
    100% calc(100% - 20px), 94% calc(100% - 7px), 89% calc(100% - 24px),
    85% calc(100% - 11px), 80% calc(100% - 21px), 76% calc(100% - 8px),
    71% calc(100% - 26px), 67% calc(100% - 10px), 62% calc(100% - 24px),
    58% calc(100% - 6px), 53% calc(100% - 22px), 49% calc(100% - 12px),
    44% calc(100% - 25px), 40% calc(100% - 8px), 35% calc(100% - 20px),
    31% calc(100% - 5px), 26% calc(100% - 26px), 22% calc(100% - 10px),
    17% calc(100% - 22px), 13% calc(100% - 6px), 8% calc(100% - 24px),
    4% calc(100% - 8px), 0 calc(100% - 28px)
  );
}
.alltag-section > .container {
  position: relative;
  z-index: 2;
}

/* Roter Marginal-Strich links */
.alltag-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(2rem, calc((100% - 1140px) / 2 + 1.5rem));
  width: 1px;
  background: rgba(179, 80, 46, 0.25);
}

.journal {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.journal-entry {
  padding: 1.6rem 1.8rem 1.4rem;
  margin-bottom: 2.8rem;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  align-items: start;
  transition: transform 0.3s ease;
}
/* Karten-Hintergrund als ::before, damit Boomer dahinter (z-index) sitzen kann */
.journal-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  z-index: -1;
}
.journal-entry:nth-child(odd)  { transform: rotate(-0.5deg); }
.journal-entry:nth-child(even) { transform: rotate(0.6deg); margin-left: 2.5rem; }
.journal-entry:nth-child(3)    { margin-left: -1.5rem; transform: rotate(-0.8deg); }
.journal-entry:hover           { transform: rotate(0deg) translateY(-3px); }

/* Hunde gucken per Hover hinter den Karten hervor – vollständig via data-peek-dir gesteuert */
@media (hover: hover) and (min-width: 900px) {
  .journal-entry::after {
    content: "";
    position: absolute;
    width: 122px;
    height: 132px;
    background-image: var(--peek, url("assets/boomer_outline.webp"));
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: -2;
    transition: transform 0.4s ease;
  }
  .journal-entry[data-peek-dir="right"]::after {
    right: calc(-110px - var(--peek-extra-side, 0px));
    left: auto;
    top: 50%;
    transform: translateY(-50%) translateX(-170px) rotate(90deg);
  }
  .journal-entry[data-peek-dir="right"]:hover::after {
    transform: translateY(-50%) translateX(var(--peek-pull, 0px)) rotate(90deg);
  }
  .journal-entry[data-peek-dir="left"]::after {
    left: calc(-110px - var(--peek-extra-side, 0px));
    right: auto;
    top: 50%;
    transform: translateY(-50%) translateX(170px) rotate(-90deg);
  }
  .journal-entry[data-peek-dir="left"]:hover::after {
    transform: translateY(-50%) translateX(var(--peek-pull, 0px)) rotate(-90deg);
  }
  .journal-entry[data-peek-dir="top"]::after {
    left: var(--peek-x, 40%);
    right: auto;
    top: 0;
    opacity: 0;
    transform: translateX(-50%) translateY(0px);
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .journal-entry[data-peek-dir="top"]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(calc(-110px - var(--peek-extra-top, 0px) + var(--peek-pull-v, 0px)));
  }
}

.no-peek-transition::after { transition: none !important; }

.journal-entry .tape {
  top: -12px;
  left: 50%;
}
.journal-entry:nth-child(even) .tape {
  left: 30%;
  transform: translateX(-50%) rotate(4deg);
  background: rgba(107, 122, 79, 0.4);
}
.journal-entry:nth-child(3) .tape {
  left: 70%;
  transform: translateX(-50%) rotate(-5deg);
}

.entry-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.entry-icon svg { width: 32px; height: 32px; }
.entry-body { padding-top: 0.1rem; }
.entry-time {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: inline-block;
  transform: rotate(-1.5deg);
}
.entry-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.entry-desc {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}


/* Sanfte Wellen-Übergänge ----------------------------------- */
.ueber-section::before,
.dogs-section::before,
.preise-section::before,
.faq-section::before,
.barf-section::before,
.shop-section::before,
.testimonials-section::before,
.platz-section::before,
.kontakt-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 50px;
  clip-path: polygon(
    0 0, 100% 0,
    100% 50%, 93.75% 42%, 87.5% 35%, 81.25% 42%, 75% 50%,
    68.75% 58%, 62.5% 65%, 56.25% 58%, 50% 50%, 43.75% 42%,
    37.5% 35%, 31.25% 42%, 25% 50%, 18.75% 58%, 12.5% 65%,
    6.25% 58%, 0 50%
  );
  z-index: 1;
}

.wave-from-oat::before { background: var(--bg); }
.wave-from-sand::before { background: var(--bg-soft); }


/* STIMMEN / TESTIMONIALS ------------------------------------ */
.testimonials-section {
  position: relative;
  overflow: hidden;
}
.testi-paw.one { top: 10%; left: 4%; width: 84px; transform: rotate(-28deg); opacity: 0.16; }
.testi-paw.two { bottom: 10%; right: 5%; width: 66px; transform: rotate(34deg); opacity: 0.16; }

.testimonial-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.testimonial-card {
  position: relative;
  background: var(--bg-card);
  border-radius: 0;
  box-shadow: var(--shadow-md);
  padding: 2.2rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:nth-child(3n+1) { transform: rotate(-0.8deg); }
.testimonial-card:nth-child(3n+2) { transform: rotate(0.6deg); }
.testimonial-card:nth-child(3n)   { transform: rotate(-0.4deg); }

.testimonial-card--featured {
  grid-column: 1 / -1;
  max-width: 680px;
  margin-inline: auto;
  width: 100%;
  transform: rotate(-0.4deg);
}
/* Kleber-Farbe abwechseln: Caramel / Olivgrün */
.testimonial-card:nth-child(even) .tape {
  background: rgba(122, 134, 80, 0.42);
  transform: translateX(-50%) rotate(4deg);
}
.testimonial-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.6;
  color: var(--olive);
  opacity: 0.55;
  margin-bottom: 0.3rem;
}
.testimonial-card blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  flex: 1;
}
.testimonial-by {
  margin-top: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(60, 40, 20, 0.18);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-avatar svg { width: 28px; height: 28px; }
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.testimonial-by .t-author {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
}
.testimonial-by .t-dog {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green);
  transform: rotate(-1.5deg);
  align-self: flex-start;
}


/* TIERISCHE KOLLEGEN (Polaroid-Stack) ----------------------- */
.dogs-section {
  background: var(--bg);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}
.polaroid-grid .polaroid:nth-child(1) { transform: rotate(-3deg); }
.polaroid-grid .polaroid:nth-child(2) { transform: rotate(2deg); }
.polaroid-grid .polaroid:nth-child(3) { transform: rotate(-1.5deg); }
.polaroid-grid .polaroid:nth-child(4) { transform: rotate(3deg); }
.polaroid-grid .polaroid:nth-child(even) .tape {
  background: rgba(122, 134, 80, 0.42);
  transform: translateX(-50%) rotate(4deg);
}
.polaroid-grid .polaroid:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}


/* ÜBER UNS --------------------------------------------------- */
.ueber-section {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.ueber-grid { align-items: start; }

.ueber-text .eyebrow-hand { margin-bottom: 0.6rem; }
.ueber-text h2 { margin-bottom: 1rem; }
.ueber-text .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

/* Feature-Karten — horizontale 3-Spalten-Reihe, alle gleich hoch */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 3.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}
.feature-card {
  background: var(--bg-card);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
}
.feature-card:nth-child(1) { transform: rotate(-0.6deg); }
.feature-card:nth-child(2) { transform: rotate(0.5deg) translateY(-6px); }
.feature-card:nth-child(3) { transform: rotate(-0.4deg); }
.feature-card:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.feature-card .tape {
  top: -10px;
  left: 50%;
  width: 78px;
  height: 18px;
  transform: translateX(-50%) rotate(-4deg);
}
.feature-card:nth-child(2) .tape {
  transform: translateX(-50%) rotate(4deg);
  background: rgba(122, 134, 80, 0.4);
}
.feature-card:nth-child(3) .tape {
  transform: translateX(-50%) rotate(-3deg);
}
.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  font-weight: 500;
  line-height: 1.25;
}
.feature-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Sidebar — flex column statt grid, sonst kollabiert die Bridge auf 0 Breite
   (alle Bridge-Kinder sind position:absolute → grid-track wird 0 breit) */
.ueber-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-self: start;
}
.hours-card {
  background: var(--bg-card);
  padding: 1.6rem 1.8rem;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transform: rotate(-0.4deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hours-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-md);
}
.hours-card h3 {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(94, 74, 58, 0.18);
  font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours-list span { color: var(--ink-soft); }
.hours-list strong { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hours-card .small {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1.1rem 0 0;
  line-height: 1.55;
}
.hours-cta {
  margin: 1.3rem 0 0;
  font-family: var(--font-hand);
  color: var(--green);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transform: rotate(-1deg);
}
.hours-cta a {
  color: inherit;
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
}
.hours-cta a:hover {
  color: var(--green-d);
  transform: translateY(2px);
}

/* Notice „wichtig" — als angepinnte Notiz unter den Features (volle Reihen-Breite) */
.notice-card {
  background: #ead9c7;
  padding: 1.6rem 2rem 1.4rem;
  position: relative;
  z-index: 2;
  transform: rotate(-0.5deg);
  box-shadow: var(--shadow-md);
  border-radius: 2px;
  margin: 2.5rem 0 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.notice-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.notice-card .tape {
  top: -14px;
  left: 50%;
  width: 150px;
  height: 30px;
  background: rgba(200, 149, 109, 0.6);
  transform: translateX(-50%) rotate(-3deg);
}
.notice-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.notice-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--terracotta);
}
.notice-label-wrap {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.notice-label {
  font-family: var(--font-hand);
  color: var(--terracotta);
  font-size: 1.7rem;
  font-weight: 700;
  display: inline-block;
  transform: rotate(-2deg);
  line-height: 1;
}
.notice-underline {
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -6px;
  width: calc(100% + 8px);
  height: 8px;
  color: var(--terracotta);
  opacity: 0.7;
}
.notice-card p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}
.notice-card p:last-child { margin-bottom: 0; }
.notice-card .notice-small {
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(179, 80, 46, 0.3);
}

/* Über uns Pfoten */
.ueber-paw.one   { top: 8%;    right: 6%;  width: 76px; transform: rotate(25deg);  opacity: 0.22; }
.ueber-paw.two   { bottom: 18%; left: 4%;  width: 64px; transform: rotate(-18deg); opacity: 0.19; }
.ueber-paw.three { top: 48%;   left: 3%;  width: 52px; transform: rotate(15deg);  opacity: 0.15; }

.section-pointer,
.alltag-pointer {
  text-align: center;
  margin: 3rem 0 0;
  line-height: 1;
}
.section-pointer a,
.alltag-pointer a {
  font-family: var(--font-hand);
  color: var(--green);
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  transform: rotate(-2deg);
  transition: transform 0.2s, color 0.2s;
}
.section-pointer a:hover,
.alltag-pointer a:hover {
  color: var(--green-d);
  transform: rotate(-2deg) translateY(-3px);
}


/* TEAM Kim &amp; Sarah ----------------------------------------- */
.team-section {
  padding: 5rem 0 4.5rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team-members {
  display: grid;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.team-member {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.team-member:nth-of-type(2) {
  grid-template-columns: 1.3fr 1fr;
}
.team-member:nth-of-type(2) .team-photo { order: 2; }
.team-member:nth-of-type(2) .team-bio   { order: 1; }

.team-photo {
  display: flex;
  justify-content: center;
}
.team-photo .polaroid {
  max-width: 340px;
  width: 100%;
  transform: rotate(-2deg);
}
.team-member:nth-of-type(2) .team-photo .polaroid {
  transform: rotate(2.2deg);
}
.team-photo .polaroid:hover,
.team-member:nth-of-type(2) .team-photo .polaroid:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-photo .polaroid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bg-soft);
}
.team-photo .polaroid .name {
  font-size: 1.9rem;
  margin: 0;
}

.team-bio .eyebrow-hand {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.team-bio h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 0 0 0.4rem;
  font-weight: 500;
}
.team-bio .credentials {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 1.2rem;
  display: block;
}
.team-bio p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Tape auf Team-Polaroids — zentriert, Caramel & Olive, leicht gespiegelte Winkel */
.team-photo .polaroid .tape {
  top: -12px;
  left: 50%;
  width: 100px;
  height: 22px;
  transform: translateX(-50%) rotate(-6deg);
}
.team-member:nth-of-type(2) .team-photo .polaroid .tape {
  background: rgba(122, 134, 80, 0.42);
  transform: translateX(-50%) rotate(6deg);
}

/* Handgeschriebenes „&" als Bindeglied zwischen Kim und Sarah */
.team-amp {
  text-align: center;
  margin: -2rem 0;
  position: relative;
  z-index: 2;
}
.team-amp span {
  font-family: var(--font-hand);
  color: var(--green);
  font-size: 4rem;
  font-weight: 700;
  display: inline-block;
  transform: rotate(-8deg);
  line-height: 1;
  background: var(--bg-soft);
  padding: 0 0.6rem;
}

/* Team-Pfoten */
.team-paw.one   { top: 6%;   left: 4%;  width: 78px; transform: rotate(-25deg); opacity: 0.2; }
.team-paw.two   { bottom: 8%;  right: 5%; width: 66px; transform: rotate(20deg);  opacity: 0.18; }
.team-paw.three { top: 48%;  right: 3%; width: 52px; transform: rotate(35deg);  opacity: 0.15; }

.team-pointer {
  margin-top: 2.4rem;
  margin-bottom: -0.3rem;
}


/* PREISE ----------------------------------------------------- */
.preise-section {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Probemonat-Hinweis — schlichter Fließtext mit handgeschriebenem Inline-Tag */
.probemonat-intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.probemonat-tag {
  font-family: var(--font-hand);
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 700;
  display: inline-block;
  transform: rotate(-2deg) translateY(2px);
  margin-right: 0.4rem;
  line-height: 1;
}

/* 3 Preis-Karten als gekippte Notizen */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg-card);
  padding: 1.8rem 1.6rem 1.6rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
  border: 1px solid rgba(94, 74, 58, 0.1);
}
.price-card:nth-of-type(1) { transform: rotate(-1deg); }
.price-card:nth-of-type(2) { transform: rotate(0.4deg) translateY(-6px); }
.price-card:nth-of-type(3) { transform: rotate(0.8deg); }
.price-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.price-card .tape {
  top: -12px;
  left: 50%;
  width: 80px;
  height: 18px;
}
.price-card:nth-of-type(2) .tape {
  background: rgba(122, 134, 80, 0.4);
  transform: translateX(-50%) rotate(4deg);
}
.price-card:nth-of-type(3) .tape {
  background: rgba(200, 149, 109, 0.45);
  transform: translateX(-50%) rotate(-3deg);
}

.price-card h3 {
  font-size: 1.15rem;
  margin: 0.4rem 0 0.2rem;
}
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--green);
  font-weight: 500;
  line-height: 1;
  margin: 0.5rem 0 0.3rem;
  font-variation-settings: "opsz" 144;
}
.price-card .price-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 500;
  font-style: italic;
  margin: 0.5rem 0 0.3rem;
  line-height: 1.2;
  font-variation-settings: "opsz" 144;
}
.price-card .price-meta {
  font-family: var(--font-body);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  text-align: left;
  display: grid;
  gap: 0.6rem;
}
.price-card ul li {
  display: flex;
  gap: 0.55rem;
  align-items: start;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.price-card ul li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.price-note {
  text-align: center;
  font-family: var(--font-hand);
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 3rem auto 0;
  max-width: 720px;
  transform: rotate(-1deg);
  line-height: 1.3;
}
.price-note a {
  color: inherit;
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
}
.price-note a:hover {
  color: var(--green-d);
  transform: translateY(2px);
}

/* Handgezeichneter Pfeil nach unten — im Stil der handschriftlichen Schrift */
.cta-arrow {
  width: 0.62em;
  height: 0.95em;
  display: inline-block;
  vertical-align: -0.12em;
  margin-left: 0.3em;
  transition: transform 0.2s;
}
/* Führender Pfeil in den Sektions-Pointern (vor dem Text) */
.section-pointer .cta-arrow,
.alltag-pointer .cta-arrow {
  margin-left: 0;
  margin-right: 0.3em;
  vertical-align: -0.1em;
}

/* Zusatzleistungen */
.extras {
  max-width: 720px;
  margin: 4rem auto 0;
  background: var(--bg-card);
  padding: 2rem 2.2rem;
  position: relative;
  transform: rotate(0.4deg);
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.extras:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.extras .tape {
  top: -12px;
  left: 50%;
  width: 100px;
  background: rgba(200, 149, 109, 0.5);
  transform: translateX(-50%) rotate(3deg);
}
.extras .tape.tape--wide {
  width: 150px;
  height: 30px;
  top: -14px;
}
.hours-card .tape.tape--wide {
  background: rgba(122, 134, 80, 0.42);
}
.barf-prices-table .tape.tape--wide {
  background: rgba(122, 134, 80, 0.42);
}
.contact-form .tape.tape--wide {
  background: rgba(122, 134, 80, 0.42);
}
.extras h3 {
  text-align: center;
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}
.extras-intro {
  text-align: center;
  font-size: 0.98rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.extras-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.extras-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(94, 74, 58, 0.18);
}
.extras-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.extras-list span { color: var(--ink-soft); font-size: 1rem; }
.extras-list strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
}

/* Preise Pfoten */
.preise-paw.one   { top: 8%;   left: 4%;   width: 74px; transform: rotate(-25deg); opacity: 0.18; }
.preise-paw.two   { top: 42%;  right: 4%;  width: 62px; transform: rotate(20deg);  opacity: 0.15; }
.preise-paw.three { bottom: 8%; left: 8%;  width: 54px; transform: rotate(15deg);  opacity: 0.15; }


/* FAQ -------------------------------------------------------- */
.faq-section {
  padding: 5.5rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.faq-section > .container {
  width: min(1360px, 96%);
}

.faq-groups {
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  align-items: start;
}

.faq-group h3 {
  font-size: 1.25rem;
  margin: 0 0 1.05rem;
  color: var(--green);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
  line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-variation-settings: "opsz" 144;
}
.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.75rem 1.55rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-answer p { margin: 0 0 0.7rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  padding-left: 1.3rem;
  margin: 0.4rem 0 0;
}
.faq-answer ul li { margin-bottom: 0.4rem; }
.faq-answer ul li:last-child { margin-bottom: 0; }

/* FAQ Pfoten */
.faq-paw.one   { top: 6%;   left: 4%;  width: 72px; transform: rotate(-25deg); opacity: 0.18; }
.faq-paw.two   { bottom: 12%; right: 5%; width: 60px; transform: rotate(20deg);  opacity: 0.15; }
.faq-paw.three { top: 45%;  right: 3%; width: 52px; transform: rotate(15deg);  opacity: 0.15; }

@media (max-width: 1300px) {
  .faq-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
  }

  .faq-group:nth-child(3) {
    grid-column: 1 / -1;
  }

  .faq-group:nth-child(3) .faq-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* BARF ------------------------------------------------------- */
.barf-section {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Zweispaltiger Intro-Block */
.barf-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  max-width: 980px;
  margin: 1rem auto 4rem;
}
.barf-info-card {
  background: var(--bg-card);
  padding: 1.8rem 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.barf-info-card:nth-of-type(1) { transform: rotate(-0.5deg); }
.barf-info-card:nth-of-type(2) { transform: rotate(0.5deg); }
.barf-info-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.barf-info-card .tape {
  top: -12px;
  left: 50%;
  width: 95px;
}
.barf-info-card:nth-of-type(2) .tape {
  background: rgba(122, 134, 80, 0.4);
  transform: translateX(-50%) rotate(4deg);
}
.barf-info-card h3 {
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
}
.barf-info-card p {
  font-size: 1rem;
  margin: 0 0 0.9rem;
}
.barf-info-card ul.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.barf-info-card ul.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.barf-info-card ul.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sub-Headlines innerhalb BARF — handgeschrieben wie Probemonat-Tag */
.barf-sub-head {
  text-align: center;
  margin: 1rem auto 2rem;
}
.barf-process + .barf-sub-head,
.barf-prices-table + .barf-sub-head {
  margin-top: 4rem;
}
.barf-sub-head h3 {
  font-family: var(--font-hand);
  color: var(--green);
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  transform: rotate(-2deg);
  line-height: 1;
  margin: 0;
}
.barf-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
/* Prozess-Ablauf — 4 Schritte mit handgezeichneten Pfeilen dazwischen */
.barf-process {
  max-width: 1050px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0.6rem;
}
.process-step {
  text-align: center;
  padding: 0 0.5rem;
}
.process-number {
  font-family: var(--font-hand);
  color: var(--green);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  transform: rotate(-4deg);
  margin-bottom: 0.8rem;
}
.process-step h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-weight: 500;
}
.process-step p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.process-arrow {
  width: 64px;
  height: 16px;
  color: var(--olive);
  align-self: start;
  margin-top: 44px;
  opacity: 0.7;
}
.process-arrow svg { width: 100%; height: 100%; display: block; }

/* 2-spaltige Preistabelle (alles auf einen Blick) */
.barf-prices-table {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  background: var(--bg-card);
  padding: 2rem 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  transform: rotate(-0.3deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.barf-prices-table:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.prices-col-head {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--ink);
  text-align: center;
  padding-bottom: 0.7rem;
  border-bottom: 1px dashed rgba(94, 74, 58, 0.22);
}
.prices-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.2rem;
}
.prices-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(94, 74, 58, 0.12);
  gap: 1rem;
}
.prices-list li:last-child { border-bottom: 0; }
.prices-list span {
  color: var(--ink-soft);
  font-size: 0.96rem;
  flex: 1;
  line-height: 1.4;
}
.prices-list span small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 0.1rem;
}
.prices-list strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.barf-cta {
  text-align: center;
  margin: 3rem 0 0;
}

/* BARF Pfoten */
.barf-paw.one   { top: 5%;   left: 4%;  width: 74px; transform: rotate(-25deg); opacity: 0.18; }
.barf-paw.two   { top: 48%;  right: 4%; width: 60px; transform: rotate(20deg);  opacity: 0.15; }
.barf-paw.three { bottom: 8%; left: 8%; width: 54px; transform: rotate(15deg);  opacity: 0.15; }


/* SHOP ------------------------------------------------------- */
.shop-section {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Produkt-Polaroids — selbe Familie wie die Tierischen Kollegen, aber mit
   Material-Subtitle und Produkt-Silhouetten als Platzhalter */
.shop-polaroid .role {
  font-style: normal;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Produkt-Platzhalter-Farben (warme Erdtöne, Material-suggerierend) */
.ph-leinen     { background: linear-gradient(135deg, #a89478 0%, #8a7a60 100%); color: #5c4a3a; }
.ph-halsband   { background: linear-gradient(135deg, #b3502e 0%, #8f3e22 100%); color: #2a1f17; }
.ph-ballhalter { background: linear-gradient(135deg, #c8956d 0%, #a87a52 100%); color: #5c4a3a; }
.ph-leckerli   { background: linear-gradient(135deg, #7a8650 0%, #5e7d3a 100%); color: #2a1f17; }

/* Handgeschriebener Hinweis unter den Polaroids */
.shop-hint {
  text-align: center;
  font-family: var(--font-hand);
  color: var(--green);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 3.5rem auto 0;
  max-width: 760px;
  transform: rotate(-1.5deg);
  line-height: 1.25;
}
.shop-hint a {
  color: inherit;
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
}
.shop-hint a:hover {
  color: var(--green-d);
  transform: translateY(2px);
}

.shop-cta {
  text-align: center;
  margin: 1rem 0 0;
}

/* Shop Pfoten */
.shop-paw.one   { top: 6%;    right: 4%;  width: 72px; transform: rotate(25deg);  opacity: 0.18; }
.shop-paw.two   { bottom: 10%; left: 5%;  width: 60px; transform: rotate(-20deg); opacity: 0.15; }
.shop-paw.three { top: 50%;   right: 8%;  width: 54px; transform: rotate(15deg);  opacity: 0.14; }


/* KONTAKT ---------------------------------------------------- */
.kontakt-section {
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.kontakt-section .section-head { margin-bottom: 2rem; }
.kontakt-grid { align-items: stretch; }

/* Kleine handschriftliche Karten-Überschrift (Stil der Eyebrow-Hand, kompakt) */
.card-eyebrow {
  font-family: var(--font-hand);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  transform: rotate(-1.5deg);
  margin: 0.4rem 0 1.1rem;
}

/* Kontakt — geschlossene Info-Karte (Pendant zur Formular-Karte) */
.contact-panel {
  background: var(--bg-card);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  padding: 1.4rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: rotate(-0.4deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.contact-panel:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Kontaktwege als klickbare Zeilen mit Trennlinien */
.contact-methods {
  display: flex;
  flex-direction: column;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.2s;
}
.contact-method:last-child { border-bottom: none; }
.contact-method:hover,
.contact-method:focus-visible { padding-left: 0.4rem; }
.contact-method .cm-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.contact-method strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
}
.contact-method .cm-val {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.contact-method .cm-arrow {
  margin-left: auto;
  color: var(--muted);
  flex-shrink: 0;
  display: flex;
  transition: transform 0.2s, color 0.2s;
}
.contact-method .cm-arrow svg { width: 18px; height: 18px; }
.contact-method:hover .cm-arrow,
.contact-method:focus-visible .cm-arrow {
  transform: translateX(3px);
  color: var(--green);
}

/* WhatsApp als primärer Kanal — gefüllter Icon-Kreis */
.contact-method.is-primary .contact-icon {
  background: var(--green);
  color: var(--bg-card);
}
.contact-method.is-primary .cm-val { color: var(--green); }

/* Öffnungszeiten — inline, direkt unter den Kontaktwegen */
.contact-hours {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  align-items: start;
}
.contact-hours-body { flex: 1; min-width: 0; }
.contact-hours-body strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
}
.contact-hours .hours-list { margin-top: 0.5rem; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(94, 125, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }

/* Map mit DSGVO-Consent-Gate */
.map {
  background: var(--bg-card);
  border-radius: 4px;
  margin-top: 3.25rem;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(94, 74, 58, 0.08);
  transform: rotate(-0.3deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.map:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.map-inner {
  overflow: hidden;
  border-radius: 4px;
  min-height: 320px;
  position: relative;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  min-height: 360px;
}
.map-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  max-width: 340px;
}
.map-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--green);
}
.map-overlay p { margin: 0; line-height: 1.5; }
.map-overlay .small {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}
.map-overlay .small a { color: var(--green); }

/* Kontakt-Formular */
.contact-form {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  transform: rotate(0.4deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.contact-form:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.contact-form .btn { align-self: flex-start; }
.contact-form .card-eyebrow { margin: 0; }
/* Nachrichtenfeld füllt die Resthöhe, damit unten kein Leerraum bleibt */
.contact-form .field-message { flex: 1; }
.contact-form .field-message textarea { flex: 1; }
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.contact-form .optional {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.82rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  margin-top: 0.4rem;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-form .checkbox {
  flex-direction: row;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.5;
}
.contact-form .checkbox input {
  margin-top: 0.2rem;
  width: auto;
  accent-color: var(--green);
}
.contact-form .checkbox a { color: var(--green); }
.contact-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form button[type="submit"] {
  margin-top: 0.4rem;
  justify-self: start;
}
.contact-form .form-status {
  font-size: 0.92rem;
  margin: 0;
  min-height: 1.2em;
  line-height: 1.5;
}
.contact-form .form-status.success { color: var(--green); }
.contact-form .form-status.error { color: var(--terracotta); }

/* Kontakt Pfoten */
.kontakt-paw.one   { top: 8%;    right: 4%;  width: 72px; transform: rotate(25deg);  opacity: 0.18; }
.kontakt-paw.two   { bottom: 12%; left: 5%;  width: 60px; transform: rotate(-20deg); opacity: 0.15; }
.kontakt-paw.three { top: 50%;   left: 3%;  width: 54px; transform: rotate(15deg);  opacity: 0.14; }
.section-placeholder {
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}
.section-placeholder .placeholder-note {
  font-family: var(--font-hand);
  color: var(--muted);
  font-size: 1.4rem;
  transform: rotate(-1.5deg);
  display: inline-block;
  margin-top: 1rem;
}

/* Fehlerseiten */
.error-page {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 18px;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
}

.error-page .eyebrow-hand {
  margin-bottom: 0.5rem;
}

.error-page h1 {
  margin-bottom: 1rem;
}

.error-page .lead {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.7;
}

.error-page .hero-cta {
  margin-bottom: 0;
}


/* ---------------------------------------------------------------
   8. FOOTER
   --------------------------------------------------------------- */

.site-footer {
  background: var(--green-d);
  color: rgba(244, 237, 225, 0.78);
  padding: 4.2rem 0 2rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--bg);
  clip-path: polygon(
    0 0, 100% 0,
    100% 50%, 93.75% 42%, 87.5% 35%, 81.25% 42%, 75% 50%,
    68.75% 58%, 62.5% 65%, 56.25% 58%, 50% 50%, 43.75% 42%,
    37.5% 35%, 31.25% 42%, 25% 50%, 18.75% 58%, 12.5% 65%,
    6.25% 58%, 0 50%
  );
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.footer-brand {
  display: flex;
  align-items: start;
  gap: 1rem;
}
.footer-brand img {
  height: 48px;
  width: auto;
  filter: brightness(1.4);
}
.footer-brand strong { color: var(--bg); font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; }
.footer-brand span, .footer-brand a { color: rgba(244, 237, 225, 0.7); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.55rem 2.5rem;
  align-content: start;
}
.footer-nav a { color: rgba(244, 237, 225, 0.78); font-size: 0.95rem; }
.footer-nav a:hover { color: var(--caramel); }

.footer-legal {
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-legal a { color: rgba(244, 237, 225, 0.78); }
.footer-legal a:hover { color: var(--caramel); }
.footer-legal .small {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}


/* ---------------------------------------------------------------
   9. RESPONSIVE
   --------------------------------------------------------------- */

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-soft);
    padding: 1rem 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(60, 40, 20, 0.08);
  }
  .nav-links.open { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero { padding-bottom: 5rem; }
  .polaroid-hero { max-width: 320px; margin: 0 auto; }
  .hero-lead { margin-bottom: 1.4rem; }
  .hero-cta { margin-bottom: 1.5rem; flex-wrap: nowrap; }
  .hero-cta .btn { padding: 0.85em 1.3em; font-size: 0.97rem; }
  .hero-badges { display: none; }

  .grid-2 { grid-template-columns: 1fr; }
  .ueber-aside { position: static; }

  .testimonial-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .polaroid-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }

  .journal-entry,
  .journal-entry:nth-child(odd),
  .journal-entry:nth-child(even),
  .journal-entry:nth-child(3) {
    margin-left: 0;
    margin-right: 0;
    transform: rotate(-0.4deg);
  }
  .alltag-section::before { display: none; }

  .feature-list { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .feature-card,
  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    margin-left: 0;
    transform: rotate(-0.4deg);
  }

  .team-member,
  .team-member:nth-of-type(2) {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .team-member:nth-of-type(2) .team-photo { order: 1; }
  .team-member:nth-of-type(2) .team-bio   { order: 2; }
  .team-photo .polaroid { max-width: 280px; }

  .price-grid { grid-template-columns: 1fr; max-width: 380px; gap: 2rem; }
  .price-card:nth-of-type(1),
  .price-card:nth-of-type(2),
  .price-card:nth-of-type(3) {
    transform: rotate(-0.4deg);
  }

  .barf-intro { grid-template-columns: 1fr; gap: 1.6rem; max-width: 480px; }
  .faq-groups {
    grid-template-columns: 1fr;
    max-width: 680px;
    gap: 2rem;
  }
  .faq-group:nth-child(3) .faq-list {
    grid-template-columns: 1fr;
  }
  .barf-process {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 480px;
  }
  .process-arrow {
    transform: rotate(90deg);
    width: 56px;
    margin: 0.5rem auto;
  }
  .process-arrow path {
    stroke-width: 4.5;
  }
  .process-step { padding: 0.5rem 0; }

  .barf-prices-table {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 1.6rem 1.4rem;
  }

  .hero-paw.one { width: 50px; right: 4%; top: 8%; }
  .hero-paw.two { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .polaroid-grid { grid-template-columns: 1fr; max-width: 260px; }
  .contact-info { grid-template-columns: 1fr; }
}


/* DER PLATZ / GELÄNDE -------------------------------------- */
.platz-section {
  background: var(--bg-soft);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.platz-paw.one { top: 10%; right: 5%; width: 80px; transform: rotate(28deg); opacity: 0.14; }
.platz-paw.two { bottom: 12%; left: 4%; width: 64px; transform: rotate(-24deg); opacity: 0.15; }

.platz-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem 2rem;
  max-width: 1000px;
  margin: 2.8rem auto 0;
}
.platz-gallery .polaroid {
  flex: 0 1 calc(50% - 1rem);
  max-width: 470px;
}
.platz-gallery .photo-placeholder { aspect-ratio: 4 / 3; }
.platz-gallery .photo-placeholder svg { width: 26%; }
.platz-gallery .polaroid:nth-child(1) { transform: rotate(-2deg); }
.platz-gallery .polaroid:nth-child(2) { transform: rotate(1.5deg); }
.platz-gallery .polaroid:nth-child(3) { transform: rotate(-1.2deg); }
.platz-gallery .polaroid:nth-child(4) { transform: rotate(2deg); }
.platz-gallery .polaroid:hover { transform: rotate(0deg) translateY(-8px); }
/* Kleber abwechselnd: Caramel / Olivgrün */
.platz-gallery .polaroid:nth-child(even) .tape {
  background: rgba(122, 134, 80, 0.42);
  transform: translateX(-50%) rotate(4deg);
}

/* Back-to-Top Button (Pfote) ------------------------------ */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 74px;
  height: 74px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s, color 0.2s;
  z-index: 50;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top .btt-paw {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 5px 9px rgba(60, 40, 20, 0.32));
}
.back-to-top .btt-arrow {
  position: absolute;
  left: 50%;
  top: 66%;
  transform: translate(-50%, -50%);
  width: 30%;
  height: 30%;
  color: var(--bg-card);
}
.back-to-top:hover { color: var(--green-d); }
.back-to-top.visible:hover { transform: translateY(-3px); }

@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity 0.2s, visibility 0.2s; transform: none; }
  .back-to-top.visible,
  .back-to-top.visible:hover { transform: none; }
}

/* Back-to-Top nur auf Desktop */
@media (max-width: 880px) {
  .back-to-top { display: none; }
  .platz-gallery { max-width: 420px; margin-inline: auto; }
  .platz-gallery .polaroid { flex: 0 0 100%; max-width: none; }
}
