/* =========================================================
   MIRRORS — Vorschlag 02
   Single-Screen. Die Seite scrollt nie; der Rahmen fährt.

   Aufbau der Bühne (.stage):
     .hero    Höhe = 100dvh - Navhöhe   → beim Start sichtbar
     .topbar  Höhe = Navhöhe            → immer sichtbar
     .panels  Höhe = 100dvh - Navhöhe   → nach dem Klick sichtbar

   Beim Klick auf ein Navelement fährt .stage genau um die Herohöhe
   nach oben: Navigation liegt dann oben, der Inhalt füllt den Rest.
   ========================================================= */

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

:root {
  --bg:        #060606;
  --panel:     #0b0a09;
  --panel-2:   #121010;
  --text:      #f2efe9;
  --muted:     #a09890;
  --gold:      #c99036;
  --gold-soft: #dfb264;
  --line:      rgba(201, 144, 54, 0.26);
  --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;

  --nav:    76px;
  --screen: calc(100dvh - var(--nav));
  --pad:    clamp(20px, 4vw, 60px);

  /* Choreografie des Intros */
  --nav-delay: 1.95s;

  --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; }

html, body {
  height: 100%;
  overflow: hidden;              /* kein Seitenscroll, nie */
  overscroll-behavior: none;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -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; }
figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Fotografen-Schicht: Vignette + Filmkorn ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: radial-gradient(ellipse 118% 105% at 50% 42%, transparent 62%, rgba(0, 0, 0, 0.42) 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: -60px;
  z-index: 51;
  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; } }

/* =========================================================
   Bühne
   ========================================================= */
.stage {
  position: relative;
  transform: translateY(0);
  transition: transform 1.15s var(--ease);
  will-change: transform;
}
body.is-open .stage { transform: translateY(calc(-1 * var(--screen))); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  height: var(--screen);
  display: grid;
  place-items: center;
  position: relative;
  padding: var(--pad);
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 12% 22%;
  background: radial-gradient(closest-side, rgba(201, 144, 54, 0.12), transparent 70%);
  pointer-events: none;
  opacity: 0;
  animation: glow 2.4s ease .3s forwards;
}
@keyframes glow { to { opacity: 1; } }

/* MIRRORS — Buchstaben steigen einzeln aus der Maske */
.wordmark {
  font-family: var(--impact);
  font-weight: 700;
  font-size: clamp(2.8rem, 11vw, 8.5rem);
  line-height: 1;
  letter-spacing: 0.16em;
  text-indent: 0.16em;                 /* letzten Buchstabenabstand ausgleichen */
  color: var(--gold);
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding-block: 0.08em;
}
.wordmark i {
  font-style: normal;
  display: block;
  transform: translateY(115%);
  animation: letterUp 1.05s var(--out) forwards;
}

/* Goldene Linie zieht sich auf */
.hero__rule {
  width: min(340px, 62vw);
  height: 1px;
  margin: clamp(18px, 2.4vh, 30px) auto;
  background: var(--gold);
  transform: scaleX(0);
  animation: ruleIn 1.1s var(--ease) .55s forwards;
}

/* VISUALS THAT SELL — Sperrung zieht sich zusammen */
.tagline {
  font-size: clamp(0.72rem, 1.5vw, 1rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.9em;
  text-indent: 0.9em;
  color: var(--text);
  opacity: 0;
  animation: spaceIn 1.5s var(--out) .7s forwards;
}

/* by Victoria Miron — schärft sich ein */
.byline {
  margin-top: clamp(16px, 2.6vh, 30px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--muted);
  opacity: 0;
  filter: blur(7px);
  animation: sharpen 1.3s var(--out) .95s forwards;
}

@keyframes letterUp { to { transform: none; } }
@keyframes ruleIn   { to { transform: scaleX(1); } }
@keyframes spaceIn  { to { opacity: 1; letter-spacing: 0.34em; text-indent: 0.34em; } }
@keyframes sharpen  { to { opacity: 1; filter: blur(0); } }

/* Hinweis unter dem Hero, verschwindet beim Öffnen */
.hero__hint {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 3vh, 34px);
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn .9s ease calc(var(--nav-delay) + .5s) forwards;
  transition: opacity .4s ease;
}
body.is-open .hero__hint { opacity: 0 !important; }
@keyframes fadeIn { to { opacity: .55; } }

/* =========================================================
   Navigation — immer sichtbar
   ========================================================= */
