/* =========================================================
   Tierheim Bautzen-Bloaschütz — Stylesheet
   "Tierschutz mit Herz und Verstand"
   ========================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Design tokens ---------- */
:root {
  /* Colors — warm, earthy, hopeful */
  --cream: #faf6ef;
  --cream-2: #f3ecdf;
  --paper: #fffdf9;
  --ink: #2a1c15;
  --ink-soft: #5a4a3f;
  --ink-muted: #8a7a6f;
  --rust: #b84a2c;
  --rust-dark: #8f3820;
  --rust-light: #e07a5a;
  --sage: #4a5d3a;
  --sage-dark: #35442a;
  --sage-light: #7d9466;
  --gold: #d19c4d;
  --gold-soft: #eac38a;
  --blush: #e4b0a6;
  --line: #e6ddcd;
  --line-soft: #efe6d6;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(42, 28, 21, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(42, 28, 21, 0.18);
  --shadow-lg: 0 24px 48px -16px rgba(42, 28, 21, 0.22);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;
  --font-hand: 'Caveat', 'Brush Script MT', cursive;

  /* Layout */
  --container: 1200px;
  --container-narrow: 860px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'ss01' on, 'cv11' on;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle paper texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(184, 74, 44, 0.025), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(74, 93, 58, 0.03), transparent 40%);
  z-index: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.25rem; font-weight: 600; font-variation-settings: 'opsz' 14; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--rust);
}

.lead { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.55; }

.handwritten {
  font-family: var(--font-hand);
  font-weight: 500;
  color: var(--rust);
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; }
.section-sm { padding: clamp(2rem, 5vw, 4rem) 0; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--sage-dark);
  color: #f3ecdf;
  font-size: 0.86rem;
  padding: 0.55rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 60;
}
.announce strong { color: var(--gold-soft); font-weight: 700; }
.announce a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 500;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rust);
  display: grid;
  place-items: center;
  color: var(--cream);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-name { display: flex; flex-direction: column; }
.brand-name small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  padding: 0.55rem 0.85rem;
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); background: var(--cream-2); }
.nav-links a.active { color: var(--rust); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--rust);
  border-radius: 2px;
}

/* Dropdown menu */
.nav-item-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 40;
}
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.nav-dropdown a:hover { background: var(--cream-2); color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--rust);
  color: var(--cream) !important;
  padding: 0.55rem 0.9rem !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  transition: background .2s, transform .2s;
}
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta:hover { background: var(--rust-dark) !important; transform: translateY(-1px); }
.nav-cta.active::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

/* Mobile nav */
@media (max-width: 1050px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(360px, 85vw);
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 5.5rem 1.5rem 2rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; padding: 0.85rem 1rem; }
  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--cream-2);
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 0.25rem 0 0.5rem 1rem;
    padding: 0.25rem;
  }
  .nav-item-dropdown > a::after { content: " ↓"; color: var(--ink-muted); }
}

.scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 28, 21, 0.4);
  z-index: 45;
}
.scrim.open { display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--rust); color: var(--cream); }
.btn-primary:hover { background: var(--rust-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--ink); color: var(--cream); }
.btn-secondary:hover { background: #000; transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { color: var(--rust); }
.btn-ghost:hover { background: var(--cream-2); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 7vw, 6.5rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
}
.hero-copy h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rust);
}
.hero-copy .handwritten {
  font-size: 2rem;
  display: inline-block;
  transform: rotate(-4deg);
  margin-bottom: 0.5rem;
}
.hero-copy .lead {
  margin: 1.5rem 0 2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--rust-light), var(--gold-soft) 60%, var(--sage-light));
}
.hero-visual svg.hero-illustration { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-badge {
  position: absolute;
  right: -20px;
  top: 10%;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  transform: rotate(4deg);
  font-size: 0.92rem;
}
.hero-badge-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--rust);
  line-height: 1;
}

