/* =====================================================================
   ASCEND STUDIOS, UPGRADE LAYER
   Ergänzt style.css. Nichts hier überschreibt Bestehendes destruktiv ·
   alle neuen Bausteine sind additiv und eigenständig benannt.

   Inhalt
   01  Mobile-Navigation (Burger + Overlay)
   02  Sticky Mobile-CTA
   03  Trust-Leiste
   04  Showreel-Block
   05  Sound-Toggle für Videos
   06  Case Studies (Ergebnis-Sektion)
   07  Stimmen / Testimonials
   08  Ablauf / Prozess
   09  Preis-Werte in den Paketen
   10  Formular-Status & Hinweise
   11  Accessibility / Focus / Reduced Motion
   ===================================================================== */

/* ---------- 01 MOBILE NAVIGATION ---------------------------------- */

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(20, 17, 12, 0.2);
  border-radius: 999px;
  background: transparent;
  margin-left: var(--s-3);
}
.nav-burger span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.2s ease;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobilemenu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--cream);
  padding: 96px var(--gutter) var(--s-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
  visibility: hidden;
}
body.menu-open .mobilemenu {
  transform: translateY(0);
  visibility: visible;
}
.mobilemenu-links { display: flex; flex-direction: column; gap: 2px; }
.mobilemenu-links a {
  font-family: var(--font-display);
  font-size: clamp(34px, 9vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  padding: 6px 0;
  border-bottom: 1px solid rgba(242, 234, 217, 0.12);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
}
.mobilemenu-links a small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.45);
}
.mobilemenu-foot { margin-top: var(--s-6); }
.mobilemenu-foot .mono {
  color: rgba(242, 234, 217, 0.45);
  margin-bottom: var(--s-2);
}
.mobilemenu-foot a {
  display: block;
  color: var(--cream);
  font-size: 17px;
  padding: 6px 0;
}
.mobilemenu-actions {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
.mobilemenu-actions a {
  flex: 1;
  text-align: center;
  border: 1px solid rgba(242, 234, 217, 0.35);
  border-radius: 999px;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mobilemenu-actions a.solid {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}
@media (min-width: 769px) {
  .mobilemenu { display: none; }
}

/* ---------- 02 STICKY MOBILE CTA ---------------------------------- */

.stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 990;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(242, 234, 217, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(20, 17, 12, 0.1);
  transform: translateY(120%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.stickybar.is-in { transform: translateY(0); }
.stickybar a {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
}
.stickybar a.primary { background: var(--ink); color: var(--cream); }

@media (max-width: 768px) {
  .stickybar { display: flex; }
  body { padding-bottom: 0; }
  footer { padding-bottom: 88px !important; }
  body.menu-open .stickybar { transform: translateY(120%); }
}

/* ---------- 03 TRUST-LEISTE --------------------------------------- */

.trustbar {
  border-top: 1px solid rgba(20, 17, 12, 0.12);
  border-bottom: 1px solid rgba(20, 17, 12, 0.12);
  background: var(--cream-soft);
}
.trustbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-4) var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-6);
  align-items: center;
  justify-content: space-between;
}
.trustbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.trustbar-item svg { width: 15px; height: 15px; flex: none; color: var(--signature); }
@media (max-width: 860px) {
  .trustbar-inner { gap: var(--s-3) var(--s-4); }
  .trustbar-item { font-size: 10px; }
}

/* ---------- 04 SHOWREEL ------------------------------------------- */

.showreel {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-8) var(--gutter);
}
.showreel-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--s-6);
  align-items: center;
}
.showreel-copy .eyebrow { color: rgba(242, 234, 217, 0.6); margin-bottom: var(--s-3); }
.showreel-copy .eyebrow::before { background: var(--signature); }
.showreel-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-4);
}
.showreel-copy h2 em { font-style: italic; color: rgba(242, 234, 217, 0.5); }
.showreel-copy p {
  color: rgba(242, 234, 217, 0.72);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: var(--s-5);
}
.showreel-copy .btn {
  border-color: rgba(242, 234, 217, 0.4);
  color: var(--cream);
}
.showreel-copy .btn:hover { background: var(--cream); color: var(--ink); }

