/* =============================================================
   KARA HAIR ARTISTA — Friseursalon Wiesloch
   Schwarz-Weiß-Wortmarke + Holzton/Rot-Design-System
   (abgeleitet aus echtem Kundenfeedback: schwarz/weißes Logo,
   echte Salon-Farben Holz/Schwarz/Rot, Rot bewusst nur als Mikro-Akzent)
   Fonts werden lokal selbst gehostet (assets/fonts/) statt über
   Google Fonts CDN geladen — keine IP-Übertragung an Google beim
   Seitenaufruf (DSGVO). Farben/Fonts zentral hier in :root → 1 Stelle
   zum Anpassen.
   ============================================================= */

/* --- Lokale Schriften (Variable Fonts, ersetzen Google-Fonts-CDN) --- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../assets/fonts/inter-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("../assets/fonts/playfair-italic-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../assets/fonts/playfair-normal-variable.woff2") format("woff2");
}

:root {
  /* --- Farben --- */
  --bg: #0d0c0b;
  --bg-1: #141210;
  --bg-2: #1c1916;
  --bg-elev: #242019;
  --bg-glass: rgba(13, 12, 11, 0.75);

  /* Echtes Schmuck-Gold statt Senf-Ton (Kundenfeedback: vorherige Version
     war zu dunkel/oliv und wirkte senfig statt metallisch). Helligkeit
     wieder angehoben (Referenz: klassisches Schmuckgold #D4AF37), Sättigung
     und Farbwinkel (~46°) beibehalten für den kühleren, kräftigen Ton.
     Token-Namen (--wood*) bleiben aus Kompatibilität. */
  --wood: #cfaa30;
  --wood-soft: #d2b556;
  --wood-light: #d8c279;
  --wood-deep: #957a23;

  /* --red* zeigt weiterhin auf denselben Ton (kein Rot mehr, alles Gold) */
  --red: #cfaa30;
  --red-deep: #957a23;

  --text: #f5f1ea;
  --muted: #a8a099;
  /* #6f6862 (früherer Wert) lag bei 3.6:1 auf --bg, unter WCAG-AA-Mindest-
     kontrast (4.5:1) für die Fließtextgrößen, in denen dieser Ton läuft
     (Bewertungs-Metadaten, Footer, Hinweise). Angehoben auf 4.95:1. */
  --muted-2: #857f7a;
  --line: rgba(207, 170, 48, 0.16);
  --line-soft: rgba(255, 255, 255, 0.06);

  --grad-accent: linear-gradient(115deg, #d8c279 0%, #cfaa30 38%, #f0dfa0 64%, #957a23 100%);
  --grad-accent-line: linear-gradient(90deg, transparent, var(--wood-soft) 18%, #f0dfa0 50%, var(--wood-soft) 82%, transparent);

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

  /* --- Layout --- */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-accent: 0 10px 40px -12px rgba(207, 170, 48, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- Reset / Base ----------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* dezente Hintergrund-Textur (Vignette + warmer Schimmer) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(207, 170, 48, 0.09), transparent 60%),
    radial-gradient(900px 600px at 0% 100%, rgba(207, 170, 48, 0.06), transparent 55%);
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.002em;
}

p { margin: 0 0 1rem; }

::selection { background: rgba(207, 170, 48, 0.3); color: #fff; }

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

/* ----------------------------- Layout-Helfer ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; z-index: 1; }
section[id], .hero[id] { scroll-margin-top: 84px; }

.section-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 64px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--grad-accent-line);
}
.section-head.left .eyebrow::after,
.eyebrow.solo::after { display: none; }

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: 0.005em;
}
/* Gold als gezielter Akzent (ein Wort), nicht als Dauer-Verlauf auf jeder
   Überschrift — Zurückhaltung liest sich hochwertiger als Dauer-Glanz. */
.section-title .accent { color: var(--wood-light); }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }

.wood-text { color: var(--wood-light); }

/* ----------------------------- Buttons ----------------------------- */
/* Klare, vollflächige Form (kein Pillen-Radius, kein Ausschnitt) mit
   ruhigem Verlauf-losem Gold und einem spürbaren, aber dezenten Hover. */
.btn {
  --btn-pad-y: 15px;
  --btn-pad-x: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-wood {
  background: var(--grad-accent);
  color: #241209;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-wood:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px rgba(207, 170, 48, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--wood);
  color: var(--wood-light);
  background: rgba(207, 170, 48, 0.06);
  transform: translateY(-3px);
}

.btn-lg { --btn-pad-y: 18px; --btn-pad-x: 38px; font-size: 1rem; }

/* ----------------------------- Navbar ----------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease), padding 0.45s var(--ease);
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
/* Am gerenderten Bild gemessen: Im gescrollten Zustand halten die Navigations-
   links 6,45:1, weil sie auf der eigenen Glasfläche liegen. Am Seitenanfang,
   wo die Leiste ohne Hintergrund über dem Hero-Foto schwebt, fielen dieselben
   Links auf 1,86:1 bis 1,90:1. Nicht die Farbe ist das Problem, sondern der
   fehlende Bezugsgrund: Der Text lag auf dem, was das Foto zufällig hergab.
   Ein weicher, nach unten auslaufender Verlauf gibt der Leiste oben einen
   kontrollierten Grund, ohne den schwebenden Charakter aufzugeben. */
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 12, 11, 0.55), rgba(13, 12, 11, 0));
  opacity: 1;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.nav.scrolled::before { opacity: 0; }
