/* ═══════════════════════════════════════════════════════════════════════════
   Goldhaus Gütersloh — Design-System
   Gold auf Schwarz. Private-Banking- / Edelmetall-Haus-Anmutung.
   Standard-Look ist DUNKEL. Gold nur als sparsamer Akzent (Linien, Preise,
   CTA, Logo) — niemals als Vollfläche. Viel ruhiger schwarzer Raum, feine
   1px-Goldlinien, hochwertige Typografie trägt das Design.
   Heller Modus bleibt als expliziter Toggle: :root[data-theme="light"].
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design-Tokens — DUNKEL ist Standard ───────────────────────────────────── */
:root {
  /* Farben — warmes Fast-Schwarz mit Gold */
  --bg:          #0E0D0B;   /* warmes Fast-Schwarz */
  --surface:     #171512;   /* Cards / abgesetzte Flächen */
  --surface-2:   #201D18;   /* zweite Ebene */
  --text:        #F2EEE6;   /* warmes Elfenbein */
  --text-muted:  #A79E8C;   /* gedämpftes Sandgrau */
  --border:      #2C2822;   /* feine Linien auf Schwarz */
  --border-soft: #221F1A;

  --gold:        #CBA95F;   /* Champagner-Gold — Primär-Akzent (Linien, Flächen, CTA) */
  --gold-bright: #E6D5AC;   /* helles Gold — Highlights, große Preisziffern */
  --gold-light:  #E6D5AC;   /* Alias (Bestand: admin.html referenziert --gold-light) */
  --gold-dark:   #DCC085;   /* legibles Gold für TEXT/Links/Hover auf Schwarz */
  --trust:       #6FA894;   /* ruhiges Grün — Vertrauens-Akzent (Erfolg/Häkchen) */
  --trust-soft:  #16211D;   /* sehr dunkler Grünton als Flächenton */

  /* Typografie */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Maße */
  --container: 1140px;
  --radius:      8px;
  --radius-sm:   6px;
  --gap:         24px;
  --shadow-soft: 0 1px 2px rgba(0,0,0,.40);
  --shadow-card: 0 10px 30px rgba(0,0,0,.35);
  --ease:        200ms ease;
  --ease-slow:   300ms ease;
}

/* Expliziter HELLER Modus (Toggle stampt data-theme="light" am :root) */
:root[data-theme="light"] {
  --bg:          #F7F4EE;
  --surface:     #FBFAF6;
  --surface-2:   #F2EEE4;
  --text:        #1C1A16;
  --text-muted:  #6E685C;
  --border:      #E3DCCD;
  --border-soft: #ECE6D8;

  --gold:        #C2A15C;
  --gold-bright: #E6D5AC;
  --gold-light:  #E6D5AC;
  --gold-dark:   #8A6C31;   /* tiefes Gold für Text auf hellem Grund */
  --trust:       #1F3A34;
  --trust-soft:  #E9EFEC;

  --shadow-soft: 0 1px 2px rgba(28,26,22,.05);
  --shadow-card: 0 8px 24px rgba(28,26,22,.08);
}

/* ── Reset / Basis ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Tabellarische Ziffern für ALLE Preise/Gramm-Angaben */
.tnum, .preise, td.zahl, .zahl { font-feature-settings: 'tnum' 1; font-variant-numeric: tabular-nums; }

img { max-width: 100%; display: block; }

a { color: var(--gold-dark); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--gold-bright); }

::selection { background: color-mix(in srgb, var(--gold) 30%, transparent); color: var(--text); }

/* ── Typografie ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: .2px;
  margin: 0 0 .5em;
  color: var(--text);
}
h1 { font-size: clamp(2.7rem, 5.4vw, 4.3rem); font-weight: 500; letter-spacing: -.3px; }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.2rem; font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1rem; }
.lead { font-size: 1.18rem; color: var(--text-muted); line-height: 1.6; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: .8em;
}
/* kleine Gold-Vorlinie vor dem Eyebrow — feines Ledger-Detail */
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: .8;
}
.section-head .eyebrow { justify-content: center; }
.section-head.links .eyebrow, .eyebrow.links { justify-content: flex-start; }

