/* ==========================================================================
   Kreisfischereiverein von 1895 Simmern e.V. — „Gewässer-Almanach"
   Statisches Designsystem · Farben aus dem Vereinswappen (Blau/Gelb)
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/fraunces-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../fonts/fraunces-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-italic-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/instrument-sans-italic-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1E9F, U+2020, U+20A0-20AB, U+20AD-20C0;
}

/* ---------- Token ---------- */
:root {
  /* Wasser & Tinte */
  --ink: #0b2433;
  --ink-2: #123952;
  --ink-3: #1b4a68;
  --river: #2273a8;
  --river-soft: #8db9d6;
  /* Papier */
  --paper: #f6f1e4;
  --paper-2: #ede5d0;
  --card: #fffdf6;
  /* Wappen-Gold */
  --gold: #e3b339;
  --gold-deep: #a87f1d;
  --gold-pale: #f7e8c2;
  /* Schilf */
  --reed: #5f7752;
  /* Text */
  --text: #25343f;
  --muted: #5d6e7a;
  --text-on-ink: #e8eef2;
  --muted-on-ink: #9fb4c2;
  --line: rgba(11, 36, 51, .16);
  --line-on-ink: rgba(232, 238, 242, .14);

  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-soft: 0 14px 38px rgba(11, 36, 51, .12);
  --shadow-card: 0 2px 0 rgba(11, 36, 51, .06), 0 12px 28px rgba(11, 36, 51, .09);
  --wrap: 1180px;
  --pad: clamp(18px, 4vw, 32px);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--ink-3); text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--river); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 540;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
}
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--river); outline-offset: 2px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--ink); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink); padding: 10px 18px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ==========================================================================
   Header (zweistufig: Marken-Zeile + Nav-Leiste)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  color: var(--text-on-ink);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 14px 34px rgba(11, 36, 51, .38); }
.header-top {
  max-width: var(--wrap); margin-inline: auto; padding: 12px var(--pad) 11px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  color: #fff; text-decoration: none; line-height: 1.18;
}
.brand-crest { width: 44px; height: auto; flex: none; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.brand-name { font-family: var(--font-display); font-weight: 560; font-size: 1.18rem; letter-spacing: .005em; }
.brand-sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .72rem; color: var(--gold); letter-spacing: .2em; text-transform: uppercase; margin-top: 2px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 10px 18px; font-size: .9rem; }

.site-nav { border-top: 1px solid var(--line-on-ink); }
.site-nav ul {
  list-style: none; margin: 0 auto; padding: 0 var(--pad);
  max-width: var(--wrap);
  display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none;
}
.site-nav ul::-webkit-scrollbar { display: none; }
.site-nav a {
  display: block; position: relative; white-space: nowrap;
  padding: 11px 13px 14px;
  color: var(--text-on-ink); text-decoration: none; font-size: .91rem; font-weight: 500;
  transition: color .2s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 9px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--gold); font-weight: 700; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line-on-ink); border-radius: 9px;
  color: var(--text-on-ink); padding: 9px 11px; cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-burger { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .header-actions .btn.header-cta { display: none; }
  .site-nav {
    display: none; position: absolute; inset: 100% 0 auto 0;
    background: var(--ink-2); border-top: 1px solid var(--line-on-ink);
    border-bottom: 1px solid var(--line-on-ink);
    max-height: calc(100vh - 80px); overflow: auto;
    box-shadow: 0 24px 40px rgba(11, 36, 51, .4);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; padding: 10px var(--pad) 16px; overflow: visible; }
  .site-nav a { padding: 13px 12px; font-size: 1.04rem; }
  .site-nav a::after { display: none; }
  .site-nav a[aria-current="page"]::before {
    content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); margin-right: 10px; vertical-align: 2px;
  }
  .brand-name { font-size: 1.02rem; }
}

/* ==========================================================================
   Heroes
   ========================================================================== */
