/* ============================================
   Place of Dogs – style.css
   ============================================ */

/* --- Fonts (self-hosted, DSGVO-konform) --- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v30-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-v30-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v12-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v12-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- Variables --- */
:root {
  --waldgruen:  #2D6A4F;
  --salbei:     #52B788;
  --sand:       #F5E8D0;
  --karamell:   #D4A373;
  --creme:      #FAF6F0;
  --dunkelgruen:#1B4332;
  --hellgruen:  #D4F5E4;
  --weiss:      #FFFFFF;
  --page-bg:    #FBF5EB;
  --card-bg:    #FFFDF7;
  --brown:      #6B4E37;
  --text:       #1B4332;
  --radius:     12px;
  --radius-sm:  8px;
  --transition: 0.3s ease;
  --shadow:     0 4px 20px rgba(27,67,50,0.10);
  --shadow-hover: 0 10px 36px rgba(27,67,50,0.18);
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --max-width:  1200px;
  --section-gap: 5rem;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--waldgruen);
  color: var(--weiss);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: var(--creme);
  box-shadow: 0 2px 12px rgba(27,67,50,0.08);
  transition: box-shadow var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dunkelgruen);
  text-decoration: none;
}
.nav-logo img { flex-shrink: 0; }
.logo-white { display: none !important; }
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dunkelgruen);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--waldgruen);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"],
.nav-links a:hover { color: var(--waldgruen); }
.nav-cta {
  background: transparent;
  color: var(--waldgruen) !important;
  padding: 0.4rem 1.1rem;
  border: 1.5px solid var(--waldgruen);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--waldgruen) !important;
  color: var(--weiss) !important;
}
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--dunkelgruen);
  transition: color var(--transition);
  position: relative;
  z-index: 10001;
}
.nav.menu-open { background: #2D6A4F; }
.nav.menu-open .nav-logo,
.nav.menu-open .nav-toggle { color: #ffffff; }
.nav.menu-open .logo-default { display: none !important; }
.nav.menu-open .logo-white { display: inline !important; }

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse 65% 50% at 5% 15%,   rgba(82,183,136,0.38) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 5%,   rgba(255,255,255,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 48% 102%,  rgba(12,40,28,0.45)   0%, transparent 50%),
    radial-gradient(ellipse 38% 55% at 82% 50%,  rgba(82,183,136,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 18% 80%,  rgba(12,40,28,0.38)   0%, transparent 60%),
    #2D6A4F;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 0 4rem;
  padding-left: 32px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
/* Pfotenspur-Deko unten rechts */
.nav-mobile::after {
  content: '';
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 120px;
  height: 120px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23D4A373'%3E%3Cellipse cx='50' cy='72' rx='22' ry='17'/%3E%3Ccircle cx='22' cy='48' r='10'/%3E%3Ccircle cx='78' cy='48' r='10'/%3E%3Ccircle cx='35' cy='28' r='9'/%3E%3Ccircle cx='65' cy='28' r='9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  padding: 18px 0;
  border-bottom: none;
  border-left: none;
  text-decoration: none;
  transition: color var(--transition), border-bottom-color var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-mobile a:hover {
  color: #ffffff;
  border-bottom-color: #D4A373;
}
.nav-mobile a[aria-current="page"] {
  color: #D4A373;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.125rem 2.25rem;
  min-height: 48px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--waldgruen);
  color: var(--weiss);
  border-color: var(--waldgruen);
  box-shadow: 0 4px 12px rgba(45,106,79,0.25);
}
.btn-primary:hover {
  background: var(--dunkelgruen);
  border-color: var(--dunkelgruen);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,106,79,0.25), 0 4px 12px rgba(212,163,115,0.30);
}
.btn-secondary {
  background: var(--karamell);
  color: var(--dunkelgruen);
  border-color: var(--karamell);
  box-shadow: 0 4px 12px rgba(45,106,79,0.25);
}
.btn-secondary:hover {
  background: #c4935f;
  border-color: #c4935f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,106,79,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--waldgruen);
  border-color: var(--waldgruen);
  border-width: 1.5px;
}
.btn-ghost:hover {
  background: rgba(45,106,79,0.08);
  color: var(--waldgruen);
  transform: translateY(-2px);
}
.btn-ghost-white {
  background: transparent;
  color: var(--weiss);
  border-color: var(--weiss);
  border-width: 1.5px;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--weiss);
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--waldgruen);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 0;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
}
.hero-paw-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 5% 15%,   rgba(82,183,136,0.38) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 92% 5%,   rgba(255,255,255,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 70% 40% at 48% 102%,  rgba(12,40,28,0.45)   0%, transparent 50%),
    radial-gradient(ellipse 38% 55% at 82% 50%,  rgba(82,183,136,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 18% 80%,  rgba(12,40,28,0.38)   0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 52% 42%,  rgba(255,255,255,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  flex: 1;
  padding-bottom: 4rem;
  position: relative;
}
.hero-text { color: var(--weiss); }
.hero-kicker {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--weiss);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--weiss);
}
.hero-headline .accent { color: var(--karamell); }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.88;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}
.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--creme);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dunkelgruen);
}
.hero-image-badge span { color: var(--waldgruen); font-size: 1.1rem; }

