/* ============================================================
   SALON FEMPERIAL – Design-System
   Farben & Typografie laut Corporate Design und Vorlagen.md
   ============================================================ */

:root {
  --gold: #D4AE51;
  --gold-soft: rgba(212, 174, 81, 0.35);
  --gold-faint: rgba(212, 174, 81, 0.12);
  --black: #0F0F0F;
  --black-soft: #171512;
  --cream: #F7F3EC;
  --cream-deep: #EFE9DD;
  --text-light: #F4F4F4;
  --text-dark: #23211C;
  --muted: #8A8578;
  --serif: 'Playfair Display', 'Bodoni Moda', Georgia, serif;
  --sans: 'Jost', 'Montserrat', sans-serif;
  --transition: 0.35s cubic-bezier(0.25, 0.6, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body.theme-dark {
  background: var(--black);
  color: var(--text-light);
}

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

a { color: inherit; }

/* ---------- Typografie ---------- */

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.accent {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.lead { font-size: 1.15rem; color: var(--muted); }

.theme-dark .lead,
.on-dark .lead { color: #C9C4B8; }

/* ---------- Layout-Basics ---------- */

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7rem) 0; }

.section-dark {
  background: var(--black);
  color: var(--text-light);
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* Goldene Trennlinie mit Bogen-Glyphe */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.4rem 0;
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  flex: 0 0 52px;
  background: var(--gold);
}
.divider.center { justify-content: center; }
.divider svg { width: 26px; height: 26px; }

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

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 1rem 2.2rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, #E4C578, #C79B3E);
  color: var(--black);
  border-radius: 999px;
  box-shadow: 0 10px 30px -14px rgba(212, 174, 81, 0.6);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #EED08A, #D4AE51);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(212, 174, 81, 0.7);
}

.btn-outline { border-radius: 999px; }
.btn-outline-dark { border-radius: 999px; }

.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold-faint); transform: translateY(-2px); }

.btn-outline-dark { background: transparent; color: var(--text-dark); border-color: var(--text-dark); }
.btn-outline-dark:hover { background: var(--text-dark); color: var(--cream); }

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 174, 81, 0.18);
  transition: background var(--transition);
}
.site-header.scrolled { background: rgba(15, 15, 15, 0.92); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text-light);
}
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
}

.main-nav { display: flex; align-items: center; gap: 1.9rem; }
.main-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-light);
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }
.main-nav .btn { padding: 0.7rem 1.5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -8px; left: 0; }
.nav-toggle span::after { top: 8px; left: 0; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (Startseite) ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 70px;
  background: var(--black);
  color: var(--text-light);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 72% 45%, rgba(212, 174, 81, 0.13), transparent 65%);
  pointer-events: none;
}

/* ---------- Hero mit Video-Hintergrund (Startseite) ---------- */

.hero-video {
  padding: 0;
  background: var(--black) url('../assets/hero-hands.jpg') center 42%/cover no-repeat;
}

.hero-video .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(15,15,15,0.94) 0%, rgba(15,15,15,0.82) 32%, rgba(15,15,15,0.4) 62%, rgba(15,15,15,0.82) 100%),
    linear-gradient(0deg, rgba(15,15,15,0.75), transparent 45%);
}

.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.hero-video-content h1 { margin: 0 0 1.3rem; }
.hero-video-content .lead { max-width: 32rem; margin-bottom: 2.1rem; }

