/* ============================================================
   IGOR — Mobile Massage München
   Design: Dark luxury spa · warm amber glow · serif elegance
   ============================================================ */

:root {
  --bg-0: #0d0b08;
  --bg-1: #131009;
  --bg-2: #1a1610;
  --card: #191510;
  --ink: #ede6d8;
  --ink-soft: #c8bfae;
  --ink-dim: #97907f;
  --gold: #c9a06c;
  --champ: #e4d0a8;
  --cream: #ecdfc4;
  --cream-ink: #171310;
  --line: rgba(201, 160, 108, 0.16);
  --line-soft: rgba(201, 160, 108, 0.09);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 76px;
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: rgba(201, 160, 108, 0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Film grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* ---------- Layout helpers ---------- */

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section { position: relative; scroll-margin-top: calc(var(--nav-h) + 12px); }

.section-pad { padding-block: clamp(4.5rem, 10vw, 8rem); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.005em;
}

.h-display { font-size: clamp(2.6rem, 7vw, 4.6rem); }
.h-section { font-size: clamp(2rem, 4.6vw, 3.1rem); }

.h-section em, .h-display em {
  font-style: italic;
  font-weight: 400;
  color: var(--champ);
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  max-width: 34em;
}

.section-head { max-width: 46em; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head .lead { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 2.1rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              background-color 0.35s, color 0.35s, border-color 0.35s;
}

.btn svg { width: 17px; height: 17px; flex: none; }

.btn--solid {
  background: var(--cream);
  color: var(--cream-ink);
  box-shadow: 0 12px 34px -12px rgba(228, 208, 168, 0.35);
}

.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(228, 208, 168, 0.5);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(236, 223, 196, 0.02);
}

.btn--ghost:hover {
  border-color: rgba(201, 160, 108, 0.55);
  background: rgba(236, 223, 196, 0.06);
  transform: translateY(-2px);
}

.btn--whatsapp { gap: 0.7rem; }
.btn--whatsapp svg { color: var(--gold); }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(13, 11, 8, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Die Bildmarke bringt ihren eigenen Bogenrahmen mit — deshalb hier
   kein zusaetzlicher Kreis, der damit konkurrieren wuerde. */
.brand-mark {
  width: 38px;
  height: 46px;
  flex: none;
  display: block;
}

.brand-mark picture,
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

/* Laufweite bewusst enger als sonst bei Versalien: der Zusatz ist lang und
   muss neben Navigation und Buchen-Knopf in eine Zeile passen. */
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 0.1rem;
  /* Faellt der Platz doch zu knapp aus, lieber schrumpfen als umbrechen */
  white-space: nowrap;
  min-width: 0;
}

@media (max-width: 760px) {
  .brand-sub { font-size: 0.46rem; letter-spacing: 0.16em; }
}

@media (max-width: 340px) {
  .brand-sub { display: none; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }
.nav-cta .btn { min-height: 44px; padding: 0.6rem 1.6rem; font-size: 0.72rem; }

/* Burger */
.nav-toggle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-right: -8px;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  grid-row: 1;
  grid-column: 1;
  width: 26px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

.nav-toggle::before { transform: translateY(-8px); }
.nav-toggle::after { transform: translateY(8px); }

body.menu-open .nav-toggle span { opacity: 0; }
body.menu-open .nav-toggle::before { transform: translateY(1.5px) rotate(45deg); }
body.menu-open .nav-toggle::after { transform: translateY(-1.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(13, 11, 8, 0.97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}

body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }

.mobile-menu ul { list-style: none; text-align: center; display: grid; gap: 1.1rem; }

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  color: var(--ink);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
  transition-delay: var(--d, 0s);
  display: inline-block;
}

.mobile-menu a:hover { color: var(--champ); }

body.menu-open .mobile-menu a { opacity: 1; transform: none; }

.mobile-menu .menu-contact {
  margin-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: center;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3.5rem;
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 85% 10%, rgba(201, 160, 108, 0.07), transparent 60%),
    radial-gradient(70% 50% at 10% 95%, rgba(120, 84, 45, 0.08), transparent 65%),
    var(--bg-0);
}

.hero-grid {
  display: grid;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

.hero-copy { position: relative; z-index: 2; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champ);
  margin-bottom: 1.8rem;
  background: rgba(236, 223, 196, 0.03);
}

.hero-kicker .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(201, 160, 108, 0.55);
}

.hero h1 { max-width: 9.5em; }

.hero .lead { margin-top: 1.6rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero-trust span { display: inline-flex; align-items: center; gap: 0.55rem; }

.hero-trust svg { width: 14px; height: 14px; color: var(--gold); flex: none; }

/* Hero entrance animation */
.hero-copy > * {
  opacity: 0;
  transform: translateY(26px);
  animation: rise 1.1s var(--ease-out) forwards;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.1s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.22s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.34s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.46s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.58s; }

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* Hero visual — glowing sauna arch */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 380px;
  opacity: 0;
  animation: fadein 1.6s ease 0.5s forwards;
}

@keyframes fadein { to { opacity: 1; } }

.portal {
  position: relative;
  width: min(400px, 78vw);
  aspect-ratio: 0.66;
  border-radius: 999px 999px 18px 18px;
  overflow: hidden;
  background: repeating-linear-gradient(90deg,
    #241a10 0 14px, #1a130b 14px 17px);
  box-shadow:
    0 0 120px -20px rgba(214, 148, 69, 0.28),
    0 40px 90px -30px rgba(0, 0, 0, 0.8);
  will-change: transform;
}

.portal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 85% at 50% 96%, rgba(255, 190, 105, 0.9), rgba(206, 128, 51, 0.4) 42%, rgba(56, 34, 16, 0.05) 72%),
    linear-gradient(rgba(13, 11, 8, 0.35), transparent 45%);
  animation: breathe 7s ease-in-out infinite alternate;
  transform-origin: 50% 100%;
}