/* Wave Divider */
.wave-divider {
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -1px;
  height: 90px;
}
.wave-divider svg { display: block; width: 100%; height: 100%; }

/* Reduce top padding on sections that directly follow a wave */
.wave-divider + .section,
.wave-divider + .cta-section,
.wave-divider + .quote-section {
  padding-top: 2rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-gap) 0; }
.section-creme { background: var(--creme); }
.section-sand { background: var(--sand); }
.section-dunkel { background: var(--dunkelgruen); }
.section-waldgruen { background: var(--waldgruen); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-kicker {
  display: inline-block;
  color: var(--karamell);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dunkelgruen);
  margin-bottom: 0.75rem;
}
.section-header .section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--karamell);
  margin: 0.65rem auto 0;
  border-radius: 2px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--brown);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}
.section-title .accent { color: var(--karamell); }
.mission-inner .section-title::after { margin-left: 0; }

/* Section waldgrün: light text overrides */
.section-waldgruen .section-kicker { color: rgba(212,163,115,0.9); }
.section-waldgruen .section-title { color: var(--weiss); }
.section-waldgruen .section-header .section-title::after { background: rgba(212,163,115,0.65); }
.section-waldgruen .section-sub { color: rgba(255,255,255,0.80); }
.section-waldgruen .step-title { color: var(--weiss); }
.section-waldgruen .step-text { color: rgba(255,255,255,0.78); }
.section-waldgruen .steps-grid::before { background: linear-gradient(to right, rgba(255,255,255,0.20), rgba(212,163,115,0.45)); }
.section-waldgruen .step-icon { box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 0 0 8px rgba(255,255,255,0.06); }
.section-waldgruen .trail-paw { color: #D4A373; }
.section-waldgruen .tp-1 { width: 28px; height: 34px; opacity: 0.50; }
.section-waldgruen .tp-2 { width: 24px; height: 28px; opacity: 0.40; }
.section-waldgruen .tp-4 { width: 24px; height: 28px; opacity: 0.40; }
.section-waldgruen .tp-5 { width: 20px; height: 24px; opacity: 0.32; }
.section-waldgruen .about-value { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.15); }
.section-waldgruen .about-value:hover { background: rgba(255,255,255,0.16); box-shadow: 0 4px 14px rgba(0,0,0,0.15); }
.section-waldgruen .about-value-icon { color: var(--weiss); }
.section-waldgruen .about-value-text { color: rgba(255,255,255,0.88); }
.section-waldgruen .about-values { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.section-waldgruen .btn-ghost { border-color: rgba(255,255,255,0.5); color: var(--weiss); }
.section-waldgruen .btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.8); }

/* ============================================
   DOG CARDS
   ============================================ */
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.dog-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-left: 4px solid #D4A373;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.dog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.dog-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  height: auto;
  object-fit: cover;
  object-position: top center;
  background: var(--sand);
}
.dog-card-body { padding: 1.25rem; }
.dog-card-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--dunkelgruen);
  margin-bottom: 0.3rem;
}
.dog-card-breed {
  font-size: 0.9rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}
