/* ============================================================
   Familienzucht Himmlischer Engel — Design System
   Warm cream + honey gold + sage, modern grotesk.
   ============================================================ */

:root {
  --cream: #FAF6F0;
  --cream-2: #F3ECDF;
  --white: #FFFFFF;
  --ink: #221C14;
  --ink-soft: #4E463A;
  --mut: #8A8072;
  --gold: #B9862F;
  --gold-soft: #D9B36A;
  --gold-tint: #F6EBD4;
  --sage: #6F7F6A;
  --sage-tint: #E9EEE6;
  --fb: #1877F2;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 10px rgba(34,28,20,0.06);
  --shadow-md: 0 10px 34px rgba(34,28,20,0.10);
  --shadow-lg: 0 24px 70px rgba(34,28,20,0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --gold-grad: linear-gradient(115deg, #E7C77F 0%, #B9862F 48%, #D9B36A 100%);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--gold-soft); color: var(--ink); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: #D8CDBA; border-radius: 8px; border: 3px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-soft); }

/* film grain for a warm, analog feel */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 2000; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; }
.display { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 800; }
.h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-soft); }
.h2 em, .display em, .page-hero h1 em {
  font-style: normal; background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.overline::before { content: ""; width: 34px; height: 2px; background: var(--gold-soft); border-radius: 2px; }

/* ---------- layout ---------- */
.wrap { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.wrap-narrow { width: min(860px, calc(100% - 48px)); margin: 0 auto; }
section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-alt {
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(217,179,106,0.18), transparent 62%),
    radial-gradient(900px 480px at -8% 108%, rgba(111,127,106,0.12), transparent 60%),
    var(--cream-2);
}
.sec-clip { overflow: hidden; isolation: isolate; }
.big-word {
  position: absolute; top: clamp(8px, 2vw, 26px); right: clamp(12px, 2.5vw, 36px); z-index: -1;
  pointer-events: none; user-select: none; white-space: nowrap;
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  font-size: clamp(4.4rem, 13vw, 11rem); letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(185,134,47,0.16);
}
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head p { margin-top: 16px; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }
.center .overline { justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), transform 0.4s var(--ease);
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(250, 246, 240, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(34,28,20,0.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 50%; box-shadow: 0 0 0 2px rgba(185,134,47,0.35); }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; line-height: 1.15; letter-spacing: 0.01em; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mut); }
.on-dark .brand-name, .on-dark .nav-links a { color: #fff; }
.on-dark .brand-name small { color: rgba(255,255,255,0.75); }
.site-header.scrolled .brand-name, .site-header.scrolled .nav-links a { color: var(--ink); }
.site-header.scrolled .brand-name small { color: var(--mut); }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  padding: 9px 14px; border-radius: 999px; transition: background 0.25s, color 0.25s;
}
.nav-links a:hover { background: rgba(185,134,47,0.12); color: var(--gold); }
.nav-links a.active { background: var(--gold); color: #fff !important; }
.nav-cta {
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
  background: var(--ink); color: #fff !important; padding: 10px 20px; border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }

.burger { display: none; z-index: 130; width: 44px; height: 44px; border-radius: 12px; position: relative; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2.5px; border-radius: 2px;
  background: var(--ink); transition: all 0.3s var(--ease);
}
.on-dark .burger span { background: #fff; }
.site-header.scrolled .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21.5px; }
.burger span:nth-child(3) { top: 28px; }
body.nav-open .burger span { background: var(--ink) !important; }
body.nav-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; height: 100dvh; z-index: 120; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; padding: 40px 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
  overscroll-behavior: contain;
}
body.nav-open .mobile-nav { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }
html:has(body.nav-open) { overflow: hidden; }
body.nav-open .site-header { z-index: 130; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.nav-open .site-header .brand-name { color: var(--ink); }
body.nav-open .site-header .brand-name small { color: var(--mut); }
.mobile-nav > a {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 7vw, 2.4rem);
  padding: 10px 0; color: var(--ink); opacity: 0; transform: translateY(18px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.25s;
}
.mobile-nav > a:hover, .mobile-nav > a.active { color: var(--gold); }
body.nav-open .mobile-nav > a { opacity: 1; transform: none; }
.mobile-nav > a:nth-child(1) { transition-delay: 0.05s; } .mobile-nav > a:nth-child(2) { transition-delay: 0.09s; }
.mobile-nav > a:nth-child(3) { transition-delay: 0.13s; } .mobile-nav > a:nth-child(4) { transition-delay: 0.17s; }
.mobile-nav > a:nth-child(5) { transition-delay: 0.21s; } .mobile-nav > a:nth-child(6) { transition-delay: 0.25s; }
.mobile-nav > a:nth-child(7) { transition-delay: 0.29s; }
.mobile-nav .mobile-meta { margin-top: 34px; color: var(--mut); font-size: 0.95rem; opacity: 0; transition: opacity 0.5s 0.35s; }
.mobile-nav .mobile-meta a { white-space: nowrap; }
body.nav-open .mobile-nav .mobile-meta { opacity: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s;
  will-change: transform;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.38), transparent);
  transform: skewX(-20deg); transition: left 0.65s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 8px 24px rgba(185,134,47,0.35); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(185,134,47,0.45); background: #a97a26; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.btn-ghost-dark { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px rgba(34,28,20,0.25); }
.btn-ghost-dark:hover { box-shadow: inset 0 0 0 2px var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-fb { background: var(--fb); color: #fff; }
.btn-fb:hover { background: #0f66d8; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(24,119,242,0.35); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 0 0 clamp(60px, 9vh, 110px); overflow: hidden; color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: kenburns 22s var(--ease) both;
  transform-origin: center;
}
@keyframes kenburns { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(75% 62% at 22% 76%, rgba(20,16,10,0.62), transparent 74%),
    linear-gradient(180deg, rgba(20,16,10,0.58) 0%, rgba(20,16,10,0.26) 34%, rgba(20,16,10,0.46) 60%, rgba(20,16,10,0.88) 100%);
}
.hero-content { max-width: 780px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(20,16,10,0.4); border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 999px; padding: 9px 18px 9px 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.88rem;
  margin-bottom: 26px;
}
.hero-badge .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; font-size: 0.8rem; }
@media (max-width: 760px) {
  .hero-badge { display: none; }
  .hero { padding-bottom: clamp(100px, 15svh, 160px); }
}
.hero h1 { margin-bottom: 22px; text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: block; transform: translateY(110%); animation: riseUp 0.9s var(--ease) forwards; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.14s; }
@keyframes riseUp { to { transform: translateY(0); } }
.hero .lead { color: rgba(255,255,255,0.94); max-width: 560px; margin-bottom: 34px; opacity: 0; animation: fadeUp 0.9s 0.45s var(--ease) forwards; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 0.6s var(--ease) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
/* sub-hero for inner pages */
.page-hero {
  position: relative; min-height: clamp(420px, 62vh, 620px); display: flex; align-items: flex-end;
  padding-bottom: clamp(44px, 6vh, 72px); overflow: hidden; color: #fff;
}
.page-hero .hero-media img { animation-duration: 16s; }
.page-hero h1 { text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.page-hero .lead { color: rgba(255,255,255,0.94); max-width: 620px; margin-top: 14px; text-shadow: 0 1px 2px rgba(0,0,0,0.35); }
.breadcrumb { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }

/* ---------- stats strip ---------- */
.stats-strip { position: relative; z-index: 5; margin-top: clamp(-64px, -6vw, -40px); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat-cell { padding: clamp(24px, 3vw, 40px) clamp(16px, 2.4vw, 34px); text-align: center; position: relative; transition: background 0.4s var(--ease); }
.stat-cell:hover { background: linear-gradient(180deg, transparent, var(--gold-tint)); }
.stat-cell + .stat-cell::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--cream-2); }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 3rem); color: var(--ink); line-height: 1; }
.stat-num .suffix { color: var(--gold); }
.stat-label { margin-top: 8px; font-size: 0.83rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mut); }

