/* ==========================================================================
   Le Visage HAIRFREE – Stylesheet
   Design-System: „Soft UI Evolution" (UI/UX Pro Max) × Brand-Farben aus
   Logo & Instagram-Feed (Creme, Rosé, Terrakotta, warmes Schwarz).
   Aufbau: Tokens → Reset → Basis → Komponenten → Sektionen → Responsive.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design-Tokens
   -------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  /* Farben */
  --bg:            #FAF6F1;  /* Ivory – Seitenhintergrund */
  --surface:       #FFFFFF;  /* Karten */
  --cream:         #F3EAE0;  /* Abwechselnde Sektionen */
  --blush:         #F7E6DB;  /* Rosé hell */
  --rose:          #F2CDB9;  /* Rosé/Peach – Aktion */
  --primary:       #A85A3F;  /* Terrakotta – Buttons/Akzente (Kontrast ≥ 5:1 mit Weiß) */
  --primary-dark:  #8E4A32;
  --gold:          #B08D57;  /* Gold – dekorative Akzente, Sterne */
  --ink:           #2B2118;  /* Warmes Schwarz – Text */
  --muted:         #6E5C4F;  /* Sekundärtext */
  --border:        #E8DCCE;  /* Linien/Karten-Ränder */
  --error:         #A93226;
  --success-bg:    #EAF3EC;
  --success-ink:   #1E5631;
  --whatsapp:      #1FAF54;

  /* Akzent als TEXT-/Icon-Farbe: tagsüber = Terrakotta, im Nachtmodus
     eine hellere Variante (sonst zu wenig Kontrast auf dunklem Grund).
     Flächen (Buttons) nutzen weiterhin --primary. */
  --accent:        #A85A3F;
  --accent-hover:  #8E4A32;
  --ring:          rgba(168, 90, 63, 0.18);  /* Fokus-Glow um Formularfelder */

  /* Typografie */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Effekte (spacious – Density 3/10) */
  --container: 72rem;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 6px 24px rgba(43, 33, 24, 0.07);
  --shadow-lift: 0 14px 40px rgba(43, 33, 24, 0.12);
  --header-h: 4.5rem;

  /* Motion (Subtle – 200–300 ms) */
  --ease: cubic-bezier(0.25, 0.6, 0.3, 1);
  --dur: 240ms;
}

/* --------------------------------------------------------------------------
   2. Reset & Basis
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;            /* 16 px Basis – kein iOS-Auto-Zoom */
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
}

img, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h2 { font-size: clamp(1.9rem, 4.5vw, 2.75rem); letter-spacing: 0.01em; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }

ul { margin: 0; padding: 0; list-style: none; }

address { font-style: normal; }

/* Sichtbarer Tastatur-Fokus */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Feste dunkle Textfarbe: die Rosé-Markierung bleibt in beiden Modi hell */
::selection { background: var(--rose); color: #2B2118; }

/* Anker unter dem Sticky-Header ankommen lassen */
section[id] { scroll-margin-top: calc(var(--header-h) + 0.75rem); }

/* --------------------------------------------------------------------------
   3. Utilities
   -------------------------------------------------------------------------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section { padding-block: clamp(4rem, 9vw, 6.5rem); }
.section-sm { padding-block: clamp(2rem, 5vw, 3.5rem); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.section-head {
  max-width: 42rem;
  margin: 0 auto clamp(2.25rem, 5vw, 3.5rem);
  text-align: center;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 12px 12px;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

/* Nur für Screenreader: aus dem Bild genommen, aber vorlesbar.
   Für Überschriften, die die Gliederung braucht, das Auge aber nicht. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

/* Scroll-Reveal: nur aktiv, wenn JS läuft (html.js) – sonst bleibt alles sichtbar */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;                 /* ≥ 48 px Touch-Target */
  padding: 0.7rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              transform 150ms var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(168, 90, 63, 0.28);
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.95); color: #2B2118; }

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: #000; color: #fff; }

/* WhatsApp-Knopf im Hero. Das Gruen ist bewusst das offizielle
   WhatsApp-Gruen — daran erkennt man den Kanal ohne zu lesen; derselbe
   Ton steckt schon im schwebenden Knopf unten rechts. */
