:root {
  --bg: #07080c;
  --card: #0f1018;
  --card2: #131520;
  --border: rgba(255,255,255,0.07);
  --gold: #c9a96e;
  --gold-lt: #e8d5a3;
  --gold-dim: rgba(201,169,110,.12);
  --gold-glow: 0 0 60px rgba(201,169,110,.18);
  --text: #f2efe9;
  --muted: #7a7670;
  --dim: rgba(242,239,233,.55);
  --radius: 12px;
  --radius-lg: 20px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 9vw, 7rem);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(135deg, #c9a96e, #9e7040);
  color: #07080c;
  box-shadow: var(--gold-glow);
}
.btn--gold:hover {
  background: linear-gradient(135deg, #dfca88, #c9a96e);
  box-shadow: 0 0 80px rgba(201,169,110,.3);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: .5rem 1.1rem; font-size: .8rem; }
.btn--lg { padding: 1.1rem 2.6rem; font-size: 1rem; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section) 0; }
.section--dark { background: var(--card); }
.section--darker { background: var(--card2); }
.sec-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.sec-head p { color: var(--dim); max-width: 560px; margin: .75rem auto 0; font-size: 1.05rem; }
.divider { width: 56px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: .9rem auto 0; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .75rem var(--pad);
  background: rgba(7,8,12,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav__logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
.nav__right { display: flex; align-items: center; gap: .75rem; }
.nav__tel, .nav__addr { font-size: .78rem; color: var(--muted); display: none; }
.nav__addr:hover, .nav__tel:hover { color: var(--gold); }
.nav__lang { font-size: .72rem; letter-spacing: .08em; color: var(--muted); }
.nav__lang a { color: var(--muted); }
.nav__lang a.is-on, .nav__lang a:hover { color: var(--gold); }
@media (min-width: 720px) { .nav__addr { display: block; } }
@media (min-width: 980px) { .nav__tel { display: block; } }
.nav__cutoff {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: .8rem;
  color: var(--dim);
  white-space: nowrap;
  display: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.nav__cutoff strong { color: var(--gold-lt); font-weight: 500; }
.nav__cutoff .cutoff__clock { color: var(--gold); font-variant-numeric: tabular-nums; }
.nav__cutoff:hover strong { color: #fff; }
@media (min-width: 861px) {
  .nav__cutoff { display: block; }
  .nav__cutoff.is-on { opacity: 1; }
}

.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero__bg-layer {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(160deg, rgba(7,8,12,.97) 35%, rgba(7,8,12,.5) 100%),
    radial-gradient(ellipse 80% 55% at 70% 55%, rgba(201,169,110,.07) 0%, transparent 65%);
}
.hero__texture {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1c1408 0%, #0a0d16 55%, #07080c 100%);
}
.hero .container { padding-top: 2rem; padding-bottom: 5rem; }
.hero__content { position: relative; z-index: 2; max-width: 580px; }
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: var(--muted); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; z-index: 1;
}
.scroll-cue__line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scr 1.6s ease infinite;
}
@keyframes scr {
  0%   { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(.3) translateY(18px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue__line { animation: none; }
}
.hero__video-col {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  z-index: 1;
  overflow: hidden;
}
.hero__video-col video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.hero__video-col::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    90deg,
    var(--bg) 0%,
    rgba(7,8,12,.55) 30%,
    rgba(7,8,12,.1) 70%,
    transparent 100%
  );
}
.hero__video-col::after {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,169,110,.3), transparent);
  z-index: 2;
}
@media (max-width: 860px) {
  .hero__video-col {
    display: block;
    width: 100%;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: 0;
  }
  .hero__video-col::before {
    background: linear-gradient(
      180deg,
      rgba(7,8,12,.55) 0%,
      rgba(7,8,12,.30) 50%,
      rgba(7,8,12,.85) 100%
    );
  }
  .hero__bg-layer {
    background: linear-gradient(180deg, rgba(7,8,12,.6) 0%, rgba(7,8,12,.85) 100%);
  }
  .hero__texture { display: none; }
  .hero__content { position: relative; z-index: 2; }
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .35rem 1rem;
  border: 1px solid rgba(201,169,110,.28);
  border-radius: 50px;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.hero__badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 8px var(--gold);
}
.hero h1 { font-style: italic; margin-bottom: 1.3rem; overflow-wrap: normal; word-break: normal; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  white-space: nowrap;
}
.pct { white-space: nowrap; }
.cta-sec h2 em { white-space: nowrap; }
@media (max-width: 420px) {
  .hero h1 em, .cta-sec h2 em { white-space: normal; }
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: var(--dim); max-width: 540px;
  margin-bottom: 1.4rem; line-height: 1.75;
}
.hero__fine {
  font-size: .78rem; color: var(--muted);
  max-width: 520px; margin: -.4rem 0 1.15rem; line-height: 1.55;
}
.hero__who {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 0 0 1.8rem;
}
.hero__who a {
  border: 1px solid rgba(201,169,110,.38);
  border-radius: 50px;
  padding: .42rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gold-lt);
  letter-spacing: .04em;
}
.hero__who a:hover { background: var(--gold-dim); color: var(--gold); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 3rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.hero__trust-item { display: flex; align-items: center; gap: .45rem; font-size: .8rem; color: var(--muted); }
.hero__trust-item .ic { color: var(--gold); }

.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  height: 56px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: .75rem;
  padding: 0 .9rem;
  background: rgba(7,8,12,.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.06);
}
.sticky-bar.is-on { display: flex; }
.sticky-bar .btn { height: 40px; padding: .5rem 1.1rem; }
.sticky-bar__cutoff {
  font-size: .78rem;
  color: var(--dim);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.sticky-bar__cutoff strong { color: var(--gold-lt); font-weight: 500; }
.sticky-bar__cutoff .cutoff__clock { color: var(--gold); }
.sticky-bar__wa {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
}
.sticky-bar__wa svg { width: 20px; height: 20px; fill: currentColor; }
@media (min-width: 861px) { .sticky-bar { display: none !important; } }

.book-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}
.book-block { margin-bottom: 1.5rem; }
.book-block h3 { font-size: 1.15rem; margin-bottom: .7rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  appearance: none;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: .82rem;
  padding: .55rem .9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.chip:hover:not(:disabled) { border-color: rgba(201,169,110,.4); }
.chip.is-on {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-lt);
}
.chip:disabled { opacity: .35; cursor: not-allowed; }
.chip small { display: block; font-size: .62rem; color: var(--muted); letter-spacing: .02em; }
.book-summary {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--gold);
  line-height: 1.35;
  margin: 1.2rem 0 1.6rem;
}
.cutoff {
  margin: 0 0 1.3rem;
  font-size: .88rem;
  color: var(--dim);
}
.cutoff strong { color: var(--gold-lt); font-weight: 500; }
.cutoff .cutoff__clock {
  font-variant-numeric: tabular-nums;
  color: var(--gold);
}
.book-price {
  margin: 0 0 1.5rem;
  padding: .95rem 1.1rem 1.05rem;
  background: rgba(201,169,110,.07);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius);
  font-size: .88rem;
  color: var(--dim);
  line-height: 1.6;
}
.book-price strong { color: var(--gold-lt); font-weight: 500; }
.book-price__link {
  display: inline-block;
  margin-top: .55rem;
  color: var(--gold);
  font-size: .84rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.book-price__link:hover { color: var(--gold-lt); }
.book-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 720px) { .book-fields { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .75rem; color: var(--muted); letter-spacing: .04em; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"] {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  padding: .75rem .9rem;
}
.field input:focus { outline: none; border-color: var(--gold); }
.hint { font-size: .78rem; color: var(--gold); margin-top: .25rem; }
#preise { scroll-margin-top: 5.5rem; }
.hint.is-off { display: none; }
.err { font-size: .8rem; color: #e08a7a; margin-top: .25rem; scroll-margin: 7rem; }
input.is-bad { border-color: #e08a7a !important; background: rgba(224,138,122,.08); }
.check { display: flex; align-items: flex-start; gap: .6rem; font-size: .84rem; color: var(--dim); }
.check input { margin-top: .2rem; accent-color: var(--gold); }
.check a { color: var(--gold); text-decoration: underline; }
.book-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
.confirm {
  display: none;
  background: var(--card2);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2.4rem);
}
.confirm.is-on { display: block; }
.confirm h3 { margin-bottom: .6rem; }
.confirm p { color: var(--dim); margin-bottom: .6rem; }
.confirm-brand { font-size: .92rem; color: var(--gold-lt) !important; margin-bottom: 1.1rem !important; }
.confirm-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem 1.4rem;
  margin: 0 0 1.2rem;
}
.confirm-meta div { min-width: 0; }
.confirm-meta dt {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .15rem;
}
.confirm-meta dd { color: var(--text); font-size: 1.02rem; }
.confirm-items {
  width: 100%;
  border-collapse: collapse;
  margin: .4rem 0 1rem;
  font-size: .95rem;
}
.confirm-items th, .confirm-items td {
  text-align: left;
  padding: .45rem .5rem;
  border-bottom: 1px solid var(--border);
}
.confirm-items th {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.confirm-sum { color: var(--gold-lt) !important; font-size: 1.15rem; font-weight: 600; }
.confirm-note { font-size: .82rem !important; }
@media (max-width: 640px) { .confirm-meta { grid-template-columns: 1fr; } }
.wa-fallback {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(224,138,122,.35);
  border-radius: var(--radius);
}
.wa-fallback.is-on { display: block; }

.steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 2.5rem 2rem; text-align: center; position: relative; }
.step:not(:last-child)::after {
  content: ''; position: absolute;
  top: 50%; right: 0; transform: translateY(-50%);
  width: 1px; height: 55%;
  background: linear-gradient(180deg, transparent, rgba(201,169,110,.25), transparent);
}
@media (max-width: 720px) {
  .step:not(:last-child)::after {
    top: auto; right: auto; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 55%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,110,.25), transparent);
  }
}
.step__n {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,.35);
  background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem; font-weight: 600; color: var(--gold);
}
.step h3 { margin-bottom: .6rem; font-size: 1.25rem; }
.step p { color: var(--dim); font-size: .88rem; line-height: 1.7; }
.honesty { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 1.2rem; }