.nav.scrolled {
  background: var(--bg-glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}
/* Hebt den Inhalt über den Verlauf aus .nav::before. Ohne diese Zeile läge das
   absolut positionierte Pseudoelement über der nicht positionierten Leiste und
   würde Logo und Links dämpfen, statt ihren Grund zu bilden. */
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 1; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}
.brand .brand-mark {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg);
  border: 1.5px solid var(--text);
  box-shadow: 0 4px 16px -6px rgba(0,0,0,0.6);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  font-size: 1.1rem;
}
.brand .brand-text { color: var(--text); }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: height 0.45s var(--ease);
}
.nav.scrolled .brand-logo { height: 38px; }
.footer .brand-logo { height: 42px; }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
/* Der Verlauf allein genügt nicht: Über der hellsten Stelle des Hero-Fotos
   käme --muted auch mit Grund nur auf rund 2,3:1. Am Seitenanfang tragen die
   Links deshalb die helle Schrift. Das ist keine Inkonsequenz gegenüber dem
   gescrollten Zustand, sondern folgt der Aufgabe: Oben behauptet sich die
   Leiste gegen ein Foto, unten liegt sie auf ihrer eigenen ruhigen Fläche und
   darf zurücktreten. */
.nav:not(.scrolled) .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; align-items: center; gap: 16px; }

/* Burger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 120;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--wood-light);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after { transform: translate(-50%, 8px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%, 0) rotate(45deg); }
body.menu-open .nav-toggle span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* Mobile Overlay-Menü */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: linear-gradient(160deg, #1d1814 0%, #100d0b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}
body.menu-open .nav-overlay { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text);
  letter-spacing: 0.02em;
  opacity: 0.85;
  transition: color 0.3s, opacity 0.3s;
}
.nav-overlay a:hover { color: var(--wood-light); opacity: 1; }
.nav-overlay .btn { margin-top: 14px; }

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
/* Ladenfront-Foto als Hero-Hintergrund, mit dunklem Verlauf abgedunkelt
   für Textlesbarkeit und den gewohnt warmen, ruhigen Farbton. */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(180deg, rgba(13, 12, 11, 0.48) 0%, rgba(19, 15, 11, 0.28) 42%, rgba(13, 12, 11, 0.62) 100%),
    radial-gradient(120% 95% at 50% 0%, rgba(36, 28, 20, 0.15) 0%, rgba(23, 17, 12, 0.25) 46%, rgba(13, 12, 11, 0.4) 100%),
    url("../assets/img/hero-storefront.webp");
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
}

