/* ==========================================================================
   AS – Schuh- & Schlüsseldienst Frickenhausen — Design v2 „Werkstatt Premium"
   Dunkler Hero, Tiefe & Schatten, Bento-Grid, Logo-Rot als Signalfarbe
   ========================================================================== */

:root {
  color-scheme: light dark;

  /* Papier & Tinte */
  --paper:      #FAF9F7;
  --paper-2:    #F2EFEB;
  --card:       #FFFFFF;
  --ink:        #17171A;
  --ink-2:      #4C4B50;
  --ink-3:      #78767C;
  --hairline:   rgba(23, 23, 26, 0.1);

  /* Logo-Rot */
  --red:        #B02D2A;
  --red-bright: #D6423D;
  --red-deep:   #8E211E;
  --red-tint:   #FAEDEC;
  --gold:       #C9A76B;

  /* Dunkle Bühne (Hero, ELV, Footer) */
  --stage:      #131316;
  --stage-2:    #1B1B1F;
  --stage-ink:  #F6F5F3;
  --stage-ink-2:rgba(246, 245, 243, 0.72);
  --stage-line: rgba(255, 255, 255, 0.12);
  --stage-glass:rgba(255, 255, 255, 0.07);

  --whatsapp:   #128C7E;
  --whatsapp-2: #0B6B5F;

  --shadow-s: 0 1px 2px rgba(20, 15, 10, 0.05), 0 4px 12px -4px rgba(20, 15, 10, 0.08);
  --shadow-m: 0 2px 4px rgba(20, 15, 10, 0.05), 0 16px 40px -16px rgba(20, 15, 10, 0.18);
  --shadow-l: 0 4px 8px rgba(20, 15, 10, 0.06), 0 32px 64px -24px rgba(20, 15, 10, 0.28);
  --shadow-red: 0 10px 32px -10px rgba(176, 45, 42, 0.55);

  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-display:  clamp(2.625rem, 6vw + 1rem, 4.75rem);
  --fs-title:    clamp(1.875rem, 3.2vw + 0.75rem, 2.75rem);
  --fs-subtitle: clamp(1.25rem, 1.5vw + 0.9rem, 1.5rem);
  --fs-lead:     clamp(1.125rem, 1vw + 0.95rem, 1.3125rem);
  --fs-body:     1.0625rem;
  --fs-caption:  0.875rem;
  --fs-label:    0.8125rem;

  --container: 1140px;
  --container-narrow: 720px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --s-1: 0.5rem;  --s-2: 0.75rem; --s-3: 1rem;   --s-4: 1.5rem;
  --s-5: 2rem;    --s-6: 3rem;    --s-7: 4rem;   --s-8: 6rem;

  --section-pad: clamp(4.5rem, 6vw + 2rem, 7.5rem);
  --radius-s: 12px; --radius-m: 20px; --radius-l: 28px; --radius-xl: 36px;

  --accent: var(--red);
  --focus-ring: var(--red);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper:      #121215;
    --paper-2:    #18181C;
    --card:       #1E1E23;
    --ink:        #F4F3F1;
    --ink-2:      #C3C2C7;
    --ink-3:      #929097;
    --hairline:   rgba(244, 243, 241, 0.12);
    --red:        #E0716B;
    --red-bright: #E9867F;
    --red-deep:   #C9534D;
    --red-tint:   #2C1D1C;
    --shadow-s: 0 1px 2px rgba(0,0,0,0.4), 0 4px 12px -4px rgba(0,0,0,0.5);
    --shadow-m: 0 2px 4px rgba(0,0,0,0.4), 0 16px 40px -16px rgba(0,0,0,0.6);
    --shadow-l: 0 4px 8px rgba(0,0,0,0.4), 0 32px 64px -24px rgba(0,0,0,0.7);
  }
}

