/* ============================================================
   MajesticMountain-Aussies — gemeinsames Stylesheet

   INHALT
   01  Schriften
   02  Farben & Variablen
   03  Reset & Grundlagen
   04  Typografie
   05  Layout-Container
   06  Header & Navigation
   07  Hero (Startseite, Unsere Hunde, Welpen)
   08  Feature-Reihe
   09  Abschnitte
   10  Buttons & Pills
   11  Hunde-Karten
   12  Split-Bereich (Familie)
   13  Statistik-Reihe
   14  Band (VDH / CASD)
   15  Footer
   16  Unterseiten-Hero
   17  Hunde-Detailseite
   18  Wurf-Layout
   19  Cobs-Layout
   20  Dokumente (PDF-Links)
   21  Timeline
   22  Kontaktformular
   23  Karten-Raster (Cobs / News)
   24  News-Liste
   25  Memorial-Band (Regenbogen)
   26  Fließtext
   27  Utility-Grids
   28  Mobile-Menü-Button
   29  Bilddarstellung
   30  Swiper-Galerie
   31  MEDIA QUERIES  ← alle Bildschirmgrößen-Anpassungen ganz am Ende
   ============================================================ */


/* ============================================================
   01  SCHRIFTEN   (muss als Erstes stehen)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;500;600;700&family=Caveat:wght@400;500;600&display=swap');


/* ============================================================
   02  FARBEN & VARIABLEN
   ============================================================ */
:root {
  --bg: #f5f0e6;
  --bg-soft: #efeae0;
  --card: #fbf8f2;
  --card-warm: #f3ece0;
  --ink: #2b2a26;
  --ink-soft: #5a564d;
  --muted: #8a8678;
  --sage: #7a8a6b;
  --sage-deep: #5d6e54;
  --forest: #3d4a38;
  --forest-deep: #2d3a2a;
  --yellow: #e8d68a;
  --yellow-soft: #f4ecc4;
  --line: #d8d1bf;
  --line-soft: #e6dfcc;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --script: 'Caveat', cursive;

  --container: 1180px;
  --gutter: clamp(24px, 6vw, 60px);
}


/* ============================================================
   03  RESET & GRUNDLAGEN
   ============================================================ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 3px; border-radius: 3px; }


/* ============================================================
   04  TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.2vw, 64px); line-height: 1.08; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.12; }
h3 { font-size: clamp(20px, 2.2vw, 26px); line-height: 1.25; }

.script {
  font-family: var(--script);
  font-weight: 500;
  color: var(--sage-deep);
  font-size: 26px;
  letter-spacing: 0.01em;
}
.script-lg { font-size: 36px; }
.accent { color: var(--sage-deep); font-family: var(--serif); }
.muted { color: var(--ink-soft); }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}


/* ============================================================
   05  LAYOUT-CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.soft-bg { background: var(--bg-soft); }


/* ============================================================
   06  HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: relative;
  z-index: 30;
  padding: 22px 0;
}
.site-header.over-hero {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo & Schriftzug */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}
.brand-logo {
  width: auto;      /* Breite folgt dem Seitenverhältnis des Logos */
  height: 56px;     /* Höhe gibt die Größe vor */
  flex: none;
}
.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.brand-tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
}

/* Navigationsleiste */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;          /* abgestimmt auf das breite Logo, siehe .nav-inner */
  margin-left: auto;
  font-size: 14.5px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 100px;
  padding: 9px 22px;
  box-shadow:
    0 2px 18px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(0, 0, 0, 0.04);
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--sage-deep); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--sage-deep);
}

/* Untermenüs */
.nav-links .has-sub { position: relative; cursor: default; }
.nav-links .has-sub > .label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-links .has-sub > .label::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.nav-links .submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 10px;
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 24px 48px -24px rgba(45, 58, 42, 0.25);
}
.nav-links .submenu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-links .has-sub:hover .submenu { display: flex; }
.nav-links .submenu a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
}
.nav-links .submenu a:hover { background: var(--bg-soft); }

/* Herz-Symbol rechts */
.nav-heart {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-deep);
}


