/* ═══════════════════════════════════════════════
   welpe-stubenrein.com · style.css
   WCAG 2.1 AA konform · Vollständig responsive
═══════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --cream:        #F5F0E8;
  --cream-dark:   #EBE4D6;
  --bark:         #3D2E1E;
  --bark-mid:     #6B4E34;
  --moss:         #4A6741;
  --moss-hover:   #3a5332;
  --moss-light:   #7A9B72;
  --moss-pale:    #EBF2E8;
  --sand:         #C8A96E;
  --sand-light:   #F0E4CC;
  --rust:         #B85C38;
  --rust-light:   #F5DDD5;
  --sky:          #2E6A99;
  --sky-light:    #D8EAF4;
  --white:        #FDFAF5;
  --text:         #2A1F14;
  --text-mid:     #5C4A35;
  --text-light:   #7A6856;

  --focus-ring:   3px solid #4A6741;
  --focus-offset: 2px;

  --radius:       16px;
  --radius-sm:    8px;
  --radius-pill:  100px;

  --shadow-sm:    0 2px 8px rgba(61,46,30,0.08);
  --shadow-md:    0 8px 28px rgba(61,46,30,0.10);
  --shadow-lg:    0 20px 60px rgba(61,46,30,0.12);

  --transition:   0.2s ease;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Typografische Skala */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.0625rem; /* 17px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.375rem;  /* 22px */
  --text-3xl:  clamp(1.75rem, 3.5vw, 2.75rem);
  --text-hero: clamp(2.25rem, 5vw, 3.625rem);

  /* Layout */
  --max-width: 1100px;
  --gap:       1.5rem;
  --section-pad: 6.25rem;
}

/* ─── RESET & BASICS ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: var(--text-base);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── BARRIEREFREIHEIT ─── */
/* Skip-Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--moss);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Fokus-Stile – WCAG 2.4.7 */
:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: var(--radius-sm);
}

/* Nur für Maus verstecken */
:focus:not(:focus-visible) { outline: none; }

/* Screen-Reader Only */
.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;
}

/* Hoher Kontrast / Forced Colors */
@media (forced-colors: active) {
  .btn-primary, .btn-secondary, .nav-cta { border: 2px solid ButtonText; }
  .check-box { border: 2px solid ButtonText; }
}

/* ─── TYPOGRAFIE ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--bark);
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); font-weight: 500; }

p { line-height: 1.75; }
p + p { margin-top: 0.75rem; }

a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
a:hover { color: var(--moss-hover); }

em { font-style: italic; color: var(--moss); }

ul, ol { list-style: none; }

img, svg { max-width: 100%; display: block; }

address { font-style: normal; }

/* ─── BUTTONS ─── */
.btn-primary,
.btn-secondary,
.btn-cta,
.btn-cookie-accept,
.btn-cookie-decline,
.btn-reset-consent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), transform 0.15s, box-shadow var(--transition);
  padding: 0.875rem 1.75rem;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--moss);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--moss-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74,103,65,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--bark);
  border: 1.5px solid rgba(61,46,30,0.25);
}
.btn-secondary:hover {
  background: var(--cream-dark);
  color: var(--bark);
}

/* ─── NAVIGATION ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(245,240,232,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61,46,30,0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(61,46,30,0.1); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--bark);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo strong { color: var(--moss); }
.nav-logo:hover { color: var(--bark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--moss); }
.nav-cta {
  background: var(--moss) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm) !important;
}
.nav-cta:hover { background: var(--bark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.2s;
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  background: var(--cream);
  border-top: 1px solid rgba(61,46,30,0.1);
  padding: 1rem 2rem 1.5rem;
}
.mobile-menu ul { list-style: none; }
.mobile-menu a {
  display: block;
  padding: 0.875rem 0;
  color: var(--text-mid);
  text-decoration: none;
  font-size: var(--text-base);
  border-bottom: 1px solid rgba(61,46,30,0.06);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--moss); }
.mobile-menu a:last-child { border-bottom: none; }

/* ─── SECTIONS ─── */
.section {
  padding: var(--section-pad) 2rem;
}
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-dark   { background: var(--bark); }
.section-moss   { background: var(--moss-pale); }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--moss);
  flex-shrink: 0;
}
.section-tag-light { color: var(--sand); }
.section-tag-light::before { background: var(--sand); }