/* Haarsträhnen-Linie nur noch als dezenter Sektions-Divider (nicht mehr im Hero) */
.hair-line {
  pointer-events: none;
  user-select: none;
}
.hair-line.hl-divider { width: 120px; height: auto; opacity: 0.5; display: block; margin: 0 auto; }

/* sehr feine Vignette für Tiefe an den Rändern */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 50% 35%, transparent 62%, rgba(0,0,0,0.42) 100%);
}

.hero-content {
  padding-top: 130px;
  padding-bottom: 90px;
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

/* Nachweis als klare Typo statt Pillen-Badge — kein Rahmen, kein Blur. */
.hero-badge {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-badge .stars { color: var(--wood); letter-spacing: 0.08em; font-size: 1.1em; }
.hero-badge strong { color: var(--text); font-weight: 600; }

.hero h1 {
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
}
.hero h1 .brand-name { display: block; }
.hero h1 .brand-name .bn-word {
  display: block;
  white-space: nowrap;
  font-size: clamp(1.95rem, 11.4vw, 7rem);
  line-height: 1.04;
}
.hero h1 .brand-name .bn-kara {
  font-size: clamp(2.5rem, 14.8vw, 9.2rem);
  margin-bottom: 2px;
}
.hero h1 .line2 {
  display: block;
  font-weight: 600;
  color: var(--wood-light);
  font-size: clamp(1.5rem, 5.2vw, 3.4rem);
  margin-top: 12px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }
.hero-actions .btn { --btn-pad-y: 22px; --btn-pad-x: 44px; font-size: 1.1rem; }

/* ----------------------------- Scroll-Reveal ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ----------------------------- Philosophie / Über uns ----------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-copy .section-title { margin-bottom: 22px; }
.about-copy p { color: var(--muted); font-size: 1.06rem; }
.about-copy .lead { color: var(--text); font-size: 1.18rem; }

.about-media { position: relative; }
.about-media .frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about-media .frame img { width: 100%; height: 100%; object-fit: cover; }

/* Kennzeichnung KI-bearbeiteter Bilder (EU AI Act Art. 50 Abs. 4) */
.ai-disclosure {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(13, 12, 11, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f5f1ea;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}
.hero .ai-disclosure { left: 20px; bottom: 20px; }
.about-media .frame .ai-disclosure { right: 12px; top: 12px; }
.about-media .badge-float {
  position: absolute;
  left: -26px; bottom: 36px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-media .badge-float .num {
  font-family: var(--font-display);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 2.1rem;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.about-media .badge-float .lbl { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
}
.stats .stat .num {
  font-family: var(--font-display);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats .stat .lbl { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.06em; margin-top: 4px; }

/* ----------------------------- Highlights ----------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  position: relative;
  padding: 38px 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 0%, rgba(207, 170, 48,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card .ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(207, 170, 48,0.06);
  color: var(--wood-light);
  margin-bottom: 22px;
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ----------------------------- Leistungs-Überblick: nummerierte Liste ----------------------------- */
/* Bewusst keine zweite Karten-Kachel-Reihe direkt nach der Hero-Sektion —
   sonst wiederholt sich dasselbe Muster wie bei "Gut zu wissen" weiter unten. */
.capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(40px, 6vw, 84px);
}
.capability-list li {
  display: flex;
  gap: 22px;
  align-items: baseline;
  padding: 28px 4px;
  border-top: 1px solid var(--line-soft);
}
.cap-idx {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--wood);
  letter-spacing: 0.02em;
  flex: none;
}
.capability-list h3 { font-size: 1.35rem; margin-bottom: 8px; }
.capability-list p { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ----------------------------- Zahlung & Konditionen: kompakte Zeilen ----------------------------- */
/* Andere Anatomie als die Leistungs-Liste oben (Icon+Zeile statt Nummer+Spalte) —
   jede Sektion soll anders aussehen, nicht dasselbe Bauteil wiederholen. */
.info-rows {
  border-top: 1px solid var(--line-soft);
  max-width: 780px;
  margin-inline: auto;
}
.info-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line-soft);
}
.info-row .ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--wood-light);
  flex: none;
}
.info-row .ico svg { width: 20px; height: 20px; }
.info-row h3 { font-size: 1.1rem; margin-bottom: 4px; }
.info-row p { color: var(--muted); font-size: 0.95rem; margin: 0; }

@media (max-width: 720px) {
  .capability-list { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 36px 1fr; }
  .info-row .ico { width: 36px; height: 36px; }
}

/* ----------------------------- Leistungen ----------------------------- */
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 50px; }
.menu-tab {
  padding: 11px 24px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.menu-tab:hover { color: var(--text); border-color: var(--wood); }
.menu-tab.active { background: var(--wood); color: #241209; border-color: transparent; font-weight: 600; }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.menu-cols { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 32px); max-width: 720px; margin-inline: auto; }
.menu-group h3 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.menu-item { display: flex; align-items: baseline; gap: 12px; padding: 13px 0; border-bottom: 1px dashed var(--line-soft); }
.menu-item:last-child { border-bottom: 0; }
.menu-item .mi-name { font-family: var(--font-display); font-size: 1.18rem; color: var(--text); }
.menu-item .mi-desc { font-size: 0.85rem; color: var(--muted-2); display: block; font-family: var(--font-body); margin-top: 2px; }
.menu-item .mi-dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,0.14); transform: translateY(-4px); }
.menu-item .mi-price { font-family: var(--font-display); font-size: 1.18rem; color: var(--wood-light); white-space: nowrap; }
.menu-note { text-align: center; color: var(--muted-2); font-size: 0.85rem; margin-top: 44px; letter-spacing: 0.02em; max-width: 640px; margin-inline: auto; }
.menu-note strong { color: var(--wood-light); font-weight: 600; }