/* ============================================================
   07  HERO  (Startseite, Unsere Hunde, Welpen)
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  background: var(--bg);
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  min-height: 500px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: var(--card-warm);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}
.hero-copy .script {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero-copy h1 .accent { display: block; }
.hero-copy p {
  margin-top: 24px;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 460px;
}

/* Wellenförmiger Übergang unter dem Hero */
.wave-divider {
  position: relative;
  height: 60px;
  margin-top: -60px;
  z-index: 2;
}
.wave-divider svg { width: 100%; height: 100%; display: block; }


/* ============================================================
   08  FEATURE-REIHE
   ============================================================ */
.feature-row { padding: 20px 0 50px; }
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.feature {
  padding: 0 24px;
  position: relative;
}
.feature + .feature::before {
  content: '';
  position: absolute;
  left: 0; top: 30px; bottom: 30px;
  width: 1px;
  background: var(--line);
}
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--sage-deep);
}
.feature h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.feature p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}


/* ============================================================
   09  ABSCHNITTE
   ============================================================ */
.section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section-head {
  margin-bottom: 28px;
  position: relative;
}
.section-head .script {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.section-head h2 .accent { color: var(--sage-deep); }

/* dezente Pflanzen-Grafik im Hintergrund */
.botanical {
  position: absolute;
  pointer-events: none;
  opacity: 0.7;
  overflow: hidden;
}


/* ============================================================
   10  BUTTONS & PILLS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: #f3efe2;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  border-color: var(--sage);
  color: var(--sage-deep);
}
.btn-outline:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: #f3efe2;
}

.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  font-size: 13px;
  color: var(--sage-deep);
  background: transparent;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
a.pill:hover {
  background: var(--sage-deep);
  color: #f3efe2;
  border-color: var(--sage-deep);
}


/* ============================================================
   11  HUNDE-KARTEN
   ============================================================ */
.dog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dog-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 0 var(--line-soft);
  display: flex;
  flex-direction: column;
}
.dog-photo {
  aspect-ratio: 4/4.6;
  background: var(--card-warm);
  position: relative;
  overflow: hidden;
}
.dog-card-body { padding: 16px 18px 22px; }
.dog-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 6px;
}
.dog-card p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.badge svg { width: 13px; height: 13px; color: var(--sage-deep); }


/* ============================================================
   12  SPLIT-BEREICH (Familie)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.family-photo-wrap { position: relative; }
.family-photo {
  aspect-ratio: 5/4;
  background: var(--card-warm);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* handgeschriebener Notizzettel */
.sticky-note {
  position: absolute;
  left: -30px;
  bottom: -30px;
  width: 220px;
  background: #f3e9ce;
  padding: 22px 22px;
  font-family: var(--script);
  font-size: 19px;
  color: #5a5546;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 8px 16px -8px rgba(45,58,42,0.2);
  transform: rotate(-2deg);
}
.sticky-note::before {
  content: '';
  position: absolute;
  top: -8px; right: 18px;
  width: 24px; height: 16px;
  background: rgba(180,160,110,0.4);
  border-radius: 2px;
  transform: rotate(8deg);
}


/* ============================================================
   13  STATISTIK-REIHE
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  border-top: 1px solid var(--line-soft);
  padding-top: 28px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.stat-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}
.stat span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.3;
}


/* ============================================================
   14  BAND (VDH / CASD)
   ============================================================ */
.band {
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 36px 0;
}
.band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.band h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 4px;
}
.band p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 520px;
}


/* ============================================================
   15  FOOTER
   ============================================================ */