/* ==== Reset / Basis ==== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-padding-top: 6.5rem; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }
:where(a, button, summary):focus-visible {
  outline: 2px solid var(--focus-ring); outline-offset: 3px; border-radius: 4px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff;
  padding: 0.6rem 1.2rem; border-radius: 0 0 var(--radius-s) 0;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }

section { padding-block: var(--section-pad); }
.section-alt { background: var(--paper-2); }

.eyebrow {
  font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: var(--s-3);
}
h1 { font-size: var(--fs-display); font-weight: 800; line-height: 1.03; letter-spacing: -0.03em; }
h2 { font-size: var(--fs-title); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; }
h3 { font-size: var(--fs-subtitle); font-weight: 700; line-height: 1.25; letter-spacing: -0.012em; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--ink-2); max-width: 62ch; }
p { max-width: 65ch; }
.section-intro { margin-top: var(--s-3); margin-bottom: var(--s-6); color: var(--ink-2); }
.center { text-align: center; }
.center p, .center .lead { margin-inline: auto; }

.tel-strong {
  font-size: var(--fs-subtitle); font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.tel-strong:hover { color: var(--red); }

/* ==== Buttons ==== */
.btn-primary, .btn-secondary, .btn-whatsapp, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  border-radius: 980px;
  font-weight: 650; text-decoration: none;
  padding: 0.8rem 1.6rem; font-size: var(--fs-body);
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-primary {
  background: linear-gradient(140deg, var(--red-bright), var(--red-deep));
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(176, 45, 42, 0.6); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-secondary {
  background: transparent; color: var(--red);
  box-shadow: inset 0 0 0 1.5px currentColor;
}
.btn-secondary:hover { transform: translateY(-2px); }
.btn-whatsapp {
  background: linear-gradient(140deg, #17A08F, var(--whatsapp-2));
  color: #fff;
  box-shadow: 0 10px 32px -10px rgba(18, 140, 126, 0.55);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(18, 140, 126, 0.6); }
.btn-ghost {
  background: var(--stage-glass); color: var(--stage-ink);
  border: 1px solid var(--stage-line);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-icon { width: 1.25em; height: 1.25em; flex: none; }

/* ==== Header ==== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  -webkit-backdrop-filter: saturate(1.8) blur(22px);
  backdrop-filter: saturate(1.8) blur(22px);
  border-bottom: 1px solid var(--hairline);
  height: 5.25rem;
}
@media (min-width: 768px) { .header { height: 5.75rem; } }
.header-inner {
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
}
.nav { display: none; gap: var(--s-5); }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: var(--fs-caption); font-weight: 600;
  color: var(--ink-2); text-decoration: none; position: relative;
}
.nav a:hover { color: var(--ink); }
.header .btn-primary { padding: 0.55rem 1.15rem; font-size: var(--fs-caption); }
.header-tel-mobile { display: grid; place-items: center; width: 44px; height: 44px; color: var(--red); }
@media (min-width: 900px) { .header-tel-mobile { display: none; } }
.header-tel-desktop { display: none; }
@media (min-width: 900px) { .header-tel-desktop { display: inline-flex; } }

/* ==== Wortmarke ==== */
.brand { display: inline-flex; align-items: center; gap: 0.9rem; text-decoration: none; color: var(--ink); }
.brand-mark-img {
  width: 4rem; height: 4rem; flex: none; object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(20, 15, 10, 0.18));
}
.brand-name {
  font-size: 1.0625rem; font-weight: 750; letter-spacing: -0.015em; line-height: 1.18;
  display: flex; flex-direction: column; white-space: nowrap;
}
.brand-sub {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--ink-3);
}
.amp { color: var(--gold); font-weight: 400; }
@media (max-width: 420px) {
  .brand-sub { display: none; }
  .brand-name { font-size: 0.9375rem; }
  .brand-mark-img { width: 3.25rem; height: 3.25rem; }
}

/* ==== Hero (dunkle Bühne) ==== */
.hero {
  position: relative; overflow: hidden;
  background: var(--stage);
  color: var(--stage-ink);
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/autoschluessel-funk.webp") center 38% / cover no-repeat;
  opacity: 0.14;
  filter: saturate(0.65) contrast(1.05);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60rem 32rem at 15% -10%, rgba(214, 66, 61, 0.32), transparent 65%),
    radial-gradient(48rem 30rem at 95% 110%, rgba(201, 167, 107, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(19, 19, 22, 0.2), rgba(19, 19, 22, 0.75) 78%, var(--stage));
}
.hero-inner {
  position: relative;
  max-width: 60rem; margin-inline: auto; padding-inline: var(--gutter);
  padding-block: clamp(4.5rem, 10vh, 7.5rem) clamp(7rem, 12vh, 10rem);
  text-align: center;
}
.chip-live {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: var(--fs-caption); font-weight: 600;
  color: var(--stage-ink);
  background: var(--stage-glass);
  border: 1px solid var(--stage-line);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-radius: 980px; padding: 0.45rem 1rem;
  margin-bottom: var(--s-5);
  font-variant-numeric: tabular-nums;
}
.chip-live .dot {
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  background: #34C759; flex: none;
  box-shadow: 0 0 10px rgba(52, 199, 89, 0.8);
}
.chip-live.closed .dot { background: #FF9F0A; box-shadow: 0 0 10px rgba(255, 159, 10, 0.7); }
.hero .eyebrow { color: var(--gold); }
.hero h1 { text-wrap: balance; }
.hero .lead { color: var(--stage-ink-2); margin: var(--s-4) auto 0; }
.hero-actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; margin-top: var(--s-6); }
.hero-hours {
  margin-top: var(--s-5); font-size: var(--fs-caption);
  color: rgba(246, 245, 243, 0.55); font-variant-numeric: tabular-nums;
}

/* ==== Situationskarten (überlappen den Hero) ==== */
.situations { padding-block: 0 var(--section-pad); background: var(--paper); }
.situations-grid {
  display: grid; gap: var(--s-4); grid-template-columns: 1fr;
  margin-top: clamp(-5.5rem, -8vh, -4rem);
  position: relative; z-index: 2;
}
@media (min-width: 768px) { .situations-grid { grid-template-columns: repeat(3, 1fr); } }
.situation {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l); padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-2);
  box-shadow: var(--shadow-l);
}
.situation p { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.55; flex: 1; }
.situation .btn-primary, .situation .btn-whatsapp, .situation .btn-secondary {
  margin-top: var(--s-3); align-self: flex-start;
  padding: 0.65rem 1.3rem; font-size: 0.9375rem;
}