/* Dünne goldene Zierlinie unter Section-Headlines */
.zierlinie::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin: 1.15rem auto 0;
  background: linear-gradient(90deg, var(--gold), color-mix(in srgb, var(--gold) 20%, transparent));
}
.zierlinie.links::after { margin-left: 0; margin-right: auto; }

.text-muted { color: var(--text-muted); }
.text-gold  { color: var(--gold-dark); }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--trust { background: var(--trust-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section-head.links { margin-left: 0; text-align: left; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1000px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) { .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  padding: .9em 1.7em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
  text-align: center; line-height: 1.2;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--gold);
  color: #17130A;
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #17130A; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }

.btn-ghost { background: transparent; color: var(--text-muted); border-color: transparent; padding-left: .6em; padding-right: .6em; }
.btn-ghost:hover { color: var(--gold-dark); }

.btn-trust { background: var(--trust); color: var(--bg); border-color: var(--trust); }
.btn-trust:hover { filter: brightness(1.08); }

.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* WhatsApp — bewusst NICHT giftgrün, in den Gold/Schwarz-Look integriert */
.btn-wa { background: transparent; color: var(--text); border-color: var(--border); }
.btn-wa:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-wa svg { width: 19px; height: 19px; }

/* ── Cards / Kacheln ───────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: border-color var(--ease-slow), transform var(--ease-slow), box-shadow var(--ease-slow);
}
.card:hover { border-color: color-mix(in srgb, var(--gold) 45%, var(--border)); }

/* ── Icon-Medaillon ────────────────────────────────────────────────────────── */
.icon-medaillon {
  width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.icon-medaillon svg { width: 23px; height: 23px; stroke-width: 1.4; }

/* ── Trust-Badge / Sterne ──────────────────────────────────────────────────── */
.trust-badge {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .5em .95em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .9rem;
  color: var(--text-muted);
  transition: border-color var(--ease);
}
a.trust-badge:hover { border-color: var(--gold); color: var(--text-muted); }
.sterne { display: inline-flex; gap: 2px; color: var(--gold); }
.sterne svg { width: 15px; height: 15px; fill: var(--gold); stroke: none; }
.trust-badge strong { color: var(--text); font-weight: 600; }

.merkmale { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; padding: 0; margin: 0; }
.merkmale li { display: inline-flex; align-items: center; gap: .5em; color: var(--text-muted); font-size: .95rem; }
.merkmale svg { width: 18px; height: 18px; color: var(--gold-dark); flex: none; }

/* ── Formulare ─────────────────────────────────────────────────────────────── */
.feld { margin-bottom: 18px; }
label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .5em; color: var(--text); }
.hint { font-size: .82rem; color: var(--text-muted); margin-top: .4em; line-height: 1.5; }

input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .78em .9em;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--text-muted) 80%, transparent); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 22%, transparent);
}
textarea { resize: vertical; min-height: 118px; }
select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B08D4F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat; background-position: right .85em center; padding-right: 2.4em;
}

