/* ============================================================
   VEST TONSTUDIO – Stylesheet (shared)
   Design: "Regieraum-Glow" – warmes Mitternachts-Indigo + Bernstein
   Kein Framework. Vanilla CSS. Mobile-first.
   Farb-, Typo- und Layout-Tokens siehe :root
   ============================================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Farben */
  --ink:        #16131F;   /* Regieraum-Dunkel (Basis-Hintergrund)      */
  --ink-2:      #1F1A2E;   /* leicht heller, Sektions-Wechsel           */
  --surface:    #241F35;   /* Karten auf Dunkel                          */
  --surface-hi: #2E2743;   /* Karten-Hover                               */
  --cream:      #F6F2EC;   /* helle Trust-Sektionen                      */
  --cream-2:    #ECE6DB;   /* Karten auf Creme                           */
  --amber:      #FFB059;   /* REC-/Röhren-Glow – Primär-CTA              */
  --amber-deep: #F2913A;   /* Amber Hover/Verlauf                        */
  --violet:     #8B7FF0;   /* LED-Akzent, Sekundär                       */
  --teal:       #46C2B8;   /* dritter Akzent (Icons/Checks)             */

  /* Text */
  --tx-light:   #F4F1F7;   /* Text auf Dunkel                            */
  --tx-muted:   #A79FB8;   /* Sekundärtext auf Dunkel                    */
  --tx-dark:    #241F35;   /* Text auf Creme                             */
  --tx-dark-mut:#6A6180;   /* Sekundärtext auf Creme                     */

  /* Typografie */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  /* Type-Scale (fluid) */
  --fs-h1:  clamp(2.4rem, 5vw + 1rem, 4.25rem);
  --fs-h2:  clamp(1.9rem, 3vw + 0.6rem, 2.9rem);
  --fs-h3:  clamp(1.25rem, 1.4vw + 0.6rem, 1.6rem);
  --fs-lead:clamp(1.05rem, 0.6vw + 0.9rem, 1.35rem);
  --fs-body:1.0625rem;
  --fs-sm:  0.9rem;
  --fs-xs:  0.78rem;

  /* Abstände (8er-Raster) */
  --sp-1: .5rem;  --sp-2: 1rem;   --sp-3: 1.5rem; --sp-4: 2rem;
  --sp-5: 3rem;   --sp-6: 4rem;   --sp-7: 6rem;   --sp-8: 8rem;

  /* Radien & Schatten */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-pill: 999px;
  --shadow-1: 0 4px 20px rgba(0,0,0,.25);
  --shadow-glow: 0 8px 40px rgba(255,176,89,.28);

  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset / Base ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--tx-light);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,svg,video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.02em; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { max-width: 65ch; }

/* Konsolen-Readout-Label (Signature-Typo) */
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  animation: recBlink 1.8s var(--ease) infinite;
}
@keyframes recBlink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ---------- 3. Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--sp-3); }
.section { padding-block: var(--sp-7); }
.section--tight { padding-block: var(--sp-6); }
.section-head { max-width: 42rem; margin-bottom: var(--sp-5); }
.section-head p { color: var(--tx-muted); font-size: var(--fs-lead); margin-top: var(--sp-2); }
.bg-cream { background: var(--cream); color: var(--tx-dark); }
.bg-cream .section-head p,
.bg-cream .card p { color: var(--tx-dark-mut); }
.bg-ink2 { background: var(--ink-2); }
.center { text-align: center; }
.center .section-head { margin-inline: auto; }

/* Waveform-Divider (Signature-Motiv) */
.waveform-divider { display: block; width: 100%; height: 46px; }
.waveform-divider path { stroke: var(--amber); }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .95rem 1.7rem; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #241400; box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 48px rgba(255,176,89,.42); }
.btn--ghost { border: 1.5px solid rgba(244,241,247,.28); color: var(--tx-light); }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.1rem; }
.bg-cream .btn--ghost { border-color: rgba(36,31,53,.25); color: var(--tx-dark); }
.bg-cream .btn--ghost:hover { border-color: var(--amber-deep); color: var(--amber-deep); }