.hero-badge-2 {
  position: absolute;
  left: -20px;
  bottom: 12%;
  background: var(--sage);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  transform: rotate(-3deg);
  max-width: 180px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ---------- Page header (subpages) ---------- */
.page-header {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
  pointer-events: none;
}
.page-header h1 { max-width: 780px; }
.page-header .lead { margin-top: 1rem; max-width: 680px; }
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumbs a:hover { color: var(--rust); }
.breadcrumbs span { color: var(--line); }

/* ---------- Feature cards (services overview) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rust);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--cream-2);
  display: grid;
  place-items: center;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.35rem; }
.feature-card p { color: var(--ink-soft); font-size: 0.96rem; flex-grow: 1; }
.feature-card a.feature-link {
  font-weight: 600;
  color: var(--rust);
  font-size: 0.92rem;
  margin-top: 0.25rem;
}
.feature-card a.feature-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Animal cards ---------- */
.animal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.animal-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.animal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.animal-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gold-soft), var(--blush));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.animal-photo svg.animal-illustration { width: 75%; height: 75%; }
.animal-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--paper);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}
.animal-badge { z-index: 2; }
.animal-badge.urgent { background: var(--rust); color: var(--cream); }
.animal-body { padding: 1.25rem 1.25rem 1.4rem; }
.animal-body h3 {
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
}
.animal-meta {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 0.8rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.animal-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.animal-desc { font-size: 0.94rem; color: var(--ink-soft); margin-bottom: 1rem; }
.animal-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.animal-tag {
  font-size: 0.75rem;
  background: var(--cream-2);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
}

/* Different gradients per animal type */
.animal-photo.variant-1 { background: linear-gradient(135deg, #f4c7a8, #e4b0a6); }
.animal-photo.variant-2 { background: linear-gradient(135deg, #c9d5b5, #7d9466); }
.animal-photo.variant-3 { background: linear-gradient(135deg, #eac38a, #d19c4d); }
.animal-photo.variant-4 { background: linear-gradient(135deg, #e07a5a, #c24d2c); }
.animal-photo.variant-5 { background: linear-gradient(135deg, #b7c9c5, #7ca39a); }
.animal-photo.variant-6 { background: linear-gradient(135deg, #efd8c4, #d5b499); }

/* ---------- Two-column content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.two-col.reverse .col-media { order: 2; }
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-media { order: 0; }
}
.col-media {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--sage-light), var(--gold-soft));
  position: relative;
}
.col-media svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- Stat blocks ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  color: var(--rust);
  line-height: 1;
  font-variation-settings: 'opsz' 144;
}
.stat-label {
  margin-top: 0.4rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---------- Quote / Testimonial ---------- */
.quote {
  background: var(--sage-dark);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -2rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 14rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  font-style: italic;
  font-weight: 400;
  position: relative;
  max-width: 720px;
}
.quote-author {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

/* ---------- Donation / CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--rust) 0%, var(--rust-dark) 100%);
  color: var(--cream);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner::after {
  content: "";
  position: absolute;
  left: 20%;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-banner h2 { color: var(--cream); }
.cta-banner .btn-primary { background: var(--cream); color: var(--rust); }
.cta-banner .btn-primary:hover { background: var(--paper); }
.cta-banner .btn-outline { border-color: var(--cream); color: var(--cream); }
.cta-banner .btn-outline:hover { background: var(--cream); color: var(--rust); }
.cta-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}
.cta-visual svg { width: 200px; height: 200px; }
@media (max-width: 820px) {
  .cta-banner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner .hero-actions, .cta-banner .btns { justify-content: center; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.5rem 0;
}
.faq-question:hover { color: var(--rust); }
.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  color: var(--rust);
  transition: transform .3s, background .3s;
  font-size: 1.2rem;
  line-height: 1;
}
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--rust); color: var(--cream); }
.faq-answer {
  padding: 0.75rem 0 0.5rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 720px;
}
.faq-answer p { margin-bottom: 0.8rem; }

/* ---------- Contact blocks ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1rem;
}
.contact-card h3 { margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.contact-card h3 svg { width: 22px; height: 22px; color: var(--rust); }
.contact-row {
  display: flex;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.97rem;
}
.contact-row strong { color: var(--ink); min-width: 90px; display: inline-block; }
.contact-row a { color: var(--rust); font-weight: 600; }
.contact-row a:hover { text-decoration: underline; text-underline-offset: 3px; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table td {
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
}
.hours-table td:last-child { text-align: right; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-table tr.closed td { color: var(--ink-muted); }

/* ---------- Price table ---------- */
.price-table {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.price-row:last-child { border-bottom: none; }
.price-row h4 { margin-bottom: 0.2rem; font-size: 1.1rem; }
.price-row small { color: var(--ink-muted); font-size: 0.88rem; }
.price-row .price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--rust);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ---------- Alert / callout boxes ---------- */
.callout {
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--cream-2);
  border-left: 4px solid var(--rust);
  margin: 2rem 0;
}
.callout.sage { border-left-color: var(--sage); background: #eef1e5; }
.callout.gold { border-left-color: var(--gold); background: #fbf3e1; }
.callout h4 { margin-bottom: 0.4rem; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Step list ---------- */
.steps { counter-reset: step; display: grid; gap: 1.25rem; }
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  align-items: flex-start;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--rust);
  line-height: 1;
  font-variation-settings: 'opsz' 144;
}
.step h4 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.step p { color: var(--ink-soft); }

/* ---------- Prose (for text-heavy pages) ---------- */
.prose { max-width: 740px; }
.prose h2 { margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.75rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.25rem; color: var(--ink-soft); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--rust); font-weight: 600; border-bottom: 1px solid currentColor; }
.prose a:hover { color: var(--rust-dark); }
.prose strong { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cbb9a9;
  padding: 4.5rem 0 0;
  margin-top: 4rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand h3 {
  color: var(--cream);
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
}
.footer-brand p { font-size: 0.94rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #4a3a30;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--rust); border-color: var(--rust); color: var(--cream); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }
.footer-col a { font-size: 0.94rem; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid #4a3a30;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}
.made-by {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #7a6a5e;
  font-size: 0.78rem;
  transition: color .2s;
}
.made-by:hover { color: var(--gold-soft); }
.made-by strong { font-weight: 600; }

/* ---------- Chips / filter pills ---------- */
.chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.chip {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.chip:hover { background: var(--cream-2); }
.chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ---------- Emergency bar (Fundtiere) ---------- */
.emergency {
  background: linear-gradient(135deg, #8f3820, var(--rust-dark));
  color: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.emergency-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
}
.emergency-icon svg { width: 30px; height: 30px; }
.emergency h3 { color: var(--cream); margin-bottom: 0.2rem; }
.emergency p { opacity: 0.9; margin: 0; }
.emergency .btn { background: var(--cream); color: var(--rust); }
@media (max-width: 680px) {
  .emergency { grid-template-columns: 1fr; text-align: center; }
  .emergency-icon { margin: 0 auto; }
}

/* ---------- Decorative paw prints ---------- */
.paw-bg {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0.06;
  pointer-events: none;
}

/* ---------- Timeline (About) ---------- */
.timeline { position: relative; padding-left: 2rem; border-left: 2px dashed var(--line); }
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.57rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rust);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--rust);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rust);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.timeline-item h4 { font-size: 1.15rem; margin-bottom: 0.3rem; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .8s cubic-bezier(.2,.8,.2,1) both; }
.reveal-1 { animation-delay: .1s; }
.reveal-2 { animation-delay: .2s; }
.reveal-3 { animation-delay: .3s; }
.reveal-4 { animation-delay: .4s; }

/* Focus */
:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Print */
@media print {
  .site-header, .site-footer, .announce, .nav-cta { display: none !important; }
}

/* ---------- Echte Fotos in Fotocontainern ---------- */
.animal-photo img,
.col-media img,
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.animal-photo { position: relative; }
.col-media { position: relative; }
.photo-credit {
  font-size: 0.74rem;
  color: #7a6a5e;
  text-align: right;
  margin-top: 0.5rem;
  font-style: italic;
}
.photo-credit a { color: inherit; border-bottom: 1px solid currentColor; }

/* ================================================== */
/* === HERO V2 — editorial, großzügig, ruhig       === */
/* ================================================== */

/* Announce-Bar dezent ausblenden (weniger Krach oben) */
.announce { display: none !important; }

/* Header: aufgeräumter, ruhiger, mehr Luft */
.site-header {
  padding: 1.5rem 0;
  background: var(--cream);
  border-bottom: none;
}
.site-header .brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--cream);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.site-header .brand-mark svg { width: 24px; height: 24px; }
.site-header .brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.site-header .brand-name small {
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
}

/* Hero v2 */
.hero-v2 {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero-v2 .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-v2 .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.hero-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-eyebrow-line::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--rust);
}

.hero-v2 h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1.5rem 0;
  font-variation-settings: 'opsz' 144;
}
.hero-v2 h1 em {
  font-style: italic;
  color: var(--rust);
  font-family: var(--font-display);
}
.hero-v2 .lead {
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* Salbei-Button-Variante */
.btn-sage {
  background: var(--sage-dark);
  color: var(--cream);
  border: 2px solid var(--sage-dark);
}
.btn-sage:hover {
  background: #3a4a2c;
  border-color: #3a4a2c;
  color: var(--cream);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: 'opsz' 144;
}
.hero-stat-num em {
  font-style: italic;
  color: var(--rust);
  font-size: 1.3rem;
  font-weight: 400;
  margin-left: 2px;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
  line-height: 1.35;
}

/* Hero Photo rechts */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.hero-sticker {
  position: absolute;
  left: -24px;
  bottom: 38px;
  width: 130px;
  height: 130px;
  background: var(--rust);
  color: var(--cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.2;
  box-shadow: 0 10px 30px rgba(184, 74, 44, 0.35);
  transform: rotate(-6deg);
}
