/* Estebelle — Production Stylesheet */

/* ========== FOUNDATION ========== */
:root {
  /* === Color tokens === Estebelle Brand Identity === */
  --ink: #2A2826;             /* Warmes Anthrazit (harmoniert mit Cream, kein Blau-/Grünstich) */
  --ink-soft: #4A4744;        /* Helleres warmes Anthrazit */
  --graphite: #6E6A62;        /* Warmes Grau für sekundäre Texte */
  --mist: #B5A99A;            /* Warmes hellgraues Beige */
  --line: rgba(42, 40, 38, 0.10);
  --line-soft: rgba(42, 40, 38, 0.05);

  --cream: #EDE5D3;           /* Warmer Pergament-Hintergrund (statt blau-stichig) */
  --cream-warm: #F4ECD9;      /* Noch wärmeres Cream */
  --sand: #E3D7BC;            /* Beige der Visitenkarten im Mockup */
  --paper: #F8F2E2;           /* Hellstes Cream für Cards / Hover-States */

  /* Champagne-Akzent (ersetzt Rose) — Goldband & Wachssiegel aus dem Mockup */
  --rose: #BFA17D;            /* Champagne-Gold (statt Rose) */
  --rose-soft: #DBC8AA;       /* Helleres Champagne für subtile Highlights */
  --rose-deep: #9F8662;       /* Dunkleres Champagne für Hover */
  --gold: #BFA17D;            /* Gleicher Wert für Konsistenz */
  --gold-deep: #9F8662;

  /* === Typography === */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, sans-serif;
  --script: 'Dancing Script', cursive;

  /* === Fluid Type Scale ===
     Alle Werte skalieren smooth mit der Viewport-Breite.
     min → bei kleinstem Bildschirm, max → bei größtem.    */
  --type-xs:       clamp(10px,  0.7vw + 8px,  12px);
  --type-sm:       clamp(12px,  0.7vw + 10px, 14px);
  --type-base:     clamp(14px,  0.5vw + 13px, 16px);
  --type-md:       clamp(15px,  0.8vw + 13px, 18px);
  --type-lg:       clamp(16px,  1vw + 14px,   20px);
  --type-xl:       clamp(18px,  1.5vw + 14px, 24px);
  --type-2xl:      clamp(22px,  2vw + 16px,   32px);
  --type-3xl:      clamp(28px,  3vw + 18px,   48px);
  --type-4xl:      clamp(36px,  4vw + 20px,   64px);
  --type-5xl:      clamp(40px,  5vw + 22px,   80px);
  --type-display:  clamp(40px,  8vw + 16px,  112px);

  /* === Fluid Spacing Scale === */
  --space-3xs:  clamp(4px,   0.3vw + 3px,   6px);
  --space-2xs:  clamp(8px,   0.5vw + 6px,   12px);
  --space-xs:   clamp(12px,  0.8vw + 9px,   18px);
  --space-sm:   clamp(16px,  1vw + 12px,    24px);
  --space-md:   clamp(24px,  2vw + 16px,    40px);
  --space-lg:   clamp(36px,  3vw + 24px,    56px);
  --space-xl:   clamp(48px,  4vw + 32px,    80px);
  --space-2xl:  clamp(64px,  6vw + 40px,    120px);
  --space-3xl:  clamp(96px,  9vw + 56px,    180px);

  /* === Section padding (Top/Bottom) === */
  --section-pad-y: clamp(64px, 11vw, 140px);

  /* === Layout === */
  --max-w: 1320px;
  --pad-x: clamp(16px, 4vw, 64px);

  /* === Card / component padding === */
  --card-pad: clamp(24px, 3vw, 48px);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

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

p { color: var(--graphite); }

/* ========== TYPOGRAPHY UTILS ========== */
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--rose);
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: 16px;
}

.script {
  font-family: var(--script);
  font-weight: 500;
  font-style: normal;
  color: var(--rose);
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 4.5vw, 64px); line-height: 1.1; }
h3 { font-size: clamp(24px, 2.5vw, 36px); }
h4 { font-size: 22px; }

.tagline-small {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose);
}

/* ========== LAYOUT ========== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section {
  padding: var(--section-pad-y) 0;
  position: relative;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: clamp(14px, 1.4vw, 18px) clamp(22px, 2.8vw, 38px);
  font-family: var(--sans);
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid transparent;
}

/* KORREKTUR 21.08.2026 — gemessen, nicht geschaetzt:
   Creme auf Champagner-Gold ergab 2,18:1. WCAG verlangt 4,5:1 fuer Fliesstext,
   und das hier sind die wichtigsten Knoepfe der Seite. Tiefes Anthrazit auf
   demselben Gold ergibt 6,05:1 — die Markenfarbe bleibt unangetastet, nur die
   Schrift dreht sich um. Beim Zeigen kehrt der Knopf ganz um (13,1:1). */
.btn-primary {
  background: var(--rose);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(42, 40, 38, 0.22);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.6);
}

.btn-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: all 300ms;
}

.btn-link:hover {
  color: var(--rose);
  border-color: var(--rose);
  gap: 16px;
}

.arrow {
  display: inline-block;
  transition: transform 300ms;
  font-size: 14px;
}

.btn:hover .arrow, .btn-link:hover .arrow {
  transform: translateX(4px);
}

/* ========== TOP BAR ========== */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 11px 0;
  position: relative;
}

.topbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(191, 161, 125, 0.25), transparent);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.topbar-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-tag-script {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--rose-soft);
  letter-spacing: 0.01em;
  font-weight: 400;
}

.topbar-tag-divider {
  color: var(--rose);
  opacity: 0.5;
  font-size: 10px;
}

.topbar-tag-place {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  transition: color 300ms;
}

.topbar-action svg { opacity: 0.6; transition: opacity 300ms; }
.topbar-action:hover { color: var(--rose-soft); }
.topbar-action:hover svg { opacity: 1; }

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