.portal::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  border-radius: inherit;
  box-shadow: inset 0 0 60px 10px rgba(13, 11, 8, 0.75);
}

@keyframes breathe {
  from { opacity: 0.82; transform: scale(1); }
  to   { opacity: 1;    transform: scale(1.045); }
}

.portal-ring {
  position: absolute;
  width: min(400px, 78vw);
  aspect-ratio: 0.66;
  border: 1px solid rgba(201, 160, 108, 0.35);
  border-radius: 999px 999px 18px 18px;
  transform: translate(16px, 16px);
  pointer-events: none;
}

.portal-caption {
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  will-change: transform;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: rgba(206, 138, 60, 0.14);
  top: -8%;
  right: -6%;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb-b {
  width: 260px;
  height: 260px;
  background: rgba(120, 84, 45, 0.12);
  bottom: -10%;
  left: -4%;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(24px, -30px, 0); }
}

.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}

@keyframes scrollpulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Scroll video reveal ---------- */

.scroll-hero {
  position: relative;
  height: 250vh;
  background: var(--bg-0);
}

.scroll-hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  background: #000;
  /* Startzustand: kleines Fenster in der Mitte, JS animiert bis Vollbild */
  clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
  will-change: clip-path;
}

.scroll-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.6);
  will-change: transform;
}

.scroll-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 11, 8, 0.35), rgba(13, 11, 8, 0.72) 85%);
  opacity: 0;
}

.scroll-hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
}

.intro-content {
  display: grid;
  justify-items: center;
  max-width: 820px;
}

.intro-content h1 { max-width: 11em; }

.intro-content .lead { margin-top: 1.4rem; }

.intro-content .hero-actions { justify-content: center; }