/* ---------- cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 26px); }

.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: clamp(26px, 3vw, 38px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  background: var(--gold-tint); color: var(--gold); margin-bottom: 20px; font-size: 1.5rem;
  transition: background 0.35s, color 0.35s, transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card:hover .card-icon {
  background: var(--gold); color: #fff; transform: rotate(-6deg) scale(1.07);
  box-shadow: 0 10px 24px rgba(185,134,47,0.35);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

.img-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.img-frame:hover img { transform: scale(1.045); }
.img-frame::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28), inset 0 -70px 90px -70px rgba(20,16,10,0.38);
}

.photo-duo { position: relative; }
.photo-duo .img-frame:first-child { width: 82%; }
.photo-duo .img-frame:last-child {
  position: absolute; right: 0; bottom: -46px; width: 52%;
  border: 6px solid var(--cream); box-shadow: var(--shadow-lg);
}
.floating-chip {
  display: block; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}
.floating-chip::before {
  content: ""; display: inline-block; width: 34px; height: 2px;
  background: var(--gold-soft); border-radius: 2px; vertical-align: middle; margin-right: 12px;
}
.floating-chip small { display: inline; font-family: var(--font-body); font-weight: 500; color: var(--mut); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: none; }
.floating-chip small::before { content: " \00B7  "; color: var(--gold-soft); }

/* ---------- dog profile cards ---------- */
.dog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); display: flex; flex-direction: column; }
.dog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dog-card .ph { aspect-ratio: 1 / 1; overflow: hidden; }
.dog-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.dog-card:hover .ph img { transform: scale(1.06); }
.dog-card .body { padding: 24px 26px 28px; flex: 1; }
.dog-tag {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  background: var(--gold-tint); border-radius: 999px; padding: 5px 12px; margin-bottom: 12px;
}
.dog-tag.sage { color: var(--sage); background: var(--sage-tint); }
.dog-card h3 { font-size: 1.35rem; }
.dog-card .body p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 8px; }