.btn-whatsapp {
  background: #25D366;
  color: #10321D;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { background: #1EBE5A; color: #10321D; }
.btn-whatsapp svg { width: 1.25em; height: 1.25em; flex-shrink: 0; }

.btn-lg { min-height: 3.35rem; padding: 0.85rem 2.1rem; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   5. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* Über dem Hero: transparent + helle Schrift */
.site-header { background: transparent; color: #fff; }

/* Nach dem Scrollen: heller Hintergrund + dunkle Schrift */
.site-header.scrolled,
.site-header.nav-open {
  background: rgba(250, 246, 241, 0.94);
  color: var(--ink);
  box-shadow: 0 2px 18px rgba(43, 33, 24, 0.08);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-decoration: none;
  color: inherit;
}
.brand:hover { color: inherit; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.34em;
  opacity: 0.85;
  padding-left: 2px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.3rem);
  margin-inline: auto; /* Navigation sitzt mittig zwischen Logo und Umschalter */
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.6vw, 1.25rem);
}
.main-nav a:not(.btn) {
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.15rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.main-nav a:not(.btn):hover { border-bottom-color: currentColor; opacity: 0.85; }
.btn-nav { min-height: 2.6rem; padding: 0.45rem 1.25rem; font-size: 0.92rem; white-space: nowrap; }

/* Burger-Button (nur mobil sichtbar) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Rechte Header-Gruppe: Tag/Nacht-Umschalter (+ mobil der Burger) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: inherit;
  transition: background var(--dur) var(--ease);
}
.theme-toggle:hover { background: color-mix(in srgb, currentColor 13%, transparent); }
.theme-toggle svg { width: 21px; height: 21px; display: block; }
/* Tagsüber wird der Mond gezeigt (= „Nachtmodus einschalten"), nachts die Sonne */
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

/* Sprachumschalter (Deutsch · English · Türkçe)
   Knopf zeigt Globus + Kürzel der aktiven Sprache; darunter klappt ein
   kleines Menü auf. Farben erben vom Header, damit er über dem Hero
   (hell) und im festgescrollten Zustand gleichermaßen lesbar bleibt. */
.lang-switch { position: relative; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  height: 48px;
  padding: 0 0.5rem;
  background: none;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background var(--dur) var(--ease);
}
.lang-toggle:hover { background: color-mix(in srgb, currentColor 13%, transparent); }
.lang-toggle svg { width: 21px; height: 21px; display: block; }
.lang-current { line-height: 1; }

.lang-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 60;
  min-width: 9.5rem;
  /* 9 Sprachen: hoch genug, dass auf dem Handy im Hochformat alle sichtbar
     sind; auf flachen (queren) Bildschirmen greift 65vh und macht das Menü
     scrollbar, statt es abzuschneiden. */
  max-height: min(65vh, 28rem);
  overflow-y: auto;
  margin: 0;
  padding: 0.3rem;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
  /* geschlossen: unsichtbar UND nicht per Tastatur erreichbar */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              visibility var(--dur) var(--ease);
}
.lang-switch.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu li { margin: 0; }
.lang-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;      /* bequemes Touch-Ziel */
  padding: 0 0.7rem;
  background: none;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  text-align: left;
  transition: background var(--dur) var(--ease);
}
.lang-menu button:hover { background: var(--blush); }
.lang-menu button.is-active { color: var(--accent); font-weight: 600; }
/* Häkchen hinter der aktiven Sprache */
.lang-menu button.is-active::after { content: "✓"; margin-left: auto; }

/* Hinweis auf den rechtlich maßgeblichen deutschen Text.
   Bewusst umgekehrt formuliert: sichtbar in JEDER Sprache, nur in der
   deutschen Fassung ausgeblendet — so gilt der Hinweis automatisch auch
   für später ergänzte Sprachen. */
.legal-lang-note {
  display: block;
  margin-bottom: 1.6rem;
  padding: 0.7rem 1rem;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 10px 10px 0;
  font-size: 0.92rem;
  color: var(--muted);
}
html[lang="de"] .legal-lang-note { display: none; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;   /* Fallback */
  min-height: 100svh;  /* Mobile URL-Leiste berücksichtigen */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #2B2118; /* Fallback, bis das Video geladen ist (in beiden Modi dunkel) */
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 21, 14, 0.55) 0%,
    rgba(30, 21, 14, 0.35) 45%,
    rgba(30, 21, 14, 0.62) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 7rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  box-shadow: var(--shadow-lift);
  margin-bottom: 1.75rem;
}
.hero-logo img { width: clamp(84px, 14vw, 112px); height: auto; }

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.7rem, 9vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: 0.52em;
  letter-spacing: 0.42em;
  margin-top: 0.35rem;
}

.hero-subtitle {
  max-width: 34rem;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
}
.hero-scroll svg { width: 22px; height: 22px; }
.hero-scroll:hover { color: #fff; }

/* --------------------------------------------------------------------------
   7. USP-Leiste
   -------------------------------------------------------------------------- */
.usp {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem 2.5rem;
}

.usp-item { text-align: center; }
.usp-item h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; margin-bottom: 0.25rem; }
.usp-item p { font-size: 0.92rem; color: var(--muted); }

