/* =========================================================
   MIRYA · Iriskamera  –  Stylesheet
   Farben und Schriften wie mirya.ch (CI: Mirya_colors.jpg)
   ========================================================= */

/* ---------- Schriften (lokal, keine Anfrage an Google) ---------- */
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/playfair-display-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/playfair-display-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/playfair-display-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/playfair-display-latin-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 500; font-display: swap; src: url("../fonts/playfair-display-latin-500-italic.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/nunito-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/nunito-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/nunito-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Nunito"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/nunito-latin-700-normal.woff2") format("woff2"); }

/* ---------- Design-Tokens ---------- */
:root {
  --cream: #FFF9F3;
  --sand: #F0EDE8;
  --paper: #FBF6EF;
  --ink: #3D3229;
  --ink-2: #6A5D52;
  --black: #141614;
  --black-2: #1D201D;
  --sage: #5F7C4C;
  --sage-deep: #4B653A;
  --sage-light: #8AAD72;
  --sage-mist: #E4EADD;
  --rose: #DD8A92;
  --rose-deep: #B8616B;
  --rose-mist: #F6E1E2;
  --gold: #D9A55B;
  --line: rgba(61, 50, 41, .14);
  --line-light: rgba(255, 249, 243, .18);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 12px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --max: 72rem;
  --gutter: clamp(1rem, 4.5vw, 2rem);
  --header-h: 72px;
  --shadow-soft: 0 1px 2px rgba(61, 50, 41, .06), 0 12px 32px -12px rgba(61, 50, 41, .22);
  --shadow-lift: 0 2px 4px rgba(61, 50, 41, .06), 0 28px 60px -24px rgba(61, 50, 41, .35);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}
@media (min-width: 768px) { :root { --header-h: 80px; } }

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, canvas, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
::selection { background: var(--rose-mist); color: var(--ink); }
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 200; background: var(--black); color: var(--cream); padding: .6rem 1rem; border-radius: var(--radius); text-decoration: none; }
.skip-link:focus { top: 1rem; }

/* ---------- Typografie ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--sans); font-weight: 700; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 1.8rem; height: 2px; border-radius: 2px; background: var(--rose); }
.eyebrow--light { color: var(--rose); }
.h2 {
  font-family: var(--serif); font-weight: 500; color: var(--ink);
  font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem); line-height: 1.1; letter-spacing: -.01em;
  text-wrap: balance;
}
.h2 em, .film-title em, .tour-title em { font-style: italic; font-weight: 400; color: var(--sage); }
.h2--light { color: var(--cream); }
.h2--light em { color: var(--rose); }
.lead { font-size: clamp(1.06rem, 1rem + .35vw, 1.22rem); line-height: 1.65; color: var(--ink-2); max-width: 40rem; margin-top: 1.25rem; text-wrap: pretty; }
.lead--light { color: rgba(255, 249, 243, .82); }
.lead a { color: var(--sage-deep); text-underline-offset: 3px; }
.fineprint { font-size: .8rem; color: var(--ink-2); opacity: .85; margin-top: 1rem; }
.text-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-weight: 700; color: var(--sage-deep); text-decoration: none; }
.text-link::after { content: "→"; transition: transform .3s var(--ease-out); }
.text-link:hover::after { transform: translateX(4px); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--sage); --fg: var(--cream); --bd: var(--sage);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 2.9rem; padding: .7rem 1.6rem; border-radius: var(--radius);
  background: var(--bg); color: var(--fg); border: 1.5px solid var(--bd);
  font-weight: 700; font-size: .95rem; letter-spacing: .01em; text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background-color .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(20, 22, 20, .55); }
.btn:active { transform: translateY(0); }
.btn--primary { --bg: var(--sage); }
.btn--primary:hover { --bg: var(--sage-deep); --bd: var(--sage-deep); }
.btn--light { --bg: var(--cream); --fg: var(--black); --bd: var(--cream); }
.btn--ghost-light { --bg: transparent; --fg: var(--cream); --bd: rgba(255, 249, 243, .5); }
.btn--ghost-light:hover { --bd: var(--cream); background: rgba(255, 249, 243, .08); }
.btn--small { min-height: 2.4rem; padding: .45rem 1.1rem; font-size: .85rem; }
.btn--large { min-height: 3.4rem; padding: .9rem 2rem; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  background: rgba(255, 249, 243, .92); color: var(--ink);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.2) blur(10px); -webkit-backdrop-filter: saturate(1.2) blur(10px);
  transition: background-color .45s, color .45s, border-color .45s, transform .45s var(--ease-out);
}
.site-header.is-on-dark { background: linear-gradient(to bottom, rgba(20, 22, 20, .55), rgba(20, 22, 20, 0)); color: var(--cream); border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; color: inherit; flex-shrink: 0; }
.brand-name { width: auto; height: 34px; aspect-ratio: 1920 / 710; }
@media (min-width: 768px) { .brand-name { height: 40px; } }
.main-nav { display: none; margin-left: auto; align-items: center; gap: 1.6rem; }
.main-nav a { font-size: .875rem; font-weight: 600; letter-spacing: .02em; text-decoration: none; opacity: .88; position: relative; padding: .3rem 0; transition: opacity .2s, color .2s; }
.main-nav a:hover { opacity: 1; color: var(--sage); }
.site-header.is-on-dark .main-nav a:hover { color: var(--rose); }
.main-nav a[aria-current="page"] { opacity: 1; color: var(--sage); }
.site-header.is-on-dark .main-nav a[aria-current="page"] { color: var(--rose); }
.main-nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; border-radius: 2px; background: currentColor; }
.header-cta { display: none; }
.site-header.is-on-dark .header-cta { --bg: var(--cream); --fg: var(--black); --bd: var(--cream); }
.nav-toggle { margin-left: auto; width: 44px; height: 44px; border: 0; background: transparent; display: grid; place-content: center; gap: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .3s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--cream); color: var(--ink); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: .75rem var(--gutter) 1.5rem; display: grid; gap: .1rem; }
.mobile-nav[hidden] { display: none; }
.mobile-nav a:not(.btn) { padding: .8rem 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 600; }
.mobile-nav a[aria-current="page"] { color: var(--sage); }
.mobile-nav .btn { margin-top: 1rem; }
@media (min-width: 1100px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none !important; }
}

/* =========================================================
   1 · KAMERAFAHRT
   ========================================================= */