.hero-scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  opacity: 0.85;
  animation: bob 2.4s ease-in-out infinite;
}
.hero-scroll-cue span {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-scroll-cue svg { width: 16px; height: 16px; }
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; }
}
@media (max-width: 720px) {
  .hero-scroll-cue { display: none; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
}

.hero-copy h1 { margin: 0 0 1.4rem; }
.hero-copy .lead { max-width: 34rem; margin-bottom: 2.2rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #C9C4B8;
}
.trust-row .star { color: var(--gold); }

/* Bogen-Rahmen: Signature-Element */
.arch-frame {
  position: relative;
  width: min(420px, 82vw);
  margin-inline: auto;
  aspect-ratio: 3 / 4.2;
}
.arch-frame .arch-img {
  position: absolute;
  inset: 4.5%;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
}
.arch-frame .arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}
.arch-frame:hover .arch-img img { transform: scale(1.09); }
/* Foto-Wechsler im Bogen-Rahmen: mehrere Bilder, langsames Überblenden */
.arch-img.arch-slides img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease, transform 1.2s ease;
}
.arch-img.arch-slides img.is-active { opacity: 1; }
/* Hinweis unter den Schulungs-Preiskarten */
.price-card .p-note {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
}
.arch-frame svg.arch-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.arch-lines path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.6;
}
.draw .arch-lines path {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: drawline 2.2s ease forwards;
}
.draw .arch-lines path:nth-child(2) { animation-delay: 0.15s; }
.draw .arch-lines path:nth-child(3) { animation-delay: 0.3s; }
@keyframes drawline { to { stroke-dashoffset: 0; } }

/* ---------- Hero-Porträt (freigestellt mit Gold-Glow, Lorena-Stil) ---------- */