.usp-icon {
  display: inline-grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--blush);
  color: var(--accent);
}
.usp-icon svg { width: 1.5rem; height: 1.5rem; }

/* --------------------------------------------------------------------------
   8. Über uns
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-media {
  position: relative;
  justify-self: center;
}

.about-logo-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  position: relative;
}
.about-logo-card::before {
  content: "";
  position: absolute;
  inset: -1.1rem 1.4rem auto auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.55;
  z-index: -1;
}
.about-logo-card img { width: clamp(150px, 24vw, 220px); }

.about-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  box-shadow: var(--shadow-lift);
}
.about-badge strong { font-family: var(--font-display); font-size: 1.4rem; }
.about-badge span { font-size: 0.72rem; line-height: 1.3; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.9; }

.about-list { margin: 1.4rem 0 1.8rem; display: grid; gap: 0.6rem; }
.about-list li {
  position: relative;
  padding-left: 1.9rem;
  font-weight: 500;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--blush) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A85A3F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / 60% no-repeat;
}

.about-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* --------------------------------------------------------------------------
   8b. Technologie – 3D-Diodenlaser
   Die 3D-Bühne (.laser3d) zeigt zunächst die SVG-Zeichnung; sobald das
   Three.js-Modell bereit ist, setzt js/main.js die Klasse .is-3d und die
   Leinwand blendet weich darüber ein.
   -------------------------------------------------------------------------- */
.tech { background: var(--cream); }

.tech-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.laser3d {
  position: relative;
  aspect-ratio: 10 / 11;
  max-width: 540px;
  margin-inline: auto;
}

/* Warmer Lichtschein hinter dem Gerät */
.laser3d::before {
  content: "";
  position: absolute;
  inset: -4% 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--blush), transparent 72%);
  opacity: 0.9;
}

.laser3d svg.laser3d-fallback {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
.laser3d.is-3d .laser3d-fallback { opacity: 0; visibility: hidden; }

.laser3d canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  touch-action: pan-y;   /* horizontal ziehen dreht, vertikal wischen scrollt */
  cursor: grab;
  opacity: 0;
  transition: opacity 600ms var(--ease);
}
.laser3d.is-3d canvas { opacity: 1; }
.laser3d canvas:active { cursor: grabbing; }

.laser3d-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.laser3d-hint svg { width: 1.05rem; height: 1.05rem; flex: none; }

.tech-facts { display: grid; gap: 0.7rem; margin: 1.4rem 0 1.6rem; }
.tech-facts li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}
.tech-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--blush);
  color: var(--accent);
  flex: none;
}
.tech-fact-icon svg { width: 1.2rem; height: 1.2rem; }

/* --------------------------------------------------------------------------
   9. Aktions-Banner
   -------------------------------------------------------------------------- */
.promo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  background: var(--rose);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4.5vw, 3rem);
  box-shadow: var(--shadow-soft);
}
.promo-card::before {
  content: "";
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.promo-badge {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  margin-bottom: 1rem;
}

.promo-text h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: 0.35rem; }
.promo-zones { font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.4rem; }
.promo-note { font-size: 0.9rem; color: rgba(43, 33, 24, 0.75); }