/* ----------------------------- Galerie ----------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-item-video { cursor: default; }
.gallery-item-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery-item .zoom-ico {
  position: absolute;
  right: 14px; bottom: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--line);
  color: var(--wood-light);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .zoom-ico { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 5, 4, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; }
.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.open img { transform: scale(1); }
.lightbox figcaption {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--wood-light);
  font-size: 1.4rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover { border-color: var(--wood); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--wood-light);
  font-size: 1.5rem;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.3s var(--ease);
}
.lightbox-nav:hover { border-color: var(--wood); background: rgba(207, 170, 48,0.08); }
.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

/* ----------------------------- Bewertungen ----------------------------- */
.reviews-wrap { display: grid; grid-template-columns: 0.8fr 2fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.reviews-score {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
}
.reviews-score .big {
  font-family: var(--font-display);
  font-variant-numeric: lining-nums proportional-nums;
  font-size: 3rem;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reviews-score .stars { color: var(--wood); font-size: 1.3rem; letter-spacing: 0.15em; margin: 10px 0 8px; }
.reviews-score .count { color: var(--muted); font-size: 0.9rem; }
.reviews-score .src { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 0.82rem; color: var(--wood-light); border-top: 1px solid var(--line-soft); padding-top: 16px; }

.reviews-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.review {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.review:hover { transform: translateY(-5px); border-color: var(--line); }
.review .stars { color: var(--wood); letter-spacing: 0.12em; margin-bottom: 14px; font-size: 0.95rem; }
.review p { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: var(--text); line-height: 1.6; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review .who .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-accent);
  color: #241209; font-weight: 700; font-family: var(--font-display);
}
.review .who .nm { font-size: 0.92rem; font-weight: 600; }
.review .who .mt { font-size: 0.76rem; color: var(--muted-2); }

/* ----------------------------- Kontakt / Öffnungszeiten ----------------------------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: stretch; }
.hours-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
}
.hours-card h3 { font-size: 1.7rem; margin-bottom: 6px; }
.hours-card .hint { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.hours-row:last-of-type { border-bottom: 0; }
.hours-row .day { color: var(--wood-light); letter-spacing: 0.04em; }
.hours-row.today .day { color: var(--text); font-weight: 600; }
.hours-row .time { font-family: var(--font-display); font-size: 1.1rem; color: var(--wood-light); }
.hours-row.today .time { color: var(--text); }
.hours-row .closed { color: var(--muted-2); font-size: 0.95rem; }

.contact-lines { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 16px; }
.contact-line { display: flex; align-items: center; gap: 14px; color: var(--text); }
.contact-line svg { width: 20px; height: 20px; color: var(--wood); flex: none; }
.contact-line a:hover { color: var(--wood-light); }
.contact-line span small { display: block; color: var(--muted-2); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  position: relative;
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.35) invert(0.9) sepia(0.15) hue-rotate(320deg) contrast(0.92); }

.map-consent {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 40px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
}
.map-consent p { color: var(--muted); font-size: 0.92rem; max-width: 360px; margin: 0; }

/* Widerruf der Karten-Einwilligung. Liegt auf der Karte, damit er dort
   auffindbar ist, wo die Einwilligung erteilt wurde, bleibt aber leise genug,
   um die Karte nicht zu überlagern. */
.map-revoke {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(13, 12, 11, 0.86);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.map-revoke:hover { border-color: var(--wood); background: rgba(13, 12, 11, 0.95); }

/* ----------------------------- CTA-Band ----------------------------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  text-align: center;
  padding: clamp(54px, 8vw, 96px) clamp(24px, 5vw, 80px);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(120% 160% at 50% 0%, rgba(207, 170, 48,0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
/* Haarlinien-Textur statt generischer Verlaufs-Blobs — dieselbe Idee wie bei
   Lima Lounges Mashrabiya-Textur, hier mit dem salon-eigenen Haarlinien-Motiv. */
.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/hairline-texture.svg") center / 200px repeat;
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2rem, 5vw, 3.3rem); margin-bottom: 16px; }
.cta-inner p { color: var(--muted); max-width: 520px; margin: 0 auto 34px; font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ----------------------------- Footer ----------------------------- */
.footer { border-top: 1px solid var(--line-soft); padding: 70px 0 32px; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-soft); }
.footer .brand { margin-bottom: 18px; }
.footer-about p { color: var(--muted); font-size: 0.95rem; max-width: 320px; }
.footer-col h3 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--wood); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: var(--muted); font-size: 0.95rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--wood-light); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--muted);
  transition: all 0.35s var(--ease);
}
.socials a:hover { color: var(--wood-light); border-color: var(--wood); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 26px; color: var(--muted-2); font-size: 0.84rem; }
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--wood-light); }