.topbar-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar-icon:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ========== NAVIGATION ========== */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  background: rgba(237, 229, 211, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  box-shadow: 0 4px 18px rgba(42, 40, 38, 0.04);
  transition: padding 350ms cubic-bezier(0.16, 1, 0.3, 1),
              background-color 350ms ease,
              box-shadow 350ms ease,
              border-color 350ms ease;
  will-change: padding;
  transform: translateZ(0);
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(237, 229, 211, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(42, 40, 38, 0.08);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 44px;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 350ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: calc(100% + 8px); }

.nav-links a.active { color: var(--rose); }
.nav-links a.active::after { width: calc(100% + 8px); }

.nav-cta {
  padding: 14px 26px !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  opacity: 0;
  transition: opacity 400ms;
  z-index: 0;
}

.nav-cta > * { position: relative; z-index: 1; }
.nav-cta:hover::before { opacity: 1; }

.nav-cta:hover {
  box-shadow: 0 14px 32px rgba(159, 134, 98, 0.32);
  transform: translateY(-2px);
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: calc(110px + env(safe-area-inset-top)) 24px calc(40px + env(safe-area-inset-bottom));
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mobile-menu-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--rose);
  margin-bottom: 24px;
  text-align: center;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.mobile-menu-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .mobile-menu-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 150ms; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 220ms; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 290ms; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 360ms; }
.mobile-menu.open .mobile-menu-link:nth-child(5) { transition-delay: 430ms; }

.mobile-menu-link:hover { background: rgba(191, 161, 125, 0.04); padding-left: 16px; }

.mobile-menu-num {
  font-family: var(--script);
  font-size: 20px;
  color: var(--rose);
  line-height: 1;
}

.mobile-menu-text {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.mobile-menu-arrow {
  font-size: 18px;
  color: var(--rose);
  opacity: 0.5;
  transition: all 300ms;
}

.mobile-menu-link:hover .mobile-menu-arrow {
  opacity: 1;
  transform: translateX(6px);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 500ms 500ms;
}

.mobile-menu.open .mobile-menu-footer { opacity: 1; }

.mobile-menu-cta {
  justify-content: center !important;
  padding: 18px 36px !important;
  font-size: 12px !important;
  min-width: 240px;
}

.mobile-menu-social {
  display: flex;
  gap: 16px;
}

.mobile-menu-social a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 300ms;
}

.mobile-menu-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--paper);
  transform: translateY(-3px);
}

body.menu-open { overflow: hidden; }

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: flex-start;
  transition: opacity 300ms ease;
}

.logo:hover { opacity: 0.75; }

.logo-img {
  height: 130px;
  width: auto;
  display: block;
  transition: height 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled .logo-img {
  height: 88px;
}

.logo-img-large {
  height: 180px;
}

.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 50%;
  transition: all 300ms;
  z-index: 101;
}

.nav-mobile-toggle:hover { background: rgba(191, 161, 125, 0.08); }

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  position: absolute;
  left: 9px;
  transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-toggle span:nth-child(1) { top: 14px; }
.nav-mobile-toggle span:nth-child(2) { top: 19px; width: 16px; }
.nav-mobile-toggle span:nth-child(3) { top: 24px; }

.nav-mobile-toggle.active span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-mobile-toggle.active span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
  width: 22px;
}

/* ========== HERO (Split-Layout mit Video) ========== */
.hero {
  position: relative;
  background: var(--cream);
  padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 130px);
  overflow: hidden;
}

/* Dezente goldene Linie unten (Übergang zur nächsten Section) */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(191, 161, 125, 0.25), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

/* ----- Left Column: Content ----- */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .hero-eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--rose-deep);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  line-height: 1.4;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 6.2vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 32px;
}

.hero-content h1 .script-accent {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 540px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* ----- Right Column: Video ----- */
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  box-shadow:
    0 40px 80px -20px rgba(42, 40, 38, 0.25),
    0 20px 40px -16px rgba(159, 134, 98, 0.15);
}

.hero-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Decorative frame lines (top + bottom) */
.hero-video-frame-line {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 3;
  pointer-events: none;
}
.hero-video-frame-line--top { top: 18px; }
.hero-video-frame-line--bot { bottom: 18px; }

/* Custom play button overlay */
.hero-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  cursor: pointer;
  /* Der Grund ist ein laufendes Video — ein Kontrastwert laesst sich dort nicht
     rechnen, weil er sich mit jedem Bild aendert. Deshalb ein kraeftigerer
     Verlauf plus Schattenkante: die Schrift steht dann auf JEDEM Frame. */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.55) 100%);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.65);
  transition: background 400ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  border: none;
  color: inherit;
  font: inherit;
  padding: 0;
}

.hero-video-play:hover { background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.45) 100%); }

.hero-video-play.playing { opacity: 0; pointer-events: none; }

.hero-video-play-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-video-play:hover .hero-video-play-circle { transform: scale(1.08); }
.hero-video-play-circle svg { margin-left: 4px; }

.hero-video-play-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.hero-video-play-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-video-play-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.005em;
}

/* Corner badge */
.hero-video-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
  z-index: 3;
  pointer-events: none;
}

.hero-video-badge-script {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-video-badge-tag {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ========== CONSULTATION STRIP ========== */
.consult-strip {
  background: var(--cream-warm);
  padding: 80px 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.consult-text .eyebrow { font-size: 20px; margin-bottom: 12px; }

.consult-text h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 0;
  line-height: 1.15;
}

.consult-text h3 .script-accent {
  font-family: var(--script);
  color: var(--rose);
  font-size: 1em;
  display: inline-block;
  letter-spacing: 0;
}

.consult-form p {
  margin-bottom: 20px;
  font-size: 15px;
}

.consult-form p strong {
  color: var(--ink);
  font-weight: 500;
}

.consult-form a {
  color: var(--rose);
  font-weight: 500;
  border-bottom: 1px solid var(--rose-soft);
  padding-bottom: 2px;
  transition: all 300ms;
}

.consult-form a:hover { color: var(--rose-deep); border-color: var(--rose-deep); }

.consult-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin: 20px 0;
}

.consult-input-row input {
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 300ms;
}

.consult-input-row input:focus { border-color: var(--rose); }

.consult-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--graphite);
}

.consult-checkbox input {
  margin-top: 4px;
  accent-color: var(--rose);
}

/* ========== FEATURES (4-column) ========== */
.features {
  background: var(--cream);
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature {
  text-align: center;
  padding: 0 32px;
  position: relative;
  transition: transform 400ms;
}

.feature:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--line);
}