.hero-photo {
  position: relative; color: #fff; overflow: hidden;
  background: var(--ink);
  min-height: min(92vh, 880px);
  display: grid; align-items: end;
}
.hero-photo .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,36,51,.42) 0%, rgba(11,36,51,.08) 38%, rgba(11,36,51,.78) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--wrap); margin-inline: auto;
  padding: clamp(120px, 18vh, 200px) var(--pad) clamp(90px, 12vh, 130px);
}
.hero-content h1 {
  color: #fff; font-size: clamp(2.05rem, 6.4vw, 4.9rem); font-weight: 480;
  max-width: 13em; margin-bottom: .35em;
  text-shadow: 0 3px 24px rgba(11, 36, 51, .55);
}
.hero-content .lead {
  font-size: clamp(1.06rem, 1.7vw, 1.3rem); max-width: 36em;
  color: #eaf1f5; text-shadow: 0 2px 14px rgba(11,36,51,.6);
}
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.kicker::before { content: ""; width: 34px; height: 2px; background: var(--gold); }
.kicker--dark { color: var(--gold-deep); }
.kicker--dark::before { background: var(--gold-deep); }

/* Seiten-Hero (dunkel, mit Topo-Linien) */
.hero-page {
  position: relative; background: var(--ink); color: var(--text-on-ink); overflow: hidden;
}
.hero-page .topo { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.hero-page-inner {
  position: relative; z-index: 2;
  max-width: var(--wrap); margin-inline: auto;
  padding: clamp(64px, 9vw, 110px) var(--pad) clamp(56px, 8vw, 96px);
}
.hero-page h1 { color: #fff; font-size: clamp(2.3rem, 5.4vw, 4rem); font-weight: 500; max-width: 16em; }
.hero-page .lead { font-size: clamp(1.02rem, 1.6vw, 1.22rem); color: var(--muted-on-ink); max-width: 42em; margin: 0; }

/* Wellen-Divider */
.wave { display: block; width: 100%; height: clamp(38px, 6vw, 84px); }
.wave--paper { color: var(--paper); }
.wave--ink { color: var(--ink); }
.wave--card { color: var(--card); }
.wave-host { position: relative; line-height: 0; }

/* ==========================================================================
   Sektionen
   ========================================================================== */
.section { padding-block: clamp(52px, 8vw, 96px); }
.section--tight { padding-block: clamp(36px, 5vw, 60px); }
.section--ink { background: var(--ink); color: var(--text-on-ink); }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: var(--muted-on-ink); }
.section--shade { background: var(--paper-2); }

.section-head { max-width: 760px; margin-bottom: clamp(28px, 4vw, 46px); }
.section-head .lead, .lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); }
.section--ink .section-head .lead { color: var(--muted-on-ink); }

/* Kapitel-Nummerierung im Almanach-Stil */
.chap {
  display: flex; align-items: baseline; gap: 14px;
  font-size: .82rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px;
}
.chap::after { content: ""; flex: 1; height: 1px; background: var(--line); align-self: center; }
.section--ink .chap { color: var(--gold); }
.section--ink .chap::after { background: var(--line-on-ink); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, color .18s, border-color .18s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(11, 36, 51, .2); }
.btn:active { transform: translateY(0); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #ecc35a; color: var(--ink); }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-line--light { border-color: rgba(255,255,255,.65); color: #fff; }
.btn-line--light:hover { background: rgba(255,255,255,.14); color: #fff; box-shadow: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ==========================================================================
   Karten & Grids
   ========================================================================== */
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
  box-shadow: var(--shadow-card);
  position: relative;
}
.card > :last-child { margin-bottom: 0; }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--ink); color: var(--gold);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card-icon svg { width: 28px; height: 28px; }
a.card-link { text-decoration: none; color: inherit; display: block; transition: transform .2s ease, box-shadow .2s ease; }
a.card-link:hover { transform: translateY(-4px); }
a.card-link:hover .card, .card.is-hover:hover { box-shadow: var(--shadow-soft); }

/* Foto-Karte */
.photo-card { overflow: hidden; padding: 0; }
.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.photo-card:hover img { transform: scale(1.04); }
.photo-card .photo-card-body { padding: 20px 24px 24px; }

/* Info-Fakten (Schlüssel/Wert) */
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.facts li {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 13px 16px;
}
.facts strong { display: block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.facts span { font-weight: 700; color: var(--ink); font-size: 1.05rem; }

/* Hinweis-Box */
.note {
  background: var(--gold-pale); border: 1px solid rgba(168, 127, 29, .35); border-left: 5px solid var(--gold);
  border-radius: var(--radius-sm); padding: 18px 22px; margin-block: 1.2em;
}
.note > :last-child { margin-bottom: 0; }
.note--ink { background: var(--ink-2); border-color: var(--line-on-ink); border-left-color: var(--gold); color: var(--text-on-ink); }

/* Großer Zahl-Akzent */
.big-stat { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; color: var(--ink); }
.big-stat small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ==========================================================================
   Listen, Tabellen, Schritte
   ========================================================================== */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; counter-reset: schritt; }