/* Größe: Waldgrün */
.tag-size {
  background: var(--waldgruen);
  color: #FFFFFF;
}
/* Rasse: Karamell */
.tag-breed {
  background: var(--karamell);
  color: var(--dunkelgruen);
}
/* Alter + Geschlecht: neutrales Beige */
.tag-age {
  background: var(--sand);
  color: var(--dunkelgruen);
}
/* Besondere Eigenschaften: Dunkelgrün */
.tag-special {
  background: var(--dunkelgruen);
  color: #FEFAE0;
}
/* Fallback für allgemeine Props */
.tag-prop {
  background: var(--sand);
  color: var(--brown);
}
.dog-card-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--karamell);
  transition: gap 0.2s ease, transform 0.2s ease;
}
.dog-card:hover .dog-card-link {
  gap: 0.7rem;
  transform: translateX(4px);
}
.section-center { text-align: center; }

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  min-height: 44px;
  border-radius: 100px;
  border: 2px solid var(--sand);
  background: var(--weiss);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dunkelgruen);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--waldgruen);
  border-color: var(--waldgruen);
  color: var(--weiss);
}
.dogs-count {
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

/* ============================================
   STEPS / ABLAUF
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.6% + 1rem);
  right: calc(16.6% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--salbei), var(--karamell));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--waldgruen);
  color: var(--weiss);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  box-shadow: 0 0 0 6px var(--creme), 0 0 0 8px var(--salbei);
}
.step-number {
  position: absolute;
  top: -0.3rem;
  right: calc(50% - 2.8rem);
  background: var(--karamell);
  color: var(--dunkelgruen);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dunkelgruen);
  margin-bottom: 0.5rem;
}
.step-text { font-size: 0.92rem; color: var(--brown); line-height: 1.65; }

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  background: var(--dunkelgruen);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
/* quotation mark replaced by paw watermark (inline SVG) */
.quote-paw-watermark {
  position: absolute;
  bottom: -2rem;
  right: 4%;
  width: 300px;
  height: 360px;
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(-14deg);
  color: white;
}
.quote-paw-watermark svg { width: 100%; height: 100%; }
.quote-inner {
  max-width: 740px;
  margin-inline: auto;
  text-align: center;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--weiss);
  margin-bottom: 1.5rem;
}
.quote-author {
  font-size: 0.9rem;
  color: var(--salbei);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================
   PFOTEN-SPUREN (Schritte & 404)
   ============================================ */

/* Kleine Pfotenspuren zwischen den Schritten (Desktop) */
.step-paw-trail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5rem;
  pointer-events: none;
  z-index: 0;
}
.trail-paw {
  position: absolute;
  top: 1.2rem;
  color: var(--waldgruen);
  transform-origin: center;
}
.tp-1 { left: 29%;  width: 20px; height: 24px; opacity: 0.18; top: -0.75rem; }
.tp-2 { left: 37%;  width: 17px; height: 20px; opacity: 0.13; top: 3.6rem; transform: rotate(9deg); }
.tp-4 { left: 63%;  width: 14px; height: 17px; opacity: 0.09; top: -0.25rem; transform: rotate(5deg); }
.tp-5 { left: 71%;  width: 12px; height: 14px; opacity: 0.07; top: 3.6rem; transform: rotate(-9deg); }

@media (max-width: 1023px) {
  .step-paw-trail { display: none; }
}


/* 404: verirrte Pfotenspuren */
.lost-paw-trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.lost-paw {
  position: absolute;
  color: var(--waldgruen);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--sand);
  padding: 5rem 0;
  text-align: center;
}
.cta-section .section-title { margin-bottom: 0.75rem; }
.cta-section .section-sub { margin-bottom: 2rem; }

/* ============================================
   ÜBER UNS
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-img-wrap { position: relative; }
.about-img-blob {
  position: absolute;
  inset: -2.5rem;
  background: #C4915A;
  opacity: 0.5;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-content {}
.about-content .section-kicker { display: block; margin-bottom: 0.75rem; }
.about-full {
  margin-top: 2.5rem;
}
.about-full p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 1rem;
}
.about-full p:last-of-type { margin-bottom: 0; }
.mission-inner {
  border-left: 4px solid #D4A373;
  padding-left: 2rem;
}
.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--dunkelgruen);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 1rem;
}
.about-content p:last-child { margin-bottom: 0; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 2rem;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #F5E8D0;
  border: 1px solid rgba(212,163,115,0.31);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.about-value:hover {
  background: #FAF3EC;
  box-shadow: 0 4px 14px rgba(196,145,90,0.18);
}
.about-value-icon {
  flex-shrink: 0;
  color: var(--waldgruen);
  width: 26px;
  height: 26px;
  margin-top: 1px;
}
.about-value-icon svg { width: 26px; height: 26px; display: block; }
.about-value-text {
  font-size: 0.88rem;
  color: var(--dunkelgruen);
  font-weight: 500;
  line-height: 1.55;
}

/* ============================================
   ABLAUF PAGE
   ============================================ */