.feature:hover { transform: translateY(-6px); }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  color: var(--rose);
}

.feature h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--graphite);
}

/* ========== ABOUT ========== */
.about {
  background: var(--cream);
  padding: var(--section-pad-y) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
}

.about-image {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(135deg, rgba(191, 161, 125, 0.15), rgba(42, 40, 38, 0.05)),
    url('../images/about.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
}

.about-content .eyebrow { font-size: 22px; }

.about-content h2 {
  margin-bottom: 32px;
  font-size: clamp(36px, 4.5vw, 64px);
}

.about-content h2 .script-accent {
  font-family: var(--script);
  color: var(--rose);
  font-size: 1.05em;
  letter-spacing: 0;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 560px;
}

.about-content .btn-outline { margin-top: 28px; }

/* ========== SERVICES ========== */
.services-section {
  background: var(--cream-warm);
  padding: var(--section-pad-y) 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.section-head .eyebrow { font-size: 22px; }
.section-head h2 .script-accent { font-family: var(--script); color: var(--rose); letter-spacing: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.service-card {
  position: relative;
  aspect-ratio: 590/730;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
}

.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img { transform: scale(1.08); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 25, 24, 0) 30%, rgba(30, 25, 24, 0.85) 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 36px;
  color: var(--paper);
  z-index: 2;
}

.service-card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-soft);
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid rgba(219, 200, 170, 0.4);
}

.service-card h3 {
  color: var(--paper);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}

.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 500ms;
}

.service-card:hover .service-card-desc {
  max-height: 80px;
  opacity: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-soft);
  font-weight: 500;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--rose-soft);
  transition: all 300ms;
}

.service-card-link:hover { color: var(--paper); border-color: var(--paper); gap: 16px; }

.services-cta {
  text-align: center;
  margin-top: 60px;
}

/* ========== DOCTORS / QUOTE SECTION ========== */
.doctors {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}

.doctors::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, rgba(42, 40, 38, 0.92), rgba(42, 40, 38, 0.75)),
    url('../images/process-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.95;
}

.doctors-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.doctors .eyebrow { color: var(--rose-soft); font-size: 22px; }

.doctors h2 {
  color: var(--paper);
  font-size: clamp(36px, 4.5vw, 64px);
  margin-bottom: 32px;
  font-weight: 400;
}

.doctors h2 .script-accent {
  font-family: var(--script);
  color: var(--rose-soft);
  letter-spacing: 0;
}

.doctors p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* Matching-Prozess */
.match-head {
  position: relative;
  z-index: 2;
  max-width: 820px;
  text-align: center;
  margin: 0 auto 80px;
}

.match-head h2 {
  color: var(--paper);
  font-size: clamp(36px, 4.5vw, 64px);
  margin-bottom: 28px;
  font-weight: 400;
}

.match-head h2 .script-accent {
  font-family: var(--script);
  color: var(--rose-soft);
  letter-spacing: 0;
}

.match-head p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto;
  font-weight: 300;
}

.match-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 80px;
}

.match-step {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}

.match-step:last-child { border-right: none; }

.match-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.match-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.match-step-num {
  font-family: var(--script);
  font-size: 56px;
  color: var(--rose-soft);
  line-height: 1;
  margin-bottom: 28px;
  font-weight: 500;
}

.match-step h4 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 16px;
  line-height: 1.2;
}

.match-step p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: none;
  margin: 0;
}

.match-cta {
  position: relative;
  z-index: 2;
  text-align: center;
}

.match-cta-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: var(--serif);
  font-style: italic;
  max-width: none;
}

/* ========== CONTACT INFO ========== */
.contact-info {
  background: var(--cream-warm);
  padding: var(--section-pad-y) 0;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(191, 161, 125, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-headline .eyebrow { font-size: 22px; }

.contact-headline h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4.5vw, 56px);
}

.contact-headline h2 .script-accent {
  font-family: var(--script);
  color: var(--rose);
  letter-spacing: 0;
}

.contact-headline p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--graphite);
  font-weight: 300;
  line-height: 1.5;
}

.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-block {
  background: var(--paper);
  padding: 40px 36px;
  border: 1px solid var(--line);
  transition: all 400ms;
}

.contact-block:hover {
  border-color: var(--rose-soft);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(42, 40, 38, 0.06);
}

.contact-block-link {
  display: block;
  padding: 56px 48px;
  text-decoration: none;
  cursor: pointer;
}

.contact-block-link:hover {
  border-color: var(--rose);
  background: var(--paper);
  box-shadow: 0 30px 60px rgba(159, 134, 98, 0.12);
}

.contact-block-link:hover .contact-block-icon { color: var(--rose-deep); }
.contact-block-link:hover .contact-block-cta { gap: 14px; color: var(--rose-deep); border-color: var(--rose-deep); }

.contact-block-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 4px;
  transition: all 300ms;
}

.contact-block-icon {
  width: 44px;
  height: 44px;
  color: var(--rose);
  margin-bottom: 24px;
}

.contact-block-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 12px;
  font-weight: 500;
}

.contact-block h4 {
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.contact-block p {
  font-size: 14px;
  line-height: 1.55;
}

.contact-block a {
  color: var(--rose);
  font-weight: 500;
  border-bottom: 1px solid var(--rose-soft);
  transition: all 300ms;
}

.contact-block a:hover { color: var(--rose-deep); }

/* ========== NEWS / BLOG ========== */
.news {
  background: var(--cream);
  padding: var(--section-pad-y) 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: all 400ms;
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(42, 40, 38, 0.08);
}

.news-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: var(--sand);
}

.news-card-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover .news-card-img-bg { transform: scale(1.06); }

.news-card-date {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--paper);
  padding: 12px 18px;
  z-index: 2;
  text-align: center;
  min-width: 64px;
}

.news-card-day {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 2px;
}

.news-card-month {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.news-card-body {
  padding: 32px 32px 36px;
}

.news-card-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}

.news-card h4 {
  font-size: 24px;
  margin-bottom: 18px;
  line-height: 1.3;
  transition: color 300ms;
}

.news-card:hover h4 { color: var(--rose); }

.news-card-link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: all 300ms;
  display: inline-flex;
  gap: 8px;
}