.steps li {
  counter-increment: schritt;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px 22px 86px; position: relative; box-shadow: var(--shadow-card);
}
.steps li::before {
  content: counter(schritt, decimal-leading-zero);
  position: absolute; left: 22px; top: 20px;
  font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--gold-deep);
}
.steps h3 { margin-bottom: .25em; font-size: 1.18rem; }
.steps p { margin: 0; color: var(--muted); }

table { width: 100%; border-collapse: collapse; font-size: .98rem; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
th { font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
tbody tr:hover { background: rgba(227, 179, 57, .07); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 6px 18px 10px; box-shadow: var(--shadow-card); }

/* ==========================================================================
   Timeline (Geschichte)
   ========================================================================== */
.timeline { position: relative; margin: 0; padding: 0 0 0 clamp(28px, 5vw, 56px); list-style: none; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px;
  background: repeating-linear-gradient(180deg, var(--river-soft) 0 8px, transparent 8px 14px);
}
.timeline li { position: relative; padding-bottom: clamp(26px, 4vw, 40px); }
.timeline li::before {
  content: ""; position: absolute; left: calc(9px - clamp(28px, 5vw, 56px)); top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--ink); box-shadow: 0 0 0 3px var(--paper);
  transform: translateX(-2px);
}
.timeline .year {
  font-family: var(--font-display); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 620;
  color: var(--ink); display: block; margin-bottom: 6px;
}
.timeline p { margin: 0; max-width: 62ch; }

/* ==========================================================================
   Galerie & Lightbox
   ========================================================================== */
.masonry { columns: 3 280px; column-gap: 18px; }
.masonry > * { break-inside: avoid; margin-bottom: 18px; }
.masonry figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--card); box-shadow: var(--shadow-card); }
.masonry img { width: 100%; transition: transform .45s ease; cursor: zoom-in; }
.masonry figure:hover img { transform: scale(1.03); }
.masonry figcaption { padding: 12px 16px; font-size: .92rem; color: var(--muted); border-top: 1px solid var(--line); }

dialog.lightbox {
  border: none; padding: 0; background: rgba(8, 24, 35, .94);
  max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh;
}
dialog.lightbox::backdrop { background: rgba(8, 24, 35, .94); }
.lightbox-inner { display: grid; place-items: center; width: 100%; height: 100%; padding: clamp(16px, 4vw, 48px); }
.lightbox-inner img { max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox-caption { color: var(--river-soft); text-align: center; margin-top: 14px; font-size: .95rem; }
.lightbox-btn {
  position: absolute; background: rgba(255, 253, 246, .12); color: #fff;
  border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  width: 46px; height: 46px; display: grid; place-items: center; cursor: pointer;
  transition: background .2s;
}
.lightbox-btn:hover { background: rgba(227, 179, 57, .85); color: var(--ink); }
.lightbox-btn svg { width: 22px; height: 22px; }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Vorstand / Personen
   ========================================================================== */
.person-card { padding: 0; overflow: hidden; text-align: left; }
.person-card img, .person-card .person-placeholder { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 28%; }
.person-placeholder {
  display: grid; place-items: center; background: var(--paper-2); color: var(--muted);
  font-weight: 600; font-size: .95rem;
}
.person-placeholder svg { width: 64px; height: 64px; opacity: .45; }
.person-body { padding: 18px 22px 22px; }
.person-role { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); display: block; margin-bottom: 4px; }
.person-card h3 { margin-bottom: 8px; font-size: 1.22rem; }
.person-card a { font-size: .95rem; }

/* ==========================================================================
   Fischarten-Kartei
   ========================================================================== */