/* ---------- lines split (weiß vs. gold) ---------- */
.lines-split { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.line-half { display: flex; justify-content: center; padding: clamp(52px, 7vw, 96px) clamp(24px, 4vw, 64px); }
.line-inner { max-width: 500px; width: 100%; }
.line-cream { background: linear-gradient(155deg, #FFFEFB 0%, #FDF9F1 55%, var(--gold-tint) 140%); }
.line-gold { background: linear-gradient(155deg, #96691D 0%, var(--gold) 48%, #CE9F55 100%); color: #fff; }
.line-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem); line-height: 1.12; letter-spacing: -0.01em;
  margin: 14px 0 24px;
}
.line-cream .line-title { color: var(--ink); }
.line-photo { border-radius: 18px; overflow: hidden; aspect-ratio: 16/10; margin-bottom: 24px; }
.line-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.line-half:hover .line-photo img { transform: scale(1.04); }
.line-cream .line-photo { box-shadow: 0 18px 44px -18px rgba(34,28,20,0.35), 0 0 0 1px rgba(185,134,47,0.18); }
.line-gold .line-photo { box-shadow: 0 18px 44px -18px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.28); }
.line-half p { font-size: 0.98rem; }
.line-cream p { color: var(--ink-soft); }
.line-gold p { color: rgba(255,255,255,0.94); }
.line-gold .overline { color: #fff; }
.line-gold .overline::before { background: rgba(255,255,255,0.65); }
.line-names { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.line-names span {
  font-family: var(--font-display); font-weight: 700; font-size: 0.86rem;
  padding: 7px 16px; border-radius: 999px;
}
.line-cream .line-names span { background: var(--gold-tint); color: var(--gold); }
.line-gold .line-names span { background: rgba(255,255,255,0.16); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3); }
.line-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.92rem;
  border-bottom: 2px solid; padding-bottom: 3px; transition: opacity 0.25s;
}
.line-link:hover { opacity: 0.7; }
.line-cream .line-link { color: var(--gold); border-color: var(--gold-soft); }
.line-gold .line-link { color: #fff; border-color: rgba(255,255,255,0.6); }
.lines-split::after {
  content: "&"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%; background: #fff; color: var(--gold);
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(34,28,20,0.22);
  z-index: 2;
}
.line-anchor { scroll-margin-top: 90px; }

/* ---------- timeline (Würfe / Aufzucht) ---------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--gold-soft), var(--sage-tint));
  border-radius: 2px;
}
.tl-item { position: relative; padding: 0 0 clamp(30px, 4vw, 46px) clamp(18px, 2.4vw, 30px); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -34px; top: 7px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--white); border: 4px solid var(--gold);
  box-shadow: 0 0 0 5px var(--gold-tint);
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.tl-item:hover::before {
  transform: scale(1.12);
  box-shadow: 0 0 0 5px var(--gold-tint), 0 0 0 13px rgba(185,134,47,0.12);
}
.tl-date { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tl-item h3 { margin-bottom: 8px; }
.tl-item p { color: var(--ink-soft); max-width: 560px; }

/* ---------- marquee ---------- */
.marquee-section { padding: clamp(30px, 4vw, 46px) 0; background: var(--ink); overflow: hidden; position: relative; }
.marquee-section::before, .marquee-section::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(60px, 10vw, 170px);
  z-index: 2; pointer-events: none;
}
.marquee-section::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee-section::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.marquee { display: flex; gap: 0; white-space: nowrap; will-change: transform; }
.marquee-track { display: flex; align-items: center; gap: 38px; padding-right: 38px; animation: marquee 46s linear infinite; }
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee-track span {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  display: inline-flex; align-items: center; gap: 38px;
}
.marquee-track span::after { content: "🐾"; font-size: 0.9em; opacity: 0.6; }

/* ---------- reviews ---------- */
.review-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 28px 28px 24px; display: flex; flex-direction: column; gap: 16px;
  break-inside: avoid; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  position: relative;
}
.review-card::before {
  content: "„"; position: absolute; top: -4px; right: 20px; pointer-events: none;
  font-family: var(--font-display); font-weight: 800; font-size: 4.6rem; line-height: 1;
  color: var(--gold-tint);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(34,28,20,0.12), 0 0 0 1px rgba(185,134,47,0.22);
}
.review-head { display: flex; align-items: center; gap: 13px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
}
.review-head .who { line-height: 1.3; }
.review-head .who strong { font-family: var(--font-display); font-size: 0.98rem; }
.review-head .who small { display: block; color: var(--mut); font-size: 0.8rem; }
.rec-badge { display: inline-flex; align-items: center; gap: 5px; color: var(--fb); font-weight: 600; font-size: 0.8rem; }
.rec-badge svg { width: 14px; height: 14px; }
.review-card blockquote { color: var(--ink-soft); font-size: 0.97rem; }
.review-card blockquote::before { content: "„"; color: var(--gold-soft); font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; line-height: 0; margin-right: 2px; }
.review-card blockquote::after { content: "“"; color: var(--gold-soft); font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; line-height: 0; margin-left: 2px; }
.review-wall { columns: 3; column-gap: 24px; }
.review-wall .review-card { margin-bottom: 24px; }

/* recommendation ring */
.ring-stat { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); flex-wrap: wrap; }
.ring { position: relative; width: clamp(150px, 18vw, 200px); height: clamp(150px, 18vw, 200px); flex: none; }
.ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.ring circle { fill: none; stroke-width: 11; stroke-linecap: round; }
.ring .bg { stroke: var(--cream-2); }
.ring .fg { stroke: var(--gold); stroke-dasharray: 289; stroke-dashoffset: 289; transition: stroke-dashoffset 1.6s var(--ease); filter: drop-shadow(0 4px 10px rgba(185,134,47,0.4)); }
.ring .ring-label { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.ring .ring-label strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.6rem); display: block; line-height: 1; }
.ring .ring-label small { color: var(--mut); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- gallery ---------- */
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 44px); }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  padding: 10px 20px; border-radius: 999px; background: var(--white); color: var(--ink-soft);
  box-shadow: var(--shadow-sm); transition: all 0.25s var(--ease);
}
.chip:hover { transform: translateY(-2px); color: var(--gold); }
.chip.active { background: var(--ink); color: #fff; }
.masonry { columns: 3; column-gap: 20px; }
.masonry .g-item {
  break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius-sm); overflow: hidden;
  position: relative; cursor: zoom-in; box-shadow: var(--shadow-sm); display: block; width: 100%;
  padding: 0;
}
.masonry .g-item img { width: 100%; transition: transform 0.7s var(--ease); }
.masonry .g-item:hover img { transform: scale(1.05); }
.masonry .g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(20,16,10,0.55));
  opacity: 0; transition: opacity 0.4s;
}
.masonry .g-item:hover::after { opacity: 1; }
.masonry .g-item .cap {
  position: absolute; left: 16px; bottom: 12px; z-index: 2; color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  opacity: 0; transform: translateY(8px); transition: all 0.4s var(--ease);
}
.masonry .g-item:hover .cap { opacity: 1; transform: none; }
.masonry .g-item .cap::before { content: ""; display: inline-block; width: 16px; height: 2px; background: var(--gold-soft); border-radius: 2px; margin-right: 8px; vertical-align: middle; }
.g-item.hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(15,12,8,0.93);
  display: grid; place-items: center; opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(92vw, 1100px); max-height: 84vh; border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5);
  transform: scale(0.96); transition: transform 0.35s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lb-cap { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.85); font-family: var(--font-display); font-weight: 600; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px;
  border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 1.4rem;
  display: grid; place-items: center; transition: background 0.25s;
}
.lb-btn:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 22px; } .lb-next { right: 22px; }
.lb-close { position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-size: 1.2rem; display: grid; place-items: center; }
.lb-close:hover { background: rgba(255,255,255,0.22); }

