/* =========================================================
   Local.Member.Show (LMS) — "Der Stadtplan"
   Navy #031834 · Gold #c99a45 · Papier #f4f1ea
   Palette 1:1 aus dem Logo entnommen.
   ========================================================= */

/* ---------- Fonts (self-hosted, DSGVO) ---------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink:      #031834;
  --ink-2:    #07203f;
  --ink-3:    #0d2b4d;
  --gold:     #c99a45;
  --gold-lt:  #e0c184;
  --gold-dk:  #a67c30;
  --paper:    #f4f1ea;
  --paper-2:  #fbfaf7;
  --white:    #ffffff;

  --on-dark:      #eae6dd;
  --on-dark-mute: #a8b4c6;
  --on-light:     #0a2141;
  --on-light-mute:#4a5b74;

  --line-dark:  rgba(234,230,221,.14);
  --line-light: rgba(3,24,52,.12);

  --display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --r: 4px;

  --shadow: 0 1px 2px rgba(3,24,52,.06), 0 8px 28px -12px rgba(3,24,52,.18);
  --shadow-lg: 0 2px 4px rgba(3,24,52,.08), 0 24px 60px -20px rgba(3,24,52,.28);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-light);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.12; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 10vw, 8rem); }

/* Skip-Link */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--ink); padding: .8rem 1.4rem; font-weight: 600;
}
.skip:focus { left: 1rem; top: 1rem; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font-family: var(--ui);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dk);
  margin: 0 0 1.1rem;
  display: flex; align-items: center; gap: .8rem;
}
.eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--line-light); }
.on-dark .eyebrow { color: var(--gold); }
.on-dark .eyebrow::after { background: var(--line-dark); }

h1 { font-size: clamp(2.4rem, 6.4vw, 4.4rem); font-weight: 900; letter-spacing: -.025em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

.lead { font-size: clamp(1.05rem, 1.9vw, 1.28rem); line-height: 1.6; color: var(--on-light-mute); }
.on-dark .lead { color: var(--on-dark-mute); }
.measure { max-width: 62ch; }
.measure-tight { max-width: 48ch; }

/* Gold-Akzent im Fließtext */
em.gold { font-style: normal; color: var(--gold-dk); font-weight: 600; }
.on-dark em.gold { color: var(--gold-lt); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--ui); font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  padding: 1.05rem 1.9rem; border-radius: var(--r); border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 30px -12px rgba(201,154,69,.7); }
.btn-gold:hover { background: var(--gold-lt); box-shadow: 0 16px 40px -14px rgba(201,154,69,.85); }

.btn-ghost { border-color: var(--line-dark); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); }

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-3); }

.btn-outline { border-color: var(--line-light); color: var(--on-light); }
.btn-outline:hover { border-color: var(--ink); }

.btn-wa { background: #25D366; color: #06301a; }
.btn-wa:hover { background: #3ee07c; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Kopfzeile ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(3,24,52,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color .3s ease;
}
.head-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; flex-shrink: 0; }
.brand img { width: 132px; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-size: .88rem; font-weight: 500; color: var(--on-dark-mute);
  text-decoration: none; transition: color .18s ease; white-space: nowrap;
}
.nav a:hover { color: var(--gold-lt); }
.head-cta { padding: .7rem 1.35rem; font-size: .86rem; }
@media (max-width: 900px) { .nav { display: none; } }
@media (max-width: 480px) { .brand img { width: 108px; } .head-cta { padding: .65rem 1rem; } }

/* ---------- Dunkle Flächen ---------- */
.on-dark { background: var(--ink); color: var(--on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--paper); }

/* =========================================================
   HERO — Signature: Netz-Konstellation
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  padding-block: clamp(4rem, 9vw, 7.5rem) clamp(4.5rem, 10vw, 8rem);
}
/* Radialer Lichtkegel hinter der Konstellation */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 72% 38%, rgba(201,154,69,.16), transparent 62%),
    radial-gradient(ellipse 90% 70% at 20% 90%, rgba(13,43,77,.9), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-logo { width: clamp(180px, 26vw, 250px); margin-bottom: 2rem; }

.hero h1 { color: var(--paper); margin-bottom: 1.4rem; }
.hero h1 .accent {
  display: block; color: var(--gold);
  font-style: italic; font-weight: 400;
}
.hero .lead { margin-bottom: 2.2rem; max-width: 46ch; }

.hero-meta {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 2.2rem;
}
.hero-meta div { min-width: 90px; }
.hero-meta b {
  display: block; font-family: var(--display); font-size: 1.85rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-meta span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-mute); }