.video-wrap {
  width: min(1100px, calc(100% - 2 * var(--pad)));
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,.15);
  box-shadow: var(--gold-glow);
}
.video-aspect {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000 center / cover no-repeat;
}
.video-aspect video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #000;
}
.case-cap { text-align: center; color: var(--dim); margin-top: 1.1rem; font-size: .95rem; }

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}
table.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  min-width: 640px;
}
.price-table th, .price-table td {
  padding: .7rem .85rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.price-table th {
  color: var(--gold);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--card2);
}
.price-table td { color: var(--dim); }
.price-table td:first-child { color: var(--text); }
.calc {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 3vw, 2.2rem);
}
.calc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.calc-lab {
  display: block;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.calc-group + .calc-group {
  margin-top: .3rem;
  padding-top: .8rem;
  border-top: 1px dashed rgba(255,255,255,.09);
}
.calc-row .stepper {
  margin-top: .3rem;
  padding-top: .8rem;
  border-top: 1px dashed rgba(255,255,255,.09);
}
.stepper { display: flex; align-items: center; gap: .55rem; }
.stepper button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}
.calc-toggle {
  display: flex; align-items: center; gap: .7rem;
  margin: 1.1rem 0;
  font-size: .9rem;
}
.calc-toggle input { accent-color: var(--gold); }
.calc-sum {
  margin: 1.1rem 0 .7rem;
  padding: 1rem 0 1.05rem;
  border-top: 1px solid rgba(201,169,110,.28);
  border-bottom: 1px solid rgba(201,169,110,.12);
}
.calc-total {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: .02em;
}
.calc-total-cap {
  margin-top: .4rem;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.calc-sub { font-size: .85rem; color: var(--muted); }
.strike { text-decoration: line-through; color: var(--muted); margin-right: .4rem; }
.save { color: var(--gold-lt); font-weight: 600; margin-top: .45rem; }
.calc-note { font-size: .8rem; color: var(--muted); margin-top: 1rem; line-height: 1.6; }
.measure { font-size: .8rem; color: var(--dim); margin: .4rem 0 1rem; }
.measure-guide {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
  margin: .7rem 0 1.2rem;
}
@media (max-width: 640px) { .measure-guide { grid-template-columns: 1fr; } }
.measure-card {
  display: block; width: 100%; text-align: left;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .9rem 1rem 1rem;
  color: rgba(201,169,110,.55); cursor: pointer;
}
.measure-card svg { width: 100%; height: auto; display: block; }
.measure-card strong { display: block; margin-top: .45rem; color: var(--gold-lt); font-size: 1.02rem; }
.measure-card__cap { display: block; font-size: .88rem; color: var(--dim); line-height: 1.45; margin-top: .2rem; }
.measure-card.is-on { border-color: rgba(201,169,110,.7); color: var(--gold-lt); background: rgba(201,169,110,.08); }
.calc-who {
  font-size: .92rem;
  color: var(--dim);
  line-height: 1.6;
  margin: -.4rem 0 1.1rem;
}
.calc-who summary {
  cursor: pointer;
  display: inline-block;
  font-size: .8rem;
  color: var(--muted);
  text-decoration: underline dotted;
  text-underline-offset: 3px;
  padding: .15rem 0;
}
.calc-who summary::-webkit-details-marker { display: none; }
.calc-who summary::before { content: "✂ "; color: var(--gold); }
.calc-who[open] summary { color: var(--gold-lt); }
.calc-who p {
  margin-top: .5rem;
  padding: .85rem 1rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,169,110,.07);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.calc-who a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 3px; }