/* ---------- big CTA ---------- */
.cta-banner {
  position: relative; border-radius: calc(var(--radius) + 8px); overflow: hidden;
  padding: clamp(52px, 7vw, 96px) clamp(28px, 5vw, 80px);
  color: #fff; text-align: center;
}
.cta-banner .bg { position: absolute; inset: 0; z-index: -2; }
.cta-banner .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.cta-banner .scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(24,19,12,0.62), rgba(24,19,12,0.78)); }
.cta-banner::after {
  content: ""; position: absolute; inset: 14px; pointer-events: none;
  border-radius: calc(var(--radius) - 4px); border: 1px solid rgba(255,255,255,0.26);
}
.cta-banner .bg img { animation: ctazoom 20s ease-in-out infinite alternate; }
@keyframes ctazoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 30px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-row { justify-content: center; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid rgba(34,28,20,0.08); }
.contact-item:last-child { border-bottom: none; }
.contact-item .ic { width: 50px; height: 50px; flex: none; border-radius: 16px; background: var(--gold-tint); color: var(--gold); display: grid; place-items: center; }
.contact-item .ic svg { width: 23px; height: 23px; }
.contact-item strong { font-family: var(--font-display); display: block; margin-bottom: 3px; }
.contact-item a.link { color: var(--gold); font-weight: 600; }
.contact-item a.link:hover { text-decoration: underline; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3.4; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* FAQ */
.faq-item { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); margin-bottom: 14px; overflow: hidden; transition: box-shadow 0.35s var(--ease); }
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink);
  transition: color 0.25s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--gold-tint); color: var(--gold); display: grid; place-items: center; font-size: 1.1rem; transition: transform 0.35s var(--ease), background 0.25s; }