.promo-price {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.promo-price-old { font-size: 1.15rem; color: rgba(43, 33, 24, 0.6); }
.promo-price-new {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   10. Leistungen
   -------------------------------------------------------------------------- */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.service-icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 14px;
  background: var(--blush);
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.service-icon svg { width: 1.45rem; height: 1.45rem; }

.service-card h3 { font-size: 1.22rem; margin-bottom: 0.45rem; }
.service-card h3 span { display: block; font-size: 0.72em; font-style: italic; color: var(--gold); }
.service-card p { color: var(--muted); font-size: 0.96rem; flex-grow: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  min-height: 44px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.service-link svg { width: 1.05rem; height: 1.05rem; transition: transform var(--dur) var(--ease); }
.service-link:hover svg { transform: translateX(4px); }

.service-price {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   11. Preisliste
   -------------------------------------------------------------------------- */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: var(--cream);
  border-radius: 999px;
  padding: 0.4rem;
  width: fit-content;
  margin: 0 auto 2.5rem;
}

.pricing-tab {
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.65rem 1.3rem;
  min-height: 48px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pricing-tab:hover { color: var(--ink); }
.pricing-tab.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.pricing-panel[hidden] { display: none; }

.pricing-cols {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin-inline: auto;
}

.price-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem;
  box-shadow: var(--shadow-soft);
}

.price-group-title {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.6rem 0 0.4rem;
}
.price-group-title:first-child { margin-top: 0; }

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px dashed var(--border);
}
.price-list li:last-child { border-bottom: 0; }
.price-list small { display: block; color: var(--muted); font-size: 0.82rem; }

.price {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* „auf Anfrage"-Preise dezent in Gold */
.price-request {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Pakete */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1.5rem;
}

.package-card {
  position: relative;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.package-card h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.package-zones { color: var(--muted); font-size: 0.92rem; min-height: 2.6em; margin-bottom: 0.8rem; }
.package-price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.package-card-featured {
  background: linear-gradient(160deg, var(--blush), var(--surface) 70%);
  border-color: var(--rose);
}
.package-card-featured .btn { margin-top: 0.4rem; }

.package-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  margin-top: 2.25rem;
}

/* --------------------------------------------------------------------------
   12. Häufige Fragen (FAQ)
   Aufklapper aus <details>/<summary> — ohne JavaScript, dafür von Haus aus
   mit Tastatur und Screenreader bedienbar. Die Antworten stehen immer im
   HTML (auch zugeklappt), damit Google sie lesen kann.
   -------------------------------------------------------------------------- */
.faq {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 52rem;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-lift); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;              /* Touch-Ziel */
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  cursor: pointer;
  list-style: none;              /* Standard-Dreieck ausblenden */
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

/* Plus-Zeichen dreht sich beim Öffnen zum Kreuz */
.faq-mark {
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] .faq-mark { transform: rotate(45deg); }

.faq-item p {
  margin: 0;
  padding: 0 1.4rem 1.35rem;
  color: var(--muted);
  line-height: 1.75;
}

.faq-note {
  max-width: 52rem;
  margin: 1.7rem auto 0;
  text-align: center;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   13. Bewertungen
   -------------------------------------------------------------------------- */
.reviews { background: var(--cream); }

.reviews-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
/* text-wrap: balance verteilt den Umbruch auf schmalen Bildschirmen
   gleichmaessig, statt „29" und „Bewertungen" auseinanderzureissen. */
.reviews-summary-text { color: var(--muted); text-wrap: balance; }
.reviews-summary-text strong { color: var(--ink); font-size: 1.05rem; }

/* Pflichthinweis nach § 5b Abs. 3 UWG — bewusst klein und ruhig,
   aber lesbar (kein Grau-auf-Grau). */
.reviews-check {
  max-width: 60ch;
  margin: 0.7rem auto 0;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--muted);
}

.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 1.05rem; height: 1.05rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.review-text { color: var(--ink); font-size: 0.97rem; flex-grow: 1; }

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px dashed var(--border);
  padding-top: 0.95rem;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--blush);
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}

.review-name { font-weight: 600; font-size: 0.95rem; line-height: 1.3; }
.review-source { font-size: 0.8rem; color: var(--muted); }

.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   14. Instagram
   -------------------------------------------------------------------------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.insta-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 400ms var(--ease);
}
.insta-item:hover img { transform: scale(1.045); }

.insta-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(43, 33, 24, 0);
  color: #fff;
  opacity: 0;
  transition: opacity var(--dur) var(--ease), background var(--dur) var(--ease);
}
.insta-overlay svg { width: 2.1rem; height: 2.1rem; }
.insta-item:hover .insta-overlay,
.insta-item:focus-visible .insta-overlay {
  opacity: 1;
  background: rgba(43, 33, 24, 0.45);
}

.insta-cta { text-align: center; margin-top: 2.25rem; }

/* --------------------------------------------------------------------------
   15. Kontakt
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.contact-form-wrap {
  /* Als Raster-Element sonst „min-width: auto": ein breiter Inhalt (die
     waagerecht scrollbare Tagesauswahl) würde die Karte und damit die ganze
     Seite auseinanderziehen. */
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}

.form-row { display: grid; gap: 0; }

.form-field { margin-bottom: 1.15rem; }

.form-field label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-field label span[aria-hidden] { color: var(--accent); }
.label-optional { font-weight: 400; color: var(--muted); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.95rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-field textarea { resize: vertical; min-height: 7.5rem; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}

.form-field.invalid input,
.form-field.invalid textarea { border-color: var(--error); }

.field-error {
  min-height: 1.1em;
  margin: 0.3rem 0 0;
  font-size: 0.83rem;
  color: var(--error);
}

/* --------------------------------------------------------------------------
   Wunschtermin im Kontaktformular
   Zwei Schritte: erst der Tag, dann die Uhrzeit. Beides sind echte Buttons,
   damit die Auswahl auch mit der Tastatur und mit Vorlese-Programmen
   funktioniert; der gewählte Zustand steht in aria-pressed und ist zusätzlich
   zur Farbe an Rahmen und Bestätigungszeile erkennbar.
   -------------------------------------------------------------------------- */
.slot-legend {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.slot-hint {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  color: var(--muted);
}

/* Tagesauswahl: waagerecht scrollbar, damit auf schmalen Geräten kein
   Umbruch-Klotz entsteht. Der Rest der Seite scrollt dabei nicht mit. */
.slot-days {
  display: flex;
  gap: 0.5rem;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  margin-bottom: 0.9rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}
.slot-days::-webkit-scrollbar { height: 6px; }
.slot-days::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }

.slot-day,
.slot-time {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.slot-day:hover,
.slot-time:hover { border-color: var(--accent); }

.slot-day:focus-visible,
.slot-time:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--ring);
}