.hero-portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 460px;
  overflow: hidden;
}
.hero-portrait::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 115%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 174, 81, 0.42), rgba(212, 174, 81, 0.12) 42%, transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}
.hero-portrait img {
  position: relative;
  z-index: 1;
  max-height: 640px;
  width: auto;
}
.hero-portrait::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: radial-gradient(ellipse 72% 82% at 50% 44%, transparent 56%, rgba(15, 15, 15, 0.7) 82%, var(--black) 96%);
  pointer-events: none;
}
.hero-portrait .float-badge {
  position: absolute;
  z-index: 3;
  background: rgba(15, 15, 15, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 174, 81, 0.55);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.hero-portrait .float-badge.top { top: 16%; right: 2%; }
.hero-portrait .float-badge.bottom { bottom: 20%; left: 0; }

/* ---------- Social-Proof (Avatare + Sterne) ---------- */

.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--black);
  margin-left: -12px;
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--black);
}
.avatars span:first-child { margin-left: 0; }
.avatars .more { background: var(--gold); }
.social-proof .stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.95rem; }
.social-proof .proof-text { font-size: 0.85rem; color: #C9C4B8; line-height: 1.4; }
.social-proof .proof-text strong { color: var(--text-light); font-weight: 500; }

/* ---------- USP-Bogen-Emblem (kein Kasten, eigenes Element) ---------- */

.usp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.usp-item {
  text-align: center;
  padding: 0 2.4rem;
}
.usp-item + .usp-item { border-left: 1px solid rgba(212, 174, 81, 0.24); }

.usp-medal {
  position: relative;
  width: 84px;
  height: 116px;
  margin: 0 auto 1.5rem;
}
.usp-medal svg.usp-medal-shape {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
}
.usp-medal .usp-glyph {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
}
.usp-medal .usp-glyph svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.usp-item h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.usp-item p {
  color: #C9C4B8;
  font-size: 0.95rem;
  max-width: 21rem;
  margin-inline: auto;
}

@media (max-width: 820px) {
  .usp-row { grid-template-columns: 1fr; gap: 2.8rem; }
  .usp-item + .usp-item { border-left: none; border-top: 1px solid rgba(212, 174, 81, 0.24); padding-top: 2.8rem; }
}

/* ---------- Behandlungs-Karussell (auto-advancing, nahtlose Schleife) ---------- */

.treat-carousel { position: relative; }
.treat-viewport { overflow: hidden; }
.treat-track {
  display: flex;
  gap: 1.6rem;
  transition: transform 0.75s cubic-bezier(0.25, 0.6, 0.3, 1);
}
.treat-track.no-anim { transition: none; }
.treat-track .card { flex: 0 0 auto; }

/* ---------- Karten ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.card {
  background: #fff;
  border: 1px solid rgba(35, 33, 28, 0.08);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -30px rgba(35, 33, 28, 0.4);
}
.card-media { aspect-ratio: 4 / 5; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 174, 81, 0.55);
  border-radius: 240px 240px 0 0;
  pointer-events: none;
}
.card-body { padding: 1.4rem 1.5rem 1.7rem; }
.card-body .kicker { margin-bottom: 0.5rem; font-size: 0.68rem; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { font-size: 0.95rem; color: var(--muted); }

.card-dark {
  background: var(--black-soft);
  border: 1px solid rgba(212, 174, 81, 0.22);
  color: var(--text-light);
}
.card-dark .card-body p { color: #C9C4B8; }

/* ---------- Schulungs-Split (zwei Wege) ---------- */

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.path-card {
  border: 1px solid rgba(212, 174, 81, 0.28);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  background: var(--black-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.path-card h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.path-card ul { list-style: none; display: grid; gap: 0.55rem; margin: 0.4rem 0 0.8rem; }
.path-card li { padding-left: 1.5rem; position: relative; font-size: 0.98rem; color: #C9C4B8; }
.path-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 7px;
  border: 1px solid var(--gold);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
}
.path-card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Preistabelle Schulungen ---------- */

.price-table { width: 100%; border-collapse: collapse; }
.price-table th, .price-table td {
  text-align: left;
  padding: 1.05rem 1rem;
  border-bottom: 1px solid rgba(35, 33, 28, 0.12);
}
.price-table th {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.price-table td:last-child { text-align: right; font-weight: 500; white-space: nowrap; }
.price-table .name { font-family: var(--serif); font-size: 1.1rem; }
.table-wrap { overflow-x: auto; }

/* ---------- Arc-Liste (Bogen-Bullet, hell + dunkel) ---------- */

.arc-list { list-style: none; display: grid; gap: 0.7rem; margin: 1.3rem 0; }
.arc-list li { padding-left: 1.6rem; position: relative; font-size: 0.98rem; line-height: 1.55; }
.arc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 7px;
  border: 1px solid var(--gold);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
}
.section:not(.section-dark) .arc-list li { color: var(--text-dark); }
.section-dark .arc-list li, .on-dark .arc-list li { color: #C9C4B8; }

/* ---------- Kurs-Preiskarten ---------- */

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.price-card {
  border: 1px solid rgba(212, 174, 81, 0.32);
  padding: 1.9rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.section:not(.section-dark) .price-card { background: #fff; }
.section-dark .price-card { background: var(--black-soft); }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -28px rgba(0, 0, 0, 0.4); }
.price-card .p-duration {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.price-card h4 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.6rem; }
.price-card .p-price { font-family: var(--serif); font-size: 1.9rem; color: var(--gold); }

/* ---------- Video-Rahmen (Erstgespräch-Videos) ---------- */

.video-frame {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  border: 1px solid var(--gold);
  padding: 9px;
}
.section:not(.section-dark) .video-frame { background: #fff; }
.section-dark .video-frame { background: var(--black-soft); }
.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.video-frame-cap {
  text-align: center;
  max-width: 34rem;
  margin: 1.4rem auto 0;
}
.video-frame-cap p { font-size: 0.95rem; }
.section:not(.section-dark) .video-frame-cap p { color: var(--muted); }
.section-dark .video-frame-cap p { color: #C9C4B8; }

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

.faq-list { border-top: 1px solid rgba(212, 174, 81, 0.24); }
.section:not(.section-dark) .faq-list { border-top-color: rgba(35, 33, 28, 0.14); }
.faq-item { border-bottom: 1px solid rgba(212, 174, 81, 0.24); }
.section:not(.section-dark) .faq-item { border-bottom-color: rgba(35, 33, 28, 0.14); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0 1.5rem; max-width: 42rem; }
.section:not(.section-dark) .faq-item .faq-a { color: var(--muted); }
.section-dark .faq-item .faq-a { color: #C9C4B8; }

/* ---------- Schritte (AZAV) ---------- */

.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(35, 33, 28, 0.12);
}
.step-num {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.step h3 { margin-bottom: 0.35rem; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Zeitstrahl (Schulungen-Ablauf) ---------- */

.timeline {
  position: relative;
  padding-left: 3.4rem;
  max-width: 42rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 0.3rem;
  bottom: 0.3rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 6%, var(--gold) 94%, transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -3.4rem;
  top: -0.1rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: radial-gradient(circle, rgba(212, 174, 81, 0.16), transparent 72%);
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  z-index: 1;
}
.section:not(.section-dark) .timeline-dot { background-color: var(--cream); background-blend-mode: normal; box-shadow: 0 0 0 4px var(--cream); }
.section-dark .timeline-dot { box-shadow: 0 0 0 4px var(--black); }
.timeline-content h3 { margin-bottom: 0.35rem; }
.timeline-content p { font-size: 0.98rem; }
.section:not(.section-dark) .timeline-content p { color: var(--muted); }
.section-dark .timeline-content p { color: #C9C4B8; }

@media (max-width: 560px) {
  .timeline { padding-left: 2.8rem; }
  .timeline-dot { left: -2.8rem; width: 1.9rem; height: 1.9rem; font-size: 0.88rem; }
}

/* ---------- Fakten-Leiste ---------- */

.fact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: rgba(212, 174, 81, 0.25);
  border: 1px solid rgba(212, 174, 81, 0.25);
}
.fact {
  background: var(--black);
  padding: 1.6rem 1.2rem;
  text-align: center;
}
.fact strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.fact span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9C4B8;
}

/* ---------- Über / Zitat ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
blockquote.brand-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin: 1.6rem 0;
}

/* ---------- Formulare ---------- */

.form-grid { display: grid; gap: 1.1rem; }
.form-grid label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.35rem;
}
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(35, 33, 28, 0.2);
  background: #fff;
  color: var(--text-dark);
  transition: border-color var(--transition);
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.site-footer {
  background: var(--black);
  color: #C9C4B8;
  padding: 4.5rem 0 2rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.site-footer ul { list-style: none; display: grid; gap: 0.5rem; }
.site-footer a { color: inherit; text-decoration: none; transition: color var(--transition); }
.site-footer a:hover { color: var(--gold); }
.footer-logo img { height: 84px; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(212, 174, 81, 0.18);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
}

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

.page-hero {
  background: var(--black);
  color: var(--text-light);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 80% 20%, rgba(212, 174, 81, 0.12), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 { max-width: 16em; }
.page-hero .lead { max-width: 36rem; margin-top: 1.2rem; }

/* ---------- Badge ---------- */

.badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 174, 81, 0.6);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  background: rgba(212, 174, 81, 0.08);
}

/* ---------- Studio-Galerie ---------- */

.studio-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 1rem;
}
.studio-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 174, 81, 0.4);
}
.studio-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.studio-shot:hover img { transform: scale(1.05); }
.studio-shot.feature {
  grid-row: span 2;
  min-height: 320px;
}
.studio-shot .shot-label {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  background: linear-gradient(0deg, rgba(15,15,15,0.85), transparent);
  width: 100%;
}

@media (max-width: 760px) {
  .studio-gallery { grid-template-columns: 1fr; }
  .studio-shot.feature { grid-row: auto; }
  .studio-shot { aspect-ratio: 3 / 2; }
}

/* ---------- Icon-/Feature-Karten (mit Emoji) ---------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.value-card {
  border: 1px solid rgba(212, 174, 81, 0.28);
  background: var(--black-soft);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.section:not(.section-dark) .value-card {
  background: #fff;
  border-color: rgba(35, 33, 28, 0.1);
  color: var(--text-dark);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 44px -26px rgba(0, 0, 0, 0.5);
}
.value-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(circle, rgba(212, 174, 81, 0.14), transparent 70%);
  transition: transform var(--transition), background var(--transition);
}
.value-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-card:hover .value-icon {
  transform: translateY(-2px);
  background: radial-gradient(circle, rgba(212, 174, 81, 0.26), transparent 72%);
}
.value-card h3 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.value-card p { font-size: 0.95rem; color: var(--muted); }
.section-dark .value-card p { color: #C9C4B8; }

/* ---------- Benefit-Liste mit Emoji-Bullets ---------- */

.benefit-list { list-style: none; display: grid; gap: 1rem; }
.benefit-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: 1.02rem;
  line-height: 1.5;
}
.benefit-list .b-ico {
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1.3;
}
.benefit-list strong { font-weight: 500; }

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.testimonial {
  border: 1px solid rgba(212, 174, 81, 0.28);
  background: var(--black-soft);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section:not(.section-dark) .testimonial { background: #fff; border-color: rgba(35, 33, 28, 0.1); }
.testimonial .t-stars { color: var(--gold); letter-spacing: 0.15em; }
.testimonial .t-text { font-family: var(--serif); font-style: italic; font-size: 1.1rem; line-height: 1.5; }
.section-dark .testimonial .t-text { color: var(--text-light); }
.testimonial .t-author { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.testimonial .t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--black);
  font-family: var(--serif); font-size: 1.1rem;
}
.testimonial .t-name { font-size: 0.9rem; font-weight: 500; }
.testimonial .t-role { font-size: 0.78rem; color: var(--muted); }
.section-dark .testimonial .t-name { color: var(--text-light); }
.section-dark .testimonial .t-role { color: #9a958a; }

/* ---------- Animierte Zähler ---------- */

.count-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.count-item .count-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold);
  line-height: 1;
  display: block;
}
.count-item .count-label {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9C4B8;
  margin-top: 0.5rem;
  display: block;
}

/* ---------- Highlight-/Angebots-Box ---------- */

.offer-box {
  border: 1px solid var(--gold);
  background: linear-gradient(160deg, rgba(212,174,81,0.1), transparent);
  padding: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer-box .offer-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.offer-box .offer-price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--text-light);
  line-height: 1.1;
}
.offer-box .offer-price small { font-size: 1rem; color: var(--muted); display: block; letter-spacing: 0.1em; }

/* CTA-Puls für Aufmerksamkeit */
.btn-pulse { animation: btnpulse 2.6s ease-in-out infinite; }
@keyframes btnpulse {
  0%, 100% { box-shadow: 0 10px 30px -14px rgba(212, 174, 81, 0.6); }
  50% { box-shadow: 0 10px 40px -8px rgba(212, 174, 81, 0.85); }
}

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ---------- Chat-Widget ---------- */

.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--black);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition), background var(--transition);
}
.chat-fab:hover { transform: translateY(-3px); background: #1c1a15; }
.chat-fab svg { width: 30px; height: 30px; }

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 120;
  width: min(380px, calc(100vw - 34px));
  max-height: min(560px, calc(100svh - 130px));
  display: none;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--gold);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.chat-panel.open { display: flex; }