/* ---------- 5. Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(22,19,31,.72);
  border-bottom: 1px solid rgba(244,241,247,.08);
  transition: background .3s var(--ease);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand span b { color: var(--amber); }
.nav__links { display: none; gap: var(--sp-4); align-items: center; }
.nav__links a { font-size: .96rem; color: var(--tx-muted); transition: color .2s; }
.nav__links a:hover { color: var(--tx-light); }
.nav__cta { display: none; }
.nav__phone { font-family: var(--font-mono); font-size: .9rem; color: var(--amber); }
.burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--tx-light); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 auto 0; z-index: 99;
  background: var(--ink-2); border-bottom: 1px solid rgba(244,241,247,.1);
  transform: translateY(-120%); transition: transform .35s var(--ease);
  padding: var(--sp-3);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { display: block; padding: .85rem .5rem; font-size: 1.1rem; border-bottom: 1px solid rgba(244,241,247,.06); }
.mobile-menu .btn { margin-top: var(--sp-2); }

@media (min-width: 900px) {
  .nav__links, .nav__cta { display: flex; }
  .burger { display: none; }
}

/* ---------- 6. Hero ---------- */
.hero { position: relative; padding-block: var(--sp-7) var(--sp-6); overflow: hidden; }
.hero::before { /* Röhren-Glow oben */
  content:""; position:absolute; inset:-40% 0 auto -10%; width:70%; height:70%;
  background: radial-gradient(closest-side, rgba(255,176,89,.20), transparent 70%);
  filter: blur(30px); z-index:0; pointer-events:none;
}
.hero::after { /* Violet-Glow rechts */
  content:""; position:absolute; top:10%; right:-15%; width:55%; height:80%;
  background: radial-gradient(closest-side, rgba(139,127,240,.16), transparent 70%);
  filter: blur(40px); z-index:0; pointer-events:none;
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: var(--sp-5); align-items: center; }
.hero h1 { margin: var(--sp-3) 0; }
.hero h1 .hl { color: var(--amber); }
.hero__lead { font-size: var(--fs-lead); color: var(--tx-muted); margin-bottom: var(--sp-4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-4); font-size: var(--fs-sm); color: var(--tx-muted); }
.hero__trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust svg { color: var(--teal); flex: none; }

/* Equalizer-Visual (Signature) */
.eq {
  display: flex; align-items: flex-end; gap: 6px; height: 300px;
  padding: var(--sp-4); background: var(--surface); border-radius: var(--r-lg);
  border: 1px solid rgba(255,176,89,.15); box-shadow: var(--shadow-1);
  position: relative; overflow: hidden;
}
.eq::after {
  content: "REC · 48 kHz / 24-bit"; position: absolute; top: 14px; left: 18px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: var(--tx-muted);
}
.eq__bar { flex: 1; border-radius: 6px 6px 2px 2px; background: linear-gradient(var(--amber), var(--amber-deep)); animation: eqPulse 1.4s var(--ease) infinite; transform-origin: bottom; }
.eq__bar:nth-child(3n){ background: linear-gradient(var(--violet), #6a5fd0); animation-duration: 1.9s; }
.eq__bar:nth-child(4n){ background: linear-gradient(var(--teal), #2f9a92); animation-duration: 1.1s; }
@keyframes eqPulse { 0%,100%{ transform: scaleY(.25); } 50%{ transform: scaleY(1); } }

@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.05fr .95fr; }
}

/* ---------- 7. Cards / Grids ---------- */
.grid { display: grid; gap: var(--sp-3); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 640px){ .grid--2{grid-template-columns:1fr 1fr;} .grid--3{grid-template-columns:1fr 1fr;} }
@media (min-width: 900px){ .grid--3{grid-template-columns:repeat(3,1fr);} .grid--4{grid-template-columns:repeat(4,1fr);} }

.card {
  background: var(--surface); border: 1px solid rgba(244,241,247,.07);
  border-radius: var(--r-md); padding: var(--sp-4);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,176,89,.35); box-shadow: var(--shadow-1); }
.bg-cream .card { background: var(--cream-2); border-color: rgba(36,31,53,.08); }
.card__icon {
  width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: var(--sp-2);
  border-radius: 12px; background: rgba(255,176,89,.12); color: var(--amber);
}
.bg-cream .card__icon { background: rgba(242,145,58,.14); color: var(--amber-deep); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: var(--fs-sm); color: var(--tx-muted); }

/* Feature-Liste mit Häkchen */
.checklist { display: grid; gap: var(--sp-2); }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; }
.checklist svg { flex: none; color: var(--teal); margin-top: 3px; }