/* ----------------------------- Floating Anruf-Button ----------------------------- */
.call-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--grad-accent);
  display: grid; place-items: center;
  box-shadow: 0 12px 34px -8px rgba(207, 170, 48, 0.6);
  transition: transform 0.4s var(--ease);
  animation: callPulse 2.6s infinite;
}
.call-float:hover { transform: scale(1.08); }
.call-float svg { width: 27px; height: 27px; color: #241209; }
@keyframes callPulse {
  0% { box-shadow: 0 12px 34px -8px rgba(207, 170, 48,0.6), 0 0 0 0 rgba(207, 170, 48,0.5); }
  70% { box-shadow: 0 12px 34px -8px rgba(207, 170, 48,0.6), 0 0 0 16px rgba(207, 170, 48,0); }
  100% { box-shadow: 0 12px 34px -8px rgba(207, 170, 48,0.6), 0 0 0 0 rgba(207, 170, 48,0); }
}

/* ----------------------------- Legal-Seiten ----------------------------- */
.legal { padding: 160px 0 100px; position: relative; z-index: 1; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin-bottom: 14px; }
.legal .lead { color: var(--muted); margin-bottom: 48px; }
.legal h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--wood-light); }
.legal h3 { font-family: var(--font-body); font-size: 1rem; letter-spacing: 0.04em; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--wood-light); text-decoration: underline; text-underline-offset: 3px; }
.legal .todo {
  background: rgba(207, 170, 48,0.08);
  border: 1px dashed var(--wood-deep);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  color: var(--wood-light);
  font-size: 0.9rem;
  margin: 24px 0;
}
.back-home { display: inline-flex; align-items: center; gap: 8px; margin-top: 50px; color: var(--wood-light); font-weight: 500; }
.back-home:hover { gap: 12px; }