/* ==== Icon-Kacheln ==== */
.icon-tile {
  width: 3.25rem; height: 3.25rem; border-radius: 16px;
  background: linear-gradient(140deg, var(--red-tint), color-mix(in srgb, var(--red-tint) 55%, var(--card)));
  color: var(--red);
  border: 1px solid color-mix(in srgb, var(--red) 14%, transparent);
  display: grid; place-items: center; margin-bottom: var(--s-3); flex: none;
}
.icon-tile svg { width: 1.6rem; height: 1.6rem; }

/* ==== Leistungen: Bento-Grid ==== */
.services-grid { display: grid; gap: var(--s-4); grid-template-columns: 1fr; }
@media (min-width: 640px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-2);
  box-shadow: var(--shadow-s);
}
.card h3 { font-size: 1.1875rem; }
.card p { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.55; }
.card--wide { grid-column: span 1; }
@media (min-width: 640px) { .card--wide { grid-column: span 2; } }
.card--photo { position: relative; overflow: hidden; }
.card--photo .card-img {
  position: absolute; right: -12%; bottom: -18%;
  width: 58%; aspect-ratio: 1; object-fit: cover;
  border-radius: 50%;
  opacity: 0.9;
  box-shadow: var(--shadow-m);
  pointer-events: none;
}
@media (max-width: 639px) { .card--photo .card-img { display: none; } }
.card--photo h3, .card--photo p { position: relative; max-width: 58%; }
@media (max-width: 639px) { .card--photo h3, .card--photo p { max-width: none; } }