/* ---------- 8. Ablauf / Steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-3); }
@media (min-width: 900px){ .steps--row{ grid-template-columns: repeat(4,1fr); } }
.step { position: relative; padding: var(--sp-4); padding-top: var(--sp-5); background: var(--surface); border-radius: var(--r-md); border: 1px solid rgba(244,241,247,.07); }
.bg-cream .step { background: var(--cream-2); border-color: rgba(36,31,53,.08); }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  position: absolute; top: var(--sp-3); left: var(--sp-4);
  font-family: var(--font-mono); font-size: 1.4rem; color: var(--amber); font-weight: 700;
}
.step h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.step p { font-size: var(--fs-sm); color: var(--tx-muted); }

/* ---------- 9. Preis-Block ---------- */
.price-card {
  max-width: 480px; margin-inline: auto; text-align: center;
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  border: 1px solid rgba(255,176,89,.3); border-radius: var(--r-lg);
  padding: var(--sp-5); box-shadow: var(--shadow-glow);
}
.price-card .amount { font-family: var(--font-display); font-size: 3.6rem; font-weight: 700; color: var(--amber); line-height: 1; }
.price-card .amount small { font-size: 1rem; color: var(--tx-muted); font-weight: 400; }
.price-card .checklist { text-align: left; margin: var(--sp-4) 0; }

/* ---------- 10. FAQ Accordion ---------- */
.faq { max-width: 46rem; margin-inline: auto; }
.faq__item { border-bottom: 1px solid rgba(244,241,247,.12); }
.bg-cream .faq__item { border-color: rgba(36,31,53,.12); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: var(--sp-3) 0; text-align: left; font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 600; color: inherit;
}
.faq__q .icon { flex: none; transition: transform .3s var(--ease); color: var(--amber); }
.faq__q[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.faq__a > div { padding-bottom: var(--sp-3); color: var(--tx-muted); }
.bg-cream .faq__a > div { color: var(--tx-dark-mut); }

/* ---------- 11. Kontakt / Formular ---------- */
.contact-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 900px){ .contact-grid{ grid-template-columns: 1fr 1fr; } }
.form { display: grid; gap: var(--sp-3); }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--fs-sm); font-weight: 600; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; padding: .85rem 1rem; border-radius: var(--r-sm);
  background: var(--surface); border: 1.5px solid rgba(244,241,247,.14); color: var(--tx-light);
  transition: border-color .2s, box-shadow .2s;
}
.bg-cream .field input, .bg-cream .field textarea, .bg-cream .field select {
  background: #fff; border-color: rgba(36,31,53,.18); color: var(--tx-dark);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(255,176,89,.2);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--check { display: flex; gap: .6rem; align-items: flex-start; font-size: var(--fs-sm); }
.field--check input { width: 20px; height: 20px; flex: none; margin-top: 2px; accent-color: var(--amber-deep); }
.field--check a { color: var(--amber-deep); text-decoration: underline; }
.form__status { font-size: var(--fs-sm); padding: .8rem 1rem; border-radius: var(--r-sm); display: none; }
.form__status.ok  { display:block; background: rgba(70,194,184,.15); color: var(--teal); }
.form__status.err { display:block; background: rgba(255,120,120,.15); color: #ff9a9a; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.contact-info { display: grid; gap: var(--sp-3); align-content: start; }
.contact-info a { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-mono); color: var(--amber); }
.bg-cream .contact-info a { color: var(--amber-deep); }
.map-embed {
  aspect-ratio: 16/10; border-radius: var(--r-md); overflow: hidden;
  background: var(--surface) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" fill="none" stroke="%23A79FB8" stroke-width="1.5"><circle cx="30" cy="24" r="9"/><path d="M30 33c0 8-9 15-9 15s-9-7-9-15"/></svg>') center/60px no-repeat;
  display: grid; place-items: end center; padding: var(--sp-3);
  border: 1px solid rgba(244,241,247,.1);
}
.map-embed span { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--tx-muted); }
.map-embed iframe { width:100%; height:100%; border:0; }

/* ---------- 12. Testimonials / Trust ---------- */
.quote-card { background: var(--surface); border-radius: var(--r-md); padding: var(--sp-4); border: 1px solid rgba(244,241,247,.07); }
.bg-cream .quote-card { background: #fff; border-color: rgba(36,31,53,.08); }
.quote-card .stars { color: var(--amber); letter-spacing: 2px; margin-bottom: .6rem; }
.quote-card blockquote { font-size: 1.02rem; margin-bottom: var(--sp-2); }
.quote-card cite { font-style: normal; font-size: var(--fs-sm); color: var(--tx-muted); }
.bg-cream .quote-card cite { color: var(--tx-dark-mut); }
.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-4) var(--sp-5); align-items: center; opacity: .9; }
.trust-bar .stat { text-align: center; }
.trust-bar .stat b { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--amber); }
.trust-bar .stat span { font-size: var(--fs-sm); color: var(--tx-muted); }
.bg-cream .trust-bar .stat b { color: var(--amber-deep); }
.bg-cream .trust-bar .stat span { color: var(--tx-dark-mut); }