.intro-scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.intro-scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: no-preference) {
  .js-fade {
    opacity: 0;
    transform: translateY(28px);
    will-change: opacity, transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hero { height: auto; }
  .scroll-hero-sticky { position: relative; clip-path: none; height: 100svh; }
  .scroll-hero-video { transform: none; }
  .scroll-hero-shade { opacity: 1; }
  .intro-scroll-hint { display: none; }
}

/* ---------- Stats band ---------- */

.stats {
  border-block: 1px solid var(--line-soft);
  background: var(--bg-1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: 2.6rem;
}

.stat {
  text-align: center;
  padding: 1rem 0.5rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  color: var(--champ);
  line-height: 1;
}

.stat-num sup { font-size: 0.5em; color: var(--gold); }

.stat-label {
  margin-top: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- Benefits (Warum mobil) ---------- */

.benefits-grid {
  display: grid;
  gap: 1.1rem;
}

/* Bildkarten mit Text auf dem Motiv — bewusst ein anderer Kartentyp
   als die Ablauf-Sequenz, wo der Text unter dem Bild steht */
.benefit {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  background: #0b0906;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}

.benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 160, 108, 0.4);
}

/* Erhoehte Spezifitaet: haelt gegen allgemeine Karten-Regeln wie `.spot > *` */
.benefit > .benefit-media { display: block; position: absolute; inset: 0; }

.benefit > .benefit-scrim { position: absolute; inset: 0; }

.benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.benefit:hover .benefit-media img { transform: scale(1.05); }

/* Traegt die Lesbarkeit: kraeftig genug auch unter hellen Bildstellen */
.benefit-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    rgba(13, 11, 8, 0.1) 0%,
    rgba(13, 11, 8, 0.35) 30%,
    rgba(13, 11, 8, 0.82) 62%,
    rgba(13, 11, 8, 0.96) 100%);
}

/* Muss positioniert sein: sonst malen Bild und Schleier (beide absolut)
   ueber den statischen Textfluss und der Text verschwindet. */
.benefit-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.7rem 1.6rem 1.6rem;
}

.benefit-icon {
  display: block;
  width: 26px;
  height: 26px;
  margin-bottom: 1rem;
  color: var(--champ);
  transition: transform 0.6s var(--ease-out);
}

.benefit-icon svg { width: 100%; height: 100%; }

.benefit:hover .benefit-icon { transform: translateY(-3px); }

.benefit h3 {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

.benefit p {
  color: var(--ink-soft);
  font-size: 0.93rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

/* ---------- Services ---------- */

.services { background: var(--bg-1); border-block: 1px solid var(--line-soft); }

/* Bildbahn zwischen Kopf und Kartenraster.
   Die Hoehe folgt dem Seitenverhaeltnis statt einem festen Wert — sonst bleibt
   auf breiten Bildschirmen nur ein duenner Ausschnitt des Motivs uebrig. */
.strip {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0 0 clamp(2.4rem, 5vw, 3.6rem);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  background: #0b0906;
}

.strip-media {
  position: absolute;
  inset: 0;
  display: block;
}

.strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  transform: scale(1.06) translate3d(0, var(--py, 0%), 0);
  will-change: transform;
}

/* Sanfte Abdunklung an den Kanten, damit das Bild im dunklen Grund sitzt */
.strip-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 90px 24px rgba(11, 9, 6, 0.55);
}

/* Ab Tablet flacher schneiden — als Bahn, nicht als Bildkachel */
@media (min-width: 700px) {
  .strip { aspect-ratio: 2.4 / 1; }
}

@media (min-width: 1100px) {
  .strip { aspect-ratio: 2.9 / 1; }
}

.services-grid {
  display: grid;
  gap: 1.1rem;
}