/* ==== Fotos ==== */
.photo {
  border-radius: var(--radius-l); overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-m);
}
.photo img { width: 100%; height: auto; filter: saturate(0.88) contrast(1.03); }
.photo-caption { font-size: var(--fs-caption); color: var(--ink-3); margin-top: var(--s-3); }

/* ==== Split-Layout ==== */
.split { display: grid; gap: var(--s-6); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--s-7); } }
.split .photo { align-self: stretch; }
.split .photo img { height: 100%; object-fit: cover; }

/* ==== Marken-Chips ==== */
.chips { display: flex; flex-wrap: wrap; gap: var(--s-1); margin-top: var(--s-4); max-width: none; }
.chip {
  font-size: var(--fs-caption); color: var(--ink-2);
  background: var(--card);
  border: 1px solid var(--hairline); border-radius: 980px;
  padding: 0.35rem 0.9rem; white-space: nowrap;
  box-shadow: var(--shadow-s);
}
.brands-details { margin-top: var(--s-3); border-top: 1px solid var(--hairline); }
.brands-details summary {
  cursor: pointer; padding-block: var(--s-3);
  font-weight: 650; color: var(--red); list-style: none;
  display: flex; align-items: center; gap: 0.5rem;
}
.brands-details summary::-webkit-details-marker { display: none; }
.brands-details summary::after { content: "+"; font-weight: 400; font-size: 1.35rem; margin-left: auto; }
.brands-details[open] summary::after { content: "–"; }
.brands-details .chips { padding-bottom: var(--s-4); margin-top: 0; }
.brands-note { font-size: var(--fs-caption); color: var(--ink-3); margin-top: var(--s-4); }