/* ---------- 13. CTA-Band ---------- */
.cta-band {
  text-align: center; background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #241400; border-radius: var(--r-lg); padding: var(--sp-6) var(--sp-4);
}
.cta-band h2 { color: #241400; }
.cta-band p { color: #3a2400; margin: var(--sp-2) auto var(--sp-4); }
.cta-band .btn--dark { background: var(--ink); color: var(--tx-light); }
.cta-band .btn--dark:hover { background: #000; }

/* ---------- 14. Footer ---------- */
.site-footer { background: #100E17; color: var(--tx-muted); padding-block: var(--sp-6) var(--sp-4); font-size: var(--fs-sm); }
.footer-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 700px){ .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer h4 { font-family: var(--font-display); color: var(--tx-light); font-size: 1rem; margin-bottom: var(--sp-2); }
.site-footer a:hover { color: var(--amber); }
.site-footer ul { display: grid; gap: .5rem; }
.footer-bottom { margin-top: var(--sp-5); padding-top: var(--sp-3); border-top: 1px solid rgba(244,241,247,.08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-2); }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 15. Sticky Mobile-CTA (nur Landingpage) ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: .6rem; padding: .7rem var(--sp-3);
  background: rgba(22,19,31,.95); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,176,89,.25);
  transform: translateY(120%); transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: .85rem 1rem; }
@media (min-width: 900px){ .sticky-cta{ display: none; } }

/* ---------- 16. Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 17. Utilities ---------- */
.mt-2{margin-top:var(--sp-2)} .mt-3{margin-top:var(--sp-3)} .mt-4{margin-top:var(--sp-4)}
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--amber); color: #241400; padding: .6rem 1rem; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; }
.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; }

/* ---------- 18. Studio-Fotos (echte Bilder statt Platzhalter) ---------- */
.hero-photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,176,89,.2); box-shadow: 0 4px 40px rgba(0,0,0,.35);
  aspect-ratio: 4/5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo__badge {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; color: #fff;
  background: rgba(22,19,31,.55); backdrop-filter: blur(6px);
  padding: .45rem .8rem; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: .55rem;
}
.hero-photo__badge i {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 10px var(--amber);
  animation: recBlink 1.8s var(--ease) infinite;
}

.photo-band { position: relative; height: clamp(220px, 32vw, 420px); overflow: hidden; }
.photo-band img { width: 100%; height: 100%; object-fit: cover; }
.photo-band__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,19,31,.55), rgba(22,19,31,.15) 40%, rgba(22,19,31,.8)); }
.photo-band__cap { position: absolute; left: 0; right: 0; bottom: 0; padding-block: var(--sp-3); }

.media-frame { position: relative; border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(244,241,247,.08); margin-bottom: var(--sp-3); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.region-banner { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(244,241,247,.08); margin-bottom: var(--sp-4); aspect-ratio: 21/9; }
.region-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }

.map-static { position: relative; display: block; aspect-ratio: 16/10; border-radius: var(--r-md); overflow: hidden; border: 1px solid rgba(36,31,53,.14); }
.map-static img { width: 100%; height: 100%; object-fit: cover; object-position: 34% 62%; }
.map-static__pin {
  position: absolute; left: 12px; bottom: 12px;
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-mono); font-size: .72rem; color: #fff;
  background: rgba(22,19,31,.72); backdrop-filter: blur(6px);
  padding: .5rem .8rem; border-radius: var(--r-pill);
}

.form__hint { font-size: var(--fs-xs); color: var(--tx-dark-mut); line-height: 1.5; }
.form__hint a { color: var(--amber-deep); text-decoration: underline; }

/* ---------- 19. Rechtstext-Seiten (Impressum / Datenschutz) ---------- */
.legal { max-width: 820px; margin-inline: auto; padding: var(--sp-6) var(--sp-3) var(--sp-7); }
.legal h1 { font-size: clamp(2rem, 4vw + .5rem, 3rem); margin: var(--sp-2) 0 var(--sp-4); }
.legal .lead { color: var(--tx-muted); margin-bottom: var(--sp-5); font-size: var(--fs-lead); }
.legal section { margin-bottom: var(--sp-4); }
.legal h2 { font-size: 1.3rem; margin-bottom: var(--sp-1); }
.legal p { color: var(--tx-muted); max-width: none; }
.legal p + p { margin-top: var(--sp-2); }
.legal strong { color: var(--tx-light); }
.legal a { color: var(--amber); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal .todo { color: var(--tx-light); }
.legal .meta { margin-top: var(--sp-5); font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--tx-muted); }
.legal .note { font-size: .92rem; margin-top: var(--sp-1); }

