/* =========================================================
   MIRRORS — Vorschlag 03 · "The Stage"
   Ein Screen, keine Seite scrollt.

   Dramaturgie (Klassen setzt script.js auf <html>):
     (Start)      MIRRORS nur als Umriss im Dunkeln
     .lit-right   Spot von rechts oben flackert an
     .lit-left    Spot von links oben flackert an (mit Startschwierigkeiten)
     .words       VISUALS THAT SELL + by Victoria Miron erscheinen
     .stage-on    Bühnenlinien zeichnen sich, Achse wächst nach unten
     .ready       Karussell dreht ein, Randpfeile erscheinen
   ========================================================= */

@import url("../assets/fonts.css?v=2");

:root {
  --bg:        #060606;
  --panel:     #0d0c0b;
  --panel-2:   #141211;
  --text:      #f2efe9;
  --muted:     #a09890;
  --gold:      #c99036;
  --gold-soft: #dfb264;
  --line:      rgba(201, 144, 54, 0.28);
  --hairline:  rgba(242, 239, 233, 0.10);

  --serif:  "Playfair Display", "Didot", Georgia, serif;
  --impact: "Oswald", "Arial Narrow", sans-serif;
  --sans:   "Montserrat", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;

  --ring-r: 700px;              /* Radius des Karussells, JS rechnet nach */
  --card-w: clamp(320px, 38vw, 640px);

  --ease: cubic-bezier(0.76, 0, 0.24, 1);
  --out:  cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

/* Bahnhöhen-Faktor 0..1 pro Karte (0 = vorne/tief, 1 = hinten/hoch) */
@property --liftF {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

html, body {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Fotografen-Schicht: Vignette + Filmkorn ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 55;
  pointer-events: none;
  background: radial-gradient(ellipse 118% 108% at 50% 38%, transparent 60%, rgba(0, 0, 0, 0.46) 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: -60px;
  z-index: 56;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-14px,8px); }
  20% { transform: translate(10px,-12px); } 30% { transform: translate(-8px,-16px); }
  40% { transform: translate(12px,10px); } 50% { transform: translate(-12px,4px); }
  60% { transform: translate(8px,-8px); } 70% { transform: translate(-4px,14px); }
  80% { transform: translate(14px,-4px); } 90% { transform: translate(-10px,-10px); }
}
@media (prefers-reduced-motion: reduce) { body::after { animation: none; } }

/* =========================================================
   Layout: oben Marke + Bühne, unten Karussell
   ========================================================= */
.wrapper {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* ---------- Lichtkegel ---------- */
.beam {
  position: fixed;
  top: -12vh;
  width: 68vw;
  height: 88vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  mix-blend-mode: screen;
  filter: blur(26px);
}
.beam--right {
  right: -14vw;
  background: conic-gradient(from 231deg at 92% 0%,
    transparent 0deg,
    rgba(223, 178, 100, 0.05) 10deg,
    rgba(223, 178, 100, 0.34) 24deg,
    rgba(242, 230, 200, 0.42) 30deg,
    rgba(223, 178, 100, 0.30) 36deg,
    rgba(223, 178, 100, 0.05) 50deg,
    transparent 60deg);
}
.beam--left {
  left: -14vw;
  background: conic-gradient(from 82deg at 8% 0%,
    transparent 0deg,
    rgba(223, 178, 100, 0.05) 10deg,
    rgba(223, 178, 100, 0.30) 24deg,
    rgba(242, 230, 200, 0.40) 30deg,
    rgba(223, 178, 100, 0.28) 36deg,
    rgba(223, 178, 100, 0.05) 50deg,
    transparent 60deg);
}
html.lit-right .beam--right { animation: flickRight 1.15s steps(1, end) forwards; }
html.lit-left  .beam--left  { animation: flickLeft  1.45s steps(1, end) forwards; }

/* Der rechte Spot springt fast sauber an … */
@keyframes flickRight {
  0% { opacity: 0; } 6% { opacity: .85; } 11% { opacity: .1; }
  17% { opacity: .95; } 21% { opacity: .3; } 30% { opacity: 1; }
  100% { opacity: 1; }
}
/* … der linke hat echte Startschwierigkeiten */
@keyframes flickLeft {
  0% { opacity: 0; } 4% { opacity: .7; } 7% { opacity: 0; }
  13% { opacity: .5; } 16% { opacity: .05; } 22% { opacity: .8; }
  26% { opacity: .15; } 33% { opacity: .9; } 38% { opacity: .25; }
  46% { opacity: 1; } 100% { opacity: 1; }
}

/* ---------- Marke ---------- */
.head {
  flex: none;
  text-align: center;
  padding-top: clamp(20px, 4.5vh, 56px);
  position: relative;
  z-index: 2;
  /* Intro: JS misst --intro-shift, damit MIRRORS exakt im
     Viewport-Zentrum steht; mit .stage-on gleitet der Block hoch */
  transform: translateY(var(--intro-shift, 0px));
}
.head.can-move { transition: transform 1.2s var(--ease); }
html.stage-on .head { transform: translateY(0); }
.logo {
  position: relative;
  display: inline-block;
  font-family: var(--impact);
  font-weight: 700;
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  user-select: none;
}
.logo__stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 144, 54, 0.34);
}
.logo__fill {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.logo__fill--right {
  background: linear-gradient(112deg, transparent 38%, #e8c887 58%, #c99036 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo__fill--left {
  background: linear-gradient(248deg, transparent 38%, #e8c887 58%, #c99036 78%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
html.lit-right .logo__fill--right { animation: flickRight 1.15s steps(1, end) forwards; }
html.lit-left  .logo__fill--left  { animation: flickLeft  1.45s steps(1, end) forwards; }
.logo::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: radial-gradient(closest-side, rgba(201, 144, 54, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 1.4s ease .3s;
  z-index: -1;
}
html.lit-left .logo::after { opacity: 1; }

/* ---------- Worte ---------- */
.tagline {
  margin-top: clamp(10px, 1.8vh, 20px);
  font-size: clamp(0.68rem, 1.25vw, 0.92rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.62em;
  text-indent: 0.62em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s ease, transform 1s var(--out), letter-spacing 1.2s var(--out), text-indent 1.2s var(--out);
}
.byline {
  margin-top: clamp(6px, 1.2vh, 14px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.7vw, 1.3rem);
  color: var(--muted);
  opacity: 0;
  filter: blur(6px);
  transition: opacity 1s ease .15s, filter 1.1s ease .15s;
}
html.words .tagline { opacity: 1; transform: none; letter-spacing: 0.34em; text-indent: 0.34em; }
html.words .byline  { opacity: 1; filter: blur(0); }

/* ---------- Bühne aus Linien + Achse ---------- */
.stagearea { flex: none; text-align: center; position: relative; z-index: 2; }
.stagearea svg {
  width: clamp(230px, 26vw, 360px);
  height: auto;
  display: block;
  margin: clamp(6px, 1.4vh, 16px) auto 0;
  overflow: visible;
}
.stagearea path, .stagearea line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 400);
  stroke-dashoffset: var(--len, 400);
  transition: stroke-dashoffset 1.3s var(--ease);
}
html.stage-on .stagearea path, html.stage-on .stagearea line { stroke-dashoffset: 0; }
.stagearea .s2 { transition-delay: .25s; }
.stagearea .s3 { transition-delay: .5s; }

/* Achse: wächst von der Bühne senkrecht hinunter */
.axis {
  width: 1px;
  height: clamp(20px, 4.5vh, 52px);
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 144, 54, 0.25));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s var(--ease) .7s;
}
html.stage-on .axis { transform: scaleY(1); }

/* =========================================================
   Karussell — dreht um die Achse
   ========================================================= */
.carousel {
  flex: 1;
  min-height: 0;
  position: relative;
  z-index: 2;
  perspective: 2100px;
  perspective-origin: 50% 30%;
}
.carousel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(201, 144, 54, 0.55), rgba(201, 144, 54, 0.05));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.1s var(--ease) 1s;
}
html.stage-on .carousel::before { transform: scaleY(1); }