.service {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 2.1rem 1.8rem 1.9rem;
  background: var(--card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}

.service::before {
  content: "";
  position: absolute;
  inset: auto -30% -55% -30%;
  height: 70%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(201, 160, 108, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}

.service:hover { transform: translateY(-5px); border-color: rgba(201, 160, 108, 0.4); }
.service:hover::before { opacity: 1; }

.service-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}

.service h3 { font-size: 1.55rem; }

.service p { color: var(--ink-soft); font-size: 0.94rem; flex-grow: 1; }

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.service-meta strong { color: var(--champ); font-weight: 400; }

/* ---------- Process (Ablauf) ---------- */

/* Vier Schritte als Bildsequenz — links nach rechts lesbar wie ein Storyboard */
.process-grid {
  list-style: none;
  display: grid;
  gap: 2.8rem 1.4rem;
  padding: 0;
  margin: 0;
}

.step { position: relative; }

.step-media {
  position: relative;
  aspect-ratio: 1;
  /* sichtbar, damit die Ziffer unten heraushaengen darf */
  overflow: visible;
  margin-bottom: 2.5rem;
}

.step-media picture {
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0b0906;
}

.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.step:hover .step-media img { transform: scale(1.045); }

/* Die Ziffer haengt halb ueber der Bildkante — der Ring zeichnet sich beim Eintritt */
.step-num {
  position: absolute;
  left: 16px;
  bottom: -25px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--champ);
  background:
    radial-gradient(circle at 50% 130%, rgba(201, 160, 108, 0.28), transparent 70%),
    linear-gradient(165deg, #221b12, #0d0b08);
  box-shadow: 0 8px 22px -8px rgba(0, 0, 0, 0.9);
}

.step h3 { font-size: 1.45rem; margin-bottom: 0.55rem; }

.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- About ---------- */

.about { background: var(--bg-1); border-block: 1px solid var(--line-soft); overflow: hidden; }

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.about-portrait {
  position: relative;
  display: block;
  width: min(320px, 70vw);
  aspect-ratio: 0.78;
  border-radius: 999px 999px 16px 16px;
  background: linear-gradient(165deg, #241d13, #14100a 70%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}

/* Warmer Lichtsaum, damit das Foto in die Sektion einwaechst */
.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 55% at 50% 105%, rgba(214, 148, 69, 0.28), transparent 65%),
    linear-gradient(rgba(13, 11, 8, 0.18), transparent 35%);
  box-shadow: inset 0 0 50px 8px rgba(13, 11, 8, 0.55);
}

.about-visual .ring-accent {
  position: absolute;
  width: min(320px, 70vw);
  aspect-ratio: 0.78;
  border: 1px solid rgba(201, 160, 108, 0.3);
  border-radius: 999px 999px 16px 16px;
  transform: translate(14px, 14px);
}

.about-quote {
  margin-top: 1.8rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--champ);
  text-align: center;
  max-width: 20em;
}

.about-copy .lead { margin-bottom: 1.4rem; }

.about-copy p + p { margin-top: 1rem; color: var(--ink-soft); font-size: 0.97rem; }

.about-facts {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
  list-style: none;
}

.about-facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.about-facts svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 0.3rem;
  color: var(--gold);
}

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  gap: 1.2rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 2.4rem 2rem 2.2rem;
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}

.price-card:hover { transform: translateY(-6px); border-color: rgba(201, 160, 108, 0.45); }

.price-card--featured {
  border-color: rgba(201, 160, 108, 0.55);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(201, 160, 108, 0.1), transparent 70%),
    var(--card);
  box-shadow: 0 30px 70px -30px rgba(214, 148, 69, 0.28);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--cream-ink);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.42rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-duration {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.price-value {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--ink);
}

.price-value span { font-size: 0.42em; color: var(--gold); font-style: italic; }

.price-desc { color: var(--ink-soft); font-size: 0.92rem; flex-grow: 1; }

.price-card .btn { align-self: center; }

.pricing-note {
  margin: 2.2rem auto 0;
  max-width: 60em;
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.pricing-note strong { color: var(--ink-soft); font-weight: 400; }

/* ---------- Area (Einzugsgebiet) ---------- */

.area {
  background: var(--bg-1);
  border-block: 1px solid var(--line-soft);
  overflow: hidden;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}

/* Kino-Bahn mit dem Muenchen-Video */
.area-stage {
  position: relative;
  height: clamp(460px, 72vh, 680px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0b0906;
}

.area-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Reserve fuer die Scroll-Parallaxe */
  transform: scale(1.12) translate3d(0, var(--py, 0%), 0);
  will-change: transform;
}

.area-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(13, 11, 8, 0.55) 0%, rgba(13, 11, 8, 0.12) 30%,
                    rgba(13, 11, 8, 0.72) 72%, rgba(19, 16, 9, 0.97) 100%);
}

/* ---------- Leuchtpunkte ueber der Stadt ---------- */

.area-pins { position: absolute; inset: 0; pointer-events: none; }

.pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--champ);
  box-shadow: 0 0 10px 2px rgba(228, 208, 168, 0.65);
  opacity: 0;
  animation: pinIn 0.9s var(--ease-out) forwards;
  animation-delay: var(--pd, 0s);
}

.pin::before, .pin::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(228, 208, 168, 0.55);
  animation: pinPulse 3.6s ease-out infinite;
  animation-delay: var(--pd, 0s);
}