.topbar {
  height: var(--nav);
  display: flex;
  align-items: center;
  gap: 20px;
  padding-inline: var(--pad);
  border-block: 1px solid var(--hairline);
  background: var(--bg);
  position: relative;
  z-index: 20;
  opacity: 0;
  transform: translateY(16px);
  animation: navIn 1s var(--out) var(--nav-delay) forwards;
}
@keyframes navIn { to { opacity: 1; transform: none; } }

/* Wortmarke links: erscheint erst, wenn der Hero weggefahren ist */
.topbar__home {
  font-family: var(--impact);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.2em;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity .5s ease .35s, transform .6s var(--out) .35s;
  flex: none;
  width: 0;
  overflow: hidden;
}
body.is-open .topbar__home {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  width: auto;
  margin-right: auto;
}
.topbar__home:hover { color: var(--gold-soft); }

.menu {
  display: flex;
  gap: clamp(18px, 3.4vw, 52px);
  margin-inline: auto;
  transition: margin .8s var(--out);
}
body.is-open .menu { margin-left: 0; }

.menu button {
  background: none;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .3s ease;
  white-space: nowrap;
}
.menu button::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s var(--out);
}
.menu button:hover { color: var(--text); }
.menu button:hover::after,
.menu button.is-active::after { transform: scaleX(1); transform-origin: left; }
.menu button.is-active { color: var(--gold); }

.lang {
  display: flex;
  border: 1px solid var(--hairline);
  border-radius: 100px;
  overflow: hidden;
  flex: none;
}
.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; }

/* =========================================================
   Panels
   ========================================================= */
.panels {
  height: var(--screen);
  position: relative;
  background: var(--bg);
}
.panel {
  position: absolute;
  inset: 0;
  padding: clamp(22px, 3.4vh, 46px) var(--pad);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .8s var(--out), visibility 0s linear .6s;
}
.panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .7s ease .25s, transform .9s var(--out) .25s, visibility 0s;
}

.panel__head { flex: none; margin-bottom: clamp(14px, 2.4vh, 30px); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); flex: none; }
.panel h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.gold { color: var(--gold); }
.lead { color: var(--muted); font-size: clamp(.88rem, 1.15vw, 1rem); max-width: 56ch; }

/* ---------- Panel: Work — horizontaler Filmstreifen ---------- */
.strip {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.strip::-webkit-scrollbar { height: 3px; }
.strip::-webkit-scrollbar-thumb { background: var(--line); }
.strip { cursor: grab; }
.strip:active { cursor: grabbing; }
.frame {
  position: relative;
  flex: none;
  height: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 3px;
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  background: var(--panel);
  filter: grayscale(0.15);
  transition: filter .5s ease, flex-basis .6s var(--out);
}
.frame:hover { filter: none; }
/* Fotografen-Trick: Rack Focus — die Nachbarn des angepeilten Bildes defokussieren */
.strip:hover .frame:not(:hover) { filter: grayscale(.2) brightness(.55) blur(2.5px); }
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--out); user-select: none; -webkit-user-drag: none; }
.frame:hover img { transform: scale(1.05); }
.frame figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(6,6,6,.92), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: .4s ease;
}
.frame:hover figcaption { opacity: 1; transform: none; }
.frame figcaption span { display: block; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); }
.frame figcaption b { font-family: var(--serif); font-weight: 400; font-size: 1.05rem; }
.strip-hint {
  flex: none;
  margin-top: 10px;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip-hint svg { animation: nudge 2s ease-in-out infinite; }
@keyframes nudge { 0%,100% { transform: none; } 50% { transform: translateX(5px); } }

/* ---------- Panel: Services — Spalten, die sich öffnen ---------- */
.cols { flex: 1; min-height: 0; display: flex; gap: 8px; }
.col {
  position: relative;
  flex: 1;
  min-width: 0;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow .8s var(--out);
  background: var(--panel);
}
.col:hover, .col:focus { flex-grow: 2.3; outline: none; }
.col__bg { position: absolute; inset: 0; }
/* Framing pro Spalte: das Produkt muss im sichtbaren Ausschnitt liegen */
.col:nth-child(1) .col__bg img { object-position: center 62%; }   /* Scallops-Teller */
.col:nth-child(2) .col__bg img { object-position: center 45%; }   /* Sushi */
.col:nth-child(3) .col__bg img { object-position: center 55%; }   /* Cocktail */
.col:nth-child(4) .col__bg img { object-position: center 80%; }   /* Steak liegt unten im Foto */
.col__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .26; filter: grayscale(.35) brightness(.8); transition: opacity .6s ease, filter .6s ease, transform 1.2s var(--out); }
.col:hover .col__bg img, .col:focus .col__bg img { opacity: 1; filter: brightness(1.1) saturate(1.06); transform: scale(1.06); }
.col::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,.95) 8%, rgba(6,6,6,.45) 55%, rgba(6,6,6,.75));
  transition: opacity .6s ease;
}
.col:hover::after, .col:focus::after {
  opacity: .16;                 /* Bild wird richtig hell, Text hält sich über text-shadow */
}
.col__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(16px, 2vw, 26px);
  background: linear-gradient(to top, rgba(6, 6, 6, 0.82) 0%, rgba(6, 6, 6, 0.44) 62%, transparent);
  transition: background .5s ease;
}
/* Milchglas nur in der Textzone — das Foto darüber bleibt scharf */
.col__body::before {
  content: "";
  position: absolute;
  inset: -18px 0 -1px 0;
  z-index: -1;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 24%);
  mask-image: linear-gradient(to bottom, transparent, #000 24%);
  opacity: 0;
  transition: opacity .45s ease;
}
.col:hover .col__body::before, .col:focus .col__body::before { opacity: 1; }
.col__no { font-family: var(--impact); font-size: 11px; letter-spacing: 0.26em; color: var(--gold); }
.col__body h3 {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.6rem);
  margin: 6px 0 0;
  line-height: 1.1;
  text-shadow: 0 1px 14px rgba(6, 6, 6, .9);
}
.col__body p { text-shadow: 0 1px 10px rgba(6, 6, 6, .95); }
.col__body p { display: none; }   /* Beschreibung erscheint unter den Spalten, siehe .srv-caption */