/* ---------- 20. Preis-Grid (3 Karten: Anker · Held · Decoy) ---------- */
.scarcity { max-width: 760px; margin: 0 auto var(--sp-4); background: rgba(255,176,89,.08); border: 1px solid rgba(255,176,89,.28); border-radius: var(--r-md); padding: 1.1rem 1.4rem; }
.bg-cream .scarcity { background: rgba(242,145,58,.1); border-color: rgba(242,145,58,.35); }
.scarcity__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem 1rem; }
.scarcity__msg { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--tx-light); }
.bg-cream .scarcity__msg { color: var(--tx-dark); }
.scarcity__msg svg { color: var(--amber); flex: none; }
.bg-cream .scarcity__msg svg { color: var(--amber-deep); }
.scarcity__cd { font-family: var(--font-mono); font-size: .76rem; color: var(--tx-muted); }
.bg-cream .scarcity__cd { color: var(--tx-dark-mut); }
.scarcity__track { margin-top: .7rem; height: 6px; border-radius: 999px; background: rgba(244,241,247,.12); overflow: hidden; }
.bg-cream .scarcity__track { background: rgba(36,31,53,.1); }
.scarcity__bar { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--amber), var(--amber-deep)); transition: width .8s var(--ease); }

.price-grid { display: grid; gap: 1.25rem; align-items: center; grid-template-columns: 1fr; max-width: 1080px; margin-inline: auto; }
@media (min-width: 900px){ .price-grid { grid-template-columns: 1fr 1.15fr 1fr; } }
.price-col { background: var(--surface); border: 1px solid rgba(244,241,247,.09); border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: .5rem; }
.price-col__label { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--tx-muted); }
.price-col__price { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--tx-light); line-height: 1; }
.price-col__price small { font-size: .95rem; color: var(--tx-muted); font-weight: 400; }
.price-col p { font-size: .9rem; color: var(--tx-muted); }
.price-col__link { margin-top: auto; padding-top: 1rem; font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--tx-muted); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.price-col__link:hover { color: var(--amber); }
.price-col--held { order: -1; position: relative; background: linear-gradient(160deg, var(--surface), var(--ink-2)); border: 2px solid var(--amber); border-radius: 22px; padding: 2.6rem 2rem 2rem; box-shadow: 0 10px 48px rgba(255,176,89,.28); }
@media (min-width: 900px){ .price-col--held { order: 0; } }
.price-col--held .price-col__label { color: var(--amber); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #241400; background: linear-gradient(135deg, var(--amber), var(--amber-deep)); padding: .4rem .9rem; border-radius: 999px; font-weight: 700; }
.price-hero { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.price-hero__now { font-family: var(--font-display); font-weight: 700; font-size: 3.6rem; color: var(--amber); line-height: 1; }
.price-hero__was { font-family: var(--font-display); font-size: 1.5rem; color: var(--tx-muted); text-decoration: line-through; }
.price-col--held p { color: var(--tx-light); font-size: .98rem; }
.price-chip { align-self: flex-start; font-family: var(--font-mono); font-size: .72rem; color: var(--amber); background: rgba(255,176,89,.12); border: 1px solid rgba(255,176,89,.3); padding: .3rem .7rem; border-radius: 999px; }
.price-note { font-family: var(--font-mono); font-size: .74rem; color: var(--tx-muted); }

/* ---------- Region: Anfahrts-Akkordeons ---------- */
.route-grid { align-items: start; }
.route-card h3 { display: flex; justify-content: space-between; align-items: baseline; gap: .3rem .6rem; flex-wrap: wrap; margin-bottom: .75rem; }
.route-card__time { font-family: var(--font-mono); font-size: var(--fs-xs); font-weight: 400; letter-spacing: .04em; color: var(--amber); white-space: nowrap; line-height: 1.4; }
.route { margin-top: var(--sp-2); border-top: 1px solid rgba(244,241,247,.12); }
.route summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: .8rem; padding-top: var(--sp-2); font-family: var(--font-display); font-weight: 600; font-size: .98rem; }
.route summary::-webkit-details-marker { display: none; }
.route summary::after { content: "＋"; color: var(--amber); flex: none; transition: transform .3s var(--ease); }
.route[open] summary::after { transform: rotate(45deg); }
.route p { margin-top: .7rem; }
.route-note { grid-column: 1 / -1; font-size: var(--fs-xs); color: var(--tx-muted); }
.faq__a a { color: var(--amber); text-decoration: underline; }
.bg-cream .faq__a a { color: var(--amber-deep); }