/* ── Tabellen (Preisübersichten) ───────────────────────────────────────────── */
.tabelle-wrap { overflow-x: auto; }
table.preise {
  width: 100%; border-collapse: collapse; font-size: .98rem;
}
table.preise th, table.preise td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--border); }
table.preise th { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
table.preise td.zahl, table.preise th.zahl { text-align: right; font-variant-numeric: tabular-nums; }
table.preise tbody tr:last-child td { border-bottom: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   SIGNATURE · Kurstafel — tagesaktuelle Ankaufspreis-Tafel (Private-Bank-Board)
   ═══════════════════════════════════════════════════════════════════════════ */
.kurstafel {
  background: linear-gradient(180deg, color-mix(in srgb, var(--gold) 5%, var(--surface)), var(--surface));
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.kurstafel-kopf {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 8px 20px;
  padding: 20px 26px;
  border-bottom: 1px solid var(--border);
}
.kurstafel-kopf h3 { margin: 0; font-size: 1.35rem; }
.kurstafel-stand { display: inline-flex; align-items: center; gap: .55em; font-size: .84rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.kurstafel-stand .punkt { width: 7px; height: 7px; border-radius: 50%; background: var(--trust); box-shadow: 0 0 0 0 color-mix(in srgb, var(--trust) 60%, transparent); animation: puls 2.6s ease-out infinite; flex: none; }
@keyframes puls { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--trust) 55%, transparent); } 70% { box-shadow: 0 0 0 7px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

table.tafel { width: 100%; border-collapse: collapse; }
table.tafel th, table.tafel td { padding: 15px 26px; text-align: left; border-bottom: 1px solid var(--border-soft); }
table.tafel thead th { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
table.tafel th.zahl, table.tafel td.zahl { text-align: right; font-variant-numeric: tabular-nums; }
table.tafel tbody tr:last-child td { border-bottom: none; }
table.tafel tbody tr { transition: background var(--ease); }
table.tafel tbody tr:hover { background: color-mix(in srgb, var(--gold) 5%, transparent); }
.tafel-metall { display: inline-flex; align-items: center; gap: .7em; font-weight: 500; }
.tafel-metall svg { width: 18px; height: 18px; color: var(--gold-dark); flex: none; }
.tafel-fein { color: var(--text-muted); font-size: .9rem; }
.tafel-preis { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold-dark); line-height: 1; }
.tafel-preis .eh { font-family: var(--font-body); font-size: .8rem; color: var(--text-muted); margin-left: .3em; font-weight: 400; }
.tafel-anfrage { color: var(--text-muted); font-style: italic; font-size: .95rem; }
.kurstafel-fuss { padding: 16px 26px; border-top: 1px solid var(--border); font-size: .82rem; color: var(--text-muted); background: color-mix(in srgb, var(--surface-2) 60%, transparent); }

/* ── Header ────────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  border-bottom: 1px solid transparent;
  transition: background var(--ease-slow), border-color var(--ease-slow), box-shadow var(--ease-slow);
}
.site-header.solid {
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  border-bottom-color: color-mix(in srgb, var(--gold) 35%, var(--border));
  box-shadow: 0 1px 0 color-mix(in srgb, var(--gold) 10%, transparent), var(--shadow-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

/* Echtes Logo im Header */
.marke-logo { display: inline-flex; align-items: center; }
.marke-logo img { height: 44px; width: auto; display: block; transition: height var(--ease-slow); }
.site-header.solid .marke-logo img { height: 40px; }
/* Heller Modus: das Logo (goldene Schrift auf transparent) auf hellem Grund
   dezent absetzen, damit es nicht „schwebt". */
:root[data-theme="light"] .marke-logo img { filter: drop-shadow(0 1px 1px rgba(0,0,0,.12)); }

/* Bestands-Wortmarke (wird im Header nicht mehr genutzt, Styles bleiben als Fallback) */
.wortmarke { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: .5px; color: var(--text); display: inline-flex; align-items: baseline; gap: .05em; }
.wortmarke .gold { color: var(--gold-dark); }

.hauptnav { display: flex; align-items: center; gap: 2px; }
.hauptnav a {
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  padding: .5em .78em; border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}
.hauptnav a:hover { color: var(--text); background: var(--surface-2); }
.hauptnav a.aktiv { color: var(--gold-dark); }
.hauptnav a.aktiv::after { content:""; display:block; height:1px; margin-top:4px; background:var(--gold); border-radius:2px; }

.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: inline-flex; align-items: center; justify-content: center; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px; cursor: pointer; color: var(--text); transition: border-color var(--ease), color var(--ease); }
.nav-toggle:hover { border-color: var(--gold); color: var(--gold-dark); }
.nav-toggle svg { width: 21px; height: 21px; }
#navToggle { display: none; }

@media (max-width: 960px) {
  .hauptnav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px; transform: translateY(-120%);
    transition: transform var(--ease-slow); box-shadow: var(--shadow-card);
  }
  .hauptnav.offen { transform: translateY(0); }
  .hauptnav a { padding: .85em .6em; border-radius: 0; border-bottom: 1px solid var(--border); }
  .hauptnav a.aktiv::after { display: none; }
  #navToggle { display: inline-flex; }
  .header-cta .btn { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 118px) 0 clamp(52px, 8vw, 96px);
  overflow: hidden;
}
/* sehr dezenter, warmer Lichtschimmer oben — KEIN Neon */
.hero::before {
  content: "";
  position: absolute; inset: -40% 0 auto 0; height: 620px;
  background: radial-gradient(1100px 460px at 68% -60px, color-mix(in srgb, var(--gold) 9%, transparent), transparent 70%);
  pointer-events: none;
}
:root[data-theme="light"] .hero::before { background: radial-gradient(1100px 460px at 68% -60px, color-mix(in srgb, var(--gold) 16%, transparent), transparent 70%); }
.hero .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(36px, 5vw, 68px); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 1.4rem; max-width: 42ch; }
.hero-slogan { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--gold-dark); margin: 0 0 1.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.9rem; }
.hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }

/* Live-Kurs-Panel als Hero-Visual (elegant, echt — kein Stockfoto-Platzhalter) */
.kurs-panel {
  background: linear-gradient(180deg, color-mix(in srgb, var(--gold) 6%, var(--surface)), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 30px 30px 26px;
  position: relative;
}
.kurs-panel::before { content:""; position:absolute; left:30px; right:30px; top:0; height:1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.kurs-panel .kp-label { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 .8rem; }
.kurs-panel .kp-preis { display: flex; align-items: baseline; gap: .35em; font-variant-numeric: tabular-nums; }
.kurs-panel .kp-preis .wert { font-family: var(--font-display); font-size: clamp(2.6rem, 4.5vw, 3.4rem); font-weight: 600; color: var(--gold-dark); line-height: .95; }
.kurs-panel .kp-preis .eh { font-size: 1rem; color: var(--text-muted); }
.kurs-panel .kp-stand { font-size: .8rem; color: var(--text-muted); margin: .7rem 0 0; display: inline-flex; align-items: center; gap: .5em; }
.kurs-panel .kp-stand .punkt { width: 7px; height: 7px; border-radius: 50%; background: var(--trust); flex: none; animation: puls 2.6s ease-out infinite; }
.kurs-panel .kp-mini { list-style: none; margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--border); display: grid; gap: 12px; }
.kurs-panel .kp-mini li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: .95rem; }
.kurs-panel .kp-mini .m-name { color: var(--text-muted); }
.kurs-panel .kp-mini .m-wert { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--text); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; }
}

/* ── Preis-Highlight (Rechner) ─────────────────────────────────────────────── */
.preis-highlight {
  display: flex; align-items: baseline; gap: .35em;
  font-variant-numeric: tabular-nums;
}
.preis-highlight .wert { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.1rem); font-weight: 600; color: var(--gold-dark); line-height: 1; }
.preis-highlight .einheit { font-size: 1.05rem; color: var(--text-muted); }
.preis-stand { font-size: .82rem; color: var(--text-muted); }

/* ── Sortiment: Metall-Karten ──────────────────────────────────────────────── */
.metall-karte {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color var(--ease-slow), transform var(--ease-slow), background var(--ease-slow);
}
.metall-karte:hover { border-color: color-mix(in srgb, var(--gold) 55%, var(--border)); transform: translateY(-3px); }
.metall-karte .icon-medaillon { margin-bottom: 16px; }
.metall-karte h4 { margin-bottom: .35rem; font-size: 1.3rem; font-weight: 500; }
.metall-karte .unterkat { margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.55; }

/* ── 4-Schritt-Ablauf ──────────────────────────────────────────────────────── */
.schritt { position: relative; }
.schritt .nummer {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold); color: var(--gold-dark); background: transparent; margin-bottom: 16px;
}
.schritt h4 { margin-bottom: .3rem; }
.schritt p { color: var(--text-muted); margin: 0; font-size: .96rem; }