.film { position: relative; height: 760vh; background: var(--black); color: var(--cream); }
.film-stage { position: sticky; top: 0; height: 100vh; height: 100lvh; overflow: hidden; }
.film-poster, .film-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.film-poster { object-fit: cover; object-position: 60% 50%; }
.film-canvas { opacity: 0; transition: opacity .6s; transform-origin: 50% 47.5%; will-change: transform; }
.film.is-ready .film-canvas { opacity: 1; }
.film-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(20, 22, 20, 0) 55%, rgba(20, 22, 20, .55) 100%),
    linear-gradient(to top, rgba(20, 22, 20, .72) 0%, rgba(20, 22, 20, 0) 42%),
    linear-gradient(to bottom, rgba(20, 22, 20, .35) 0%, rgba(20, 22, 20, 0) 22%);
}
.film-pupil {
  position: absolute; left: 50%; top: 47.5%; width: 12vmax; height: 12vmax; margin: -6vmax 0 0 -6vmax;
  border-radius: 50%; background: var(--cream); transform: scale(0); pointer-events: none;
  box-shadow: 0 0 6vmax 3vmax rgba(255, 249, 243, .85);
}
.film-beats { position: absolute; inset: 0; pointer-events: none; }
.beat { position: absolute; opacity: 0; visibility: hidden; }
.beat.is-active { opacity: 1; visibility: visible; }
.beat--hero { left: var(--gutter); right: var(--gutter); bottom: clamp(5rem, 12vh, 8.5rem); max-width: 40rem; pointer-events: auto; }
.beat--hero::before {
  content: ""; position: absolute; z-index: -1; pointer-events: none;
  left: -40vw; right: -30vw; top: -30vh; bottom: -20vh;
  background: radial-gradient(ellipse 60% 70% at 38% 62%, rgba(20, 22, 20, .72) 0%, rgba(20, 22, 20, .45) 45%, rgba(20, 22, 20, 0) 75%);
}
.film-title { font-family: var(--serif); font-weight: 500; font-size: min(clamp(2.5rem, 1rem + 4.4vw, 5.2rem), 10.5vh); line-height: 1.03; letter-spacing: -.015em; text-wrap: balance; text-shadow: 0 2px 30px rgba(20, 22, 20, .45); }
.film-title em { color: #F3C9CD; }
.film-lead { margin-top: 1.4rem; max-width: 34rem; font-size: clamp(1.05rem, 1rem + .4vw, 1.25rem); line-height: 1.6; color: rgba(255, 249, 243, .88); text-shadow: 0 1px 16px rgba(20, 22, 20, .6); }
.film-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.beat--side, .beat--center {
  max-width: 27rem; padding: 1.6rem 1.7rem 1.7rem; border-radius: var(--radius-lg);
  background: rgba(20, 22, 20, .42); border: 1px solid rgba(255, 249, 243, .12);
  backdrop-filter: blur(14px) saturate(1.1); -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6);
}
.beat--side { left: var(--gutter); top: 50%; translate: 0 -50%; }
.beat--right { left: auto; right: var(--gutter); }
.beat--center { left: 50%; top: 50%; translate: -50% -50%; text-align: center; max-width: 32rem; width: calc(100% - 2 * var(--gutter)); }
.beat--low { top: auto; bottom: clamp(3rem, 9vh, 6rem); translate: -50% 0; }
.beat h2 { font-family: var(--serif); font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.35rem); line-height: 1.12; text-wrap: balance; }
.beat p:not(.kicker) { margin-top: .8rem; color: rgba(255, 249, 243, .84); font-size: 1rem; line-height: 1.6; }
.kicker { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: .7rem !important; }

.film-rail { position: absolute; right: var(--gutter); top: 50%; translate: 0 -50%; list-style: none; display: none; flex-direction: column; gap: 1.5rem; }
.film-rail::before { content: ""; position: absolute; right: 5px; top: 6px; bottom: 6px; width: 1px; background: rgba(255, 249, 243, .25); }
.film-rail::after { content: ""; position: absolute; right: 5px; top: 6px; width: 1px; height: calc((100% - 12px) * var(--rail, 0)); background: var(--rose); }
.film-rail li { position: relative; display: flex; align-items: center; justify-content: flex-end; gap: .8rem; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 249, 243, .5); transition: color .4s; }
.film-rail li::after { content: ""; width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid rgba(255, 249, 243, .5); background: var(--black); transition: background-color .4s, border-color .4s, transform .4s var(--ease-out); z-index: 1; }
.film-rail li.is-active { color: var(--cream); }
.film-rail li.is-active::after, .film-rail li.is-done::after { background: var(--rose); border-color: var(--rose); }
.film-rail li.is-active::after { transform: scale(1.35); }
@media (min-width: 900px) { .film-rail { display: flex; } }