/* --- Die Konstellation --- */
.constellation { position: relative; }
.constellation svg { width: 100%; height: auto; overflow: visible; }

.c-link {
  stroke: var(--gold); stroke-width: 1.1; fill: none; opacity: .5;
  stroke-dasharray: var(--len); stroke-dashoffset: var(--len);
  animation: draw 1.5s cubic-bezier(.4,0,.2,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.c-node { fill: var(--gold); opacity: 0; animation: pop .5s ease forwards; animation-delay: var(--d, 0s); }
.c-node-ring {
  fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0;
  transform-box: fill-box; transform-origin: center;
  animation: halo 3.4s ease-out infinite; animation-delay: var(--d, 0s);
}
@keyframes pop { to { opacity: 1; } }
@keyframes halo {
  0%   { opacity: .65; transform: scale(.4); }
  70%  { opacity: 0;   transform: scale(2.6); }
  100% { opacity: 0;   transform: scale(2.6); }
}

/* Der hervorgehobene Knoten = "Ihre Stadt" */
.c-node.is-you { fill: var(--paper); }
.c-label {
  font-family: var(--ui); font-size: 9.5px; font-weight: 500;
  fill: var(--on-dark-mute); letter-spacing: .04em;
  opacity: 0; animation: pop .6s ease forwards; animation-delay: var(--d, 0s);
}
.c-label.is-you { fill: var(--paper); font-weight: 600; }

.c-pin { opacity: 0; animation: pinDrop .8s cubic-bezier(.34,1.45,.64,1) forwards; animation-delay: 1.35s; }
@keyframes pinDrop {
  0%   { opacity: 0; transform: translateY(-22px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   Abschnitte
   ========================================================= */

/* Antwort-Doktrin */
.answer-box {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--r);
  padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow);
  border-left: 3px solid var(--gold);
}
.answer-box p:first-of-type {
  font-family: var(--display); font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.4; color: var(--ink);
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Nummerierte Liste im Netzwerk-Stil */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; }
.steps li {
  counter-increment: s; position: relative;
  padding: 1.5rem 0 1.5rem 3.4rem;
  border-bottom: 1px solid var(--line-light);
}
.steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.steps li::before {
  content: '№ ' counter(s);
  position: absolute; left: 0; top: 1.55rem;
  font-family: var(--display); font-size: .8rem; font-weight: 700;
  color: var(--gold-dk); letter-spacing: .02em; white-space: nowrap;
}
.steps h3 { margin-bottom: .45rem; }
.steps p { color: var(--on-light-mute); font-size: .97rem; margin: 0; }
.on-dark .steps li { border-color: var(--line-dark); }
.on-dark .steps li::before { color: var(--gold); }
.on-dark .steps p { color: var(--on-dark-mute); }

/* Netz-Zahlen */
.net-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px; background: var(--line-dark);
  border: 1px solid var(--line-dark); border-radius: var(--r); overflow: hidden;
  margin-top: 3rem;
}
.net-card { background: var(--ink); padding: 2rem 1.7rem; transition: background-color .25s ease; }
.net-card:hover { background: var(--ink-2); }
.net-card .dom {
  font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: var(--paper);
  margin-bottom: .15rem;
}
.net-card .num {
  font-family: var(--display); font-size: 2.9rem; font-weight: 900; color: var(--gold);
  line-height: 1; margin: 1rem 0 .4rem;
}
.net-card .what { font-size: .87rem; color: var(--on-dark-mute); line-height: 1.5; }
.net-note {
  margin-top: 1.6rem; font-size: .84rem; color: var(--on-dark-mute);
  display: flex; align-items: flex-start; gap: .6rem;
}
.net-note svg { flex-shrink: 0; margin-top: .25rem; }

/* Leistungs-Karten */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.card {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--r);
  padding: 2rem 1.8rem; box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(201,154,69,.5); }
.card .ico {
  width: 40px; height: 40px; margin-bottom: 1.3rem;
  display: grid; place-items: center;
  background: var(--ink); border-radius: 50%; color: var(--gold);
}
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .95rem; color: var(--on-light-mute); margin: 0; }