.section-title {
  font-size: var(--text-3xl);
  color: var(--bark);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--cream); }
.em-sand { color: var(--sand); }

.section-intro {
  font-size: var(--text-lg);
  color: var(--text-mid);
  max-width: 35rem;
  margin-bottom: 3.75rem;
  line-height: 1.8;
}
.section-intro.light { color: rgba(245,240,232,0.68); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6.25rem 2rem 3.75rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(122,155,114,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(200,169,110,0.15) 0%, transparent 50%),
    var(--cream);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, var(--bark) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--moss-pale);
  color: var(--moss);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(74,103,65,0.2);
}
.hero h1 {
  font-size: var(--text-hero);
  color: var(--bark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: var(--text-lg);
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  max-width: 30rem;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual { justify-content: center; display: flex; }
.hero-card-wrap { position: relative; max-width: 22.5rem; width: 100%; }
.hero-card-main {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--bark);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.week-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.week-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: var(--text-sm);
  color: var(--text-mid);
}
.week-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--moss-pale);
  color: var(--moss);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.week-list strong { display: block; color: var(--bark); font-size: var(--text-sm); }
.week-list small { font-size: var(--text-xs); color: var(--text-light); }
.hero-card-float {
  position: absolute;
  top: -1.25rem; right: -1.25rem;
  background: var(--sand-light);
  border: 1.5px solid rgba(200,169,110,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: var(--text-xs);
  color: var(--bark-mid);
  z-index: 3;
  box-shadow: var(--shadow-md);
  max-width: 180px;
  line-height: 1.5;
}
.hero-card-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--moss);
  font-weight: 600;
}
.hero-dog-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* ─── GRUNDLAGEN ─── */
.grundlagen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grundlagen-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(61,46,30,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.grundlagen-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.grundlagen-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--moss-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
.grundlagen-card h3 { font-size: var(--text-xl); margin-bottom: 0.75rem; }
.grundlagen-card p  { font-size: var(--text-sm); color: var(--text-mid); }
.grundlagen-highlight {
  background: var(--bark);
  border-color: transparent;
}
.grundlagen-highlight .grundlagen-icon { background: rgba(245,240,232,0.12); }
.grundlagen-highlight h3 { color: var(--sand); }
.grundlagen-highlight p  { color: rgba(245,240,232,0.72); }

/* ─── HUNDE FOTO-STREIFEN ─── */
.dog-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}
.dog-strip-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.dog-strip-img:hover { transform: scale(1.04); }

/* Tablet: etwas quadratischer */
@media (max-width: 768px) {
  .dog-strip-img { aspect-ratio: 1 / 1; }
}

/* Mobile: nur ein Bild, volle Breite */
@media (max-width: 480px) {
  .dog-strip { grid-template-columns: 1fr; }
  .dog-strip-img { aspect-ratio: 16 / 9; }
  .dog-strip-img:not(:first-child) { display: none; }
}

/* ─── METHODEN ─── */
.methoden-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.75rem;
  align-items: start;
}
.methode-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.methode-tab {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  background: none;
  border: 1px solid transparent;
  text-align: left;
  font-family: var(--font-body);
  width: 100%;
  color: var(--bark);
}
.methode-tab > span:first-child { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.methode-tab strong { display: block; font-size: var(--text-sm); color: var(--bark); }
.methode-tab small  { display: block; font-size: var(--text-xs); color: var(--text-light); margin-top: 2px; }
.methode-tab:hover  { background: var(--cream-dark); }
.methode-tab[aria-selected="true"] {
  background: var(--white);
  border-color: rgba(61,46,30,0.08);
  box-shadow: var(--shadow-sm);
}
.methode-tab[aria-selected="true"] strong { color: var(--moss); }

.methode-panels { position: sticky; top: 5.5rem; }
.methode-panel[hidden] { display: none; }
.methode-panel:not([hidden]) {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid rgba(61,46,30,0.06);
  animation: fadeSlideIn 0.25s ease;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.methode-panel h3 {
  font-size: 1.625rem;
  color: var(--bark);
  margin-bottom: 1rem;
}
.methode-panel p { font-size: var(--text-sm); color: var(--text-mid); margin-bottom: 1rem; }
.methode-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  list-style: none;
}
.methode-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: var(--text-sm);
  color: var(--text-mid);
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius-sm);
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.methode-steps strong { display: block; color: var(--bark); font-size: var(--text-sm); margin-bottom: 2px; }