.film-scrollcue { position: absolute; left: 50%; bottom: 1.6rem; translate: -50% 0; display: flex; flex-direction: column; align-items: center; gap: .6rem; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 249, 243, .75); }
.film-scrollcue i { display: block; width: 1px; height: 42px; background: linear-gradient(to bottom, rgba(255, 249, 243, .9), rgba(255, 249, 243, 0)); animation: cue 2.2s var(--ease-out) infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); opacity: 1; } 70% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }
@media (max-width: 899px) { .film-scrollcue { display: none; } }
.film-loader { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: rgba(255, 249, 243, .08); transition: opacity .6s; }
.film-loader-bar { display: block; height: 100%; width: 100%; transform-origin: left; transform: scaleX(0); background: var(--rose); }
.film.is-loaded .film-loader { opacity: 0; }

@media (max-width: 767px) {
  .beat--side, .beat--right, .beat--center { left: var(--gutter); right: var(--gutter); top: auto; bottom: 1.25rem; translate: none; max-width: none; width: auto; text-align: left; padding: 1.2rem 1.25rem 1.3rem; }
  .beat--hero { bottom: 2.2rem; }
  .beat p:not(.kicker) { font-size: .95rem; }
}

/* =========================================================
   Sektionen allgemein
   ========================================================= */
.section { position: relative; padding-block: clamp(5rem, 3rem + 7vw, 8.5rem); }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }

.reveal { will-change: transform, opacity; }

/* ---------- 2 · Warum ---------- */
.warum { overflow: hidden; }
.pillars { display: grid; gap: 1.25rem; }
@media (min-width: 860px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.pillar { position: relative; padding: 2rem 1.8rem 2.2rem; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft); overflow: hidden; }
.pillar::after { content: ""; position: absolute; right: -40px; top: -40px; width: 140px; height: 140px; border-radius: 50%; border: 1px solid var(--rose-mist); }
.pillar-no { font-family: var(--serif); font-style: italic; font-size: 2.6rem; line-height: 1; color: var(--rose); }
.pillar h3 { margin-top: 1rem; font-family: var(--serif); font-size: 1.45rem; line-height: 1.2; }
.pillar p { margin-top: .75rem; color: var(--ink-2); }