/* ==== Dunkle Sektion (ELV) ==== */
.section-dark {
  position: relative; overflow: hidden;
  background: var(--stage); color: var(--stage-ink);
}
.section-dark::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50rem 30rem at 85% 0%, rgba(214, 66, 61, 0.22), transparent 60%);
  pointer-events: none;
}
.section-dark > * { position: relative; }
.section-dark .eyebrow { color: var(--gold); }
.section-dark .section-intro { color: var(--stage-ink-2); }
.section-dark .photo {
  border-color: var(--stage-line);
  box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255,255,255,0.06);
}
.facts { display: grid; gap: var(--s-3); margin-top: var(--s-6); grid-template-columns: 1fr; max-width: none; }
@media (min-width: 640px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact {
  background: var(--stage-glass);
  border: 1px solid var(--stage-line);
  border-radius: var(--radius-m);
  padding: var(--s-4);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.fact strong {
  display: block; font-size: clamp(1.25rem, 1vw + 1rem, 1.5rem); font-weight: 800;
  white-space: nowrap;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #FFD9D6, var(--red-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fact span { font-size: var(--fs-caption); color: var(--stage-ink-2); }

/* ==== Laden: Foto-Vollbild-Band ==== */
.laden-band {
  position: relative; overflow: hidden;
  color: var(--stage-ink);
  padding-block: clamp(6rem, 10vw, 9rem);
}
.laden-band .bg {
  position: absolute; inset: 0;
  background: url("../img/laden-schluesselwand.webp") center / cover no-repeat;
  filter: brightness(0.55) saturate(0.75);
}
.laden-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(46rem 30rem at 50% 45%, rgba(15, 14, 16, 0.68), rgba(15, 14, 16, 0.42) 70%),
    linear-gradient(180deg, rgba(15, 14, 16, 0.82), rgba(15, 14, 16, 0.45) 45%, rgba(15, 14, 16, 0.85));
}
.laden-band h2, .laden-band .section-intro {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.laden-band > .container { position: relative; }
.laden-band .eyebrow { color: var(--gold); }
.laden-band .section-intro { color: rgba(246, 245, 243, 0.82); }
.laden-logo-card {
  display: inline-flex; align-items: center; gap: var(--s-4);
  background: var(--stage-glass);
  border: 1px solid var(--stage-line);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-radius: var(--radius-l);
  padding: var(--s-4) var(--s-5);
  margin-top: var(--s-5);
  text-align: left;
}
.laden-logo-card img { width: 5rem; height: 5rem; object-fit: contain; flex: none; }
.laden-logo-card .big-tel {
  font-size: clamp(1.375rem, 2vw + 0.8rem, 1.75rem); font-weight: 800;
  color: #fff; text-decoration: none; font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.laden-logo-card .big-tel:hover { color: #FFD9D6; }
.laden-logo-card small { display: block; font-size: var(--fs-caption); color: rgba(246,245,243,0.65); }

/* ==== WhatsApp-Band ==== */
.whatsapp-band {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, #0F7C6E, #0A5A50);
  color: #fff;
}
.whatsapp-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(44rem 26rem at 90% -20%, rgba(255, 255, 255, 0.14), transparent 60%);
}
.whatsapp-band > * { position: relative; }
.whatsapp-band .eyebrow { color: rgba(255, 255, 255, 0.75); }
.whatsapp-band .section-intro { color: rgba(255, 255, 255, 0.85); margin-bottom: 0; }
.whatsapp-band .btn-whatsapp {
  margin-top: var(--s-5);
  background: #fff; color: #0A5A50;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.35);
}
.whatsapp-band .btn-whatsapp:hover { background: #F2FBF9; }

/* ==== Öffnungszeiten ==== */
.hours-card {
  max-width: 440px; margin-inline: auto;
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--radius-xl); padding: var(--s-6) var(--s-5);
  box-shadow: var(--shadow-m);
}
.hours-row {
  display: flex; justify-content: space-between; gap: var(--s-3);
  padding-block: var(--s-2); border-bottom: 1px solid var(--hairline);
  font-variant-numeric: tabular-nums; font-size: 0.9375rem;
}
.hours-row:last-child { border-bottom: 0; }
.hours-row .day { color: var(--ink-2); }
.hours-row .time { text-align: right; }
.hours-row.closed .time { color: var(--ink-3); }
.hours-row.today {
  margin-inline: calc(var(--s-3) * -1);
  padding-inline: var(--s-3);
  background: var(--red-tint); border-radius: var(--radius-s);
  border-bottom-color: transparent;
}
.hours-row.today .day, .hours-row.today .time { font-weight: 700; color: var(--red); }
.hours-note {
  text-align: center; font-size: var(--fs-caption); color: var(--ink-3);
  margin: var(--s-4) auto 0; max-width: 440px;
}

/* ==== Kontakt ==== */
.contact-grid { display: grid; gap: var(--s-5); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; gap: var(--s-6); } }
.contact-card {
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--radius-l); padding: var(--s-5);
  box-shadow: var(--shadow-m);
}
.contact-line {
  display: flex; align-items: center; gap: var(--s-3);
  padding-block: var(--s-3); text-decoration: none;
  border-top: 1px solid var(--hairline);
}
.contact-line:first-of-type { margin-top: var(--s-4); }
.contact-line .icon-tile { margin: 0; }
.contact-line .label { font-size: var(--fs-caption); color: var(--ink-3); display: block; }
.address-block { font-style: normal; line-height: 1.6; }
.map-tile {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-l);
  padding: var(--s-4);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--s-3); text-align: center;
  box-shadow: var(--shadow-m);
}
.map-tile p { font-size: var(--fs-caption); color: var(--ink-2); }
.map-preview {
  position: relative; display: block; width: 100%;
  border-radius: var(--radius-m); overflow: hidden;
  border: 1px solid var(--hairline);
}
.map-preview img { display: block; width: 100%; height: auto; }
.map-pin {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -92%);
  width: 2.75rem; height: 2.75rem;
  color: var(--red);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4)) drop-shadow(0 0 2px rgba(255,255,255,0.9));
  pointer-events: none;
}
.map-attribution {
  position: absolute; right: 6px; bottom: 4px;
  font-size: 0.6875rem; line-height: 1.4;
  background: rgba(255,255,255,0.85); color: #333;
  padding: 1px 7px; border-radius: 4px;
}