.pin::after { animation-delay: calc(var(--pd, 0s) + 1.8s); }

@keyframes pinIn {
  from { opacity: 0; transform: scale(0.2); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pinPulse {
  0%   { transform: scale(1);  opacity: 0.85; }
  70%  { opacity: 0; }
  100% { transform: scale(8);  opacity: 0; }
}

.pin--main {
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  box-shadow: 0 0 16px 4px rgba(228, 208, 168, 0.8);
}

.pin--main::before, .pin--main::after { animation-duration: 4.2s; }

.pin-label {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champ);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.9);
}

.pin-label::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -12px;
  width: 1px;
  height: 9px;
  background: linear-gradient(rgba(228, 208, 168, 0.7), transparent);
}

/* ---------- Text auf der Bahn ---------- */

.area-headline {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-bottom: clamp(2.2rem, 5vw, 3.6rem);
}

.area-headline h2 { margin-inline: auto; max-width: 14em; }

.area-headline .lead {
  margin: 1.1rem auto 0;
  color: var(--ink);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.area-body { padding-top: clamp(2.2rem, 5vw, 3.2rem); }

/* Auf schmalen Displays weniger Punkte — sonst wirkt die Stadt unruhig */
@media (max-width: 639px) {
  .pin:nth-child(2), .pin:nth-child(4), .pin:nth-child(6) { display: none; }
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  transition: border-color 0.3s, color 0.3s, background-color 0.3s;
}

.chip:hover {
  border-color: rgba(201, 160, 108, 0.5);
  color: var(--champ);
  background: rgba(236, 223, 196, 0.03);
}

.area-note {
  margin: 1.8rem auto 0;
  max-width: 46em;
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.88rem;
}

/* ---------- Testimonials ---------- */

.testimonials-grid {
  display: grid;
  gap: 1.2rem;
}

.testimonial {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 2.2rem 1.9rem;
  background: linear-gradient(165deg, rgba(236, 223, 196, 0.025), transparent 60%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: transform 0.5s var(--ease-out), border-color 0.4s;
}

.testimonial:hover { transform: translateY(-5px); border-color: rgba(201, 160, 108, 0.4); }

.testimonial-mark {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold);
  font-style: italic;
}

.testimonial p {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  flex-grow: 1;
}

.testimonial footer {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* ---------- FAQ ---------- */

.faq { background: var(--bg-1); border-block: 1px solid var(--line-soft); }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.4s;
}

.faq-item.open { border-color: rgba(201, 160, 108, 0.45); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem 1.6rem;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.28rem;
  color: var(--ink);
  transition: color 0.3s;
}

.faq-q:hover { color: var(--champ); }

.faq-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1.5px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a > div { overflow: hidden; }

.faq-a p {
  padding: 0 1.6rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 58ch;
}

/* ---------- Contact / Booking ---------- */

.contact-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.contact-channels { display: grid; gap: 0.9rem; align-content: start; }

.contact-form-col { display: grid; gap: 1.4rem; align-content: start; }

/* Ruhiges Stimmungsbild unter den Kontaktwegen — es soll das Formular
   begleiten, nicht mit ihm konkurrieren, deshalb flacher Anschnitt. */
.contact-media {
  display: block;
  margin-top: 0.5rem;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  background: #0b0906;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.channel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  background: var(--card);
  transition: transform 0.45s var(--ease-out), border-color 0.4s;
}

.channel:hover { transform: translateY(-4px); border-color: rgba(201, 160, 108, 0.45); }

.channel-icon {
  width: 48px;
  height: 48px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--champ);
  background: radial-gradient(circle at 50% 130%, rgba(201, 160, 108, 0.22), transparent 70%);
}

.channel-icon svg { width: 20px; height: 20px; }

.channel-label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.channel-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin-top: 0.15rem;
}

.contact-hours {
  padding: 1.3rem 1.5rem;
  border: 1px dashed var(--line);
  border-radius: 14px;
  font-size: 0.86rem;
  color: var(--ink-dim);
}

.contact-hours strong { color: var(--ink-soft); font-weight: 400; }