.site-footer {
  background: var(--forest);
  color: #d3d4c5;
  padding: 0;
  position: relative;
}
.mountain-silhouette {
  position: absolute;
  top: -1px;
  left: 0; right: 0;
  height: 90px;
  pointer-events: none;
}
.mountain-silhouette svg { width: 100%; height: 100%; display: block; }
.footer-inner {
  padding-top: 100px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  font-size: 13.5px;
}
.footer-brand .brand-name { color: #f0eedf; font-size: 18px; }
.footer-brand p {
  color: #b7baa6;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c5c8b1;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #b7baa6; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 12px;
  color: #8a8d7a;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-mobile-nav { display: none; }


/* ============================================================
   16  UNTERSEITEN-HERO
   ============================================================ */
.page-hero {
  padding: 88px 0 48px;
  background: var(--bg);
  position: relative;
}
.page-hero .script { margin-bottom: 12px; display: inline-block; }
.page-hero h1 { max-width: 760px; }
.page-hero p {
  margin-top: 20px;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 16px;
}


/* ============================================================
   17  HUNDE-DETAILSEITE
   ============================================================ */
.dog-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas: "photos heading" "photos body";
  gap: 60px;
  align-items: start;
  padding: 40px 0 60px;
}
.dog-heading { grid-area: heading; }
.dog-photos { grid-area: photos; }
.dog-body { grid-area: body; }
.dog-heading h1 { font-size: 56px; }

.dog-detail .photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.dog-detail .photo-stack .ph-main {
  grid-column: 1 / -1;
  aspect-ratio: 4/3;
  background: var(--card-warm);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.dog-detail .photo-stack .ph-sm {
  aspect-ratio: 1/1;
  background: var(--card-warm);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.dog-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px 24px;
  margin: 32px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0;
  font-size: 14px;
}
.dog-meta dt {
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-self: center;
}
.dog-meta dd { margin: 0; color: var(--ink); }
.dog-bio p { font-size: 15px; color: var(--ink-soft); margin: 14px 0; }


/* ============================================================
   18  WURF-LAYOUT
   ============================================================ */
.wurf-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "heading image" "body image";
  gap: 60px;
  align-items: start;
}
.wurf-heading { grid-area: heading; }
.wurf-image { grid-area: image; }
.wurf-body { grid-area: body; }


/* ============================================================
   19  COBS-LAYOUT
   ============================================================ */
.cobs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "heading image" "text image";
  gap: 60px;
  align-items: start;
}
.cobs-heading { grid-area: heading; }
.cobs-image { grid-area: image; }
.cobs-text { grid-area: text; }


/* ============================================================
   20  DOKUMENTE (PDF-Links)
   ============================================================ */
.docs-row {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}
.doc-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: var(--card);
  font-size: 14px;
}
.doc-link .icon { color: var(--sage-deep); flex: none; }
.doc-link small {
  display: block;
  color: var(--muted);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ============================================================
   21  TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding: 20px 0 0 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 70px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: var(--line);
}
.tl-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  padding: 24px 0;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 67px; top: 32px;
  width: 7px; height: 7px;
  background: var(--sage-deep);
  border-radius: 50%;
}
.tl-date {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--sage-deep);
  padding-top: 24px;
}
.tl-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 20px 24px;
}
.tl-card h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 6px; }
.tl-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }


/* ============================================================
   22  KONTAKTFORMULAR
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-block {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.contact-block .ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}
.contact-block h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 4px;
  font-weight: 700;
}
.contact-block p { margin: 0; font-size: 15px; color: var(--ink); }

.contact-form {
  background: var(--card);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--line-soft);
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-form label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  background: var(--forest);
  color: #f3efe2;
  border: 0;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  margin-top: 8px;
}
.contact-form button:hover { background: var(--forest-deep); }


/* ============================================================
   23  KARTEN-RASTER (Cobs / News)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.simple-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 200px 1fr;
}
.simple-card .body { padding: 22px 24px; }
.simple-card h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 6px; }
.simple-card .eyebrow { margin-bottom: 8px; display: block; }
.simple-card p { margin: 0; color: var(--ink-soft); font-size: 13.5px; }
.simple-card a.more {
  display: inline-flex;
  margin-top: 12px;
  align-items: center;
  gap: 6px;
  color: var(--sage-deep);
  font-size: 13px;
  letter-spacing: 0.04em;
}


/* ============================================================
   24  NEWS-LISTE
   ============================================================ */
.news-list { display: grid; gap: 20px; }
.news-item {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: start;
  overflow: hidden;
}
.news-date {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--sage-deep);
  padding-top: 2px;
}
.news-date small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
  margin-bottom: 4px;
}
.news-item h3 { font-size: 22px; margin-bottom: 6px; }
.news-item p { margin: 0; color: var(--ink-soft); font-size: 14px; }