.srv-caption {
  flex: none;
  min-height: 2.6em;
  margin-top: clamp(10px, 1.8vh, 18px);
  text-align: center;
  font-size: clamp(13px, 1.25vw, 15px);
  color: var(--muted);
  max-width: 62ch;
  margin-inline: auto;
  transition: opacity .3s ease;
}
.srv-caption b { color: var(--gold); font-weight: 600; margin-right: 10px; font-family: var(--impact); letter-spacing: .18em; font-size: .82em; }
.srv-caption__hint { opacity: .5; font-size: .88em; letter-spacing: .06em; }
.srv-caption.is-swap { opacity: 0; }

/* ---------- Panel: Packages ---------- */
.tiers { flex: 1; min-height: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.4vw, 20px); }
.tier {
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: clamp(16px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  background: rgba(18, 16, 16, 0.6);
  transition: border-color .4s ease, transform .5s var(--out);
  min-height: 0;
}
.tier:hover { border-color: var(--line); transform: translateY(-4px); }
.tier--feature { border-color: var(--gold); background: var(--panel-2); }
.tier h3 { font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.5rem); }
.tier__for { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.tier__price { display: flex; align-items: baseline; gap: 7px; margin: clamp(10px, 1.6vh, 20px) 0 4px; }
.tier__price b { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; }
.tier__price i { font-style: normal; font-size: .9rem; color: var(--gold); font-weight: 700; }
.tier__price em { font-style: normal; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.tier ul {
  border-top: 1px solid var(--hairline);
  margin-top: clamp(12px, 2vh, 20px);
  padding-top: clamp(10px, 1.6vh, 18px);
  display: grid;
  gap: clamp(5px, 0.9vh, 10px);
  font-size: 13px;
  min-height: 0;
  overflow: hidden;
}
.tier li { display: flex; gap: 9px; align-items: flex-start; }
.tier li svg { flex: none; color: var(--gold); margin-top: 4px; }
.tier .btn { margin-top: auto; }   /* Button immer unten bündig */
.compare { flex: none; margin-top: clamp(10px, 1.6vh, 18px); text-align: center; font-size: 12px; color: var(--muted); }
.compare s { text-decoration-color: var(--gold); }

/* ---------- Panel: About ---------- */
.about { flex: 1; min-height: 0; display: grid; grid-template-columns: 0.62fr 1fr; gap: clamp(20px, 3.6vw, 60px); align-items: center; }
.about__img { height: 100%; border-radius: 4px; overflow: hidden; position: relative; }
.about__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.about blockquote {
  margin: 0 0 clamp(12px, 2vh, 22px);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2.1rem);
  line-height: 1.2;
}
.about p + p { margin-top: 10px; }
.stats { display: flex; gap: clamp(20px, 3vw, 48px); flex-wrap: wrap; margin-top: clamp(16px, 2.6vh, 30px); padding-top: clamp(14px, 2vh, 22px); border-top: 1px solid var(--hairline); }
.stat b { display: block; font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--gold); line-height: 1; }
.stat span { font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.sig { margin-top: clamp(14px, 2vh, 24px); }
.sig b { font-family: var(--serif); font-size: 1.2rem; display: block; }
.sig span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

/* ---------- Panel: Contact ---------- */
.contact { flex: 1; min-height: 0; display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(20px, 3.6vw, 60px); align-items: center; }
.contact ul { display: grid; gap: clamp(10px, 1.8vh, 18px); margin-top: clamp(14px, 2.4vh, 26px); }
.contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.contact li svg { color: var(--gold); flex: none; margin-top: 3px; }
.direct { margin-top: clamp(14px, 2.4vh, 26px); padding-top: clamp(12px, 2vh, 20px); border-top: 1px solid var(--hairline); display: grid; gap: 9px; }
.direct a { display: flex; align-items: center; gap: 11px; font-size: 13.5px; color: var(--muted); transition: color .25s ease; }
.direct a:hover { color: var(--gold); }

.form { background: var(--panel-2); border: 1px solid var(--line); border-radius: 5px; padding: clamp(16px, 2.2vw, 30px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: block; margin-bottom: 12px; }
.field > span { display: block; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  background: rgba(6, 6, 6, 0.6);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 14px;
  transition: border-color .25s ease;
}
.field textarea { resize: none; height: 68px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.form__fine { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; }
.form__done { display: none; text-align: center; padding: clamp(20px, 4vh, 44px) 8px; }
.form__done svg { color: var(--gold); margin: 0 auto 14px; }
.form__done h3 { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 8px; }
.form.is-sent .form__body { display: none; }
.form.is-sent .form__done { display: block; }

/* ---------- Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 22px;
  background: var(--gold);
  color: #0d0b08;
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201, 144, 54, .26); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); box-shadow: none; }
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(5, 5, 5, .97);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 84vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 3px;
  transform: scale(.95);
  transition: transform .7s var(--out), opacity .4s ease;
}
.lightbox.is-open img { transform: scale(1); }
.lb-btn {
  position: fixed;
  top: 50%;
  margin-top: -24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(242, 239, 233, .22);
  background: none;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: .25s ease;
}
.lb-btn:hover { border-color: var(--gold); color: var(--gold); }
.lb-prev { left: 3vw; }
.lb-next { right: 3vw; }
.lb-close { top: 3vh; right: 3vw; margin: 0; }
.lightbox__cap { position: fixed; left: 50%; bottom: 4vh; transform: translateX(-50%); text-align: center; }
.lightbox__cap span { font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.lightbox__cap b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.15rem; }

/* =========================================================
   Kleinere Fenster
   ========================================================= */
@media (max-width: 1000px) {
  .about, .contact { grid-template-columns: 1fr; align-items: start; }
  .about__img { display: none; }
  .tiers { grid-template-columns: 1fr; }
  .panel { overflow-y: auto; }              /* nur im Panel, nie die Seite */
  .cols { flex-direction: column; }
  .col { min-height: 74px; }
}
@media (max-width: 700px) {
  :root { --nav: 64px; }
  .topbar { gap: 10px; padding-inline: 14px; }
  .menu {
    overflow-x: auto;                /* Menü scrollt, der Sprachschalter bleibt sichtbar */
    flex: 1;
    justify-content: flex-start;
    margin-inline: 0;
    gap: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .menu::-webkit-scrollbar { display: none; }
  .menu button { font-size: 9.5px; letter-spacing: 0.16em; }
  .form__row { grid-template-columns: 1fr; }
  .frame { aspect-ratio: 2 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .wordmark i { transform: none; }
  .hero__rule { transform: scaleX(1); }
  .tagline { opacity: 1; letter-spacing: .34em; }
  .byline { opacity: 1; filter: none; }
  .topbar { opacity: 1; transform: none; }
}

/* ---------- iOS/Touch: GPU-Entlastung (verhindert WebKit-Abstürze) ---------- */
@media (pointer: coarse) {
  body::after { display: none; }            /* animiertes Filmkorn aus */
}
@media (pointer: coarse) {
  .lightbox { backdrop-filter: none; }
}