.ring {
  position: absolute;
  left: 50%;
  top: clamp(4px, 1vh, 12px);
  bottom: clamp(16px, 2.6vh, 30px);   /* schwebt frei — Rundung bleibt vollständig sichtbar */
  width: var(--card-w);
  transform-style: preserve-3d;
  --tilt: 3deg;                  /* die Achse steht leicht schief */
  --max-lift: clamp(60px, 13vh, 130px);   /* Höhenunterschied der Umlaufbahnen */
  transform: translateX(-50%) translateY(calc(var(--ring-r) * -0.087))
             rotateX(calc(-1 * var(--tilt)))
             translateZ(calc(-1 * var(--ring-r))) rotateY(var(--rot, 0deg));
  transition: transform 1.05s var(--ease);
  opacity: 0;
}
html.ready .ring { opacity: 1; transition: transform 1.05s var(--ease), opacity .9s ease; }

.card {
  position: absolute;
  inset: 0;
  transform: rotateY(calc(var(--i) * 72deg)) translateZ(var(--ring-r)) rotateX(var(--tilt)) translateY(calc(var(--liftF) * -1 * var(--max-lift)));
  animation: float 7s ease-in-out calc(var(--i) * -1.4s) infinite alternate;
  backface-visibility: hidden;
  background: linear-gradient(160deg, var(--panel-2), var(--panel) 55%);
  border: 1px solid var(--hairline);
  border-radius: clamp(22px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: filter .9s ease, opacity .9s ease, --liftF 1.05s var(--ease);
  filter: brightness(0.34) saturate(0.6) blur(4px);   /* Tiefenunschaerfe */
  pointer-events: none;
}
.card.is-front {
  filter: none;
  pointer-events: auto;
  border-color: var(--line);
  box-shadow: 0 46px 110px rgba(0, 0, 0, 0.72), 0 12px 30px rgba(0, 0, 0, 0.5);
}
.card:not(.is-front) { cursor: pointer; pointer-events: auto; }

/* Schwebebewegung: gleiche Bahn, nur vertikal atmend */
@keyframes float {
  from { transform: rotateY(calc(var(--i) * 72deg)) translateZ(var(--ring-r)) rotateX(var(--tilt)) translateY(calc(var(--liftF) * -1 * var(--max-lift) - 7px)); }
  to   { transform: rotateY(calc(var(--i) * 72deg)) translateZ(var(--ring-r)) rotateX(var(--tilt)) translateY(calc(var(--liftF) * -1 * var(--max-lift) + 9px)); }
}
@media (prefers-reduced-motion: reduce) { .card { animation: none; } }

.card__bar {
  flex: none;
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 15px 20px 13px;
  border-bottom: 1px solid var(--hairline);
  background: rgba(6, 6, 6, 0.45);
}
.card__no { font-family: var(--impact); font-size: 11px; letter-spacing: 0.26em; color: var(--gold); }
.card__bar h2 { font-family: var(--serif); font-size: clamp(1.15rem, 1.8vw, 1.5rem); letter-spacing: -0.01em; }
.card__body {
  flex: 1;
  min-height: 0;
  padding: clamp(13px, 1.8vh, 22px) 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.card__body::-webkit-scrollbar { width: 3px; }
.card__body::-webkit-scrollbar-thumb { background: var(--line); }

/* ---------- Randpfeile ---------- */
.edge {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: clamp(44px, 4.4vw, 62px);
  height: clamp(44px, 4.4vw, 62px);
  margin-top: calc(clamp(44px, 4.4vw, 62px) / -2);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(6, 6, 6, 0.55);
  backdrop-filter: blur(6px);
  color: var(--gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .8s ease 1.2s, border-color .3s ease, color .3s ease, transform .3s var(--out);
}
html.ready .edge { opacity: 1; }
.edge:hover { border-color: var(--gold); color: var(--gold-soft); }
.edge--left  { left:  clamp(10px, 1.8vw, 30px); }
.edge--right { right: clamp(10px, 1.8vw, 30px); }
.edge--left:hover  { transform: translateX(-3px); }
.edge--right:hover { transform: translateX(3px); }
.edge:active { transform: scale(.92); }
.edge svg { width: 44%; height: 44%; }

/* ---------- Sprache ---------- */
.lang {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 20;
  display: flex;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  overflow: hidden;
  background: rgba(6, 6, 6, 0.5);
  backdrop-filter: blur(6px);
}
.lang button {
  background: none;
  border: 0;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  cursor: pointer;
  transition: .25s ease;
}
.lang button.is-active { background: var(--gold); color: #0d0b08; }

/* =========================================================
   Karteninhalte
   ========================================================= */
.eyebrow {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.gold { color: var(--gold); }
.lead { color: var(--muted); font-size: 13.5px; }

/* Work */
.card[data-name="work"] .card__body { display: flex; flex-direction: column; }
.wgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.wgrid figure {
  margin: 0;
  position: relative;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
}
.wgrid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--out), filter .5s ease; }
.wgrid figure:hover img { transform: scale(1.07); }
.wgrid figcaption { position: absolute; inset: auto 0 0 0; padding: 20px 8px 6px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); background: linear-gradient(transparent, rgba(6,6,6,.85)); opacity: 0; transition: .35s ease; }
.wgrid figure:hover figcaption { opacity: 1; }
/* Rack Focus in der Mini-Galerie */
.wgrid:hover figure:not(:hover) img { filter: blur(2px) brightness(.6); }
.whint { margin-top: 10px; font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }

/* Services */
.card[data-name="services"] .card__body { display: flex; flex-direction: column; }
.srv { display: grid; gap: 0; flex: 1; align-content: space-evenly; }
.srv li { display: flex; gap: 14px; padding: clamp(8px, 1.4vh, 13px) 0; border-bottom: 1px solid var(--hairline); align-items: baseline; }
.srv li:last-child { border-bottom: 0; }
.srv .no { font-family: var(--impact); font-size: 11px; color: var(--gold); letter-spacing: 0.2em; flex: none; }
.srv b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.06rem; margin-bottom: 2px; }
.srv p { font-size: 12.5px; color: var(--muted); }

/* Packages — drei Pakete füllen die Karte */
.pk-body { display: flex; flex-direction: column; gap: clamp(8px, 1.3vh, 14px); }
.pk {
  flex: 1 0 auto;               /* wächst, schrumpft aber nie unter den Inhalt */
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: clamp(10px, 1.6vh, 18px) clamp(12px, 1.4vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(6px, 1vh, 10px);
}
.pk--feature { flex: 1.45 0 auto; border-color: var(--line); background: rgba(201, 144, 54, 0.055); }
.pk header { display: flex; align-items: baseline; gap: 10px 14px; flex-wrap: wrap; }
.pk h3 { font-family: var(--serif); font-size: clamp(1.05rem, 1.5vw, 1.35rem); }
.pk__for { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.pk__price { margin-left: auto; display: flex; align-items: baseline; gap: 6px; }
.pk__price em { font-style: normal; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.pk__price b { font-size: clamp(1.25rem, 1.9vw, 1.7rem); font-weight: 800; letter-spacing: -0.02em; }
.pk__price i { font-style: normal; color: var(--gold); font-weight: 700; font-size: .85em; }
.pk__feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3px, 0.7vh, 7px) 16px;
  font-size: clamp(11.5px, 0.95vw, 13px);
}
.pk__feat li { display: flex; gap: 8px; align-items: flex-start; }
.pk__feat svg { flex: none; color: var(--gold); margin-top: 3px; }
.pk .btn { padding-block: 9px; }
.pk-compare { flex: none; text-align: center; font-size: 11.5px; color: var(--muted); }
.strike { text-decoration: line-through; text-decoration-color: var(--gold); }

/* About/* About — Portrait füllt die Karte, Zitat liegt auf dem Foto */
.about-body { display: flex; flex-direction: column; gap: clamp(10px, 1.6vh, 16px); }
.about-hero {
  margin: 0;
  position: relative;
  flex: 1;
  min-height: 180px;
  border-radius: 16px;
  overflow: hidden;
}
.about-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.about-hero blockquote {
  margin: 0;
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(40px, 7vh, 70px) clamp(14px, 1.8vw, 24px) clamp(12px, 1.8vh, 20px);
  background: linear-gradient(to top, rgba(6, 6, 6, 0.92) 20%, transparent);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.25;
}
.about-body .lead { flex: none; }
.stats { display: flex; gap: 18px; justify-content: space-between; margin-top: auto; padding-top: clamp(8px, 1.4vh, 14px); border-top: 1px solid var(--hairline); flex-wrap: wrap; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); color: var(--gold); line-height: 1; }
.stat span { font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.sig { flex: none; font-size: 12px; color: var(--muted); }
.sig b { font-family: var(--serif); font-weight: 400; font-size: 1.05rem; color: var(--text); margin-right: 10px; }

/* Contact */
.contact-body { display: flex; flex-direction: column; gap: clamp(8px, 1.4vh, 16px); }
.cbul { display: grid; gap: clamp(6px, 1vh, 10px); flex: none; }
.cbul li { display: flex; gap: 10px; align-items: flex-start; font-size: clamp(12px, 1vw, 13.5px); }
.cbul svg { flex: none; color: var(--gold); margin-top: 2px; }
.cbul b { color: var(--text); }
.card[data-name="contact"] .card__body { display: flex; flex-direction: column; }
.card[data-name="contact"] .form { flex: 1; display: flex; flex-direction: column; }
.card[data-name="contact"] .form__body { flex: 1; display: flex; flex-direction: column; justify-content: space-evenly; }
.direct { margin-top: auto; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.field { display: block; margin-bottom: 9px; }
.field > span { display: block; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.field input, .field textarea {
  width: 100%;
  background: rgba(6, 6, 6, 0.55);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 13px;
  transition: border-color .25s ease;
}
.field textarea { resize: none; height: clamp(52px, 9vh, 110px); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 11px 18px;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 3px;
  color: #0d0b08;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201, 144, 54, 0.25); }
.direct { display: grid; gap: 6px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--hairline); flex: none; }
.direct a { display: flex; gap: 9px; align-items: center; font-size: 12.5px; color: var(--muted); transition: color .25s ease; }
.direct a:hover { color: var(--gold); }
.fine { font-size: 10px; color: var(--muted); margin-top: 8px; text-align: center; }
.form.is-sent .form__body { display: none; }
.form__done { display: none; text-align: center; padding: 16px 6px; }
.form.is-sent .form__done { display: block; }
.form__done svg { color: var(--gold); margin: 0 auto 10px; }
.form__done h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 6px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(5, 5, 5, 0.97);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 86vw; max-height: 84vh; object-fit: contain; border-radius: 18px; transform: scale(.95); transition: transform .6s var(--out); }
.lightbox.is-open img { transform: scale(1); }
.lb-close { position: fixed; top: 3vh; right: 3vw; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(242,239,233,.22); background: none; color: var(--text); display: grid; place-items: center; cursor: pointer; }
.lb-close:hover { border-color: var(--gold); color: var(--gold); }

/* =========================================================
   Kleine Fenster
   ========================================================= */
@media (max-width: 900px) {
  :root { --card-w: min(84vw, 460px); }
  .carousel { perspective: 1500px; }
  .beam { width: 120vw; }
  .edge { background: rgba(6, 6, 6, 0.72); }
}
@media (max-width: 560px) {
  .head { padding-top: 46px; }              /* Platz für den Sprachschalter */
  .pk__feat { grid-template-columns: 1fr; }
  .pk header { gap: 4px 10px; }
  .pk__price { margin-left: 0; width: 100%; }
  .lang { top: 10px; right: 10px; }
  .logo { font-size: clamp(2.2rem, 11vw, 3rem); }
  .wgrid { grid-template-columns: repeat(2, 1fr); }
  .card__body { padding-inline: 14px; }
  .form .row { grid-template-columns: 1fr; }
}
@media (max-height: 700px) {
  .head { padding-top: 14px; }
  .stagearea svg { width: 200px; }
  .axis { height: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
}

/* ---------- iOS/Touch: GPU-Entlastung (verhindert WebKit-Abstürze) ---------- */
@media (pointer: coarse) {
  body::after { display: none; }            /* animiertes Filmkorn aus */
}
@media (pointer: coarse), (max-width: 900px) {
  .card { filter: brightness(0.34) saturate(0.6); }   /* Tiefenwirkung ohne teuren blur() */
  .beam { filter: blur(12px); width: 90vw; height: 70vh; }
  .edge, .lang { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .card { animation: none; }                          /* Schwebeanimation aus */
}