/* ----------------------------- Barrierefrei-Hinweis (Kontakt) ----------------------------- */
.access-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(207, 170, 48, 0.07);
  color: var(--wood-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.access-note svg { width: 24px; height: 24px; flex: none; color: var(--wood); }

/* ----------------------------- Galerie-Kategorien ----------------------------- */
.gallery-cat { margin-top: clamp(36px, 5vw, 56px); }
.gallery-cat:first-of-type { margin-top: 0; }
.gallery-cat-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.gallery-soon {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 160px;
  padding: 32px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--line);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
}
.gallery-soon .soon-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--wood-light); }
.gallery-soon p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ----------------------------- Marken-Seite ----------------------------- */
.mk-block { padding: clamp(40px, 6vw, 68px) 0; border-top: 1px solid var(--line-soft); }
.mk-block:first-of-type { border-top: 0; padding-top: clamp(24px, 4vw, 40px); }
.mk-head { max-width: 760px; }
.mk-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--wood); margin-bottom: 14px;
}
.mk-name { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 18px; }
.mk-name .accent { color: var(--wood-light); }
.mk-lead { color: var(--text); font-size: 1.12rem; margin-bottom: 14px; }
.mk-block p { color: var(--muted); font-size: 1.02rem; }
.mk-mini { font-size: 0.9rem; color: var(--muted-2); font-style: italic; }

.mk-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 4px; }
.tag {
  display: inline-flex; align-items: center;
  padding: 7px 15px; border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(207, 170, 48, 0.05);
  color: var(--wood-light);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
}

.mk-flag {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 22px; padding: 12px 20px;
  border-radius: 4px;
  background: var(--wood);
  color: #241209; font-weight: 600; font-size: 0.95rem;
}
.mk-flag svg { width: 18px; height: 18px; }

.mk-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }
.mk-split .card { padding: 32px 30px; }
.mk-split .card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.mk-split .card .card-kicker { display: block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--wood); margin-bottom: 12px; }

.mk-page-head { text-align: center; max-width: 720px; margin: 0 auto; padding-top: clamp(90px, 12vw, 130px); }

/* ----------------------------- Hervorgehobene Einzel-Leistung ----------------------------- */
.service-highlight {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
  padding: 28px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--border-accent, rgba(207, 170, 48, 0.5));
  background:
    radial-gradient(120% 160% at 0% 0%, rgba(207, 170, 48,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg-1));
}
.service-highlight .sh-ico {
  width: 56px; height: 56px; flex: none;
  display: grid; place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(207, 170, 48,0.06);
  color: var(--wood-light);
}
.service-highlight .sh-ico svg { width: 26px; height: 26px; }
.service-highlight h3 { font-size: 1.35rem; margin-bottom: 6px; }
.service-highlight p { color: var(--muted); font-size: 0.98rem; margin: 0; }
@media (max-width: 560px) {
  .service-highlight { flex-direction: column; text-align: center; }
}

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 460px; margin-inline: auto; }
  .reviews-wrap { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .mk-split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .reviews-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 2; }
  .stats { gap: 16px; }
  .about-media .badge-float { left: 50%; transform: translateX(-50%); bottom: -26px; }

  /* Klare Hierarchie im Hero: KARA / HAIR ARTISTA gestapelt in gleicher Größe,
     Tagline und Buttons deutlich kleiner darunter. Feste 100svh-Höhe entfällt,
     damit der Inhalt die Sektion füllt statt in der Mitte verloren zu wirken. */
  .hero { min-height: 0; }
  .hero-content { padding-top: 116px; padding-bottom: 64px; }
  .hero-badge { display: none; }
  .hero h1 { margin-bottom: 20px; }
  .hero h1 .line2 { font-size: clamp(1.4rem, 6.6vw, 2.1rem); margin-top: 16px; }
  .hero-actions { margin-top: 8px; }
  .hero-actions .btn { font-size: 0.88rem; --btn-pad-y: 14px; --btn-pad-x: 28px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .cta-actions .btn { width: 100%; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stats { grid-template-columns: 1fr; text-align: center; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
}

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