/* Native statt Banner — Gegenüberstellung */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.8rem; }
@media (max-width: 720px) { .versus { grid-template-columns: 1fr; } }
.vs-col { border-radius: var(--r); padding: 1.9rem 1.7rem; border: 1px solid var(--line-dark); }
.vs-col h3 { font-size: 1.05rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .6rem; }
.vs-col ul { list-style: none; margin: 0; padding: 0; font-size: .93rem; }
.vs-col li { padding: .55rem 0 .55rem 1.5rem; position: relative; color: var(--on-dark-mute); }
.vs-col li::before { position: absolute; left: 0; top: .55rem; font-weight: 700; }
.vs-bad { background: rgba(255,255,255,.02); }
.vs-bad h3 { color: var(--on-dark-mute) !important; }
.vs-bad li::before { content: '×'; color: #8a94a6; }
.vs-good { background: rgba(201,154,69,.07); border-color: rgba(201,154,69,.35); }
.vs-good h3 { color: var(--gold-lt) !important; }
.vs-good li::before { content: '✓'; color: var(--gold); }
.vs-good li { color: var(--on-dark); }

/* Beispiel-Einbettung ("so sieht es aus") */
.sample {
  margin: 2.5rem auto 0; background: var(--white); border: 1px solid var(--line-light);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 660px;
}
.sample-bar {
  background: var(--paper); border-bottom: 1px solid var(--line-light);
  padding: .7rem 1.1rem; font-size: .75rem; color: var(--on-light-mute);
  display: flex; align-items: center; gap: .5rem; font-family: var(--ui);
}
.sample-dot { width: 8px; height: 8px; border-radius: 50%; background: #d8d3c8; }
.sample-body { padding: 1.6rem 1.5rem; }
.sample-body h4 {
  font-family: var(--display); font-size: 1.15rem; font-weight: 700;
  color: var(--ink); margin: 0 0 .5rem;
}
.sample-body p { font-size: .93rem; color: var(--on-light-mute); margin-bottom: 1.1rem; }
.sample-entry {
  border: 1px solid rgba(201,154,69,.45); background: rgba(201,154,69,.06);
  border-radius: var(--r); padding: 1rem 1.1rem; position: relative;
}
.sample-tag {
  position: absolute; top: -9px; right: 12px;
  background: var(--gold); color: var(--ink);
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .18rem .55rem; border-radius: 2px;
}
.sample-entry strong { font-family: var(--display); font-size: 1rem; color: var(--ink); display: block; margin-bottom: .2rem; }
.sample-entry span { font-size: .85rem; color: var(--on-light-mute); }

/* =========================================================
   Preis
   ========================================================= */
.price-wrap { display: grid; grid-template-columns: 1fr minmax(320px, 420px); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .price-wrap { grid-template-columns: 1fr; } }

.price-card {
  background: var(--paper-2); border: 1px solid var(--line-light); border-radius: var(--r);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.price-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
}
.price-head { padding: 2.2rem 2rem 1.6rem; text-align: center; border-bottom: 1px solid var(--line-light); }
.price-head .name {
  font-family: var(--ui); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 1rem;
}
.price-amount { font-family: var(--display); font-weight: 900; color: var(--ink); line-height: 1; }
.price-amount .n { font-size: clamp(3.2rem, 8vw, 4.2rem); }
.price-amount .cur { font-size: 1.8rem; }
.price-per { font-size: .95rem; color: var(--on-light-mute); margin-top: .7rem; }
.price-sub { font-size: .82rem; color: var(--on-light-mute); margin-top: .3rem; }
.price-body { padding: 1.8rem 2rem 2.2rem; }
.price-body ul { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.price-body li {
  padding: .6rem 0 .6rem 1.7rem; position: relative;
  font-size: .93rem; border-bottom: 1px solid var(--line-light);
}
.price-body li:last-child { border-bottom: 0; }
.price-body li::before {
  content: ''; position: absolute; left: 0; top: 1.02rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.price-body .btn { width: 100%; }
.price-foot { font-size: .78rem; color: var(--on-light-mute); text-align: center; margin-top: 1rem; }

.price-notes { list-style: none; margin: 2rem 0 0; padding: 0; }
.price-notes li { padding: 1.1rem 0; border-bottom: 1px solid var(--line-light); }
.price-notes li:last-child { border-bottom: 0; }
.price-notes strong { display: block; font-family: var(--display); font-size: 1.05rem; margin-bottom: .25rem; color: var(--ink); }
.price-notes span { font-size: .93rem; color: var(--on-light-mute); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 800px; margin-inline: auto; margin-top: 3rem; }
.faq details {
  border-bottom: 1px solid var(--line-light);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.5rem 2.5rem 1.5rem 0; position: relative;
  font-family: var(--display); font-size: clamp(1.02rem, 1.8vw, 1.2rem); font-weight: 700;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: .4rem; top: 50%;
  width: 10px; height: 10px; margin-top: -6px;
  border-right: 2px solid var(--gold-dk); border-bottom: 2px solid var(--gold-dk);
  transform: rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .answer { padding: 0 2.5rem 1.6rem 0; color: var(--on-light-mute); font-size: .97rem; }

/* =========================================================
   Kontakt
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--on-dark); }
.field input, .field select, .field textarea {
  font-family: var(--ui); font-size: .95rem; color: var(--paper);
  background: rgba(255,255,255,.05); border: 1px solid var(--line-dark);
  border-radius: var(--r); padding: .85rem 1rem; width: 100%;
  transition: border-color .18s ease, background-color .18s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #77839a; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(255,255,255,.08);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23c99a45' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 11px;
  padding-right: 2.6rem;
}
.field select option { background: var(--ink); color: var(--paper); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--on-dark-mute); }
.form-note a { color: var(--gold-lt); }

.contact-direct { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-line {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem; border: 1px solid var(--line-dark); border-radius: var(--r);
  text-decoration: none; transition: border-color .2s ease, background-color .2s ease;
}
.contact-line:hover { border-color: var(--gold); background: rgba(201,154,69,.06); }
.contact-line .ci { flex-shrink: 0; color: var(--gold); }
.contact-line b { display: block; font-size: .95rem; color: var(--paper); font-weight: 600; }
.contact-line span { font-size: .84rem; color: var(--on-dark-mute); }

/* =========================================================
   Footer
   ========================================================= */
.site-foot { background: var(--ink-2); border-top: 1px solid var(--line-dark); padding-block: 3.5rem 2.5rem; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 780px) { .foot-top { grid-template-columns: 1fr; gap: 2rem; } }
.foot-top img { width: 150px; margin-bottom: 1rem; }
.foot-top p { font-size: .88rem; color: var(--on-dark-mute); max-width: 34ch; }
.foot-col h4 { font-family: var(--ui); font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.foot-col a { font-size: .89rem; color: var(--on-dark-mute); text-decoration: none; transition: color .18s ease; }
.foot-col a:hover { color: var(--gold-lt); }
.foot-bottom {
  padding-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--on-dark-mute);
}
.foot-bottom a { color: var(--on-dark-mute); text-decoration: none; }
.foot-bottom a:hover { color: var(--gold-lt); }
.foot-bottom nav { display: flex; gap: 1.6rem; flex-wrap: wrap; }

/* ---------- WhatsApp-Button (Hausregel) ---------- */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 6px 22px rgba(0,0,0,.28);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Rechtsseiten (Fließtext) ---------- */
.legal { padding-block: clamp(3rem, 7vw, 5rem) clamp(4rem, 9vw, 7rem); }
.legal .doc { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 2.5rem; }
.legal h2 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); margin: 2.8rem 0 1rem; }
.legal h3 { font-size: 1.1rem; margin: 1.8rem 0 .6rem; }
.legal p, .legal li { font-size: .97rem; color: var(--on-light-mute); }
.legal a { color: var(--gold-dk); }
.legal dl { display: grid; grid-template-columns: max-content 1fr; gap: .5rem 1.5rem; font-size: .97rem; margin: 0 0 1.5rem; }
.legal dt { font-weight: 600; color: var(--on-light); }
.legal dd { margin: 0; color: var(--on-light-mute); }
@media (max-width: 560px) { .legal dl { grid-template-columns: 1fr; gap: .1rem 0; } .legal dd { margin-bottom: .7rem; } }

/* ---------- 404 ---------- */
.err { min-height: 72vh; display: grid; place-items: center; text-align: center; padding-block: 5rem; }
.err .code {
  font-family: var(--display); font-size: clamp(4.5rem, 15vw, 8.5rem); font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 1.5rem; opacity: .9;
}

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
