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

.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; }
.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;
}
.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 2.2rem; line-height: 1.55;
}
.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__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;
}
.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; }
.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);
}
.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-total {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
  margin-top: .4rem;
}
.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; }
.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: .75rem .9rem .85rem;
  color: var(--muted); cursor: pointer;
}
.measure-card svg { width: 100%; height: auto; display: block; }
.measure-card strong { display: block; margin-top: .35rem; color: var(--gold-lt); font-size: .92rem; }
.measure-card__cap { display: block; font-size: .75rem; color: var(--dim); line-height: 1.4; margin-top: .15rem; }
.measure-card.is-on { border-color: rgba(201,169,110,.45); color: var(--gold); }
.hero__trust-item a { color: inherit; }
.hero__trust-item a:hover { color: var(--gold); }
#bezirke { 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: 3rem; }
.stefan-block__copy { margin-bottom: 1.2rem; max-width: 36rem; }
.stefan-block__copy .cross { color: var(--dim); }
.clip-tabs {
  display: flex; flex-wrap: wrap; gap: .45rem;
  margin: 0 0 1rem;
}
.clip-tab {
  border: 1px solid var(--border); background: var(--card2);
  color: var(--muted); font: inherit; font-size: .78rem;
  padding: .45rem .85rem; border-radius: 999px; cursor: pointer;
}
.clip-tab.is-on { color: var(--text); border-color: rgba(255,255,255,.18); background: #1a1b24; }
.clips-scroll {
  display: flex; gap: .9rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .4rem; scrollbar-width: none;
}
.clips-scroll::-webkit-scrollbar { display: none; }
.clip-card {
  flex: 0 0 min(78vw, 280px); scroll-snap-align: start;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--card2); border: 1px solid var(--border);
}
.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: .7rem .85rem; font-size: .8rem; color: var(--dim);
  border-top: 1px solid var(--border);
}
.clips-nav { display: flex; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
.clips-nav button {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--card2); border: 1px solid var(--border);
  color: var(--text); cursor: pointer; font-size: 1.2rem;
}
.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: 2rem 1.5rem; text-align: center;
}
.pillar__ic { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.pillar p { color: var(--dim); font-size: .9rem; line-height: 1.7; }
.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;
  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; }

.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 {
  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__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__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,
  .book-actions, .wa-fallback { display: none !important; }
  body { background: #fff; color: #111; }
  #buchung, .confirm { display: block !important; background: #fff; border: none; color: #111; }
  .confirm p, .book-summary { color: #111; }
}