.who-strip {
  position: relative;
  border: 1px solid rgba(201,169,110,.34);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(165deg, rgba(201,169,110,.11) 0%, transparent 46%),
    var(--card2);
  overflow: hidden;
}
.who-strip::before,
.who-strip::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 16px;
  pointer-events: none;
  background: radial-gradient(circle, var(--bg) 5.5px, transparent 6px);
  background-size: 16px 22px;
  background-repeat: repeat-y;
  z-index: 1;
}
.who-strip::before { left: -8px; }
.who-strip::after { right: -8px; }
.who-strip__head {
  padding: clamp(1.5rem, 4vw, 2.2rem) clamp(1.6rem, 4vw, 2.4rem) 1rem;
  max-width: 42rem;
}
.who-strip__quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.25;
  margin: .45rem 0 .7rem;
}
.who-strip__lead {
  color: var(--dim);
  font-size: 1.02rem;
  line-height: 1.6;
}
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid rgba(201,169,110,.2);
}
.who-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.45rem 1.5rem 1.6rem;
  color: inherit;
  text-align: left;
  position: relative;
}
.who-card::before {
  content: "";
  display: block;
  flex-shrink: 0;
  height: 1.25rem;
  margin-bottom: .45rem;
}
.who-card + .who-card { border-left: 1px solid rgba(201,169,110,.18); }
.who-card svg {
  width: 118px;
  height: 62px;
  flex-shrink: 0;
  color: var(--gold);
  margin-bottom: .85rem;
  display: block;
  overflow: hidden;
}
.who-card__tag {
  display: block;
  flex-shrink: 0;
  min-height: 1.05rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
  line-height: 1.2;
}
.who-card h3 {
  flex-shrink: 0;
  min-height: 1.7rem;
  margin-bottom: .4rem;
  font-size: 1.45rem;
  line-height: 1.15;
}
.who-card p {
  flex: 1 1 auto;
  color: var(--dim);
  font-size: .95rem;
  line-height: 1.55;
}
.who-card:hover { background: rgba(201,169,110,.06); }
.who-card--salon {
  background: linear-gradient(180deg, rgba(201,169,110,.18), rgba(201,169,110,.05));
}
.who-card__mark {
  position: absolute;
  top: 1.45rem;
  left: 1.5rem;
  display: inline-block;
  margin: 0;
  padding: .15rem .55rem;
  line-height: 1.2;
  border-radius: 50px;
  background: var(--gold);
  color: #07080c;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 860px) {
  .who-grid { grid-template-columns: 1fr; }
  .who-card + .who-card { border-left: none; border-top: 1px solid rgba(201,169,110,.18); }
  .who-card:not(.who-card--salon)::before { height: 0; margin: 0; }
  .who-strip::before, .who-strip::after { display: none; }
}
.hero__trust-item a { color: inherit; }
.hero__trust-item a:hover { color: var(--gold); }
#bezirke, #fuer-wen { scroll-margin-top: 5.5rem; }