.slot-day {
  flex: 0 0 auto;
  min-width: 5.2rem;
  min-height: 3.4rem;
  padding: 0.5rem 0.75rem;
  line-height: 1.25;
  text-align: center;
  scroll-snap-align: start;
}
.slot-day .slot-day-name {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.slot-day .slot-day-date {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Uhrzeiten: gleichmäßiges Raster, das sich der Breite anpasst */
.slot-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(4.6rem, 1fr));
  gap: 0.5rem;
}
.slot-time {
  min-height: 2.75rem; /* bequem mit dem Daumen zu treffen */
  padding: 0.45rem 0.3rem;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Gewählt: gefüllte Fläche UND kräftigerer Rahmen – nicht Farbe allein */
.slot-day[aria-pressed="true"],
.slot-time[aria-pressed="true"] {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: #fff;
}
.slot-day[aria-pressed="true"] .slot-day-name { color: rgba(255, 255, 255, 0.85); }

.slot-empty {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Bestätigungszeile unter der Auswahl */
.slot-chosen {
  min-height: 1.2em;
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--success-ink);
}
.slot-chosen:empty { margin: 0; min-height: 0; }
.slot-chosen strong { font-weight: 600; }
.slot-clear {
  margin-inline-start: 0.5rem;
  padding: 0;
  font: inherit;
  color: var(--muted);
  background: none;
  border: 0;
  text-decoration: underline;
  cursor: pointer;
}
.slot-clear:hover { color: var(--accent); }

/* Konnte ein Termin zwischenzeitlich vergeben werden, erscheint der Hinweis
   in Fehlerfarbe an derselben Stelle */
.slot-chosen.is-error { color: var(--error); }

@media (prefers-reduced-motion: reduce) {
  .slot-day, .slot-time { transition: none; }
}

/* Honeypot unsichtbar machen. Bewusst NICHT über left:-9999px — das würde
   bei rechtsläufiger Schrift (Arabisch) die Seite um 10.000 px verbreitern
   und einen waagerechten Scrollbalken erzeugen. Diese Variante ist in
   beiden Schreibrichtungen unsichtbar und ohne Platzbedarf. */
.botcheck {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
}

/* Einwilligungs-Checkbox. Kaestchen und Text stehen nebeneinander, der
   Text bleibt anklickbar (label mit for), das Kaestchen ist gross genug,
   um es auf dem Handy sicher zu treffen. */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0.25rem 0 0;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.12rem;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-consent label {
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}
.form-consent.invalid input[type="checkbox"] { outline: 2px solid var(--error); outline-offset: 2px; }
#cf-consent-error { margin-bottom: 1rem; }

.btn-submit { width: 100%; position: relative; }

.btn-spinner {
  display: none;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn-submit.is-loading .btn-spinner { display: inline-block; }
.btn-submit.is-loading { pointer-events: none; opacity: 0.85; }

@keyframes spin { to { transform: rotate(360deg); } }

.form-status { margin-top: 1.1rem; }
.form-status:empty { display: none; }
.form-status .status-card {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
}
.form-status .status-success { background: var(--success-bg); color: var(--success-ink); }
.form-status .status-error { background: #F9E8E4; color: var(--error); }
.form-status svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }

/* Info-Karte */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow-soft);
}
.info-card h3 { margin-bottom: 1.2rem; }

.info-list { display: grid; gap: 1.25rem; }
.info-list li { display: flex; gap: 0.9rem; }
.info-list strong { display: inline-block; margin-bottom: 0.15rem; }

.info-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 12px;
  background: var(--blush);
  color: var(--accent);
}
.info-icon svg { width: 1.3rem; height: 1.3rem; }

/* Öffnungszeiten als Beschreibungsliste: Tag links, Zeit rechtsbündig.
   Tabellenziffern halten die Uhrzeiten exakt untereinander. */
.hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.12rem 1.5rem;
  max-width: 15rem;
  margin: 0;
}
.hours dt,
.hours dd { margin: 0; }
.hours dd { text-align: right; font-variant-numeric: tabular-nums; }