/* ============================================================
   25  MEMORIAL-BAND (Regenbogen)
   ============================================================ */
.memorial-band {
  display: grid;
  grid-template-columns: 72px 1fr 32px;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding: 28px 36px;
  background:
    linear-gradient(135deg, rgba(232,214,138,0.08), rgba(122,138,107,0.06)),
    var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  color: var(--ink);
  transition: background .25s, transform .25s;
}
.memorial-band:hover { background: var(--card-warm); transform: translateY(-2px); }
.memorial-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}
.memorial-arrow {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--sage-deep);
  justify-self: end;
}


/* ============================================================
   26  FLIESSTEXT
   ============================================================ */
.prose { max-width: 720px; }
.prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.prose h3 { margin-top: 32px; margin-bottom: 8px; }


/* ============================================================
   27  UTILITY-GRIDS
   (brechen auf dem Handy per !important in Abschnitt 31 um)
   ============================================================ */
.two-col-grid { display: grid; }
.three-col-grid { display: grid; }
.puppy-grid { display: grid; }


/* ============================================================
   28  MOBILE-MENÜ-BUTTON
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   29  BILDDARSTELLUNG
   ============================================================ */
.hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.dog-photo img,
.family-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.ph-main img, .ph-sm img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.simple-card > img {
  width: 200px; min-height: 200px;
  object-fit: cover; object-position: center;
  display: block;
  flex-shrink: 0;
}


/* ============================================================
   30  SWIPER-GALERIE
   ============================================================ */
.gallery-swiper { width: 100%; padding-bottom: 46px !important; }
.gallery-swiper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-swiper .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.88);
  width: 38px; height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  top: calc(50% - 26px);
}
.gallery-swiper .swiper-button-prev::after,
.gallery-swiper .swiper-button-next::after { font-size: 13px; font-weight: 700; }
.gallery-swiper .swiper-pagination-bullet { background: var(--sage); opacity: 0.5; }
.gallery-swiper .swiper-pagination-bullet-active { background: var(--forest); opacity: 1; }

/* Miniaturbild-Leiste (Aktuelles) */
.thumb-swiper { width: 100%; margin-top: 16px; }
.thumb-swiper .swiper-slide {
  border-radius: 6px;
  overflow: hidden;
  height: 90px; width: 110px !important;
}
.thumb-swiper .swiper-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


/* ============================================================
   31  MEDIA QUERIES
   Alle Anpassungen für Bildschirmgrößen — ab hier und
   sonst nirgends. Neue Handy-Regeln kommen in den Block
   „bis 900px" ganz unten.
   ============================================================ */

/* ------------------------------------------------------------
   31a  NUR DESKTOP  (ab 901px)
   ------------------------------------------------------------ */
@media (min-width: 901px) {

  /* Welpen-Hero: helle Schrift auf dem Titelbild */
  body[data-page="welpen"] .hero-copy .script,
  body[data-page="welpen"] .hero-copy h1 .accent,
  body[data-page="welpen"] .hero-copy p {
    color: #ffffff;
  }
}


/* ------------------------------------------------------------
   31b  HANDY & TABLET  (bis 900px)
   ------------------------------------------------------------ */