/* ─── TAGESPLAN ─── */
.tagesplan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.tp-card {
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.12);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: background var(--transition);
}
.tp-card:hover { background: rgba(245,240,232,0.1); }
.tp-time {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.tp-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.tp-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.tp-card p { font-size: var(--text-xs); color: rgba(245,240,232,0.58); line-height: 1.7; }
.tp-tip {
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  font-size: var(--text-sm);
  color: var(--sand);
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.tp-tip strong { color: var(--sand); }

/* ─── FAQ ─── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 5.5rem; }
.faq-sidebar p { font-size: var(--text-base); color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.25rem; }
.faq-item {
  border: 1px solid rgba(61,46,30,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--bark);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: background var(--transition);
  line-height: 1.5;
}
.faq-question:hover { background: var(--cream); }
.faq-item:has(.faq-question[aria-expanded="true"]) .faq-question {
  background: var(--cream);
  color: var(--moss);
}
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  transition: transform 0.3s, background var(--transition);
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  background: var(--moss);
  color: var(--white);
}
.faq-answer { overflow: hidden; }
.faq-answer[hidden] { display: none; }
.faq-answer:not([hidden]) {
  display: block;
  animation: fadeSlideIn 0.25s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─── CHECKLISTE ─── */
.checkliste-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: start;
}
.checklist-group { margin-bottom: 2rem; }
.checklist-group h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--bark);
  margin-bottom: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.checklist-group h3::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--moss);
  flex-shrink: 0;
}
.check-items { display: flex; flex-direction: column; gap: 0.625rem; list-style: none; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: var(--text-sm);
  color: var(--text-mid);
  cursor: pointer;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid rgba(61,46,30,0.07);
  transition: background var(--transition);
  user-select: none;
  line-height: 1.5;
}
.check-item:hover { background: var(--cream-dark); }
.check-item.done { opacity: 0.55; text-decoration: line-through; color: var(--text-light); }
.check-box {
  width: 18px; height: 18px;
  border: 1.5px solid rgba(74,103,65,0.4);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.check-item.done .check-box {
  background: var(--moss);
  border-color: var(--moss);
}
.check-item.done .check-box::after {
  content: '✓';
  font-size: var(--text-xs);
  color: var(--white);
  font-weight: 700;
}

.checklist-side { display: flex; flex-direction: column; gap: 1.5rem; }
.checklist-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(61,46,30,0.08);
}
.checklist-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--bark);
  margin-bottom: 0.75rem;
}
.checklist-card p { font-size: var(--text-sm); color: var(--text-mid); margin-bottom: 1.5rem; }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.progress-track {
  height: 6px;
  background: var(--cream-dark);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--moss);
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}
.warning-card {
  background: var(--rust-light);
  border: 1px solid rgba(184,92,56,0.2);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  font-size: var(--text-sm);
  color: var(--rust);
  line-height: 1.7;
}
.warning-card strong { display: block; margin-bottom: 0.5rem; }
.warning-card p { color: var(--text-mid); margin-top: 0.5rem; }
.reminder-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(61,46,30,0.07);
}
.reminder-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--bark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.reminder-card p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.8; }