.faq-item.open .plus { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.8); padding: clamp(56px, 7vw, 90px) 0 34px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-grad); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(30px, 5vw, 70px); margin-bottom: 50px; }
.site-footer .brand-name { color: #fff; }
.site-footer .brand-name small { color: rgba(255,255,255,0.6); }
.site-footer p { font-size: 0.94rem; }
.footer-title { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { transition: color 0.2s; font-size: 0.96rem; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px) scale(0.99); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; } .d5 { transition-delay: 0.4s; } .d6 { transition-delay: 0.48s; }

/* paw divider */
.paw-divider { display: flex; justify-content: center; gap: 14px; padding: 6px 0; color: var(--gold-soft); font-size: 1.1rem; opacity: 0.75; }
.paw-divider span:nth-child(2) { transform: translateY(-6px) rotate(12deg); }
.paw-divider span:nth-child(3) { transform: translateY(2px) rotate(-8deg); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .review-wall { columns: 2; }
  .masonry { columns: 2; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .big-word { display: none; }
  .lines-split { grid-template-columns: 1fr; }
  .lines-split::after { display: none; }
  .hero-scrim {
    background:
      radial-gradient(120% 70% at 30% 72%, rgba(20,16,10,0.68), transparent 78%),
      linear-gradient(180deg, rgba(20,16,10,0.62) 0%, rgba(20,16,10,0.38) 32%, rgba(20,16,10,0.55) 60%, rgba(20,16,10,0.9) 100%);
  }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3)::before { display: none; }
  .stats-grid .stat-cell:nth-child(1), .stats-grid .stat-cell:nth-child(2) { border-bottom: 1px solid var(--cream-2); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-duo .img-frame:last-child { bottom: -28px; }
}
@media (max-width: 560px) {
  .review-wall { columns: 1; }
  .masonry { columns: 2; column-gap: 12px; }
  .masonry .g-item { margin-bottom: 12px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .photo-duo .img-frame:first-child { width: 100%; }
  .photo-duo .img-frame:last-child { position: relative; bottom: 0; width: 70%; margin: -40px 0 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.15s !important; }
  .hero-media img { animation: none; }
  .marquee-track { animation: none; }
}

/* ---- legal pages ---- */
.legal-hero { min-height: clamp(300px, 42vh, 440px); }
.legal-body { max-width: 780px; }
.legal-body h2 { margin: 40px 0 12px; }
.legal-body p { color: var(--ink-soft); }
.legal-body .lead { color: var(--ink); }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 3px; transition: color 0.25s; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---- map consent (Zwei-Klick) ---- */
.map-frame { position: relative; }
.map-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 28px;
  background: linear-gradient(160deg, #FFFEFB 0%, var(--gold-tint) 140%);
}
.map-placeholder svg { width: 36px; height: 36px; color: var(--gold); }
.map-placeholder strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.map-placeholder p { font-size: 0.85rem; color: var(--mut); max-width: 320px; line-height: 1.55; }
.map-placeholder p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.map-placeholder .btn { margin-top: 8px; border: 0; cursor: pointer; font-size: 0.9rem; padding: 12px 24px; }
.map-frame.map-on .map-placeholder { display: none; }

/* ---- Leaflet-Karte + Routenplaner ---- */
.map-canvas { width: 100%; height: 100%; background: #EFEAE0; }
.map-frame .leaflet-tile-pane { filter: sepia(0.14) saturate(0.86); }
.he-pin svg { width: 40px; height: 40px; filter: drop-shadow(0 4px 8px rgba(60, 44, 16, 0.35)); }
.map-frame .leaflet-popup-content-wrapper { border-radius: 12px; font-family: var(--font-body); }
.map-frame .leaflet-container { font: inherit; }
.map-panel {
  position: absolute; top: 14px; left: 14px; z-index: 1100;
  width: min(290px, calc(100% - 28px));
  background: rgba(255, 252, 246, 0.78);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(185, 134, 47, 0.28); border-radius: 16px;
  padding: 16px 16px 14px; box-shadow: 0 14px 36px rgba(60, 44, 16, 0.2);
}
.map-panel > strong { font-family: var(--font-display); font-size: 1rem; color: var(--ink); display: block; padding-right: 24px; }
.map-panel-x {
  position: absolute; top: 8px; right: 8px; width: 26px; height: 26px;
  border: 0; border-radius: 50%; background: rgba(60, 44, 16, 0.08); color: var(--ink);
  font-size: 0.72rem; line-height: 1; cursor: pointer;
}
.map-panel-x:hover { background: rgba(60, 44, 16, 0.16); }
.map-input-wrap { position: relative; margin-top: 12px; display: flex; gap: 6px; }
.map-input-wrap input {
  flex: 1; min-width: 0; border: 1px solid #E4DAC8; border-radius: 10px; padding: 10px 12px;
  font-family: var(--font-body); font-size: 0.9rem; background: #fff; color: var(--ink);
}
.map-input-wrap input:focus { outline: 2px solid rgba(185, 134, 47, 0.45); outline-offset: 1px; }
.map-loc {
  flex: none; width: 40px; border: 1px solid #E4DAC8; border-radius: 10px;
  background: #fff; color: var(--gold); cursor: pointer; display: grid; place-items: center;
}
.map-loc svg { width: 19px; height: 19px; }
.map-loc:hover { background: var(--gold-tint); }
.map-suggest {
  position: absolute; top: calc(100% + 5px); left: 0; right: 0; z-index: 1200;
  background: #fff; border-radius: 10px; box-shadow: var(--shadow-md); overflow: hidden;
}
.map-suggest button {
  display: block; width: 100%; text-align: left; padding: 9px 12px;
  border: 0; background: #fff; cursor: pointer;
  font-family: var(--font-body); font-size: 0.83rem; color: var(--ink); line-height: 1.4;
}
.map-suggest button:hover { background: var(--cream); }
.map-panel .map-go { margin-top: 12px; width: 100%; justify-content: center; border: 0; cursor: pointer; font-size: 0.9rem; padding: 11px 20px; }
.map-result { margin-top: 10px; font-size: 0.86rem; color: var(--ink); line-height: 1.5; }
.map-result:empty { display: none; }
.map-open {
  position: absolute; top: 14px; left: 14px; z-index: 1100;
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: var(--gold); color: #fff; cursor: pointer; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(185, 134, 47, 0.45);
}
.map-open svg { width: 21px; height: 21px; }
.map-open:hover { background: #a97a26; }
.map-frame:not(.map-on) .map-panel, .map-frame:not(.map-on) .map-open { display: none; }
.map-open[hidden], .map-panel[hidden], .map-suggest[hidden] { display: none; }

/* ---- cookie hint ---- */
.cookie-bar {
  position: fixed; left: 18px; bottom: 18px; z-index: 300;
  width: min(430px, calc(100vw - 36px));
  background: #FFFEFB; border: 1px solid #EDE5D6; border-radius: 24px;
  box-shadow: 0 30px 70px -20px rgba(34,28,20,0.4);
  padding: 24px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.cookie-bar.show { opacity: 1; transform: none; }
.cookie-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.cookie-paw {
  width: 46px; height: 46px; border-radius: 15px; flex: none;
  background: var(--gold-tint); color: var(--gold); display: grid; place-items: center;
}
.cookie-paw svg { width: 24px; height: 24px; }
.cookie-head strong { font-family: var(--font-display); font-size: 1.08rem; color: var(--ink); }
.cookie-bar > p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; }
.cookie-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; align-items: center; }
.cookie-actions .btn { border: 0; cursor: pointer; padding: 11px 22px; font-size: 0.85rem; }
.cookie-ghost {
  background: none; border: 1.5px solid #E2D9C6; color: var(--ink-soft); cursor: pointer;
  border-radius: 999px; padding: 11px 20px; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  transition: border-color 0.25s, color 0.25s;
}
.cookie-ghost:hover { border-color: var(--gold); color: var(--gold); }
.cookie-link { display: inline-block; margin-top: 12px; font-size: 0.8rem; color: var(--mut); text-decoration: underline; text-underline-offset: 3px; }
.cookie-link:hover { color: var(--gold); }

/* ---- Neuigkeiten-Feed ---- */
.feed-wrap { max-width: 760px; }
.feed-empty {
  text-align: center; padding: 70px 24px; border: 1px solid #EDE5D6;
  border-radius: 26px; background: #FFFEFB;
}
.feed-empty svg { width: 44px; height: 44px; color: var(--gold); margin-bottom: 14px; }
.feed-empty strong { display: block; font-family: "Outfit", sans-serif; font-size: 1.25rem; margin-bottom: 8px; }
.feed-empty p { color: var(--ink-soft); max-width: 440px; margin: 0 auto; }
.feed-card {
  background: #FFFEFB; border: 1px solid #EDE5D6; border-radius: 26px;
  padding: 30px 32px; margin-bottom: 30px;
}
.feed-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.feed-badge {
  width: 44px; height: 44px; border-radius: 50%; background: #fff;
  border: 1px solid #EDE5D6; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feed-badge svg { width: 22px; height: 22px; color: var(--gold); }
.feed-badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feed-head strong { font-family: "Outfit", sans-serif; font-size: 1.02rem; display: block; }
.feed-date { color: var(--mut); font-size: 0.85rem; }
.feed-text { color: var(--ink-soft); white-space: pre-line; overflow-wrap: break-word; }
.feed-media { display: grid; gap: 10px; margin-top: 18px; }
.feed-media.m2, .feed-media.m4 { grid-template-columns: 1fr 1fr; }
.feed-media.m3 { grid-template-columns: 1fr 1fr 1fr; }
.feed-media a { display: block; border-radius: 16px; overflow: hidden; cursor: zoom-in; }
.feed-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; display: block; transition: transform 0.5s ease; }
.feed-media a:hover img { transform: scale(1.04); }
.feed-media.m1 img { aspect-ratio: auto; max-height: 560px; }
.feed-video { margin-top: 18px; border-radius: 16px; overflow: hidden; background: #000; }
.feed-video video { width: 100%; display: block; max-height: 620px; }
.feed-more { color: var(--mut); font-size: 0.85rem; margin-top: 8px; }
.feed-foot {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid #F2ECDF;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 18px;
}
.feed-stats { display: flex; align-items: center; flex-wrap: wrap; gap: 8px 16px; color: var(--mut); font-size: 0.86rem; }
.feed-stats .stat { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.feed-stats svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.feed-foot a { color: var(--gold); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.feed-foot a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .feed-card { padding: 22px 20px; }
  .feed-media.m3 { grid-template-columns: 1fr 1fr; }
  .btn-row { display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
  .btn-row .btn { justify-content: center; text-align: center; }
}

/* ─ Story-Section (Startseite, von build_feed.js gerendert) ─ */
.story-row { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.story-frame {
  position: relative; width: min(340px, 82vw); aspect-ratio: 9 / 16;
  border-radius: 24px; overflow: hidden; background: #000;
  border: 1px solid #EDE5D6; box-shadow: 0 24px 60px rgba(60, 44, 16, 0.16);
}
.story-frame video, .story-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-time {
  position: absolute; right: 12px; bottom: 12px;
  background: rgba(20, 16, 10, 0.55); color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 6px 13px; border-radius: 999px;
  font-family: "Outfit", sans-serif; font-size: 0.8rem; font-weight: 600;
}