/* Social-Links in der Kontakt-Infokarte: untereinander mit Logo */
.social-rows {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.4rem;
}
.social-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.4rem;
  font-weight: 500;
  text-decoration: none;
}
.social-row svg { width: 1.2rem; height: 1.2rem; flex-shrink: 0; }
.social-row:hover span { text-decoration: underline; }

/* Karte (Click-to-Load) */
.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px dashed var(--border);
  background: var(--cream);
}

.map-consent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 2.25rem 1.5rem;
}
.map-consent p { margin: 0; }
.map-hint { font-size: 0.78rem; color: var(--muted); max-width: 22rem; }

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #241B14;
  color: rgba(255, 255, 255, 0.85);
  padding-top: clamp(3rem, 7vw, 4.5rem);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  display: inline-block;
  background: #fff;
  border-radius: 16px;
  padding: 0.55rem;
  margin-bottom: 1rem;
}
.footer-logo img { width: 64px; height: 64px; object-fit: contain; }

.footer-brand p { max-width: 20rem; font-size: 0.95rem; }

.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); color: #2B2118; }
.footer-social svg { width: 1.25rem; height: 1.25rem; }

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.footer-nav ul { display: grid; gap: 0.5rem; }
.footer-nav a,
.footer-contact a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  padding-block: 0.15rem;
}
.footer-nav a:hover,
.footer-contact a:hover { color: #fff; text-decoration: underline; }

.footer-hours { font-size: 0.9rem; opacity: 0.85; margin-top: 0.8rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 1.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-bottom p { margin: 0; }
.footer-bottom ul { display: flex; gap: 1.5rem; }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: #fff; }

/* Ersteller-Hinweis (ganz unten, dezent zentriert) */
.footer-credit {
  padding-block: 0.2rem 1.6rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}
.footer-credit p { margin: 0; }

/* --------------------------------------------------------------------------
   17. WhatsApp-Button (floating)
   -------------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 26px rgba(31, 175, 84, 0.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  box-shadow: 0 14px 32px rgba(31, 175, 84, 0.5);
}
.whatsapp-fab svg { width: 1.8rem; height: 1.8rem; }

/* --------------------------------------------------------------------------
   18. Unterseiten (Impressum / Datenschutz)
   -------------------------------------------------------------------------- */
/* Sticky-Footer: Bei wenig Inhalt (z. B. Impressum auf großen Bildschirmen)
   soll der Footer trotzdem unten am Fensterrand kleben und nicht in der
   Seitenmitte „schweben". Die Seite wird zur Flex-Spalte, der Inhaltsbereich
   dehnt sich aus und drückt den Footer nach unten. */
body.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.legal-page .legal-main { flex: 1 0 auto; }
body.legal-page .site-footer { flex-shrink: 0; }

.legal-page .site-header {
  position: sticky;
  background: rgba(250, 246, 241, 0.94);
  color: var(--ink);
  box-shadow: 0 2px 18px rgba(43, 33, 24, 0.06);
}
.legal-main { padding: 3rem 0 4.5rem; }
.legal-main h1 { font-size: clamp(2rem, 5vw, 2.8rem); margin-bottom: 1.5rem; }
.legal-main h2 { font-size: 1.35rem; margin-top: 2.25rem; }
.legal-main .container { max-width: 46rem; }
.legal-todo {
  background: var(--blush);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   19. Mobile Navigation & Breakpoints (mobile-first)
   -------------------------------------------------------------------------- */
@media (max-width: 1079px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(250, 246, 241, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 30px rgba(43, 33, 24, 0.12);
    padding: 1.25rem 1.25rem 1.75rem;
    display: none;
  }
  .site-header.nav-open .main-nav { display: block; }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
  .main-nav a:not(.btn) {
    display: block;
    padding: 0.8rem 0.5rem;
    font-size: 1.05rem;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
  }
  .btn-nav { width: 100%; min-height: 3rem; }
}

/* Schmale Desktops (z. B. 1366px bei 125 % Windows-Skalierung): die Leiste
   bleibt einzeilig, dafür rücken Beschriftungen und Knopf etwas enger. */
@media (min-width: 1080px) and (max-width: 1219px) {
  .main-nav { gap: 1rem; }
  .main-nav ul { gap: clamp(0.85rem, 1.5vw, 1.3rem); }
  .main-nav a:not(.btn) { font-size: 0.88rem; }
  .btn-nav { font-size: 0.86rem; padding: 0.4rem 1rem; min-height: 2.45rem; }
  .brand-name { font-size: 1.2rem; letter-spacing: 0.11em; }
  .brand-sub { font-size: 0.78rem; letter-spacing: 0.28em; }
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
  .pricing-cols { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; gap: 4.5rem; }
  /* Technologie: Text links, 3D-Modell rechts */
  .tech-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .tech-media { order: 2; }
  .contact-grid { grid-template-columns: 1.15fr 0.85fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1.3fr 0.8fr 0.9fr; gap: 3rem; }
}

/* --------------------------------------------------------------------------
   20. Reduzierte Bewegung (Barrierefreiheit)
   -------------------------------------------------------------------------- */
@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;
  }
  html.js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   21. Nachtmodus (Dark Mode)
   Aktiv über <html data-theme="dark">. Gesetzt wird das Attribut vom kleinen
   Inline-Skript im <head> (gespeicherte Wahl bzw. System-Einstellung des
   Besuchers) und vom Umschalter im Header (js/main.js).
   Design: warme, entsättigte Espresso-Töne statt reinem Schwarz, damit die
   Markenwelt (Creme/Rosé/Terrakotta) erhalten bleibt; Textkontraste ≥ 4,5:1.
   -------------------------------------------------------------------------- */
[data-theme="dark"] {
  color-scheme: dark;

  --bg:           #1C1613;  /* Seitenhintergrund: dunkles warmes Braun */
  --surface:      #272019;  /* Karten: eine Stufe heller */
  --cream:        #211B16;  /* Abwechselnde Sektionen */
  --blush:        #33281F;  /* Icon-Kreise, sanfte Flächen */
  --accent:       #D99B7C;  /* Terrakotta aufgehellt (7:1 auf Karten) */
  --accent-hover: #E8B69C;
  --gold:         #C7A26F;
  --ink:          #F4EDE4;  /* Text: warmes Creme-Weiß */
  --muted:        #BCAB9C;
  --border:       #453A30;
  --error:        #E8988A;
  --success-bg:   #1E3326;
  --success-ink:  #A6DDB5;
  --ring:         rgba(217, 155, 124, 0.28);
  --shadow-soft:  0 6px 24px rgba(0, 0, 0, 0.35);
  --shadow-lift:  0 14px 40px rgba(0, 0, 0, 0.5);
  /* --primary/--primary-dark bleiben unverändert: gefüllte Buttons behalten
     Terrakotta mit weißer Schrift (Kontrast ≥ 5:1 unabhängig vom Modus). */
}

/* Header nach dem Scrollen + Unterseiten-Header: dunkle Fläche statt Creme */
[data-theme="dark"] .site-header.scrolled,
[data-theme="dark"] .site-header.nav-open {
  background: rgba(28, 22, 18, 0.92);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
[data-theme="dark"] .legal-page .site-header {
  background: rgba(28, 22, 18, 0.94);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

/* Aufgeklapptes Mobil-Menü */
@media (max-width: 1079px) {
  [data-theme="dark"] .main-nav {
    background: rgba(28, 22, 18, 0.97);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.5);
  }
}

[data-theme="dark"] .skip-link { background: #33281F; }

/* Logo-Karte „Über uns": bleibt bewusst weiß (das Logo-JPG hat weißen
   Hintergrund) — wirkt im Dunkeln wie die weißen Logo-Chips in Hero/Footer */
[data-theme="dark"] .about-logo-card {
  background: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}
[data-theme="dark"] .about-logo-card::before { opacity: 0.35; }
[data-theme="dark"] .about-badge {
  background: #17110D;
  border: 1px solid rgba(244, 237, 228, 0.16);
}

/* Häkchen der „Über uns"-Liste: Strichfarbe aufgehellt */
/* Technologie-Sektion: Lichtschein dezenter, Zeichnungs-Karte bleibt lesbar
   (--blush/--surface/--muted wechseln bereits über die Token oben) */
[data-theme="dark"] .laser3d::before { opacity: 0.6; }

[data-theme="dark"] .about-list li::before {
  background: var(--blush) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E1A183' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 13 4 4L19 7'/%3E%3C/svg%3E") center / 60% no-repeat;
}

/* Aktions-Banner: aus der hellen Rosé-Fläche wird ein tiefer, warmer
   Verlauf mit Rosé-Akzenten — die Aktion sticht weiterhin hervor */
[data-theme="dark"] .promo-card {
  background: linear-gradient(150deg, #3B2A21, #2B201A);
  border: 1px solid rgba(242, 205, 185, 0.22);
}
[data-theme="dark"] .promo-card::before { background: rgba(242, 205, 185, 0.07); }
[data-theme="dark"] .promo-badge { background: var(--rose); color: #2B2118; }
[data-theme="dark"] .promo-note { color: rgba(244, 237, 228, 0.72); }
[data-theme="dark"] .promo-price-old { color: rgba(244, 237, 228, 0.55); }
[data-theme="dark"] .promo-price-new { color: var(--rose); }
[data-theme="dark"] .btn-dark { background: var(--rose); color: #2B2118; }
[data-theme="dark"] .btn-dark:hover { background: #F8DCC9; color: #2B2118; }

/* Formular: Fehlermeldung & Platzhalter auf dunklem Grund */
[data-theme="dark"] .form-status .status-error { background: #40241E; color: #F2AC9C; }
[data-theme="dark"] ::placeholder { color: rgba(244, 237, 228, 0.45); }

/* Beim Umschalten kurz weich überblenden (Klasse setzt js/main.js für ~350 ms) */
@media (prefers-reduced-motion: no-preference) {
  html.theme-switching *,
  html.theme-switching *::before,
  html.theme-switching *::after {
    transition: background-color 280ms var(--ease), color 280ms var(--ease),
                border-color 280ms var(--ease), box-shadow 280ms var(--ease) !important;
  }
}

/* --------------------------------------------------------------------------
   22. Schreibrichtung rechts nach links (derzeit ungenutzt)
   Seit der Reduzierung auf Deutsch, Englisch und Türkisch (05.09.2026) ist
   keine RTL-Sprache mehr im Angebot; `RTL` in js/i18n.js ist leer, also
   greifen diese Regeln nicht. Sie bleiben absichtlich stehen: kommt später
   wieder eine RTL-Sprache dazu, genügt der Eintrag dort.
   Aktiv über <html dir="rtl">. Flexbox und Grid spiegeln sich von selbst;
   hier stehen nur die Stellen mit festen Seiten (left/right).
   -------------------------------------------------------------------------- */

/* Playfair Display und Inter enthalten keine arabischen Zeichen — daher für
   Arabisch Schriften mit arabischem Zeichensatz (auf Windows/Android/iOS
   vorhanden, keine externen Downloads → DSGVO bleibt gewahrt). */
:root[lang="ar"] {
  --font-display: "Noto Naskh Arabic", "Segoe UI", Tahoma, "Geeza Pro", "Times New Roman", serif;
  --font-body: "Noto Sans Arabic", "Segoe UI", Tahoma, "Geeza Pro", -apple-system, sans-serif;
}
/* Der Markenschriftzug bleibt in der Hausschrift (lateinische Buchstaben) */
:root[lang="ar"] .brand-name,
:root[lang="ar"] .brand-sub,
:root[lang="ar"] .hero-title {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* Arabische Buchstaben sind verbunden — gesperrte Schrift zerreißt sie.
   Deshalb für arabischen Text keine zusätzlichen Buchstabenabstände. */
:root[lang="ar"] h1,
:root[lang="ar"] h2,
:root[lang="ar"] .eyebrow,
:root[lang="ar"] .hero-eyebrow,
:root[lang="ar"] .hero-subtitle,
:root[lang="ar"] .btn,
:root[lang="ar"] .about-badge span,
:root[lang="ar"] .promo-badge,
:root[lang="ar"] .promo-zones,
:root[lang="ar"] .service-price,
:root[lang="ar"] .price-group-title,
:root[lang="ar"] .price-request,
:root[lang="ar"] .package-flag,
:root[lang="ar"] .footer-social a,
:root[lang="ar"] .lang-toggle {
  letter-spacing: normal;
}

/* Seitenabhängige Abstände und Positionen spiegeln */
[dir="rtl"] .skip-link { left: auto; right: 1rem; }
[dir="rtl"] .brand-sub { padding-left: 0; padding-right: 2px; }

[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .lang-menu button { text-align: right; }
[dir="rtl"] .lang-menu button.is-active::after { margin-left: 0; margin-right: auto; }

[dir="rtl"] .about-badge { left: auto; right: -0.75rem; }
[dir="rtl"] .about-list li { padding-left: 0; padding-right: 1.9rem; }
[dir="rtl"] .about-list li::before { left: auto; right: 0; }

[dir="rtl"] .promo-card::before { right: auto; left: -4rem; }

/* Pfeil in den Leistungs-Links zeigt in Leserichtung (nach links) */
[dir="rtl"] .service-link svg { transform: scaleX(-1); }
[dir="rtl"] .service-link:hover svg { transform: scaleX(-1) translateX(4px); }

[dir="rtl"] .whatsapp-fab {
  right: auto;
  left: max(1.1rem, env(safe-area-inset-left));
}

[dir="rtl"] .legal-todo,
[dir="rtl"] .legal-lang-note {
  border-left: 0;
  border-right: 3px solid var(--gold);
  border-radius: 10px 0 0 10px;
}
[dir="rtl"] .legal-todo {
  border-right-width: 4px;
  border-right-color: var(--accent);
  border-radius: 12px 0 0 12px;
}