/* ---------- 3 · Licht-Demo ---------- */
.licht-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .licht-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.licht-modes { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.licht-modes button { border: 1.5px solid var(--line); background: var(--cream); border-radius: 999px; padding: .55rem 1rem; font-size: .88rem; font-weight: 700; cursor: pointer; transition: background-color .25s, border-color .25s, color .25s; }
.licht-modes button:hover { border-color: var(--sage); }
.licht-modes button[aria-checked="true"] { background: var(--sage); border-color: var(--sage); color: var(--cream); }
.licht-modes button[data-mode="ring"][aria-checked="true"] { background: var(--ink); border-color: var(--ink); }
.licht-stage {
  --lx: 12%; --ly: 45%; --c: 1.08; --s: 1.05; --b: 1; --shade: .62; --glow: .55; --ring: 0;
  position: relative; border-radius: var(--radius-xl); background: var(--black); padding: clamp(.6rem, 1.4vw, 1rem);
  box-shadow: var(--shadow-lift); touch-action: pan-y; cursor: crosshair; user-select: none;
}
.licht-eye { position: relative; border-radius: calc(var(--radius-xl) - 10px); overflow: hidden; aspect-ratio: 1200 / 679; }
.licht-eye img { width: 100%; height: 100%; object-fit: cover; filter: contrast(var(--c)) saturate(var(--s)) brightness(var(--b)); transition: filter .5s; }
.licht-shade { position: absolute; inset: 0; pointer-events: none; opacity: var(--shade); mix-blend-mode: multiply; background: radial-gradient(circle at var(--lx) var(--ly), rgba(255, 255, 255, 1) 0%, rgba(120, 100, 85, 1) 55%, rgba(30, 24, 20, 1) 100%); transition: opacity .5s; }
.licht-glow { position: absolute; inset: 0; pointer-events: none; opacity: var(--glow); mix-blend-mode: soft-light; background: radial-gradient(circle at var(--lx) var(--ly), rgba(255, 238, 214, 1) 0%, rgba(255, 238, 214, 0) 48%); transition: opacity .5s; }
.licht-ring { position: absolute; left: 50%; top: 47.5%; width: 39%; aspect-ratio: 1; translate: -50% -50%; opacity: var(--ring); transition: opacity .5s; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, .28) 0%, rgba(255, 255, 255, 0) 70%); border-radius: 50%; }
.licht-ring::before { content: ""; position: absolute; inset: 0; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0%, #fff 0 3.2%, transparent 4.6%), radial-gradient(circle at 75% 6.7%, #fff 0 3.2%, transparent 4.6%),
    radial-gradient(circle at 93.3% 25%, #fff 0 3.2%, transparent 4.6%), radial-gradient(circle at 100% 50%, #fff 0 3.2%, transparent 4.6%),
    radial-gradient(circle at 93.3% 75%, #fff 0 3.2%, transparent 4.6%), radial-gradient(circle at 75% 93.3%, #fff 0 3.2%, transparent 4.6%),
    radial-gradient(circle at 50% 100%, #fff 0 3.2%, transparent 4.6%), radial-gradient(circle at 25% 93.3%, #fff 0 3.2%, transparent 4.6%),
    radial-gradient(circle at 6.7% 75%, #fff 0 3.2%, transparent 4.6%), radial-gradient(circle at 0% 50%, #fff 0 3.2%, transparent 4.6%),
    radial-gradient(circle at 6.7% 25%, #fff 0 3.2%, transparent 4.6%), radial-gradient(circle at 25% 6.7%, #fff 0 3.2%, transparent 4.6%);
  filter: blur(1px);
}
.licht-spot { position: absolute; width: 2.2%; aspect-ratio: 1 / 1.3; border-radius: 50%; background: radial-gradient(circle, #fff 0 35%, rgba(255, 255, 255, 0) 70%); pointer-events: none; opacity: 0; transition: opacity .4s, left .15s, top .15s; }
.licht-spot--a { left: calc(22% + (var(--lx) - 12%) * .06); top: 41%; }
.licht-spot--b { left: 76.2%; top: 41%; }
.licht-stage[data-mode="links"] .licht-spot--a, .licht-stage[data-mode="beide"] .licht-spot--a, .licht-stage[data-mode="frei"] .licht-spot--a { opacity: .95; }
.licht-stage[data-mode="rechts"] .licht-spot--b, .licht-stage[data-mode="beide"] .licht-spot--b { opacity: .95; }
.licht-bulb { position: absolute; left: calc(var(--lx) * .96 + 2%); top: calc(var(--ly) * .9 + 5%); width: 26px; height: 26px; margin: -13px 0 0 -13px; border-radius: 50%; background: radial-gradient(circle, #fff 0 30%, rgba(255, 236, 210, .9) 45%, rgba(255, 236, 210, 0) 72%); box-shadow: 0 0 30px 10px rgba(255, 230, 200, .35); pointer-events: none; transition: opacity .4s; }
.licht-stage[data-mode="ring"] .licht-bulb, .licht-stage[data-mode="beide"] .licht-bulb { opacity: 0; }

/* ---------- 4 · Einsteiger-Geräte ---------- */
.geraete-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .geraete-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .geraete-grid { grid-template-columns: repeat(4, 1fr); } }
.geraet { position: relative; display: flex; flex-direction: column; padding: 1.4rem 1.4rem 1.8rem; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.geraet img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: .5rem 1rem; margin-bottom: .6rem; }
.geraet h3 { font-family: var(--serif); font-size: 1.35rem; }
.geraet-sub { font-size: .88rem; color: var(--ink-2); margin-top: .2rem; }
.geraet ul { list-style: none; display: grid; gap: .6rem; margin-top: 1.1rem; font-size: .95rem; line-height: 1.5; }
.geraet li { position: relative; padding-left: 1.6rem; }
.minus li::before, .plus li::before { position: absolute; left: 0; top: .12em; width: 1.1rem; height: 1.1rem; border-radius: 50%; display: grid; place-items: center; font-size: .75rem; font-weight: 700; line-height: 1; }
.minus li::before { content: "–"; background: var(--rose-mist); color: var(--rose-deep); }
.plus li::before { content: "✓"; background: var(--sage-mist); color: var(--sage-deep); }
.geraet--mirya { background: var(--cream); border: 2px solid var(--sage); box-shadow: var(--shadow-lift); }
.geraet--mirya::before { content: "Unsere Lösung"; position: absolute; top: -.8rem; left: 1.4rem; padding: .25rem .8rem; border-radius: 999px; background: var(--sage); color: var(--cream); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.compare { margin: clamp(3.5rem, 3rem + 3vw, 5.5rem) 0 0; }
.compare-frame { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1200 / 679; box-shadow: var(--shadow-lift); background: var(--black); user-select: none; }
.compare-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; user-select: none; }
.compare-frame { cursor: ew-resize; -webkit-user-select: none; -webkit-touch-callout: none; }
.licht-eye img { pointer-events: none; -webkit-user-drag: none; }
.compare-clip { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--cream); pointer-events: none; box-shadow: 0 0 20px rgba(0, 0, 0, .35); }
.compare-handle span { position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; translate: -50% -50%; border-radius: 50%; background: var(--cream); box-shadow: var(--shadow-soft); }
.compare-handle span::before, .compare-handle span::after { content: ""; position: absolute; top: 50%; width: 9px; height: 9px; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.compare-handle span::before { left: 13px; transform: translateY(-50%) rotate(-45deg); }
.compare-handle span::after { right: 13px; transform: translateY(-50%) rotate(135deg); }
.compare-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.compare-tag { position: absolute; top: 1rem; padding: .35rem .8rem; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.compare-tag--bad { left: 1rem; background: rgba(20, 22, 20, .6); color: var(--cream); }
.compare-tag--good { right: 1rem; background: var(--cream); color: var(--sage-deep); }
.compare figcaption { margin-top: 1rem; font-size: .85rem; color: var(--ink-2); max-width: 48rem; }

/* =========================================================
   5 · Anatomie-Tour (gepinnt)
   ========================================================= */
.tour { position: relative; height: 620vh; background: var(--black); color: var(--cream); }
.tour-stage { position: sticky; top: 0; height: 100vh; height: 100lvh; overflow: hidden; display: grid; grid-template-rows: 55% 45%; }
.tour-media { position: relative; overflow: hidden; background: var(--black); }
.tour-canvas { position: absolute; left: 0; top: 0; transform-origin: 0 0; will-change: transform; }
.tour-img { width: 100%; height: 100%; object-fit: cover; }
.tour-media > .tour-img { position: absolute; inset: 0; }
.tour-hotspots { position: absolute; inset: 0; pointer-events: none; }
.hotspot { position: absolute; left: var(--x); top: var(--y); width: 18px; height: 18px; margin: -9px 0 0 -9px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px rgba(221, 138, 146, .3); opacity: .35; transition: opacity .4s, transform .4s var(--ease-out); }
.hotspot::after { content: ""; position: absolute; inset: -14px; border-radius: 50%; border: 1.5px solid var(--rose); opacity: 0; transform: scale(.6); }
.hotspot.is-active { opacity: 1; transform: scale(1.1); }
.hotspot.is-active::after { animation: ping 1.8s var(--ease-out) infinite; }
@keyframes ping { 0% { opacity: .9; transform: scale(.5); } 100% { opacity: 0; transform: scale(1.8); } }
.tour-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(20, 22, 20, .85), rgba(20, 22, 20, 0) 30%); }
.tour-panel { position: relative; padding: 1.4rem var(--gutter) 1.6rem; display: flex; flex-direction: column; }
.tour-title { font-family: var(--serif); font-size: clamp(1.6rem, 1.1rem + 2vw, 2.8rem); line-height: 1.1; margin-bottom: 1rem; }
.tour-title em { color: var(--rose); }
.tour-panel .eyebrow { margin-bottom: .6rem; }
.tour-steps { list-style: none; position: relative; flex: 1; }
.tour-step { position: absolute; inset: 0 0 auto 0; opacity: 0; visibility: hidden; transform: translateY(14px); transition: opacity .45s, transform .6s var(--ease-out), visibility .45s; }
.tour-step.is-active { opacity: 1; visibility: visible; transform: none; }
.tour-step h3 { font-family: var(--serif); font-size: clamp(1.3rem, 1.1rem + .9vw, 1.8rem); display: flex; align-items: baseline; gap: .8rem; }
.tour-step h3 span { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .14em; color: var(--rose); }
.tour-step p { margin-top: .7rem; color: rgba(255, 249, 243, .8); max-width: 30rem; }
.tour-progress { height: 2px; background: rgba(255, 249, 243, .15); border-radius: 2px; overflow: hidden; margin-top: auto; }
.tour-progress span { display: block; height: 100%; background: var(--rose); transform-origin: left; transform: scaleX(var(--p, 0)); }
@media (min-width: 900px) {
  .tour-stage { grid-template-rows: none; grid-template-columns: 62% 38%; }
  .tour-shade { background: linear-gradient(to left, rgba(20, 22, 20, .9), rgba(20, 22, 20, 0) 22%); }
  .tour-panel { padding: calc(var(--header-h) + 3rem) clamp(2rem, 4vw, 4rem) 3.5rem; justify-content: center; }
  .tour-steps { flex: 0 0 15rem; }
  .tour-progress { margin-top: 2rem; }
}

/* =========================================================
   6 · Laptop-Steuerung
   ========================================================= */
.tether-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 980px) { .tether-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.checks { list-style: none; display: grid; gap: .75rem; margin-top: 1.8rem; }
.checks li { position: relative; padding-left: 2rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: .2em; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: var(--sage-mist) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%234B653A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 80% no-repeat; }
.checks--compact { gap: .45rem; margin-top: .8rem; font-size: .92rem; }
.checks--compact li { padding-left: 1.7rem; }
.checks--compact li::before { width: 1.05rem; height: 1.05rem; }

.laptop { position: relative; perspective: 1600px; }
.laptop-screen { position: relative; border-radius: 18px 18px 6px 6px; background: #0E0F0E; border: 10px solid #1F221F; border-bottom-width: 14px; box-shadow: var(--shadow-lift); overflow: hidden; font-family: var(--sans); color: #CFD5CB; font-size: clamp(.55rem, .45rem + .35vw, .78rem); transform-origin: 50% 100%; }
.laptop-base { height: 16px; margin: 0 -5%; border-radius: 2px 2px 14px 14px; background: linear-gradient(#D6D2CC, #A9A49D); box-shadow: 0 18px 30px -18px rgba(0, 0, 0, .5); position: relative; }
.laptop-base::before { content: ""; position: absolute; left: 50%; top: 0; width: 16%; height: 5px; translate: -50% 0; border-radius: 0 0 8px 8px; background: #8F8A83; }
.lv-bar { display: flex; align-items: center; gap: .45em; padding: .55em .9em; background: #1A1C1A; border-bottom: 1px solid #262926; }
.lv-dot { width: .8em; height: .8em; border-radius: 50%; background: #3A3E3A; }
.lv-title { margin-left: .6em; font-weight: 700; letter-spacing: .04em; color: #9EA69A; }
.lv-rec { margin-left: auto; color: var(--rose); font-weight: 700; letter-spacing: .1em; }
.lv-body { display: grid; grid-template-columns: 1fr 22%; min-height: 0; }
.lv-view { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #000; }
.lv-img { position: absolute; inset: 0; background-size: cover; background-position: 50% 47.5%; transform-origin: 50% 47.5%; }
.lv-focus { position: absolute; left: 50%; top: 47.5%; width: 26%; aspect-ratio: 1.3; translate: -50% -50%; border-color: #F3C9CD; }
.lv-focus i { position: absolute; width: 18%; height: 22%; border-color: inherit; border-style: solid; border-width: 0; }
.lv-focus i:nth-child(1) { left: 0; top: 0; border-left-width: 2px; border-top-width: 2px; }
.lv-focus i:nth-child(2) { right: 0; top: 0; border-right-width: 2px; border-top-width: 2px; }
.lv-focus i:nth-child(3) { left: 0; bottom: 0; border-left-width: 2px; border-bottom-width: 2px; }
.lv-focus i:nth-child(4) { right: 0; bottom: 0; border-right-width: 2px; border-bottom-width: 2px; }
.lv-flash { position: absolute; inset: 0; background: #fff; opacity: 0; pointer-events: none; }
.lv-zoom { position: absolute; left: .8em; bottom: .8em; padding: .2em .6em; border-radius: 4px; background: rgba(0, 0, 0, .55); color: #fff; font-weight: 700; }
.lv-side { display: flex; flex-direction: column; gap: .55em; padding: .8em; background: #151715; border-left: 1px solid #262926; }
.lv-group { display: flex; justify-content: space-between; gap: .4em; padding-bottom: .4em; border-bottom: 1px solid #242724; }
.lv-group span { color: #7D867A; }
.lv-group b { color: #E8ECE4; }
.lv-light { color: var(--sage-light) !important; }
.lv-hist { display: flex; align-items: flex-end; gap: 2px; height: 3.2em; margin-top: .2em; }
.lv-hist i { flex: 1; background: linear-gradient(to top, var(--sage), var(--sage-light)); border-radius: 1px; height: var(--h, 40%); }
.lv-hist i:nth-child(1) { --h: 8%; } .lv-hist i:nth-child(2) { --h: 18%; } .lv-hist i:nth-child(3) { --h: 34%; } .lv-hist i:nth-child(4) { --h: 58%; }
.lv-hist i:nth-child(5) { --h: 80%; } .lv-hist i:nth-child(6) { --h: 96%; } .lv-hist i:nth-child(7) { --h: 88%; } .lv-hist i:nth-child(8) { --h: 70%; }
.lv-hist i:nth-child(9) { --h: 52%; } .lv-hist i:nth-child(10) { --h: 34%; } .lv-hist i:nth-child(11) { --h: 18%; } .lv-hist i:nth-child(12) { --h: 9%; }
.lv-shutter { margin-top: auto; border: 0; border-radius: 999px; padding: .7em .5em; background: var(--rose); color: #2A1A1C; font-weight: 700; font-size: 1em; cursor: default; }
.lv-shutter.is-pressed { transform: scale(.94); background: #F3C9CD; }
.lv-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6em; padding: .7em .9em .9em; background: #121412; border-top: 1px solid #262926; }
.lv-thumb { position: relative; aspect-ratio: 16 / 9; border-radius: 4px; background: #1D201D url("../img/iris-1200.webp") 50% 47% / cover no-repeat; opacity: .12; }
.lv-thumb:nth-child(2) { background-position: 45% 47%; filter: hue-rotate(-8deg); }
.lv-thumb:nth-child(3) { background-position: 55% 45%; filter: saturate(.9); }
.lv-thumb:nth-child(4) { background-position: 50% 52%; filter: brightness(.95); }
.lv-thumb::after { content: attr(data-label); position: absolute; left: .4em; bottom: .3em; font-size: .85em; font-weight: 700; color: #fff; text-shadow: 0 1px 4px #000; }

/* =========================================================
   7 · Konfigurator
   ========================================================= */
.konfig-card { display: grid; gap: 0; border-radius: var(--radius-xl); background: var(--cream); box-shadow: var(--shadow-lift); border: 1px solid var(--line); overflow: hidden; }
@media (min-width: 1000px) { .konfig-card { grid-template-columns: 5fr 7fr; } }
.konfig-controls { padding: clamp(1.5rem, 1rem + 2.5vw, 2.8rem); background: var(--paper); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1000px) { .konfig-controls { border-bottom: 0; border-right: 1px solid var(--line); } }
.konfig-result { padding: clamp(1.5rem, 1rem + 2.5vw, 2.8rem); display: flex; flex-direction: column; }

.budget-label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.budget-value { display: block; margin-top: .3rem; font-family: var(--serif); font-size: clamp(2.6rem, 2rem + 2.4vw, 3.6rem); line-height: 1.05; color: var(--ink); font-variant-numeric: tabular-nums; }
.chf { font-family: var(--sans); font-size: .42em; font-weight: 700; letter-spacing: .08em; color: var(--sage-deep); vertical-align: .55em; }
.budget-range { --fill: 50%; -webkit-appearance: none; appearance: none; width: 100%; height: 44px; margin-top: .8rem; background: transparent; cursor: pointer; }
.budget-range::-webkit-slider-runnable-track { height: 8px; border-radius: 999px; background: linear-gradient(to right, var(--sage) 0 var(--fill), rgba(61, 50, 41, .14) var(--fill) 100%); }
.budget-range::-moz-range-track { height: 8px; border-radius: 999px; background: rgba(61, 50, 41, .14); }
.budget-range::-moz-range-progress { height: 8px; border-radius: 999px; background: var(--sage); }
.budget-range::-webkit-slider-thumb { -webkit-appearance: none; width: 30px; height: 30px; margin-top: -11px; border-radius: 50%; background: var(--cream); border: 3px solid var(--sage); box-shadow: 0 4px 14px -4px rgba(61, 50, 41, .5); transition: transform .2s var(--ease-out); }
.budget-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--cream); border: 3px solid var(--sage); box-shadow: 0 4px 14px -4px rgba(61, 50, 41, .5); }
.budget-range:active::-webkit-slider-thumb { transform: scale(1.12); }
.budget-ticks { position: relative; height: 2.6rem; margin-top: .1rem; }
.budget-tick { position: absolute; top: 0; translate: -50% 0; display: flex; flex-direction: column; align-items: center; gap: .2rem; font-size: .7rem; font-weight: 700; color: var(--ink-2); white-space: nowrap; border: 0; background: none; padding: 0; cursor: pointer; }
.budget-tick::before { content: ""; width: 1px; height: 7px; background: rgba(61, 50, 41, .35); }
.budget-tick small { font-weight: 600; opacity: .8; }
.budget-tick.is-reached { color: var(--sage-deep); }
@media (max-width: 560px) { .budget-tick { font-size: .6rem; letter-spacing: -.01em; } .budget-tick small { display: none; } }

.owns { border: 0; margin: 0; padding: 0; display: grid; gap: .8rem; }
.owns legend { padding: 0; margin-bottom: .6rem; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.switch { display: flex; align-items: center; gap: .8rem; cursor: pointer; font-weight: 600; }
.switch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.switch-ui { position: relative; flex-shrink: 0; width: 46px; height: 26px; border-radius: 999px; background: rgba(61, 50, 41, .2); transition: background-color .25s; }
.switch-ui::after { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--cream); box-shadow: 0 2px 6px rgba(0, 0, 0, .2); transition: transform .3s var(--ease-out); }
.switch input:checked + .switch-ui { background: var(--sage); }
.switch input:checked + .switch-ui::after { transform: translateX(20px); }
.switch input:focus-visible + .switch-ui { outline: 2px solid var(--rose-deep); outline-offset: 3px; }

.konfig-tier { padding: 1.3rem 1.4rem; border-radius: var(--radius-lg); background: var(--black); color: var(--cream); position: relative; overflow: hidden; }
.konfig-tier::after { content: ""; position: absolute; right: -30px; bottom: -30px; width: 120px; height: 120px; border-radius: 50%; border: 1px solid rgba(221, 138, 146, .35); box-shadow: 0 0 0 18px rgba(221, 138, 146, .06); }
.tier-kicker { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); }
.tier-name { font-family: var(--serif); font-size: 2rem; line-height: 1.15; margin-top: .2rem; }
.tier-text { margin-top: .4rem; font-size: .92rem; color: rgba(255, 249, 243, .78); max-width: 26rem; }

.quality { display: grid; gap: .7rem; }
.q-row { display: grid; grid-template-columns: 7.5rem 1fr; align-items: center; gap: .8rem; font-size: .86rem; font-weight: 600; }
.q-bar { height: 8px; border-radius: 999px; background: rgba(61, 50, 41, .12); overflow: hidden; }
.q-bar span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--sage), var(--sage-light)); transform-origin: left; transition: transform .7s var(--ease-out); }

.parts { list-style: none; display: grid; gap: .6rem; }
.part { display: grid; grid-template-columns: 2.6rem 1fr auto; gap: .9rem; align-items: center; padding: .85rem 1rem; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); transition: background-color .4s, border-color .4s; }
.part.is-own { background: transparent; border-style: dashed; }
.part.is-upgraded { background: var(--sage-mist); border-color: rgba(95, 124, 76, .45); }
.part-icon { width: 2.6rem; height: 2.6rem; border-radius: 50%; display: grid; place-items: center; background: var(--cream); border: 1px solid var(--line); color: var(--ink); }
.part-icon svg { width: 1.45rem; height: 1.45rem; }
.part-cat { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.part-name { font-weight: 700; line-height: 1.3; }
.part-note { font-size: .84rem; color: var(--ink-2); line-height: 1.4; margin-top: .1rem; }
.part-dots { display: flex; gap: 3px; }
.part-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(61, 50, 41, .16); transition: background-color .4s; }
.part-dots i.on { background: var(--sage); }
.part-badge { display: inline-block; margin-left: .4rem; padding: .05rem .45rem; border-radius: 999px; font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; vertical-align: .15em; background: var(--rose-mist); color: var(--rose-deep); }
.part-badge--new { background: var(--sage-mist); color: var(--sage-deep); }
.konfig-included { margin-top: 1.6rem; padding: 1.1rem 1.2rem; border-radius: var(--radius); border: 1px dashed rgba(95, 124, 76, .45); background: rgba(228, 234, 221, .35); }
.konfig-included h3 { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-deep); font-family: var(--sans); }
.konfig-total { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.2rem; margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.total-label { font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.total-value { font-family: var(--serif); font-size: 2.4rem; line-height: 1.1; font-variant-numeric: tabular-nums; }
.total-note { font-size: .88rem; color: var(--sage-deep); font-weight: 600; margin-top: .2rem; }

/* ---------- 8 · Preisvergleich ---------- */
.price-chart { position: relative; padding: 2.8rem 0 .5rem; }
.pc-axis { position: relative; height: 1.2rem; margin-left: var(--pc-label, 0); margin-right: var(--pc-value, 0); }
.pc-axis span { position: absolute; left: calc(var(--at) * 100%); translate: -50% 0; font-size: .72rem; font-weight: 700; color: var(--ink-2); opacity: .8; }
.pc-row { display: grid; grid-template-columns: 1fr; gap: .45rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.pc-label { font-weight: 700; }
.pc-track { position: relative; height: 14px; border-radius: 999px; background: repeating-linear-gradient(to right, rgba(61, 50, 41, .08) 0 1px, transparent 1px 20%); }
.pc-bar { position: absolute; top: 0; bottom: 0; left: calc(var(--from) * 100%); width: calc((var(--to) - var(--from)) * 100%); border-radius: 999px; background: var(--sage); transform-origin: left; }
.pc-bar--muted { background: rgba(61, 50, 41, .3); }
.pc-bar--rose { background: var(--rose); }
.pc-bar--dark { background: var(--ink); }
.pc-value { font-size: .9rem; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.pc-row--mirya .pc-label { color: var(--sage-deep); }
.pc-row--mirya .pc-bar:first-child { box-shadow: 0 0 0 4px rgba(95, 124, 76, .18); border-radius: 999px 0 0 999px; }
.pc-bar--ext { background: repeating-linear-gradient(-45deg, rgba(95, 124, 76, .42) 0 5px, rgba(95, 124, 76, .2) 5px 10px); border-radius: 0 999px 999px 0; }
.pc-row--mirya .pc-value { color: var(--sage-deep); font-weight: 700; }
@media (min-width: 820px) {
  .price-chart { --pc-label: 15rem; --pc-value: 13rem; }
  .pc-axis { margin-left: 15rem; margin-right: 13rem; }
  .pc-row { grid-template-columns: 15rem 1fr 13rem; align-items: center; gap: 0; }
  .pc-label { padding-right: 1.5rem; }
  .pc-value { padding-left: 1.5rem; }
}
.usp-grid { display: grid; gap: 1rem; margin-top: clamp(3rem, 2.5rem + 2vw, 4.5rem); }
@media (min-width: 700px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }
.usp { padding: 1.5rem 1.4rem; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line); }
.usp h3 { font-family: var(--serif); font-size: 1.25rem; }
.usp p { margin-top: .5rem; font-size: .95rem; color: var(--ink-2); }

/* ---------- 9 · Ablauf ---------- */
.steps { position: relative; list-style: none; max-width: 44rem; margin-inline: auto; display: grid; gap: 2.4rem; }
.steps-line { position: absolute; left: 1.55rem; top: 1.5rem; bottom: 1.5rem; width: 2px; height: calc(100% - 3rem); overflow: visible; }
.steps-line path { stroke: var(--sage); stroke-width: 2; fill: none; vector-effect: non-scaling-stroke; stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.step { position: relative; display: grid; grid-template-columns: 3.1rem 1fr; gap: 1.4rem; align-items: start; }
.step-no { position: relative; z-index: 1; width: 3.1rem; height: 3.1rem; border-radius: 50%; display: grid; place-items: center; background: var(--cream); border: 2px solid var(--sage); color: var(--sage-deep); font-family: var(--serif); font-size: 1.3rem; font-style: italic; }
.step h3 { font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; padding-top: .45rem; }
.step p { margin-top: .4rem; color: var(--ink-2); }

/* ---------- 10 · Praxis ---------- */
/* Foto im Originalformat (2000 × 1126), ohne Beschnitt */
.praxis-photo { margin: 0; position: relative; }
.praxis-photo img { width: 100%; height: auto; aspect-ratio: 2000 / 1126; object-fit: contain; border-radius: var(--radius-xl); box-shadow: var(--shadow-lift); background: var(--sand); }
.praxis-photo figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .35rem .85rem; border-radius: 999px; background: rgba(255, 249, 243, .92); font-size: .8rem; font-weight: 700; }
.praxis-copy { margin-top: clamp(2rem, 1.5rem + 2vw, 3rem); display: grid; gap: 1rem 3rem; color: var(--ink-2); }
@media (min-width: 900px) { .praxis-copy { grid-template-columns: 1fr 1fr; } .praxis-copy .text-link { grid-column: 1 / -1; } }
.praxis-copy .text-link { margin-top: .5rem; }

/* ---------- 11 · FAQ ---------- */
.faq-grid { display: grid; gap: 2rem; }
@media (min-width: 960px) { .faq-grid { grid-template-columns: 4fr 7fr; gap: 4rem; align-items: start; } .faq-grid .section-head { position: sticky; top: calc(var(--header-h) + 2rem); } }
.faq-list { display: grid; gap: .7rem; }
.faq-list details { border-radius: var(--radius-lg); background: var(--cream); border: 1px solid var(--line); overflow: hidden; }
.faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.35rem; font-weight: 700; font-size: 1.02rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ""; flex-shrink: 0; width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--sage-mist) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 5v10M5 10h10' stroke='%234B653A' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 60% no-repeat; transition: transform .35s var(--ease-out); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 1.35rem 1.3rem; color: var(--ink-2); }

/* ---------- 12 · Abschluss ---------- */
.cta { position: relative; overflow: hidden; background: var(--black); color: var(--cream); padding-block: clamp(6rem, 4rem + 9vw, 10rem); text-align: center; }
.cta-bg { position: absolute; inset: -10%; background-size: cover; background-position: center; opacity: .38; filter: saturate(1.05); will-change: transform; }
.cta::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 50% 50%, rgba(20, 22, 20, .35), rgba(20, 22, 20, .88)); }
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-icon { width: 84px; height: 84px; margin-bottom: 1.8rem; opacity: .95; }
.cta .lead { margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin-top: 2.4rem; }

/* ---------- Footer (wie mirya.ch) ---------- */
.site-footer { background: var(--sage); color: rgba(255, 249, 243, .92); padding-top: 4rem; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; margin-bottom: 1rem; }
.footer-col img { width: 64px; height: 64px; opacity: .9; }
.footer-nav { display: grid; gap: .45rem; }
.footer-nav a, .footer-col address a { font-size: .9rem; text-decoration: none; opacity: .75; transition: opacity .2s; }
.footer-nav a:hover, .footer-col address a:hover { opacity: 1; }
.footer-nav a[aria-current="page"] { opacity: 1; font-weight: 700; }
.footer-col address { font-style: normal; font-size: .9rem; line-height: 1.9; opacity: .85; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem 2rem; padding-block: 1.4rem 1.8rem; border-top: 1px solid rgba(255, 249, 243, .2); font-size: .78rem; opacity: .75; }

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .film { height: auto; }
  .film-stage { position: relative; height: 100vh; }
  .film-canvas, .film-rail, .film-scrollcue, .film-pupil, .beat:not(.beat--hero) { display: none; }
  .tour { height: auto; }
  .tour-stage { position: relative; height: auto; grid-template-rows: auto; }
  .tour-media { aspect-ratio: 16 / 9; }
  .tour-steps { flex: none; }
  .tour-step { position: relative; opacity: 1; visibility: visible; transform: none; margin-bottom: 1.4rem; }
  .steps-line path { stroke-dashoffset: 0; }
  .lv-thumb { opacity: 1; }
}