/* ==== FAQ ==== */
.faq { max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.faq-list {
  background: var(--card); border: 1px solid var(--hairline);
  border-radius: var(--radius-l); padding-inline: var(--s-5);
  box-shadow: var(--shadow-s);
}
.faq details { border-bottom: 1px solid var(--hairline); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; list-style: none;
  padding-block: var(--s-4);
  font-weight: 650; font-size: var(--fs-body);
  display: flex; align-items: center; gap: var(--s-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 300; font-size: 1.6rem; margin-left: auto;
  color: var(--red); flex: none; line-height: 1;
  transition: transform 0.25s cubic-bezier(0.2, 0, 0, 1);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-answer { padding-bottom: var(--s-4); color: var(--ink-2); }

/* ==== Footer ==== */
.footer {
  background: var(--stage); color: rgba(246, 245, 243, 0.62);
  padding-block: var(--s-7) var(--s-5);
  font-size: var(--fs-caption);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer a { color: rgba(246, 245, 243, 0.88); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; gap: var(--s-5); grid-template-columns: 1fr; margin-bottom: var(--s-6); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h4 {
  color: rgba(246, 245, 243, 0.95); font-size: var(--fs-label);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--s-3);
}
.footer ul { list-style: none; }
.footer li { padding-block: 0.3rem; }
.footer .brand { color: #fff; margin-bottom: var(--s-3); }
.footer .brand-sub { color: rgba(246, 245, 243, 0.5); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--s-4); display: flex; flex-wrap: wrap; gap: var(--s-3);
  justify-content: space-between;
}

/* ==== Schwebender WhatsApp-Button (mobil) ==== */
.fab-whatsapp { display: none; }
@media (max-width: 767px) {
  .fab-whatsapp {
    display: grid; place-items: center;
    position: fixed; right: 1rem; bottom: 1rem; z-index: 90;
    width: 3.5rem; height: 3.5rem; border-radius: 50%;
    background: linear-gradient(140deg, #17A08F, var(--whatsapp-2)); color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  }
  .fab-whatsapp svg { width: 1.75rem; height: 1.75rem; }
}

/* ==== Rechtsseiten ==== */
.legal { padding-block: var(--s-7); }
.legal h1 { font-size: var(--fs-title); margin-bottom: var(--s-5); }
.legal h2 { font-size: var(--fs-subtitle); margin-top: var(--s-6); margin-bottom: var(--s-3); }
.legal h3 { font-size: var(--fs-body); font-weight: 700; margin-top: var(--s-4); margin-bottom: var(--s-2); }
.legal p, .legal li { color: var(--ink-2); margin-bottom: var(--s-3); }
.legal ul, .legal ol { padding-left: 1.25rem; margin-bottom: var(--s-3); }
.legal .todo {
  background: var(--red-tint); border-radius: 8px;
  padding: 0.15rem 0.5rem; font-weight: 650; color: var(--red);
}
.legal .notice {
  background: var(--paper-2); border: 1px solid var(--hairline);
  border-radius: var(--radius-m); padding: var(--s-4); margin-top: var(--s-6);
  font-size: var(--fs-caption); color: var(--ink-3);
}

/* ==== Micro-Interactions ==== */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: rise-in both;
      animation-timeline: view();
      animation-range: entry 0% entry 38%;
    }
    @keyframes rise-in {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: none; }
    }
  }
  .card, .situation {
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .card:hover, .situation:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-l);
    border-color: color-mix(in srgb, var(--gold) 45%, var(--hairline));
  }
  .nav a::after {
    content: ""; position: absolute; left: 0; bottom: -6px;
    width: 100%; height: 2px; background: var(--red); border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s cubic-bezier(0.2, 0, 0, 1);
  }
  .nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
  .map-preview { transition: transform 0.25s cubic-bezier(0.2, 0, 0, 1); }
  .map-preview:hover { transform: scale(1.012); }
  .chip-live .dot { animation: pulse-dot 2.4s ease-in-out infinite; }
  @keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.7; }
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .header, .fab-whatsapp, .footer-grid { display: none; }
}