.about-bio {
  margin-top: 3rem;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(2rem,5vw,3.5rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 768px) { .about-bio { grid-template-columns: 1fr; gap: 2rem; } }
.about-bio__text p { color: var(--dim); margin-bottom: 1rem; line-height: 1.8; }
.stefan-block { margin-top: 3.25rem; }
.stefan-block__copy { margin-bottom: 2.1rem; max-width: 44rem; }
.stefan-block__copy .label { margin-bottom: .45rem; }
.stefan-block__copy .cross {
  text-align: left;
  margin-top: .85rem;
  font-size: 1rem;
  color: var(--dim);
}
.stefan-block__copy .about-bio__quote {
  font-size: clamp(1.55rem, 3.1vw, 2.35rem);
  color: var(--gold-lt);
  font-weight: 500;
  line-height: 1.28;
  margin: 0;
}
.clips-kicker {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .8rem;
}
.clip-tabs {
  display: flex; flex-wrap: nowrap; gap: .6rem;
  margin: 0 0 1.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: .15rem .1rem .45rem;
}
.clip-tabs::-webkit-scrollbar { display: none; }
.clip-tab {
  appearance: none;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  padding: .72rem 1.25rem;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.clip-tab:hover { border-color: rgba(201,169,110,.4); }
.clip-tab.is-on {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-lt);
}
.clips-scroll {
  display: flex; gap: 1.05rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem; scrollbar-width: none;
}
.clips-scroll::-webkit-scrollbar { display: none; }
.clip-card {
  flex: 0 0 min(84vw, 340px); scroll-snap-align: start;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--card2); border: 1px solid var(--border);
}
@media (min-width: 1100px) {
  .clip-card { flex-basis: 360px; }
}
.clip-vid { position: relative; aspect-ratio: 9/16; background: #000; }
.clip-vid video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clip-label {
  padding: .95rem 1.05rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
  border-top: 1px solid var(--border);
}
.clips-nav { display: flex; justify-content: center; gap: .6rem; margin-top: 1.25rem; }
.clips-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--card2); border: 1px solid var(--border);
  color: var(--text); cursor: pointer; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.clips-nav button:hover { background: var(--gold-dim); border-color: var(--gold); }