.ablauf-list { max-width: 700px; margin-inline: auto; }
.ablauf-item { margin-bottom: 0.25rem; }
.ablauf-card {
  background: var(--card-bg);
  border-radius: 10px;
  border-left: 4px solid var(--waldgruen);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
/* Ungerade Karten: warmes Beige */
.ablauf-item.odd .ablauf-card {
  background: #F0E2D0;
}
/* Gerade Karten: warmes Weiß mit dezenter Umrandung */
.ablauf-item.even .ablauf-card {
  background: #FFFDF7;
  border: 1px solid #E8DDD3;
  border-left: 4px solid var(--waldgruen);
}
.ablauf-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--waldgruen);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.ablauf-body {
  padding: 0;
  flex: 1;
}
.ablauf-body h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--waldgruen);
  margin-bottom: 0.4rem;
}
.ablauf-body p { font-size: 0.95rem; color: var(--brown); line-height: 1.75; }
.ablauf-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 0;
  color: #D4A373;
  opacity: 0.7;
}
.ablauf-connector svg { width: 24px; height: 30px; display: block; }
.ablauf-connector svg:first-child { transform: translateX(-10px) rotate(-12deg); }
.ablauf-connector svg:last-child  { transform: translateX(10px)  rotate(12deg); }

/* ============================================
   DOG PROFILE
   ============================================ */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.88rem;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a { color: var(--waldgruen); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--brown); }
.profile-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 600px;
  margin-bottom: 56px;
}
/* Alle Bilder: Grundregeln */
.profile-gallery img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  object-position: center center;
}
/* Hauptbild links: ganzer Hund muss sichtbar sein */
.profile-gallery img:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
  object-fit: contain;
  background: #F0E2D0;
}
/* Kleinere Fotos rechts: contain damit Hundeköpfe nicht abgeschnitten werden */
.profile-gallery img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  object-fit: contain;
  background: #F0E2D0;
}
.profile-gallery img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  object-fit: contain;
  background: #F0E2D0;
}
.profile-header { margin-bottom: 2rem; }
.profile-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--dunkelgruen);
  margin-bottom: 0.75rem;
}
.profile-header .tags { gap: 0.5rem; }
.profile-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.profile-specs {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.profile-specs h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dunkelgruen);
  margin-bottom: 1rem;
}
.profile-specs dl {}
.profile-specs dt {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--waldgruen);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.85rem;
}
.spec-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--waldgruen);
  opacity: 0.85;
}
.profile-specs dd {
  font-size: 0.95rem;
  color: var(--dunkelgruen);
  margin-top: 0.1rem;
}
.profile-specs dt:first-child { margin-top: 0; }
.profile-desc h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dunkelgruen);
  margin-bottom: 1rem;
}
.profile-desc p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 1rem;
}
.profile-desc .notice {
  background: var(--sand);
  border-left: 4px solid var(--karamell);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dunkelgruen);
  margin-top: 1.25rem;
}

/* Profile Contact Form */
.profile-contact {
  background: var(--creme);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 4rem;
}
.profile-contact h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dunkelgruen);
  margin-bottom: 0.5rem;
}
.profile-contact .subtitle {
  font-size: 0.95rem;
  color: var(--brown);
  margin-bottom: 2rem;
}

/* Profile Hero Strip */
.profile-hero {
  background: var(--waldgruen);
  padding: 1.1rem 0 1.5rem;
}
.profile-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 0.4rem;
}
.profile-hero-breadcrumb a { color: rgba(255,255,255,0.60); }
.profile-hero-breadcrumb a:hover { color: rgba(255,255,255,0.90); text-decoration: underline; }
.profile-hero-breadcrumb .breadcrumb-sep { color: rgba(255,255,255,0.35); }
.profile-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
}