.showreel-stage {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 640px;
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.showreel-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showreel-bars::before,
.showreel-bars::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 26px;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: none;
  z-index: 2;
}
.showreel-bars::before { top: 0; }
.showreel-bars::after { bottom: 0; }

@media (max-width: 900px) {
  .showreel-inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .showreel-copy p { max-width: none; }
  .showreel-stage { max-width: 320px; }
}

/* ---------- 05 SOUND-TOGGLE --------------------------------------- */

.sound-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(20, 17, 12, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(242, 234, 217, 0.28);
  color: var(--cream);
  transition: background 0.3s ease, transform 0.3s ease;
}
.sound-btn:hover { background: rgba(20, 17, 12, 0.85); transform: scale(1.06); }
.sound-btn svg { width: 17px; height: 17px; }
.sound-btn .icon-off { display: block; }
.sound-btn .icon-on { display: none; }
.sound-btn[aria-pressed="true"] .icon-off { display: none; }
.sound-btn[aria-pressed="true"] .icon-on { display: block; }

.sound-hint {
  position: absolute;
  right: 62px;
  bottom: 22px;
  z-index: 6;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.85);
  background: rgba(20, 17, 12, 0.55);
  padding: 4px 9px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.sound-hint.is-gone { opacity: 0; }

/* ---------- 06 CASE STUDIES --------------------------------------- */

.results {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-9) var(--gutter);
}
.results-head { margin-bottom: var(--s-6); max-width: 780px; }
.results-head .eyebrow { margin-bottom: var(--s-3); }
.results-head h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.03em;
}
.results-head h2 em { font-style: italic; color: var(--ink-dim); }
.results-head p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin-top: var(--s-4);
  max-width: 560px;
}

.results-list { display: flex; flex-direction: column; gap: var(--s-3); }

.result {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--s-5);
  align-items: stretch;
  border: 1px solid var(--cream-deep);
  border-radius: 16px;
  background: var(--cream-soft);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.result:hover { border-color: rgba(20, 17, 12, 0.35); }

.result-media {
  position: relative;
  background: #000;
  min-height: 340px;
  overflow: hidden;
}
.result-media video,
.result-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(20, 17, 12, 0.6);
  padding: 5px 10px;
  border-radius: 999px;
}