/* Form */
.booking-form {
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background:
    radial-gradient(90% 55% at 50% 0%, rgba(201, 160, 108, 0.07), transparent 70%),
    var(--card);
  display: grid;
  gap: 1.2rem;
}

.form-row { display: grid; gap: 1.2rem; }

.field { display: grid; gap: 0.45rem; }

.field label {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(13, 11, 8, 0.6);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  min-height: 48px;
  transition: border-color 0.3s, background-color 0.3s;
}

.field textarea { resize: vertical; min-height: 110px; }

.field input::placeholder, .field textarea::placeholder { color: rgba(151, 144, 127, 0.6); }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(201, 160, 108, 0.6);
  background: rgba(13, 11, 8, 0.85);
}

/* Fehlerzustand: Rahmen und Hinweis direkt am betroffenen Feld */
.field .is-invalid { border-color: #d98a6a; }

.field-error {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: #e5a184;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a06c' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.field select:invalid { color: rgba(151, 144, 127, 0.8); }
.field option { background: var(--bg-2); color: var(--ink); }

.form-footer {
  display: grid;
  gap: 1rem;
  margin-top: 0.4rem;
}

.form-hint { font-size: 0.78rem; color: var(--ink-dim); }

/* Die Bestaetigung nach dem Absenden liegt jetzt auf danke.html */

.btn:disabled { opacity: 0.6; cursor: default; transform: none; }

/* ---------- CTA banner ---------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(5rem, 12vw, 8.5rem);
  background: var(--bg-0);
  border-top: 1px solid var(--line-soft);
}

.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Das Video driftet selbst — keine zusaetzliche Parallaxe, sonst kaempfen zwei Bewegungen */
}

/* Kraeftiger Schleier: der Text muss lesbar bleiben, das Kerzenlicht darf durchscheinen */
.cta-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(72% 62% at 50% 48%, rgba(13, 11, 8, 0.86), rgba(13, 11, 8, 0.6) 72%),
    linear-gradient(rgba(13, 11, 8, 0.55), rgba(13, 11, 8, 0.35) 45%, rgba(13, 11, 8, 0.7)),
    radial-gradient(70% 90% at 50% 118%, rgba(214, 148, 69, 0.24), transparent 62%);
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  max-width: 15em;
  margin-inline: auto;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.7);
}

.cta-banner .lead { text-shadow: 0 1px 14px rgba(0, 0, 0, 0.75); }

.cta-banner .lead { margin: 1.4rem auto 2.4rem; }

.cta-banner .hero-actions { justify-content: center; margin-top: 0; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-1);
  padding: 3.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
}

.footer-brand p {
  margin-top: 1rem;
  color: var(--ink-dim);
  font-size: 0.88rem;
  max-width: 26em;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }

.footer-col a, .footer-col li {
  color: var(--ink-soft);
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--champ); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--ink-dim);
}

.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--champ); }

/* Auf Unterseiten steht statt des Burger-Menues ein Knopf in der Kopfzeile.
   Auf schmalen Displays reicht der Platz dann nicht fuer den Zusatz unter
   dem Namen — er wuerde sonst dreizeilig umbrechen. */
@media (max-width: 540px) {
  .site-header:has(.nav > .btn) .brand-sub { display: none; }
}

/* ---------- Danke-Seite nach dem Absenden ---------- */

.thanks {
  padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 5.5rem));
  padding-bottom: clamp(4rem, 9vw, 7rem);
  min-height: 80vh;
  background:
    radial-gradient(70% 55% at 50% 0%, rgba(201, 160, 108, 0.1), transparent 65%),
    var(--bg-0);
}

.thanks-inner { max-width: 720px; text-align: center; }

.thanks-seal {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--champ);
  background: radial-gradient(circle at 50% 130%, rgba(201, 160, 108, 0.3), transparent 70%);
}

.thanks-seal svg { width: 28px; height: 28px; }

.thanks-inner .lead { margin: 1.2rem auto 0; }

.thanks-steps {
  list-style: none;
  margin: clamp(2.5rem, 6vw, 3.5rem) 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

.thanks-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--card);
  padding: 1.3rem 1.4rem;
}

.thanks-num {
  flex: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--champ);
  background: radial-gradient(circle at 50% 130%, rgba(201, 160, 108, 0.22), transparent 70%);
}