@media (max-width: 900px) {

  /* --- Kopfzeile bleibt oben kleben, mit Milchglas beim Scrollen --- */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    transition: box-shadow 0.35s ease, border-color 0.35s ease;
  }
  .site-header.over-hero { position: fixed; }

  /* Milchglas liegt auf ::before, damit die Kopfzeile selbst kein
     Bezugsrahmen für position:fixed wird (sonst bricht das Menü) */
  .site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background 0.35s ease, backdrop-filter 0.35s ease,
                -webkit-backdrop-filter 0.35s ease;
  }
  .site-header.scrolled::before {
    background: rgba(245, 240, 230, 0.82);
    backdrop-filter: blur(22px) saturate(1.8);
    -webkit-backdrop-filter: blur(22px) saturate(1.8);
  }
  .site-header.scrolled {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), 0 2px 18px rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.22);
  }

  /* --- Logo & Schriftzug --- */
  .nav-inner { justify-content: center; position: relative; }
  .brand-logo { height: 44px; }
  .brand-name { font-size: 17px; }
  .brand-tag { font-size: 8.5px; letter-spacing: 0.2em; }
  .nav-heart { display: none; }

  /* --- Menü-Button --- */
  .nav-toggle {
    display: flex;
    position: fixed;
    top: 36px; right: 16px;
    z-index: 400;
  }

  /* --- Aufgeklapptes Menü --- */
  .nav-links { display: none !important; }
  .nav-links.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 300;
    padding: 90px 32px 40px;
    gap: 8px;
    overflow-y: auto;
  }
  .nav-links.mobile-open a,
  .nav-links.mobile-open .has-sub { font-size: 22px; padding: 10px 0; }
  .nav-links.mobile-open .submenu {
    display: flex !important;
    position: static;
    transform: none;
    background: none;
    border: none;
    box-shadow: none;
    padding: 4px 0 4px 20px;
  }
  .nav-links.mobile-open .submenu a { font-size: 15px; }

  /* --- Hero --- */
  .hero { padding-bottom: 50px; min-height: 440px; }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245,240,230,0.45);
    pointer-events: none;
  }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 0; }
  .hero-grid > div:last-child { display: none; }
  .hero-copy h1 { font-size: clamp(24px, 7vw, 36px); }
  .hero-copy p { font-size: 14px; max-width: 320px; }
  .hero-regenbogen .hero-photo img { object-position: left center; }

  /* --- Abschnitte & Unterseiten-Hero --- */
  .section { padding-top: 28px; padding-bottom: 28px; }
  .page-hero { padding: 44px 0 20px; }
  .botanical { display: none; }

  /* --- Startseite --- */
  .features { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .feature + .feature::before { display: none; }
  .dog-grid { grid-template-columns: 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .sticky-note {
    width: 140px;
    font-size: 14px;
    padding: 12px 14px;
    left: -10px;
    bottom: -20px;
  }

  /* --- Hunde-Detailseite --- */
  .dog-detail { display: flex; flex-direction: column; align-items: stretch; gap: 24px; }
  .dog-heading { order: 1; }
  .dog-photos { order: 2; }
  .dog-body { order: 3; }
  .dog-heading h1 {
    font-size: 28px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* --- Wurf-Seiten --- */
  .wurf-layout { display: flex; flex-direction: column; align-items: stretch; gap: 24px; }
  .wurf-heading { order: 1; }
  .wurf-image { order: 2; }
  .wurf-body { order: 3; }

  /* --- Cobs-Seiten --- */
  .cobs-split { display: flex; flex-direction: column; gap: 20px; }
  .cobs-heading { order: 1; }
  .cobs-image { order: 2; }
  .cobs-text { order: 3; }

  /* --- Aktuelles: Fotos seitlich wischbar --- */
  .news-item { grid-template-columns: 1fr; gap: 10px; }
  .news-item > * { min-width: 0; }
  .news-photos {
    display: flex !important;
    overflow-x: auto;
    gap: 8px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    min-width: 0;
  }
  .news-photos > div {
    flex: none;
    width: 58vw;
    max-width: 200px;
    scroll-snap-align: start;
  }

  /* --- Karten & Raster --- */
  .card-grid { grid-template-columns: 1fr; }
  .simple-card { grid-template-columns: 1fr !important; }
  .simple-card > img { width: 100% !important; min-height: 220px !important; }
  .simple-card > div[data-images] { width: 100% !important; min-height: 220px !important; flex: none; }
  .simple-card > div:not(.body):not([data-images]) { width: 100% !important; min-height: 220px !important; }
  .two-col-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .three-col-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .puppy-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

  /* --- Footer --- */
  .footer-inner { grid-template-columns: 1fr; padding-bottom: 16px; }
  .footer-col { display: none; }
  .footer-brand p { display: none; }
  .footer-mobile-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding: 20px var(--gutter) 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-mobile-nav a { color: #b7baa6; font-size: 13px; }

  /* --- Welpen-Hero: Fließtext dunkler für bessere Lesbarkeit --- */
  body[data-page="welpen"] .hero-copy p { color: #000000; }
}