.chat-head {
  background: var(--black);
  color: var(--text-light);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.chat-head .title { font-family: var(--serif); font-size: 1.05rem; }
.chat-head .title small {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.chat-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.chat-msg {
  max-width: 86%;
  padding: 0.7rem 0.95rem;
  font-size: 0.94rem;
  line-height: 1.55;
}
.chat-msg a { color: var(--text-dark); font-weight: 500; }
.chat-msg.bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgba(35, 33, 28, 0.1);
  border-left: 2px solid var(--gold);
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--black);
  color: var(--text-light);
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1.1rem 0.8rem;
}
.chat-chip {
  font-family: var(--sans);
  font-size: 0.78rem;
  padding: 0.42rem 0.85rem;
  background: none;
  border: 1px solid var(--gold);
  color: var(--text-dark);
  cursor: pointer;
  transition: background var(--transition);
}
.chat-chip:hover { background: var(--gold-faint); }

.chat-input-row {
  display: flex;
  border-top: 1px solid rgba(35, 33, 28, 0.12);
  background: #fff;
}
.chat-input-row input {
  flex: 1;
  border: none;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.9rem 1rem;
  background: transparent;
  color: var(--text-dark);
}
.chat-input-row input:focus { outline: none; }
.chat-input-row button {
  border: none;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 1.2rem;
  cursor: pointer;
}

/* ---------- Fokus & Reduced Motion ---------- */

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

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

@media (max-width: 900px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .arch-frame { width: min(340px, 78vw); }
  .path-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(15, 15, 15, 0.97);
    border-bottom: 1px solid rgba(212, 174, 81, 0.2);
    padding: 0.6rem 4vw 1.4rem;
    display: none;
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: 0.85rem 0; width: 100%; border-bottom: 1px solid rgba(212, 174, 81, 0.08); }
  .main-nav .btn { margin-top: 1rem; width: 100%; }
  .nav-toggle { display: block; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; }
  .hero-ctas .btn { width: 100%; }
}