.result-body {
  padding: var(--s-5) var(--s-5) var(--s-5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.result-brand {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.result-brand h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.result-brand .where {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.result-steps { display: grid; gap: var(--s-3); }
.result-step { display: grid; grid-template-columns: 104px 1fr; gap: var(--s-3); }
.result-step dt {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-top: 3px;
}
.result-step dd {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.result-outcome {
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid rgba(20, 17, 12, 0.14);
  display: flex;
  align-items: flex-end;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.result-metric { display: flex; flex-direction: column; gap: 3px; }
.result-metric .num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.result-metric .cap {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* Platzhalter, die Connor vor Launch ersetzt.
   Bewusst dezent markiert: im Layout unauffällig, im Code eindeutig. */
.tbd {
  border-bottom: 1px dashed rgba(107, 30, 44, 0.55);
  padding-bottom: 1px;
}

.result-quote {
  border-left: 2px solid var(--signature);
  padding-left: var(--s-3);
  max-width: 380px;
}
.result-quote p {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
  font-style: italic;
}
.result-quote .who {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 6px;
}

@media (max-width: 980px) {
  .result { grid-template-columns: 1fr; gap: 0; }
  .result-media { min-height: 0; aspect-ratio: 4 / 3; position: relative; }
  .result-body { padding: var(--s-5); }
  .result-step { grid-template-columns: 92px 1fr; }
}
@media (max-width: 520px) {
  .result-step { grid-template-columns: 1fr; gap: 3px; }
  .result-outcome { gap: var(--s-4); }
}

/* ---------- 07 STIMMEN -------------------------------------------- */

.voices {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-8) var(--gutter);
}
.voices-inner { max-width: var(--max-w); margin: 0 auto; }
.voices-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}
.voices-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.voices-head h2 em { font-style: italic; color: rgba(242, 234, 217, 0.5); }
.voices-head .eyebrow { color: rgba(242, 234, 217, 0.55); }
.voices-head .eyebrow::before { background: var(--signature); }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.voice {
  border: 1px solid rgba(242, 234, 217, 0.16);
  border-radius: 14px;
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.voice .mark {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 0.6;
  color: var(--signature);
}
.voice p {
  font-size: 16.5px;
  line-height: 1.6;
  color: rgba(242, 234, 217, 0.88);
}
.voice-who {
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid rgba(242, 234, 217, 0.14);
}
.voice-who .name {
  font-family: var(--font-display);
  font-size: 19px;
}
.voice-who .role {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.5);
  margin-top: 3px;
}
.voices .tbd { border-bottom-color: rgba(200, 120, 135, 0.6); }

@media (max-width: 900px) {
  .voices-grid { grid-template-columns: 1fr; }
}

/* ---------- 08 ABLAUF --------------------------------------------- */

.flow {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s-8) var(--gutter);
}
.flow-head { margin-bottom: var(--s-6); }
.flow-head .eyebrow { margin-bottom: var(--s-3); }
.flow-head h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.flow-head h2 em { font-style: italic; color: var(--ink-dim); }

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(20, 17, 12, 0.14);
  border: 1px solid rgba(20, 17, 12, 0.14);
  border-radius: 14px;
  overflow: hidden;
}
.flow-step {
  background: var(--cream);
  padding: var(--s-5) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.35s ease;
}
.flow-step:hover { background: var(--cream-soft); }
.flow-step .n {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--signature);
}
.flow-step h4 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.flow-step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.flow-step .when {
  margin-top: auto;
  padding-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
@media (max-width: 1080px) {
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .flow-grid { grid-template-columns: 1fr; }
}

/* ---------- 09 PREISE --------------------------------------------- */

.price-from {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: var(--s-3) 0 6px;
}
.price-from .from {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.price-from .amount {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-from .unit {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.price-vat {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-3);
  border-bottom: 1px solid rgba(20, 17, 12, 0.14);
}

/* ---------- 10 FORMULAR ------------------------------------------- */

.form-assure {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-4);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.form-assure svg { width: 14px; height: 14px; color: var(--signature); flex: none; }

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: var(--s-4);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.consent input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: var(--ink); }
.consent a { text-decoration: underline; }

/* ---------- 11 A11Y ----------------------------------------------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--signature);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10001;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

@media (prefers-reduced-motion: reduce) {
  .mobilemenu,
  .stickybar,
  .case,
  .flow-step,
  .sound-btn { transition: none !important; }
}

/* ---------- 12 HERO-ERGÄNZUNGEN ----------------------------------- */

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin-top: var(--s-4);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-5);
  margin-bottom: var(--s-6);
}
@media (max-width: 560px) {
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; text-align: center; }
}

/* Kartensektion sitzt jetzt mitten auf der Seite, nicht mehr als Einstieg */
.mapsection--mid { padding: var(--s-8) 0 !important; }
.mapsection--mid .mapstage { height: 78svh; min-height: 520px; }
.mapsection--mid .ms-hud { top: 48px; }
.mapsection--mid .ms-hud-actions { margin-top: 0; }
.mapsection--mid .ms-hud { max-width: none; }

/* ---------- 13 RECHTSSEITEN: LISTEN ------------------------------- */
/* Der globale Reset entfernt list-style, auf Impressum und Datenschutz
   brauchen Aufzählungen aber sichtbare Struktur. */
.legal ul {
  list-style: none;
  margin: var(--s-3) 0 var(--s-4);
  display: grid;
  gap: 10px;
}
.legal ul li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.legal ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 1px;
  background: var(--signature);
}