/* ─── SPEZIALFÄLLE ─── */
.spezial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.spezial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(61,46,30,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.spezial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.spezial-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.spezial-card h3 { font-size: var(--text-xl); margin-bottom: 0.75rem; }
.spezial-card p  { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.75; margin-bottom: 1.25rem; }
.spezial-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: var(--text-xs);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid;
  font-weight: 500;
}
.tag-moss { border-color: var(--moss-light); color: var(--moss); background: var(--moss-pale); }
.tag-sand { border-color: rgba(200,169,110,0.4); color: var(--bark-mid); background: var(--sand-light); }
.tag-sky  { border-color: rgba(46,106,153,0.3); color: var(--sky); background: var(--sky-light); }
.tag-rust { border-color: rgba(184,92,56,0.3);  color: var(--rust); background: var(--rust-light); }

/* ─── HILFE ─── */
.hilfe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.hilfe-card {
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid rgba(61,46,30,0.08);
}
.hilfe-tierarzt { background: var(--rust-light); border-color: rgba(184,92,56,0.15); }
.hilfe-trainer  { background: var(--sky-light);  border-color: rgba(46,106,153,0.15); }
.hilfe-card h3  { font-size: var(--text-2xl); margin-bottom: 0.75rem; }
.hilfe-tierarzt h3 { color: var(--rust); }
.hilfe-trainer  h3 { color: var(--sky); }
.hilfe-card p { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.8; margin-bottom: 1.25rem; }
.hilfe-card ul { display: flex; flex-direction: column; gap: 0.625rem; list-style: none; }
.hilfe-card li {
  font-size: var(--text-sm);
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}
.hilfe-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-size: var(--text-xs);
}
.hilfe-tierarzt li::before { color: var(--rust); }
.hilfe-trainer  li::before { color: var(--sky); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--moss);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-inner { max-width: var(--max-width); margin: 0 auto; }
.cta-banner h2 {
  font-size: var(--text-3xl);
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: var(--text-lg);
  color: rgba(245,240,232,0.72);
  margin-bottom: 2.25rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  color: var(--moss);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: var(--text-base);
  text-decoration: none;
  transition: background var(--transition), transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.btn-cta:hover { background: var(--white); color: var(--moss); transform: translateY(-1px); }

/* ─── FOOTER ─── */
footer {
  background: var(--bark);
  color: rgba(245,240,232,0.58);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.75rem 2rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3.75rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.footer-brand p { font-size: var(--text-sm); line-height: 1.8; max-width: 17.5rem; margin-bottom: 0.5rem; }
.footer-domain { font-size: var(--text-xs); color: rgba(245,240,232,0.35); margin-top: 0.25rem; }
.footer-top nav h3 {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.footer-top nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-top nav a {
  color: rgba(245,240,232,0.58);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition);
}
.footer-top nav a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ─── RECHTLICHE UNTERSEITEN ─── */
.legal-page {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.legal-nav .nav-inner {
  justify-content: space-between;
}
.legal-back-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--transition);
}
.legal-back-link:hover { color: var(--moss); }
.legal-page-main {
  flex: 1;
  padding: 6rem 2rem 3rem;
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
}
.legal-page-footer {
  background: var(--bark);
  padding: 1.25rem 2rem;
}
.legal-page-footer-inner {
  max-width: 56rem;
  margin: 0 auto;
  font-size: var(--text-xs);
  color: rgba(245,240,232,0.5);
  text-align: center;
}
.legal-page-footer a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.legal-page-footer a:hover { color: var(--cream); }

/* ─── RECHTLICHE BEREICHE ─── */
.legal-section {
  background: var(--cream);
  padding: 2rem 2rem;
  border-top: 1px solid rgba(61,46,30,0.1);
}
.legal-alt { background: var(--white); }
.legal-inner {
  max-width: 52rem;
  margin: 0 auto;
}
.legal-inner h2 {
  font-size: 1.375rem;
  color: var(--bark);
  margin-bottom: 0.25rem;
}
.legal-subtitle {
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.legal-inner h3 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--bark);
  margin: 1rem 0 0.375rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(61,46,30,0.07);
  font-weight: 600;
}
.legal-inner h3:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-inner p,
.legal-inner address,
.legal-inner li {
  font-size: var(--text-xs);
  color: var(--text-mid);
  line-height: 1.65;
}
.legal-inner p + p { margin-top: 0.375rem; }
.legal-inner ul { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.2rem; }
.legal-inner dl { display: flex; flex-direction: column; gap: 0.375rem; }
.legal-inner dt { font-weight: 600; color: var(--bark); font-size: var(--text-xs); }
.legal-inner dd { color: var(--text-mid); font-size: var(--text-xs); padding-left: 0.75rem; }
.legal-inner a { color: var(--moss); }
.legal-date { font-size: var(--text-xs); color: var(--text-light); margin-top: 1rem; font-style: italic; }