.thanks-steps h2 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.thanks-steps p { color: var(--ink-soft); font-size: 0.93rem; }

.thanks-urgent {
  margin: clamp(2.5rem, 5vw, 3rem) 0 1.4rem;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

/* ---------- Legal pages ---------- */

.legal-main {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
  min-height: 80vh;
}

.legal-main .container { max-width: 780px; }

.legal-main h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 0.6rem; }

.legal-main h2 {
  font-size: 1.5rem;
  margin: 2.6rem 0 0.7rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
}

.legal-main h3 {
  font-size: 1.1rem;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 1.6rem 0 0.5rem;
  color: var(--champ);
}

.legal-main p { color: var(--ink-soft); margin-bottom: 0.8rem; }

.legal-main ul { color: var(--ink-soft); margin: 0 0 1rem; padding-left: 1.1rem; }

.legal-main li { margin-bottom: 0.4rem; }

.legal-main li::marker { color: var(--gold); }

.legal-main a { color: var(--champ); text-decoration: underline; text-underline-offset: 3px; }

.legal-main a:hover { color: var(--cream); }

.legal-lead {
  color: var(--ink-dim);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

/* Kontaktblock im Impressum */
.legal-address {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--card);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
}

.legal-address p { margin: 0; line-height: 1.8; }

.legal-address strong { color: var(--ink); font-weight: 500; }

.legal-placeholder {
  border: 1px dashed rgba(201, 160, 108, 0.4);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  color: var(--champ);
  font-size: 0.9rem;
  margin: 1.5rem 0;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.in-view { opacity: 1; transform: none; }

/* Karten steigen mit leichter Skalierung — anderer Rhythmus als Fliesstext */
.reveal--card {
  transform: translateY(38px) scale(0.965);
  transition-duration: 1.05s;
}

/* ============================================================
   Handgemachte Mikro-Interaktionen
   ============================================================ */

/* ---------- Ueberschriften: Woerter steigen aus der Maske ---------- */

.split .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  /* Luft fuer Unterlaengen der Kursiv-Serife (g, y, p) */
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}

.split .word-i {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--wd, 0s);
  will-change: transform;
}

.split.in-view .word-i { transform: none; }

/* Die Zierlinie der Eyebrow zieht sich auf */
.eyebrow::before, .eyebrow--center::after {
  transform: scaleX(0);
  transition: transform 0.9s var(--ease-out) 0.1s;
}

.eyebrow::before { transform-origin: right; }
.eyebrow--center::after { transform-origin: left; }

.reveal.in-view .eyebrow::before,
.reveal.in-view .eyebrow--center::after { transform: scaleX(1); }

/* Der Kopfbereich blendet nur auf — die Bewegung uebernehmen die Woerter */
.section-head.reveal { transform: translateY(0); }

/* ---------- Cursor-Spotlight auf Karten ---------- */

.spot { position: relative; isolation: isolate; }

.spot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, -20%),
              rgba(201, 160, 108, 0.17), transparent 64%);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.spot:hover::after { opacity: 1; }

.spot > * { position: relative; z-index: 2; }

/* ---------- Magnetische Buttons ---------- */

.btn {
  --mag-x: 0px;
  --mag-y: 0px;
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
}

.btn--solid:hover, .btn--ghost:hover {
  transform: translate3d(var(--mag-x), calc(var(--mag-y) - 2px), 0);
}

/* ---------- Stats: Trennlinien zeichnen sich ---------- */

.stat { position: relative; }

.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(transparent, var(--line), transparent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 1.1s var(--ease-out) var(--d, 0s);
}

.stat.in-view + .stat::before,
.stat + .stat.in-view::before { transform: scaleY(1); }

.stat-num {
  transition: transform 0.5s var(--ease-out), color 0.4s;
}

.stat:hover .stat-num { transform: translateY(-3px); }

/* ---------- Benefits: Icon reagiert beim Hover ----------
   Der frühere Ring um das Icon ist entfallen — er stammte aus der Zeit,
   als das Icon in einem Kreis saß. Auf der Bildkarte steht es frei. */

.benefit-icon svg { transition: transform 0.6s var(--ease-out); }