/* Profile Warning Banner */
.profile-warning {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #2D6A4F;
  border: none;
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.profile-warning svg { flex-shrink: 0; width: 22px; height: 22px; color: #D4A373; margin-top: 0.1rem; }

/* Profile Contact Section (full-width waldgrün) */
.profile-contact-section {
  background: var(--waldgruen);
  padding: 4rem 0 5rem;
  margin-top: 0;
}
.profile-contact-section h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.profile-contact-section .subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}
.profile-contact-form {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 40px;
}
.profile-contact-form .form-group input:not([type="checkbox"]),
.profile-contact-form .form-group textarea,
.profile-contact-form .form-group select {
  background: #FFFFFF;
  border: 2px solid #D4A373;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #1B4332;
  width: 100%;
  outline: none;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.profile-contact-form .form-group input:not([type="checkbox"]):focus,
.profile-contact-form .form-group textarea:focus,
.profile-contact-form .form-group select:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.15);
}
.profile-contact-form .form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.profile-contact-form .form-group input::placeholder,
.profile-contact-form .form-group textarea::placeholder {
  color: #A0937D;
}

/* Profile Back Button */
.profile-back {
  padding: 2.5rem 0 3rem;
  text-align: center;
}

/* Sticky CTA (mobile) */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--weiss);
  padding: 0.75rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(27,67,50,0.12);
  z-index: 50;
}
.sticky-cta .btn { width: 100%; }

/* ============================================
   CONTACT / FORM
   ============================================ */
.form-grid { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dunkelgruen);
}
.form-group label .req { color: var(--karamell); margin-left: 0.2rem; }
.form-group input:not([type="checkbox"]),
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 1.5px solid #E8DDD3;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--dunkelgruen);
  background: #FFFFFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  min-height: 48px;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:not([type="checkbox"]):focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9aaa9e; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--brown);
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: none;
  border-radius: 0;
  margin-top: 0.15rem;
  accent-color: var(--waldgruen);
  flex-shrink: 0;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
.form-checkbox a { color: var(--waldgruen); text-decoration: underline; }
.form-success,
.form-error {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 0.75rem;
}
.form-success { background: #F5E8D0; color: var(--dunkelgruen); }
.form-error { background: #fde8e8; color: #c0392b; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: stretch;
}
.contact-info {
  background: var(--waldgruen);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-form-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  padding: 40px;
}

/* Scoped form-field overrides — spezifischere Selektoren für Kontaktseite */
.contact-form-card .form-group input:not([type="checkbox"]),
.contact-form-card .form-group textarea,
.contact-form-card .form-group select {
  background: #FFFFFF;
  border: 2px solid #D4A373;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #1B4332;
  width: 100%;
  outline: none;
  min-height: 48px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-card .form-group input:not([type="checkbox"]):focus,
.contact-form-card .form-group textarea:focus,
.contact-form-card .form-group select:focus {
  border-color: #2D6A4F;
  box-shadow: 0 0 0 3px rgba(45,106,79,0.15);
}
.contact-form-card .form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder {
  color: #A0937D;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--weiss);
  margin-bottom: 1.25rem;
}
.contact-info-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(212,163,115,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--weiss);
}
.contact-info-text { font-size: 0.92rem; color: rgba(255,255,255,0.80); line-height: 1.6; }
.contact-info-text strong { display: block; color: rgba(255,255,255,0.95); margin-bottom: 0.1rem; }
.contact-info-text a { color: rgba(255,255,255,0.90); }
.contact-info-text a:hover { color: var(--weiss); text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #22503A;
  color: var(--weiss);
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid #D4A373;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--weiss);
  margin-bottom: 0.75rem;
}
.footer-desc { font-size: 0.88rem; opacity: 0.7; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: var(--weiss);
}
.footer-social a:hover { background: var(--karamell); color: var(--dunkelgruen); }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.9rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.footer-tagline {
  color: var(--karamell);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--waldgruen);
  padding: 4.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%,    rgba(82,183,136,0.38) 0%, transparent 55%),
    radial-gradient(ellipse 45% 65% at 100% 0%,  rgba(255,255,255,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 80% 45% at 50% 110%,  rgba(12,40,28,0.45)   0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 85% 55%,  rgba(82,183,136,0.30) 0%, transparent 65%),
    radial-gradient(ellipse 55% 40% at 20% 75%,  rgba(12,40,28,0.38)   0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 50% 50%,  rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 50% at 30% 10%,  rgba(255,255,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 30% at 70% 90%,  rgba(82,183,136,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 25% 45% at 95% 40%,  rgba(12,40,28,0.32)   0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--weiss);
  margin-bottom: 0.6rem;
  position: relative;
}
.page-hero h1 .accent { color: var(--karamell); }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
  position: relative;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 740px;
  margin-inline: auto;
  padding: 4rem 0 5rem;
}
.legal-content h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dunkelgruen);
  margin-bottom: 2rem;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dunkelgruen);
  margin: 2rem 0 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 0.95rem;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-content ul { padding-left: 1.25rem; list-style: disc; }