.fish-card { padding: 0; overflow: hidden; }
.fish-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #dfe9ef; }
.fish-card .fish-body { padding: 18px 22px 20px; }
.fish-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; font-size: 1.25rem; }
.fish-card h3 svg { width: 26px; height: 26px; color: var(--river); flex: none; }
.fish-latin { font-style: italic; color: var(--muted); font-size: .9rem; display: block; margin-bottom: 8px; }
.fish-card p { margin: 0; font-size: .97rem; color: var(--muted); }
.fish-tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 99px; margin-bottom: 10px;
}
.fish-tag--raub { background: var(--ink); color: var(--gold); }
.fish-tag--fried { background: var(--gold-pale); color: var(--gold-deep); }
.fish-tag--salmo { background: #dcebf5; color: var(--ink-3); }

/* ==========================================================================
   Vergleich (Präsenz vs. Online)
   ========================================================================== */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 26px); }
@media (max-width: 860px) { .versus { grid-template-columns: 1fr; } }
.versus-card { border-radius: var(--radius); padding: clamp(22px, 3vw, 30px); }
.versus-card.pro { background: var(--ink); color: var(--text-on-ink); border: 1px solid var(--ink); }
.versus-card.pro h3 { color: var(--gold); }
.versus-card.contra { background: var(--card); border: 1px dashed var(--line); color: var(--muted); }
.versus-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.versus-card li { padding-left: 30px; position: relative; }
.versus-card li svg { position: absolute; left: 0; top: 4px; width: 19px; height: 19px; }
.versus-card.pro li svg { color: var(--gold); }
.versus-card.contra li svg { color: #b3573f; }

/* ==========================================================================
   Preis-/Aktionskarten
   ========================================================================== */
.price-banner {
  display: grid; grid-template-columns: 1fr auto; gap: clamp(20px, 4vw, 48px); align-items: center;
  background: var(--ink); color: var(--text-on-ink);
  border-radius: var(--radius); padding: clamp(26px, 4vw, 44px);
  position: relative; overflow: hidden;
}
.price-banner h2, .price-banner h3 { color: #fff; }
.price-banner .topo-corner { position: absolute; right: -40px; top: -40px; width: 280px; opacity: .25; pointer-events: none; }
.price-tag {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem, 7vw, 5rem);
  color: var(--gold); line-height: 1; text-align: center;
}
.price-tag small { display: block; font-family: var(--font-body); font-size: .9rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-on-ink); margin-top: 8px; }
@media (max-width: 720px) { .price-banner { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--muted-on-ink); position: relative; }
.footer-inner {
  max-width: var(--wrap); margin-inline: auto; padding: clamp(40px, 6vw, 64px) var(--pad) 28px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(24px, 4vw, 56px);
}
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand svg, .footer-brand img { width: 64px; flex: none; }
.footer-brand strong { color: #fff; font-family: var(--font-display); font-weight: 560; font-size: 1.15rem; display: block; }
.site-footer h4 { color: var(--gold); font-family: var(--font-body); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { color: var(--text-on-ink); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-base {
  border-top: 1px solid var(--line-on-ink);
  max-width: var(--wrap); margin-inline: auto; padding: 18px var(--pad) 26px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: .88rem;
}
.footer-base a { color: var(--muted-on-ink); }

/* ==========================================================================
   Scroll-Reveals & Motion
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }

/* Flusslinie, die sich beim Scrollen zeichnet */
.riverline { color: var(--river-soft); }
.riverline path { stroke-dasharray: var(--len, 1600); stroke-dashoffset: var(--len, 1600); transition: stroke-dashoffset 1.6s ease; }
.riverline.is-in path { stroke-dashoffset: 0; }

/* Treibende Fisch-Silhouette (dekorativ) */
.drift-fish { position: absolute; opacity: .1; color: currentColor; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .riverline path { stroke-dashoffset: 0 !important; transition: none; }
  .photo-card img, .masonry img { transition: none; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ==========================================================================
   Kleinkram
   ========================================================================== */
.crest-stamp { width: clamp(110px, 14vw, 150px); margin-bottom: 26px; filter: drop-shadow(0 6px 20px rgba(11,36,51,.35)); }
.text-cols { columns: 2 340px; column-gap: 48px; }
.text-cols p { break-inside: avoid; }
hr.rule { border: none; height: 1px; background: var(--line); margin-block: clamp(28px, 5vw, 48px); }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.legal-page h2 { font-size: 1.45rem; margin-top: 1.6em; }
.legal-page main { max-width: 780px; }

@media print {
  .site-header, .site-footer, .nav-toggle, .btn { display: none !important; }
  body { background: #fff; }
}