/* ---------- 14 HERO-BALANCE --------------------------------------- */
/* Mit Subline und Buttons braucht die Headline weniger Fläche ·
   sonst rutschen die CTAs unter die Falz. */
.hero { padding-top: var(--s-8); padding-bottom: var(--s-6); }
.hero-title { font-size: clamp(44px, 8.4vw, 124px); margin-bottom: var(--s-4); }
.hero-footer { margin-top: var(--s-5); padding-top: var(--s-4); }
@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: calc(var(--s-8) + 20px); }
  .hero-title { font-size: clamp(40px, 11vw, 64px); }
  .hero-footer { grid-template-columns: 1fr; gap: var(--s-3); }
  .hero-footer .hero-meta-block[style] { text-align: left !important; }
  .hero-scroll { display: none; }
}

/* ---------- 15 NAV IM OFFENEN MENÜ -------------------------------- */
/* Über dem dunklen Overlay braucht die Leiste denselben Grund. */
body.menu-open .nav {
  background: var(--ink);
  border-bottom-color: rgba(242, 234, 217, 0.12);
}
body.menu-open .nav-brand,
body.menu-open .nav-brand-text small { color: var(--cream); }
body.menu-open .nav-brand img { filter: invert(1) brightness(1.6); }
body.menu-open .nav-burger { border-color: rgba(242, 234, 217, 0.35); }
body.menu-open .nav-burger span { background: var(--cream); }

/* ---------- 16 KARTEN-GATE ---------------------------------------- */
/* Klickfläche vor der Karte, solange sie nicht freigeschaltet ist. */

.mapstage.is-gated { background: var(--ink); }
.mapstage.is-gated .ms-hud { opacity: 0; pointer-events: none; }

.mapgate {
  position: absolute;
  inset: 0;
  z-index: 600;
  display: grid;
  place-items: center;
  width: 100%;
  padding: var(--gutter);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  transition: opacity 0.45s ease;
}
.mapgate.is-gone { opacity: 0; pointer-events: none; }

/* Rasterlinien statt Kartenbild, kein zusätzliches Asset, immer scharf */
.mapgate-grid {
  position: absolute;
  inset: -1px;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(242, 234, 217, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 234, 217, 0.5) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 78%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mapgate:hover .mapgate-grid { transform: scale(1.06); }

.mapgate-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
  max-width: 460px;
}
.mapgate-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 234, 217, 0.55);
}
.mapgate-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.mapgate-title em { font-style: italic; color: rgba(242, 234, 217, 0.5); }

.mapgate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 999px;
  background: var(--signature);
  color: var(--cream);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.mapgate-btn svg { width: 16px; height: 16px; }
.mapgate:hover .mapgate-btn {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}
.mapgate.is-loading .mapgate-btn {
  background: transparent;
  color: rgba(242, 234, 217, 0.6);
  border: 1px solid rgba(242, 234, 217, 0.3);
}
.mapgate.is-loading { cursor: progress; }

.mapgate-note {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(242, 234, 217, 0.42);
  max-width: 340px;
}

@media (prefers-reduced-motion: reduce) {
  .mapgate, .mapgate-grid, .mapgate-btn { transition: none !important; }
}

/* ---------- 17 LIEFERUMFANG-KARTEN -------------------------------- */
/* Nutzt das Voice-Layout, aber mit Nummern statt Anführungszeichen. */
.voice .mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 1;
  color: var(--signature);
}
.voice .voice-who:has(.role:only-child) { padding-top: var(--s-3); }

/* ---------- 18 WEBSITE-VORSCHAU IM CASE --------------------------- */
/* Ein <img> muss dieselbe Fläche füllen wie vorher das <video>. */
.result-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-viewport img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