/* Cookie-Tabelle */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-xs);
  color: var(--text-mid);
  margin: 0.625rem 0;
}
.cookie-table th {
  text-align: left;
  padding: 0.4rem 0.75rem;
  background: var(--cream-dark);
  color: var(--bark);
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cookie-table td {
  padding: 0.4rem 0.75rem;
  border-bottom: 1px solid rgba(61,46,30,0.08);
}
.cookie-table code {
  background: var(--cream-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: var(--text-xs);
  font-family: monospace;
}
.btn-reset-consent {
  margin-top: 1rem;
  background: transparent;
  color: var(--bark);
  border: 1.5px solid rgba(61,46,30,0.25);
  padding: 0.625rem 1.25rem;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition);
}
.btn-reset-consent:hover { background: var(--cream-dark); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bark);
  border-top: 1px solid rgba(245,240,232,0.15);
  padding: 1.5rem 2rem;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.cookie-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.cookie-text { font-size: var(--text-sm); color: rgba(245,240,232,0.72); line-height: 1.7; }
.cookie-link { color: var(--sand); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--moss);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: var(--moss-hover); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(245,240,232,0.75);
  padding: 0.75rem 1.5rem;
  font-size: var(--text-sm);
  font-family: var(--font-body);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245,240,232,0.2);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-cookie-decline:hover { background: rgba(245,240,232,0.08); color: var(--cream); }

/* ─── SCROLL-ANIMATIONEN ─── */
.fade-in {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 5rem; }
  .grundlagen-grid { grid-template-columns: repeat(2, 1fr); }
  .tagesplan-grid  { grid-template-columns: repeat(2, 1fr); }
  .methoden-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .methode-panels { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Nav collapse: ≤ 960px – verhindert unleserlichen "Jetzt starten"-Button */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Tablet S: ≤ 768px */
@media (max-width: 768px) {
  :root { --section-pad: 4rem; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-sidebar { position: static; }

  .checkliste-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .spezial-grid { grid-template-columns: repeat(2, 1fr); }
  .hilfe-grid   { grid-template-columns: 1fr; }

  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { flex-wrap: wrap; }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
  :root { --section-pad: 3.25rem; }
  body { font-size: 15px; }

  .nav-inner  { padding: 0 1.25rem; }
  .hero       { padding: 5.5rem 1.25rem 3rem; }
  .section    { padding: var(--section-pad) 1.25rem; }
  .cookie-banner { padding: 1.25rem; }
  .legal-section { padding: 2.5rem 1.25rem; }
  .footer-inner  { padding: 2.5rem 1.25rem 1.5rem; }

  .grundlagen-grid { grid-template-columns: 1fr; }
  .spezial-grid    { grid-template-columns: 1fr; }
  .tagesplan-grid  { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr; gap: 2rem; }

  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  .cookie-table { font-size: var(--text-xs); }
  .cookie-table th,
  .cookie-table td { padding: 0.5rem; }

  .section-intro { margin-bottom: 2.5rem; }
  .methode-tab { padding: 1rem; }
  .methode-panel:not([hidden]) { padding: 1.5rem; }
}

/* Sehr schmale Geräte: ≤ 320px */
@media (max-width: 320px) {
  .hero h1 { font-size: 1.875rem; }
  .section-title { font-size: 1.625rem; }
  .nav-logo { font-size: 1.1rem; }
}

/* Print */
@media print {
  nav, .cookie-banner, .hero-visual, .cta-banner { display: none !important; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding: 2rem 0; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.75em; }
  .legal-inner { max-width: 100%; }
}