.benefit:hover .benefit-icon svg { transform: scale(1.08); }

/* ---------- Services: Index zaehlt hoch, Rand leuchtet ---------- */

.service-index {
  display: inline-block;
  transition: transform 0.55s var(--ease-out), color 0.4s;
}

.service:hover .service-index { transform: translateX(4px); color: var(--champ); }

.service h3 { transition: transform 0.55s var(--ease-out); }
.service:hover h3 { transform: translateX(4px); }

.service-meta strong {
  display: inline-block;
  transition: transform 0.5s var(--ease-out);
}

.service:hover .service-meta strong { transform: scale(1.07); }

/* ---------- Ablauf: Ring um die Schrittzahl zeichnet sich ---------- */

/* Positionierung kommt aus der Ablauf-Sektion — hier nur der Ring darueber legen */
.step-num { overflow: visible; }

.step-num svg {
  position: absolute;
  inset: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: rotate(-90deg);
  pointer-events: none;
}

.step-num circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-dasharray: var(--circ, 160);
  stroke-dashoffset: var(--circ, 160);
  transition: stroke-dashoffset 1.4s var(--ease-out) var(--d, 0s);
}

.step.in-view .step-num circle { stroke-dashoffset: 0; }

.step-num span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.6s var(--ease-out);
}

.step:hover .step-num span { transform: scale(1.15); }

/* ---------- Preise: Featured Card atmet ---------- */

.price-card--featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(70% 45% at 50% 0%, rgba(214, 148, 69, 0.18), transparent 70%);
  animation: cardglow 6s ease-in-out infinite alternate;
}

@keyframes cardglow {
  from { opacity: 0.5; }
  to   { opacity: 1; }
}

.price-value {
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.price-card:hover .price-value { transform: scale(1.05); }

/* ---------- Chips: springen versetzt herein ---------- */

.chip {
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out),
              border-color 0.3s, color 0.3s, background-color 0.3s;
  transition-delay: var(--d, 0s);
}

.chip.in-view { opacity: 1; transform: none; }

/* ---------- Testimonials: Anfuehrung waechst ---------- */

.testimonial-mark {
  display: inline-block;
  transform-origin: left bottom;
  transition: transform 0.7s var(--ease-out), color 0.4s;
}

.testimonial:hover .testimonial-mark { transform: scale(1.25) rotate(-6deg); color: var(--champ); }

/* ---------- Kontaktkanaele: Icon dreht sanft ---------- */

.channel-icon { transition: transform 0.6s var(--ease-out), border-color 0.4s; }
.channel:hover .channel-icon { transform: scale(1.08) rotate(-5deg); border-color: rgba(201, 160, 108, 0.5); }

.channel-value { transition: transform 0.5s var(--ease-out); }
.channel:hover .channel-value { transform: translateX(3px); }

/* ---------- Zeigergeraete ohne Hover: Effekte aus ---------- */

@media (hover: none) {
  .spot::after { display: none; }
  .btn { transform: none; }
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row--2 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .scroll-hint { display: flex; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  /* Vier Leistungen bleiben bewusst zweispaltig — drei Spalten liessen
     die vierte Karte allein in einer zweiten Reihe stehen. */
  .about-grid { grid-template-columns: 0.9fr 1.1fr; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .nav-toggle { display: none; }
}

@media (min-width: 1100px) {
  /* Ab hier alle vier Schritte nebeneinander — die Abfolge wird als Reihe lesbar */
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 2.4rem 1.6rem; }
}

@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  .hero-copy > *, .hero-visual { opacity: 1; transform: none; animation: none; }
  .reveal { opacity: 1; transform: none; }
  .split .word-i { transform: none; }
  .split .word { overflow: visible; }
  .chip { opacity: 1; transform: none; }
  .eyebrow::before, .eyebrow--center::after { transform: scaleX(1); }
  .stat + .stat::before { transform: scaleY(1); }
  .step-num circle { stroke-dashoffset: 0; }
  .spot::after { display: none; }
  .area-video, .strip-media img { transform: none; }
  .pin { opacity: 1; animation: none; }
  .pin::before, .pin::after { animation: none; opacity: 0.5; }
}