.about-bio__quote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic; font-size: 1.2rem;
  color: var(--gold); line-height: 1.5;
}
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat {
  text-align: center; padding: 1.4rem 1rem;
  background: var(--gold-dim); border: 1px solid rgba(201,169,110,.18);
  border-radius: var(--radius);
}
.stat__n {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem; font-weight: 600;
  color: var(--gold); line-height: 1; margin-bottom: .25rem;
}
.stat__l { font-size: .75rem; color: var(--muted); line-height: 1.35; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 960px) { .g3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .g3 { grid-template-columns: 1fr; } }
.pillar {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.85rem 1.45rem 1.7rem; text-align: center;
}
.pillar__ic { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.pillar p { color: var(--dim); font-size: 1.02rem; line-height: 1.75; }
.cross { text-align: center; margin-top: 1.6rem; color: var(--dim); }
.cross a { color: var(--gold); }

.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  align-items: start;
}
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .testi-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}
.testi-vid { position: relative; background: #000; border-radius: var(--radius-lg); overflow: hidden; }
.testi-vid.port { aspect-ratio: 9/16; }
.testi-vid video { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-body { padding: .9rem .25rem 0; }
.testi-body p { font-size: .82rem; color: var(--dim); line-height: 1.6; margin-bottom: .5rem; }
.testi-author {
  font-size: .72rem; color: var(--gold);
  display: flex; align-items: center; gap: .4rem; font-weight: 500;
}
.testi-author::before { content: ''; width: 14px; height: 1px; background: var(--gold); flex-shrink: 0; }

.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.06); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: "Cormorant Garamond", serif; font-size: 1.22rem;
  text-align: left; padding: 1.3rem 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-q:hover { color: var(--gold); }
.faq-ic {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; transition: transform .3s;
}
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding-bottom: 1.3rem; color: var(--dim); font-size: .93rem; line-height: 1.8; }

.geo {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  max-width: 860px;
  margin: 0 auto;
}
.geo p { color: var(--dim); margin-bottom: 1rem; }
.geo ul { color: var(--dim); padding-left: 1.1rem; }
.geo li { margin-bottom: .4rem; }