.legal-content a { color: var(--waldgruen); text-decoration: underline; }

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
}
.error-number {
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 400;
  color: var(--hellgruen);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-page h1 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dunkelgruen);
  margin-bottom: 0.75rem;
}
.error-page p { color: var(--brown); margin-bottom: 2rem; font-size: 1rem; }
.error-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ANIMATIONS
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .fade-in.visible { opacity: 1; transform: none; }
}

/* ============================================
   FOCUS STYLES
   ============================================ */
:focus-visible {
  outline: 3px solid var(--salbei);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================
   MEDIA QUERIES
   ============================================ */

/* Tablet */
@media (max-width: 1023px) {
  :root { --section-gap: 4rem; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; padding-bottom: 1.5rem; }
  .hero-image { display: none; }

  .dogs-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .step-item { display: flex; align-items: flex-start; text-align: left; gap: 1.5rem; }
  .step-icon { margin: 0; flex-shrink: 0; position: relative; }
  /* Nummer-Badge relativ zum Icon positionieren, nicht zum step-item */
  .step-number { top: -0.3rem; right: -0.3rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 340px; margin-inline: auto; overflow: hidden; padding: 1.75rem; }
  .about-img-blob { inset: 0; }
  .about-values { grid-template-columns: 1fr; }
  .section-waldgruen .about-values { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .profile-body { grid-template-columns: 1fr; }
  .profile-contact-form { padding: 1.5rem; }
  .contact-form-card { padding: 1.5rem; }

  /* Galerie auf Tablet: 1-spaltig statt kaputtes 2-Spalten-Grid */
  .profile-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 8px;
  }
  .profile-gallery img:first-child,
  .profile-gallery img:nth-child(2),
  .profile-gallery img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    max-height: 420px;
    width: 100%;
    object-fit: contain;
    background: #F0E2D0;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root { --section-gap: 3rem; }

  /* Wave Divider verkleinern */
  .wave-divider { height: 60px; }

  /* Page Hero Padding reduzieren */
  .page-hero { padding: 2.5rem 0 2rem; }

  /* Section Header weniger Abstand */
  .section-header { margin-bottom: 2rem; }

  /* Hero */
  .hero { min-height: auto !important; padding-top: 3rem; padding-bottom: 2rem; }
  .hero-inner { padding-bottom: 0 !important; }
  .hero-headline { font-size: 1.9rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }

  /* Hunde-Übersicht */
  .dogs-grid { grid-template-columns: 1fr; }
  .dog-card { border-left: none; border-top: 4px solid #D4A373; }
  .dog-card-img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center center;
    background: #F0E2D0;
  }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 0.5rem; }
  .filter-bar::-webkit-scrollbar { height: 3px; }
  .filter-bar::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }

  /* About-Values auch in creme-Sektion 1-spaltig */
  .about-values { grid-template-columns: 1fr; }
  .section-waldgruen .about-values { grid-template-columns: 1fr; }
  /* About-Bild nicht breiter als Viewport */
  .about-img-wrap { max-width: 100%; padding: 1.25rem; }

  /* Formulare */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 1.25rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  /* Sticky CTA */
  .sticky-cta { display: block; }

  /* Profil-Galerie */
  .profile-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 8px;
  }
  .profile-gallery img:first-child,
  .profile-gallery img:nth-child(2),
  .profile-gallery img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    height: auto;
    max-height: 350px;
    width: 100%;
    object-fit: contain;
    background: #F0E2D0;
  }

  /* Profil sonstige */
  .profile-hero h1 { font-size: 1.5rem; }
  .profile-contact-form { padding: 1.25rem; }
  .profile-contact-section { padding: 2rem 0 3rem; }
  .profile-gallery { margin-bottom: 32px; }

  /* Ablauf */
  .ablauf-card { padding: 1rem 1.25rem; }
  .ablauf-connector svg:first-child { transform: none; }
  .ablauf-connector svg:last-child  { transform: none; }

  /* 404 */
  .error-number { font-size: 4rem; }
}