/* ── Foto-Werteinschätzung ─────────────────────────────────────────────────── */
.foto-drop {
  border: 1px dashed color-mix(in srgb, var(--gold) 55%, var(--border));
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 30px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease);
}
.foto-drop:hover, .foto-drop.dragover { border-color: var(--gold); background: color-mix(in srgb, var(--gold) 7%, var(--surface-2)); }
.foto-drop svg { width: 34px; height: 34px; color: var(--gold-dark); margin-bottom: 10px; }
.foto-drop .ft-titel { font-weight: 600; color: var(--text); margin: 0 0 .25rem; }
.foto-drop .ft-sub { font-size: .86rem; color: var(--text-muted); margin: 0; }
.foto-vorschau { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.foto-thumb { position: relative; width: 84px; height: 84px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border); background: var(--surface-2); }
.foto-thumb img { width: 100%; height: 100%; object-fit: cover; }
.foto-thumb button { position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border-radius: 50%; border: none; background: rgba(0,0,0,.6); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; }
.foto-thumb button svg { width: 13px; height: 13px; }
.foto-ergebnis { margin-top: 18px; }
.foto-ergebnis .ergebnis-karte { background: var(--surface-2); border: 1px solid var(--border); border-left: 2px solid var(--gold); border-radius: var(--radius-sm); padding: 20px 22px; }
.foto-ergebnis .ergebnis-wert { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-dark); font-variant-numeric: tabular-nums; line-height: 1.1; margin: .2rem 0 .4rem; }
.foto-ergebnis dl { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; margin: 0 0 4px; font-size: .95rem; }
.foto-ergebnis dt { color: var(--text-muted); }
.foto-ergebnis dd { margin: 0; font-weight: 500; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--surface); border-top: 1px solid var(--border); padding: clamp(52px, 6vw, 76px) 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h5 { font-family: var(--font-body); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--text-muted); font-size: .93rem; }
.footer-grid a:hover { color: var(--gold-dark); }
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
:root[data-theme="light"] .footer-brand img { filter: drop-shadow(0 1px 1px rgba(0,0,0,.12)); }
.footer-brand p { color: var(--text-muted); font-size: .92rem; max-width: 32ch; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold-dark); }

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Schwebender WhatsApp-Button (dezent, nur Desktop; Mobile hat Sticky-CTA) ── */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  display: inline-flex; align-items: center; gap: .55em;
  padding: .7em 1.1em;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 999px;
  font-size: .9rem; font-weight: 600;
  box-shadow: var(--shadow-card);
  transition: color var(--ease), border-color var(--ease), transform var(--ease);
}
.wa-float:hover { color: var(--gold-bright); transform: translateY(-1px); }
.wa-float svg { width: 20px; height: 20px; }
@media (max-width: 700px) { .wa-float { display: none; } }

/* ── Mobiler Sticky-Bottom-CTA (Anrufen / Route) ───────────────────────────── */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}
.mobile-cta .btn { flex: 1; }
@media (max-width: 700px) { .mobile-cta { display: flex; } body { padding-bottom: 78px; } }

/* ── Utilities ─────────────────────────────────────────────────────────────── */
.stack-sm > * + * { margin-top: 12px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.divider { height: 1px; background: var(--border); border: 0; margin: 0; }
.meldung { padding: 14px 16px; border-radius: var(--radius-sm); font-size: .95rem; }
.meldung.ok { background: color-mix(in srgb, var(--trust) 14%, var(--surface)); color: var(--trust); border: 1px solid color-mix(in srgb, var(--trust) 40%, transparent); }
.meldung.fehler { background: #2A1917; color: #E9A9A4; border: 1px solid #4A2723; }
:root[data-theme="light"] .meldung.fehler { background: #FBECEC; color: #8A2A26; border-color: #E8C9C6; }

.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation: none !important; }
}