.cta-sec { position: relative; overflow: hidden; text-align: center; }
.cta-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(201,169,110,.09) 0%, transparent 70%);
}
.cta-sec__inner { position: relative; z-index: 1; }
.cta-sec h2 { font-style: italic; margin-bottom: 1rem; }
.cta-sec h2 em {
  font-style: normal;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-sec p { color: var(--dim); max-width: 520px; margin: 0 auto 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
@media (max-width: 420px) {
  .hero h1 em, .cta-sec h2 em { white-space: normal; }
}

.social-sec {
  padding: var(--section) 0;
  background: var(--card2);
  text-align: center;
  border-top: 1px solid var(--border);
}
.social-icons { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.social-icon {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  color: var(--muted);
}
.social-icon:hover { color: var(--gold); }
.social-icon svg {
  width: 64px; height: 64px; padding: 14px;
  border: 1px solid var(--border); border-radius: 20px; background: var(--card);
}
.social-icon--wa:hover { color: #25d366; }

footer { padding: 3.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,.05); }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand img { height: 32px; filter: brightness(0) invert(1); opacity: .65; margin-bottom: .75rem; }
.foot-brand p { font-size: .8rem; color: var(--muted); line-height: 1.65; }
.foot-col h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem; color: var(--gold);
  margin-bottom: .75rem;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.foot-col li { font-size: .8rem; color: var(--muted); }
.foot-col a:hover { color: var(--gold); }
.foot-bottom .credit a {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--gold);
  text-decoration: none;
  transition: color .25s ease;
}
.foot-bottom .credit a:hover { color: #fff; }
.foot-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.04);
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: .75rem;
  font-size: .73rem; color: var(--muted);
}
.foot-bottom a { color: var(--muted); }
.foot-bottom a:hover { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.vis { opacity: 1; transform: none; }
.hero__badge, .hero h1, .hero__sub, .hero__fine, .hero__who, .hero__cta, .hero__trust {
  opacity: 0; animation: fu .75s ease forwards;
}
.hero h1 { animation-delay: .1s; }
.hero__sub { animation-delay: .22s; }
.hero__fine { animation-delay: .28s; }
.hero__cta { animation-delay: .34s; }
.hero__trust { animation-delay: .44s; }
@keyframes fu { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__badge, .hero h1, .hero__sub, .hero__fine, .hero__who, .hero__cta, .hero__trust {
    opacity: 1; animation: none;
  }
  html { scroll-behavior: auto; }
}

#cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  padding: 1rem var(--pad) 1.15rem;
  background: rgba(15,16,24,.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transform: translateY(110%);
  transition: transform .35s ease;
}
#cookie-banner.open { transform: translateY(0); }
body:has(#cookie-banner.open) { padding-bottom: 8rem; }
.cookie-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
}
.cookie-text { flex: 1 1 280px; font-size: .86rem; color: var(--dim); line-height: 1.55; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .55rem; }
.cookie-btn {
  border: 1px solid var(--border); background: transparent; color: var(--text);
  font-family: inherit; font-size: .82rem; font-weight: 500;
  padding: .65rem 1.1rem; border-radius: 8px; cursor: pointer;
}
.cookie-btn--accept { background: var(--gold); color: #0a0a0c; border-color: var(--gold); }

@media print {
  nav, .hero, .sticky-bar, footer, #cookie-banner, .social-sec,
  #ablauf, #fall, #preise, #ueber, #referenzen, #faq, #geo, #cta, #fuer-wen,
  .book-card, .sec-head, .no-print, .wa-fallback { display: none !important; }
  html, body { background: #fff !important; color: #111 !important; }
  #buchung { padding: 0; }
  #confirm, .confirm {
    display: block !important;
    background: #fff !important;
    border: none !important;
    color: #111 !important;
    box-shadow: none;
    padding: 0;
  }
  .confirm h3, .confirm p, .confirm-brand, .confirm-sum, .confirm-meta dd, .confirm-items td { color: #111 !important; }
  .confirm-meta dt, .confirm-items th { color: #7a5c28 !important; }
  .confirm-items th, .confirm-items td { border-bottom: 1px solid #ddd; }
}