.news-card-link:hover { color: var(--rose); border-color: var(--rose); gap: 12px; }

/* ========== FOOTER ========== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 100px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand .logo { align-items: flex-start; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 24px 0;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
  color: var(--paper);
}

.footer-social a:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-3px);
}

.footer-col h5 {
  color: var(--paper);
  font-size: 18px;
  margin-bottom: 28px;
  font-weight: 400;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 14px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: all 300ms;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--rose-soft);
  transition: width 300ms;
}

.footer-col a:hover { color: var(--rose-soft); }
.footer-col a:hover::before { width: 14px; }

.footer-posts li {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-post-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--graphite);
}

.footer-post-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-post-content a {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.footer-post-content a:hover { color: var(--rose-soft); }
.footer-post-content a::before { display: none; }

.footer-post-date {
  font-size: 11px;
  color: var(--rose-soft);
  letter-spacing: 0.1em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

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

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--rose);
  color: var(--ink);           /* wie .btn-primary: 2,18 -> 6,05 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 400ms;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(159, 134, 98, 0.3);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-4px);
}

/* ========== REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 900ms cubic-bezier(0.16, 1, 0.3, 1), transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   Desktop-First-Stack mit präzisen Stufen für alle Devices.

   Reichweite (top → down):
   ≥1920px    Widescreen / Cinema / 4K
   ≤1680px    Large Desktop / MacBook 16"
   ≤1440px    MacBook 13/15", Standard Laptop
   ≤1280px    Small Laptop, iPad Pro 12.9" landscape
   ≤1024px    Tablet Landscape, iPad Pro 11" portrait  →  Hamburger ab hier
   ≤900px     Medium Tablet portrait
   ≤768px     Small Tablet / Phablet portrait
   ≤640px     Large Phone (Pro Max, Ultra)              →  Topbar verschwindet
   ≤480px     Standard Phone (iPhone 13/14/15)
   ≤380px     Tiny Phone (iPhone SE, kleine Android)
   ============================================================ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≥ 1920px  ·  Widescreen / Cinema / 4K
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 1920px) {
  :root { --max-w: 1480px; --pad-x: 80px; }
  .hero-grid { gap: 120px; }
  .hero-content h1 { font-size: clamp(64px, 6vw, 112px); }
  .section-head { margin-bottom: 100px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≤ 1680px  ·  Large Desktop / MacBook 16"
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1680px) {
  :root { --max-w: 1320px; }
  .nav-links { gap: 40px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≤ 1440px  ·  MacBook 13/15", Standard Laptop
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1440px) {
  :root { --max-w: 1200px; --pad-x: clamp(24px, 4vw, 56px); }
  .nav-links { gap: 32px; }
  .nav-inner { gap: 36px; }
  .logo-img { height: 118px; }
  .nav.scrolled .logo-img { height: 80px; }
  .hero-grid { gap: clamp(40px, 5vw, 80px); }
  .hero-content h1 { font-size: clamp(42px, 5.6vw, 80px); }
  .about-grid { gap: 80px; }
  .contact-grid { gap: 80px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≤ 1280px  ·  Small Laptop, iPad Pro 12.9" landscape
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1280px) {
  :root { --pad-x: clamp(20px, 3.5vw, 48px); }
  .nav-links { gap: 26px; }
  .nav-links a { font-size: 10.5px; letter-spacing: 0.2em; }
  .nav-cta { padding: 12px 22px !important; }
  .logo-img { height: 108px; }
  .nav.scrolled .logo-img { height: 76px; }
  .nav-inner { gap: 28px; }

  /* Hero: bleibt 2-spaltig, aber etwas kompakter */
  .hero-grid { gap: clamp(36px, 4vw, 64px); }
  .hero-content h1 { font-size: clamp(40px, 5vw, 68px); }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-video-play-circle { width: 76px; height: 76px; }

  .features-grid { gap: 0; }
  .feature { padding: 0 24px; }

  .service-card-content { padding: 36px 30px; }
  .service-card h3 { font-size: 28px; }

  .match-step { padding: 44px 26px; }
  .match-step-num { font-size: 50px; margin-bottom: 24px; }
  .match-step h4 { font-size: 24px; }

  .contact-block-link { padding: 48px 36px; }

  .footer-grid { gap: 48px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≤ 1024px  ·  Tablet Landscape, iPad Pro 11" portrait
   → Nav klappt zum Hamburger, Karten-Layouts werden vertikal
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  :root { --pad-x: clamp(20px, 4vw, 40px); }

  /* Topbar: nur das Wesentliche */
  .topbar-tag-place { display: none; }
  .topbar-action span { display: none; }
  .topbar-action { padding: 6px; }

  /* Nav: Hamburger sichtbar, CTA verschwindet, Logo strikt links */
  .nav-inner { grid-template-columns: 1fr auto; gap: 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 8px 0; }
  .logo-img { height: 96px; }
  .nav.scrolled .logo-img { height: 68px; }

  /* Hero: stackt zu 1 Spalte, Content + Video zentriert */
  .hero { padding: clamp(50px, 7vw, 80px) 0 clamp(60px, 8vw, 100px); }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 720px;
    margin: 0 auto;
  }
  .hero-content { max-width: 100%; text-align: left; }
  .hero-content h1 { font-size: clamp(44px, 6.5vw, 72px); }
  .hero-sub { font-size: 17px; max-width: 580px; }
  /* `width: 100%` ist Pflicht: `margin: 0 auto` schaltet bei einem Grid-Element das
     Dehnen ab, und der Inhalt ist restlos absolut positioniert - Eigenbreite 0.
     Ohne diese Zeile fallen Video UND Abspielknopf auf 0 x 0. (21.08.2026) */
  .hero-media { width: 100%; max-width: 540px; margin-inline: auto; }
  .hero-video { aspect-ratio: 4/5; width: 100%; max-width: 540px; margin-inline: auto; }

  /* Section spacings */
  .section-head { margin-bottom: 64px; }

  /* Consult */
  .consult-grid { grid-template-columns: 1fr; gap: 36px; }
  .consult-strip { padding: 64px 0; }

  /* Features: 2×2 Grid mit subtilen Vertikal-Linien */
  .features { padding: 80px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 0; }
  .feature { padding: 0 28px; }
  .feature::after { display: none; }
  .feature:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; height: 60%; width: 1px;
    background: var(--line);
  }

  /* About: 1-Spalte, Image-Tag wird zur eigenen Karte unter dem Bild */
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-image-wrap { max-width: 540px; margin: 0 auto; aspect-ratio: 4/4; }
  /* Services: direkt 1-Spalte als "Service-Banner" (kein hängendes 3. Card mehr) */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 720px;
    margin: 0 auto;
  }
  .service-card { aspect-ratio: 16/10; }
  .service-card-content { padding: 36px 40px; }
  .service-card h3 { font-size: 30px; }
  .service-card-desc { max-height: none; opacity: 1; }

  /* Matching: 2×2 mit cleaner Trennlinien (Border auf erste Reihe + odd) */
  .match-steps { grid-template-columns: repeat(2, 1fr); }
  .match-step { padding: 40px 28px; border: none; }
  .match-step::before, .match-step::after { display: none; }
  .match-step:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
  .match-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.12); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-blocks { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .contact-block-link { padding: 44px 32px; }

  /* Footer: 2×2, Brand spans 2 */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-brand { grid-column: span 2; max-width: 600px; }

  /* Touch-Targets ≥ 48px */
  .btn { padding: 16px 28px; min-height: 48px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≤ 900px  ·  Medium Tablet portrait (iPad standard)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {
  .hero-content h1 { font-size: clamp(44px, 8vw, 72px); line-height: 1.05; }
  .hero-content .hero-eyebrow { font-size: 16px; margin-bottom: 22px; }

  .section-head h2 { font-size: clamp(34px, 5.5vw, 52px); }
  .about-content h2 { font-size: clamp(34px, 5.5vw, 52px); }
  .consult-text h3 { font-size: clamp(28px, 4vw, 40px); }

  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≤ 768px  ·  Small Tablet portrait / Phablet
   → Multi-Column-Karten → 1 Spalte
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  /* Features: 1 Spalte mit eleganten Linien zwischen Items */
  .features-grid { grid-template-columns: 1fr; gap: 0; }
  .feature {
    padding: 36px 16px;
    border-bottom: 1px solid var(--line);
  }
  .feature:last-child { border-bottom: none; }
  .feature::after, .feature:nth-child(odd)::after { display: none !important; }
  .feature-icon { margin-bottom: 20px; width: 56px; height: 56px; }

  /* Services: full-width vertikal portrait */
  .services-grid { grid-template-columns: 1fr; gap: 20px; max-width: 100%; }
  .service-card { aspect-ratio: 4/5; }
  .service-card-content { padding: 32px 28px; }

  /* Matching: stacked mit horizontalen Trennlinien */
  .match-steps { grid-template-columns: 1fr; }
  .match-step {
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
    padding: 36px 24px;
  }
  .match-step:last-child { border-bottom: none !important; }

  /* Contact-Blocks: full-width */
  .contact-blocks { grid-template-columns: 1fr; gap: 16px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≤ 640px  ·  Large Phone (Pro Max, Galaxy Ultra)
   → Topbar verschwindet, Hero kompakter
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 640px) {
  :root { --pad-x: 20px; }

  /* Topbar weg, CTA verschwindet aus Nav */
  .topbar { display: none; }
  .nav-cta { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .nav { padding: 12px 0; }

  .logo-img { height: 78px; }
  .nav.scrolled .logo-img { height: 62px; }

  /* Hero kompakter, Video Square, Trust gestapelt */
  .hero { padding: 50px 0 70px; }
  .hero-grid { gap: 44px; }
  .hero-content h1 { font-size: clamp(40px, 10vw, 60px); }
  .hero-content .hero-eyebrow { font-size: 15px; margin-bottom: 22px; }
  .hero-sub { font-size: 16px; margin-bottom: 36px; line-height: 1.65; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .hero-video { aspect-ratio: 4/5; max-width: 100%; }
  .hero-video-play-circle { width: 72px; height: 72px; }
  .hero-video-play-title { font-size: 16px; }
  .hero-video-play-eyebrow { font-size: 9px; }
  .hero-video-badge { bottom: 20px; right: 20px; }
  .hero-video-badge-script { font-size: 15px; }
  .hero-video-frame-line { left: 14px; right: 14px; }
  .hero-video-frame-line--top { top: 14px; }
  .hero-video-frame-line--bot { bottom: 14px; }

  /* Sections */
  .section-head { margin-bottom: 52px; }
  .section-head h2 { font-size: clamp(32px, 8vw, 48px); }

  /* Headings */
  h2 { font-size: clamp(32px, 8vw, 48px); }

  /* Consult-Strip kompakter */
  .consult-strip { padding: 56px 0; }
  .consult-text h3 { font-size: clamp(28px, 7vw, 36px); }
  .consult-input-row { grid-template-columns: 1fr; gap: 10px; }
  .consult-input-row input { padding: 16px 20px; }
  .consult-input-row .btn { justify-content: center; }

  /* About: Tag bleibt static (von 1024 vererbt), nur Padding feiner */
  /* Services */
  .service-card-content { padding: 32px 26px; }
  .service-card h3 { font-size: 26px; }
  .service-card-desc { font-size: 13px; }

  /* Matching */
  .match-head { margin-bottom: 56px; }
  .match-step { padding: 32px 20px; }
  .match-step-num { font-size: 42px; margin-bottom: 18px; }
  .match-step h4 { font-size: 22px; }
  .match-step p { font-size: 14px; }

  /* Contact */
  .contact-block-link { padding: 36px 28px; }
  .contact-block h4 { font-size: 18px; word-break: break-word; }
  .contact-block p { font-size: 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-brand { grid-column: span 1; max-width: 100%; }
  .footer-bottom { font-size: 12px; }
  footer { padding: 72px 0 0; }

  /* Buttons */
  .btn { padding: 16px 24px; font-size: 11px; letter-spacing: 0.18em; }

  /* Scroll-to-top button */
  .scroll-top { width: 44px; height: 44px; bottom: 20px; right: 20px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≤ 480px  ·  Standard Phone (iPhone 13/14/15, Galaxy S22)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 480px) {
  :root { --pad-x: 18px; }

  .logo-img { height: 70px; }
  .nav.scrolled .logo-img { height: 56px; }

  /* Hero noch kompakter */
  .hero { padding: 40px 0 56px; }
  .hero-grid { gap: 36px; }
  .hero-content h1 { font-size: clamp(34px, 10.5vw, 48px); line-height: 1.06; }
  .hero-content .hero-eyebrow { font-size: 14px; margin-bottom: 18px; }
  .hero-sub { font-size: 15px; margin-bottom: 30px; }
  .hero-video-play-circle { width: 64px; height: 64px; }
  .hero-video-play-eyebrow { font-size: 9px; letter-spacing: 0.26em; }
  .hero-video-play-title { font-size: 15px; }

  /* Section padding tighter */
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: clamp(28px, 9vw, 40px); }

  /* Consult */
  .consult-strip { padding: 48px 0; }
  .consult-text h3 { font-size: clamp(26px, 7.5vw, 32px); }

  /* Features: bei stacked layout mehr Padding */
  .feature { padding: 32px 12px; }
  .feature h4 { font-size: 20px; }
  .feature p { font-size: 13px; }
  .feature-icon { width: 52px; height: 52px; margin-bottom: 18px; }

  /* Service card */
  .service-card-content { padding: 28px 22px; }
  .service-card h3 { font-size: 24px; }
  .service-card-tag { font-size: 9.5px; }

  /* About */
  .about-content h2 { font-size: clamp(30px, 8vw, 40px); }
  .about-content p { font-size: 15px; }

  /* Matching */
  .match-step { padding: 28px 18px; }
  .match-step-num { font-size: 38px; margin-bottom: 16px; }
  .match-step h4 { font-size: 20px; }
  .match-step p { font-size: 13px; }

  /* Contact */
  .contact-block-link { padding: 32px 24px; }
  .contact-block h4 { font-size: 17px; }

  /* Mobile menu */
  .mobile-menu { padding: 90px 20px 32px; }
  .mobile-menu-text { font-size: 24px; }
  .mobile-menu-num { font-size: 18px; }
  .mobile-menu-link { padding: 22px 4px; gap: 18px; }

  /* Buttons */
  .btn { padding: 15px 22px; font-size: 11px; }

  /* Footer */
  .footer-col h5 { font-size: 16px; margin-bottom: 20px; }
  .footer-col a { font-size: 13px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ≤ 380px  ·  Tiny Phone (iPhone SE 1, small Android)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 380px) {
  :root { --pad-x: 16px; }

  .logo-img { height: 62px; }
  .nav.scrolled .logo-img { height: 52px; }

  .hero { padding: 32px 0 48px; }
  .hero-grid { gap: 32px; }
  .hero-content h1 { font-size: clamp(28px, 10vw, 38px); }
  .hero-content .hero-eyebrow { font-size: 13px; }
  .hero-sub { font-size: 14px; }
  .hero-video-play-circle { width: 56px; height: 56px; }
  .hero-video-play-circle svg { width: 18px; height: 22px; }
  .hero-video-play-eyebrow { display: none; }

  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(26px, 9vw, 34px); }

  .consult-text h3 { font-size: clamp(24px, 7.5vw, 30px); }

  .service-card { aspect-ratio: 3/4; }
  .service-card h3 { font-size: 22px; }
  .service-card-content { padding: 24px 20px; }

  .match-step h4 { font-size: 19px; }
  .match-step p { font-size: 12.5px; }

  .contact-block-link { padding: 28px 20px; }
  .contact-block h4 { font-size: 16px; }
  .contact-block p { font-size: 13px; }

  .mobile-menu-text { font-size: 22px; }
  .mobile-menu-num { font-size: 17px; }
  .mobile-menu-cta { min-width: 200px; padding: 16px 28px !important; }

  .btn { padding: 14px 20px; font-size: 10.5px; letter-spacing: 0.16em; }

  .scroll-top { width: 40px; height: 40px; bottom: 16px; right: 16px; }

  /* Tiny phones: features padding noch enger */
  .feature { padding: 28px 8px; }
  .feature h4 { font-size: 18px; }
  .feature p { font-size: 12.5px; }

  /* Mobile menu noch kompakter */
  .mobile-menu { padding: 80px 16px 32px; padding-top: calc(80px + env(safe-area-inset-top)); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Touch-Target Optimization (alle Mobile-Geräte)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) and (pointer: coarse) {
  /* Alle interaktiven Elemente sollen ≥44×44px sein */
  .btn, .nav-cta, button, a.btn { min-height: 48px; }
  .consult-input-row input { min-height: 48px; padding: 14px 20px; font-size: 16px; }
  .consult-input-row .btn { min-height: 50px; }
  .contact-block-link { min-height: 200px; }
  .mobile-menu-link { min-height: 64px; }
  .footer-col a { padding: 4px 0; min-height: 32px; }

  /* Disable hover-states auf Touch (verhindert "sticky hover") */
  .service-card:hover .service-card-img { transform: none; }
  .nav-links a:hover::after { width: 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Landscape Phones (Hero soll nicht 100vh sein wenn quer)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 900px) {
  .hero { padding: 80px 0 40px; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 100%;
    margin: 0;
  }
  .hero-content h1 { font-size: clamp(28px, 5vw, 42px); margin-bottom: 16px; }
  .hero-content .hero-eyebrow { margin-bottom: 14px; font-size: 13px; }
  .hero-sub { margin-bottom: 24px; font-size: 14px; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .hero-ctas .btn { width: auto; }
  .hero-media { width: 100%; max-width: 100%; margin: 0; }
  .hero-video { aspect-ratio: 16/10; width: 100%; max-width: 100%; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Hochauflösende Bildschirme: schärfere Logos / Icons
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-img, .service-card-img, .about-image {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Reduced Motion: für Accessibility & Performance
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============================================================
   VIDEO MODAL — öffnet bei Klick auf Hero-Play-Button
   Statt nativem Fullscreen → eigenes Modal mit kontrollierter Größe
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 16, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 450ms cubic-bezier(0.16, 1, 0.3, 1);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px);
  padding-top: max(clamp(40px, 6vw, 80px), env(safe-area-inset-top));
  padding-bottom: max(clamp(40px, 6vw, 80px), env(safe-area-inset-bottom));
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: min(85vh, 85dvh);
  max-width: 100%;
  width: auto;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: scale(0.92);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1) 50ms;
}

.video-modal.open .video-modal-frame {
  transform: scale(1);
}

.video-modal-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: clamp(16px, 3vw, 32px);
  right: clamp(16px, 3vw, 32px);
  top: max(clamp(16px, 3vw, 32px), env(safe-area-inset-top));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 350ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  padding: 0;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.3);
}

.video-modal-hint {
  position: absolute;
  bottom: clamp(20px, 3vw, 36px);
  bottom: max(clamp(20px, 3vw, 36px), env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
}

body.video-modal-open {
  overflow: hidden;
}

/* Auf sehr kleinen Bildschirmen: Hint einklappen damit Modal-Frame Platz bekommt */
@media (max-height: 600px), (max-width: 380px) {
  .video-modal-hint { display: none; }
  .video-modal { padding: 50px 16px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Kontaktleiste rechts (21.08.2026)
   Drei Wege, die immer erreichbar bleiben. Ausgeklappt wird per Text, nicht
   per Sprechblase: Ein Etikett, das erst beim Zeigen erscheint, ist auf dem
   Handy unerreichbar — dort steht deshalb nur das Zeichen, gross genug zum
   Treffen (44 px, WCAG 2.2 SC 2.5.8 verlangt 24).
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.kontaktleiste {
  position: fixed;
  right: clamp(12px, 1.4vw, 22px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kontaktleiste__knopf {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px -12px rgba(42, 40, 38, 0.34);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: background 320ms cubic-bezier(0.16, 1, 0.3, 1),
              color 320ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.kontaktleiste__knopf svg { flex: 0 0 auto; }

/* Der Text liegt bereit und faltet sich beim Zeigen auf. `max-width` statt
   `display`, damit der Uebergang laeuft. */
.kontaktleiste__text {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 340ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 220ms ease,
              margin-left 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Nur mit echtem Zeiger aufklappen: Auf dem Handy bleibt :hover nach einem
   Tipp kleben, die Leiste stuende dann dauerhaft offen im Bild. */
@media (hover: hover) and (pointer: fine) {
  .kontaktleiste__knopf:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--paper);
  }
  .kontaktleiste__knopf:hover .kontaktleiste__text {
    max-width: 120px;
    opacity: 1;
    margin-left: 10px;
  }
}

.kontaktleiste__knopf:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}
.kontaktleiste__knopf:focus-visible .kontaktleiste__text {
  max-width: 120px;
  opacity: 1;
  margin-left: 10px;
}

/* KORREKTUR 21.08.2026: WhatsApp stand vorher auf `--ink` und las sich als
   schwarzer Klotz, sobald ein Nachbar aufleuchtete. Alle drei tragen jetzt
   denselben ruhigen Grundzustand — hervorgehoben wird nur, worauf man zeigt.
   WhatsApp bleibt trotzdem erkennbar der erste Weg: durch die Position oben
   und das goldene Zeichen. */
.kontaktleiste__knopf--wa { color: var(--rose-deep); border-color: var(--rose-soft); }
@media (hover: hover) and (pointer: fine) {
  .kontaktleiste__knopf--wa:hover { color: var(--paper); }
}

@media (max-width: 640px) {
  .kontaktleiste { right: 10px; gap: 8px; }
  .kontaktleiste__knopf { min-width: 44px; height: 44px; padding: 0 12px; }
}

/* Beim offenen Video-Fenster und offenem Menue tritt die Leiste zurueck. */
body.video-modal-open .kontaktleiste,
body.menu-open .kontaktleiste { opacity: 0; pointer-events: none; }
.kontaktleiste { transition: opacity 240ms ease; }

@media (prefers-reduced-motion: reduce) {
  .kontaktleiste, .kontaktleiste__knopf, .kontaktleiste__text { transition: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Sprachwahl (21.08.2026, aufklappend seit 21.08. abends)
   Drei Flaggen untereinander waren zu viel Gewicht fuer eine Nebensache.
   Sichtbar ist nur noch die AKTUELLE Sprache; die Auswahl klappt bei Klick
   nach links auf — dorthin, wo Platz ist, nicht nach unten in den Inhalt.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sprachwahl {
  position: relative;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
}

.sprachwahl__schalter {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
  box-shadow: 0 10px 24px -12px rgba(42, 40, 38, 0.34);
  transition: border-color 260ms ease;
}
.sprachwahl__schalter[aria-expanded="true"] { border-color: var(--rose); }
.sprachwahl__schalter svg { display: block; border-radius: 50%; }
.sprachwahl__aktuell[hidden] { display: none; }

/* Die Liste faehrt nach LINKS auf, auf gleicher Hoehe wie der Schalter. */
.sprachwahl__liste {
  position: absolute;
  right: 54px;
  top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px -14px rgba(42, 40, 38, 0.4);
}
.sprachwahl__liste[hidden] { display: none; }

.sprachwahl__knopf {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: background 200ms ease, border-color 200ms ease;
}
.sprachwahl__knopf svg { display: block; border-radius: 50%; flex: 0 0 auto; }

@media (hover: hover) and (pointer: fine) {
  .sprachwahl__knopf:hover { background: var(--cream-warm); }
}
/* Die gewaehlte Sprache traegt als einzige den Goldring. */
.sprachwahl__knopf[aria-pressed="true"] { border-color: var(--rose); background: var(--cream-warm); }

.sprachwahl__schalter:focus-visible,
.sprachwahl__knopf:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; }

@media (max-width: 640px) {
  .sprachwahl { margin-top: 10px; padding-top: 10px; }
  .sprachwahl__schalter { width: 44px; height: 44px; }
  .sprachwahl__liste { right: 50px; top: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .sprachwahl__schalter, .sprachwahl__knopf { transition: none; }
}

/* ========== RECHTSSEITEN (AGB, Impressum, Datenschutz) ========== */
.rechtsseite {
  padding-top: clamp(140px, 16vw, 220px);
  padding-bottom: var(--space-3xl);
  background: var(--cream);
}
.rechtsseite h1 {
  font-size: clamp(36px, 5vw, 68px);
  margin-bottom: var(--space-2xs);
}
.rechtsseite .rechtsseite-stand {
  font-family: var(--sans);
  font-size: var(--type-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: var(--space-xl);
}
.rechtsseite h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  margin: var(--space-lg) 0 var(--space-2xs);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--line);
}
.rechtsseite h3 {
  font-family: var(--sans);
  font-size: var(--type-md);
  font-weight: 500;
  margin: var(--space-sm) 0 var(--space-3xs);
}
.rechtsseite p,
.rechtsseite li {
  font-size: var(--type-base);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 68ch;
}
.rechtsseite p { margin-bottom: var(--space-2xs); }
.rechtsseite ul { margin: 0 0 var(--space-2xs) 1.1em; }
.rechtsseite li { margin-bottom: var(--space-3xs); list-style: disc; }
.rechtsseite a { color: var(--rose-deep); text-decoration: underline; text-underline-offset: 3px; }
.rechtsseite a:hover { color: var(--ink); }
.rechtsseite .platzhalter {
  background: rgba(191, 161, 125, 0.18);
  border-bottom: 1px dashed var(--rose-deep);
  padding: 0 3px;
  font-style: normal;
}
.rechtsseite .entwurfshinweis {
  border: 1px solid var(--rose-deep);
  background: var(--paper);
  padding: var(--space-sm);
  margin-bottom: var(--space-lg);
  max-width: 68ch;
}
.rechtsseite .entwurfshinweis p { margin-bottom: 0; font-size: var(--type-sm); }
.rechtsseite .entwurfshinweis strong { color: var(--ink); }

/* ========== FAQ-SEITE ========== */
.faq-liste { margin-top: var(--space-lg); }
.faq-eintrag {
  border-top: 1px solid var(--line);
  padding: var(--space-sm) 0;
}
.faq-eintrag:last-child { border-bottom: 1px solid var(--line); }
.faq-eintrag > summary {
  display: flex;
  align-items: baseline;
  gap: var(--space-2xs);
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.3;
  color: var(--ink);
  min-height: 26px;
  transition: color 300ms ease;
}
.faq-eintrag > summary::-webkit-details-marker { display: none; }
.faq-eintrag > summary:hover { color: var(--rose-deep); }
.faq-eintrag > summary::after {
  content: '+';
  margin-left: auto;
  font-family: var(--sans);
  font-size: var(--type-xl);
  font-weight: 300;
  color: var(--rose);
  line-height: 1;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-eintrag[open] > summary::after { transform: rotate(45deg); }
.faq-antwort { padding-top: var(--space-2xs); }
.faq-antwort p,
.faq-antwort li {
  font-size: var(--type-base);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 68ch;
}
.faq-antwort p { margin-bottom: var(--space-2xs); }
.faq-antwort p:last-child { margin-bottom: 0; }
.faq-antwort ul { margin: 0 0 var(--space-2xs) 1.1em; }
.faq-antwort li { list-style: disc; margin-bottom: var(--space-3xs); }
.faq-schluss {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
}
.faq-schluss h2 {
  border: 0;
  padding: 0;
  margin: 0 0 var(--space-2xs);
  font-size: clamp(24px, 2.4vw, 34px);
}
.faq-schluss p { margin: 0 auto var(--space-sm); max-width: 52ch; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ auf der Startseite (21.08.2026)
   Ohne Skript: <details>/<summary> klappt von selbst, ist tastaturbedienbar
   und funktioniert auch ohne JavaScript. Das Pluszeichen ist reine Zierde und
   deshalb aus CSS gezeichnet statt als Bild.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-sektion {
  padding: clamp(64px, 9vw, 140px) 0;
  background: var(--cream-warm);
}

.faq-liste {
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-eintrag { border-bottom: 1px solid var(--line); }

.faq-eintrag summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2.2vw, 26px) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 25px);
  line-height: 1.32;
  color: var(--ink);
}
.faq-eintrag summary::-webkit-details-marker { display: none; }

@media (hover: hover) and (pointer: fine) {
  .faq-eintrag summary:hover { color: var(--rose-deep); }
}
.faq-eintrag summary:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 4px; }

/* Pluszeichen, das beim Aufklappen zum Minus wird */
.faq-zeichen {
  position: relative;
  flex: 0 0 auto;
  width: 22px; height: 22px;
}
.faq-zeichen::before,
.faq-zeichen::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  background: var(--rose-deep);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 320ms ease;
}
.faq-zeichen::before { width: 18px; height: 1.6px; transform: translate(-50%, -50%); }
.faq-zeichen::after  { width: 1.6px; height: 18px; transform: translate(-50%, -50%); }
.faq-eintrag[open] .faq-zeichen::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-antwort {
  padding: 0 0 clamp(20px, 2.4vw, 30px);
  max-width: 68ch;
}
.faq-antwort p {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(15px, 1.05vw, 16.5px);
  line-height: 1.72;
  color: var(--graphite);
}

@media (prefers-reduced-motion: reduce) {
  .faq-zeichen::before, .faq-zeichen::after { transition: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Einwilligung (21.08.2026)
   Unten angedockt statt bildschirmfuellend: Die Seite laedt nichts von
   Dritten, also gibt es nichts zu blockieren — ein Kasten, der alles
   zusperrt, waere Theater. Er nimmt der Kontaktleiste rechts nicht den Platz.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.einwilligung {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  padding: clamp(12px, 2vw, 22px);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.einwilligung[hidden] { display: none; }

.einwilligung__karte {
  pointer-events: auto;
  width: min(760px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -20px rgba(42, 40, 38, 0.42);
  padding: clamp(18px, 2.4vw, 28px);
  display: grid;
  gap: 12px;
}

.einwilligung__titel {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.28;
  color: var(--ink);
}

.einwilligung__text {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(13.5px, 1vw, 15px);
  line-height: 1.65;
  color: var(--graphite);
  max-width: 66ch;
}

.einwilligung__knoepfe {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.einwilligung__knoepfe .btn { padding: 13px 26px; }

/* Auf dem Handy fuellen die Knoepfe die Breite — nebeneinander waeren sie
   unter 360 px zu schmal zum sicheren Treffen. */
@media (max-width: 520px) {
  .einwilligung__knoepfe { flex-direction: column; }
  .einwilligung__knoepfe .btn { width: 100%; justify-content: center; }
}
