/* =========================================================
   Mina's Hairlounge – Friseursalon Bad Homburg
   Farben wie Salon Elke Wenzlaff: Anthrazit · Warmweiß · Gold
   Unterschied: weiche Ecken, leichte Schatten, Quentin mal golden, mal blass
   Schriften: Montserrat (Titel) · DM Sans (Text) · Quentin (Schreibschrift-Akzent)
   ========================================================= */

@font-face { font-family: "Quentin"; src: url("../fonts/quentin.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/montserrat-var.woff2") format("woff2"); font-weight: 400 700; font-style: normal; font-display: swap; }
@font-face { font-family: "DM Sans"; src: url("../fonts/dmsans-var.woff2") format("woff2"); font-weight: 400 700; font-style: normal; font-display: swap; }

:root {
  --ink: #262626;
  --ink-soft: #333130;
  --text: #3d3a36;
  --muted: #6f6a63;
  --paper: #fbf9f6;
  --sand: #f3eee6;
  --sand-deep: #ebe3d6;
  --line: #e2d9cb;
  --gold: #bf9a5c;         /* dekorativ */
  --gold-light: #d4b67f;   /* Gold auf dunklem Grund */
  --gold-text: #8a6932;    /* Gold für kleine Schrift auf hellem Grund (AA) */
  --pale: #ece2d1;         /* blasse Quentin-Wasserzeichen auf Warmweiß */
  --pale-sand: #e5d8c3;    /* blasse Quentin auf Sand */
  --white: #fff;

  --f-head: "Montserrat", system-ui, sans-serif;
  --f-body: "DM Sans", system-ui, sans-serif;
  --f-script: "Quentin", "Brush Script MT", cursive;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 10vw, 130px);
  --r-btn: 8px;
  --r-img: 14px;
  --r-card: 16px;
  --shadow: 0 22px 48px -26px rgba(38,38,38,.42), 0 4px 12px -6px rgba(38,38,38,.12);
  --shadow-lg: 0 34px 70px -34px rgba(38,38,38,.5), 0 6px 18px -8px rgba(38,38,38,.14);
  --header-h: 84px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font: 400 1.0625rem/1.7 var(--f-body);
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a[href^="tel:"] { text-decoration: none; }
p { margin: 0 0 1.1em; }
h1, h2, h3, h4 { font-family: var(--f-head); color: var(--ink); margin: 0; line-height: 1.15; font-weight: 600; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 200; text-decoration: none; border-radius: var(--r-btn); }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section) 0; position: relative; }
.section--sand { background: var(--sand); }
.section--tight { padding: calc(var(--section) * .6) 0; }
.lead { font-size: clamp(1.08rem, 1.4vw, 1.18rem); }

/* ---------- Überschriften: Quentin golden (über dem Titel) oder blass (dahinter) ---------- */
.heading { position: relative; margin-bottom: clamp(36px, 5vw, 60px); z-index: 1; }
.heading--center { text-align: center; }
.heading .script {
  display: block; font-family: var(--f-script); font-weight: 400; color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: .9; letter-spacing: 0; white-space: nowrap;
  margin: 0 0 -.22em; position: relative; z-index: 2; transform: rotate(-3deg); transform-origin: left center;
}
.heading--center .script { transform-origin: center; }
@media (max-width: 600px) { .heading .script { font-size: 2.3rem; } }
.heading h2, .heading h1 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); text-transform: uppercase; letter-spacing: .04em; position: relative; z-index: 1; }
.heading .lead { margin-top: 20px; max-width: 620px; }
.heading--center .lead { margin-left: auto; margin-right: auto; }

.heading--watermark { padding-top: clamp(40px, 6vw, 70px); }
.watermark {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%) rotate(-4deg); z-index: 0;
  font-family: var(--f-script); color: var(--pale); line-height: 1; white-space: nowrap; pointer-events: none; user-select: none;
  font-size: clamp(6.5rem, 20vw, 11.5rem);
}
.section--sand .watermark { color: var(--pale-sand); }
/* zentrierte Variante: Überschrift tiefer, damit die Oberlängen der Schreibschrift frei lesbar sind */
.heading--center.heading--watermark { padding-top: clamp(80px, 10vw, 128px); }
.heading--watermark-left { padding-top: clamp(84px, 10vw, 128px); }
.heading--watermark-left .watermark { left: -.08em; transform: rotate(-5deg); top: -.1em; }

/* ---------- Buttons (leicht gerundet) ---------- */
.btn {
  --bg: var(--ink); --fg: #fff; --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 30px; border: 1px solid var(--bd); background: var(--bg); color: var(--fg);
  font: 600 .78rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--r-btn); cursor: pointer;
  box-shadow: 0 10px 22px -14px rgba(38,38,38,.55);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { --bg: var(--gold); --bd: var(--gold); --fg: var(--ink); transform: translateY(-2px); box-shadow: 0 16px 28px -16px rgba(38,38,38,.6); }
.btn--gold { --bg: var(--gold); --bd: var(--gold); --fg: var(--ink); }
.btn--gold:hover { --bg: var(--gold-light); --bd: var(--gold-light); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--ink); box-shadow: none; }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.link-arrow {
  font: 600 .76rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--ink);
  display: inline-flex; align-items: center; gap: 12px; padding: 6px 0; border-bottom: 1px solid var(--gold);
}
.link-arrow::after { content: "→"; font-family: var(--f-body); letter-spacing: 0; transition: transform .3s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(251,249,246,.94); backdrop-filter: saturate(1.4) blur(10px); -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -22px rgba(0,0,0,.35); }
.header .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1320px; }

.logo { display: inline-flex; align-items: baseline; text-decoration: none; color: var(--ink); line-height: 1; white-space: nowrap; }
.logo__word { font: 600 1.12rem/1 var(--f-head); letter-spacing: .24em; text-transform: uppercase; padding: 8px 0; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav a { white-space: nowrap; font: 500 .76rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; text-decoration: none; color: var(--ink); padding: 10px 0; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header__cta { display: flex; align-items: center; gap: 18px; }
.header__phone { font: 600 .95rem/1 var(--f-head); letter-spacing: .06em; text-decoration: none; color: var(--ink); display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.header__phone svg { width: 18px; height: 18px; color: var(--gold); }
.header .btn { min-height: 46px; padding: 0 22px; white-space: nowrap; }
.burger { display: none; width: 48px; height: 48px; border: 0; background: none; cursor: pointer; position: relative; margin-right: -10px; }
.burger span, .burger::before, .burger::after { content: ""; position: absolute; left: 12px; right: 12px; height: 1.5px; border-radius: 2px; background: var(--ink); transition: transform .35s var(--ease), opacity .2s; }
.burger::before { top: 17px; } .burger span { top: 23.5px; } .burger::after { top: 30px; }
.nav-open .burger::before { transform: translateY(6.5px) rotate(45deg); }
.nav-open .burger span { opacity: 0; }
.nav-open .burger::after { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1340px) { .header__phone span { display: none; } }
@media (max-width: 1140px) and (min-width: 961px) {
  .header__cta .btn { display: none; }
  .nav { gap: 22px; }
  .nav a { letter-spacing: .16em; }
  .logo__word { font-size: 1rem; letter-spacing: .2em; }
}
@media (max-width: 960px) {
  :root { --header-h: 70px; }
  .logo__word { font-size: .9rem; letter-spacing: .2em; }
  .burger { display: block; }
  .header__cta .btn, .header__phone { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: var(--paper); flex-direction: column; align-items: stretch; gap: 0;
    padding: 20px var(--gutter) 120px; overflow-y: auto; height: calc(100dvh - var(--header-h));
    opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
  }
  .nav-open .nav { opacity: 1; visibility: visible; transform: none; transition: opacity .35s var(--ease), transform .35s var(--ease); }
  .header { background: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav a { font-size: 1rem; padding: 20px 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .nav a[aria-current="page"] { color: var(--gold-text); }
  .nav__extra { display: block !important; margin-top: 28px; }
  .nav__extra .btn { width: 100%; border-bottom: 0; padding: 0 20px; font-size: .8rem; }
  .nav-open { overflow: hidden; }
}
.nav__extra { display: none; }
.nav__extra .script { white-space: nowrap; font-family: var(--f-script); color: var(--gold); font-size: 2.2rem; line-height: 1; display: block; margin-bottom: 10px; }
.nav__extra p { color: var(--muted); font-size: .95rem; }
.nav__extra .nav__addr { margin-top: 18px; font-size: .9rem; }

/* ---------- Mobile Kontaktleiste (immer präsent) ---------- */
.callbar { display: none; }
@media (max-width: 960px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .callbar {
    display: grid; grid-template-columns: 1.6fr 1fr; gap: 8px; position: fixed; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); z-index: 120;
    background: var(--ink); padding: 6px; border-radius: 14px; box-shadow: 0 18px 40px -12px rgba(0,0,0,.5);
  }
  .callbar a { display: flex; align-items: center; justify-content: center; gap: 10px; height: 52px; border-radius: 10px; color: #fff; text-decoration: none; font: 600 .74rem/1 var(--f-head); letter-spacing: .14em; text-transform: uppercase; }
  .callbar svg { width: 20px; height: 20px; color: var(--gold-light); }
  .callbar .callbar__main { background: var(--gold); color: var(--ink); }
  .callbar .callbar__main svg { color: var(--ink); }
}

/* ---------- Hero (Vollbild-Foto wie bei Curly, Text ohne Zierschrift) ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff; background: var(--ink);
  min-height: min(100svh, 920px); display: flex; align-items: center;
  margin-top: calc(var(--header-h) * -1); padding: calc(var(--header-h) + 50px) 0 clamp(110px, 12vw, 150px);
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 68% 35%; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(24,22,20,.5) 0%, rgba(24,22,20,0) 20%), linear-gradient(90deg, rgba(24,22,20,.78) 0%, rgba(24,22,20,.58) 36%, rgba(24,22,20,.12) 64%, rgba(24,22,20,0) 100%);
}
.hero .wrap { position: relative; z-index: 2; max-width: 1280px; }
.hero__text { max-width: 640px; }
.hero__eyebrow { font: 600 .8rem/1.2 var(--f-head); letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); margin: 0 0 20px; display: flex; align-items: center; gap: 14px; }
.hero__eyebrow::before { content: ""; width: 40px; height: 1px; background: currentColor; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.4rem); text-transform: uppercase; letter-spacing: .03em; line-height: 1.05; text-shadow: 0 2px 22px rgba(0,0,0,.4); }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero__lead { margin: 26px 0 34px; max-width: 520px; font-size: clamp(1.08rem, 1.5vw, 1.2rem); color: #efe9e1; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 40px; }
.hero .open-status { color: #e4ddd3; }
.hero .open-status strong { color: #fff; }
.hero .open-status.is-open::before { background: #6fcf8a; }
.btn--ghost-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.6); box-shadow: none; backdrop-filter: blur(4px); }
.btn--ghost-light:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }

/* Startseite: Header liegt transparent über dem Foto */
html:not(.nav-open) .home .header:not(.is-scrolled) { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-color: transparent; box-shadow: none; }
html:not(.nav-open) .home .header:not(.is-scrolled) .logo,
html:not(.nav-open) .home .header:not(.is-scrolled) .header__phone { color: #fff; }
html:not(.nav-open) .home .header:not(.is-scrolled) .logo { text-shadow: 0 1px 12px rgba(0,0,0,.55); }
html:not(.nav-open) .home .header:not(.is-scrolled) .header__phone svg { color: var(--gold-light); }
html:not(.nav-open) .home .header:not(.is-scrolled) .btn { --bg: var(--gold); --bd: var(--gold); --fg: var(--ink); }
html:not(.nav-open) .home .header:not(.is-scrolled) .burger span,
html:not(.nav-open) .home .header:not(.is-scrolled) .burger::before,
html:not(.nav-open) .home .header:not(.is-scrolled) .burger::after { background: #fff; }
@media (min-width: 961px) { html:not(.nav-open) .home .header:not(.is-scrolled) .nav a { color: #fff; } }

@media (max-width: 960px) {
  .hero { min-height: calc(100svh - 76px); align-items: flex-end; padding: calc(var(--header-h) + 170px) 0 40px; }
  .hero__bg { object-position: 70% 30%; }
  .hero::after { background: linear-gradient(180deg, rgba(24,22,20,.5) 0%, rgba(24,22,20,0) 18%, rgba(24,22,20,.3) 36%, rgba(24,22,20,.82) 54%, rgba(24,22,20,.95) 100%); }
  .hero__eyebrow { font-size: .68rem; letter-spacing: .2em; margin-bottom: 14px; }
  .hero__eyebrow::before { width: 26px; }
  .hero h1 { font-size: clamp(1.9rem, 8.4vw, 2.4rem); }
  .hero__lead { margin: 14px 0 22px; font-size: 1rem; line-height: 1.6; }
  .hero .btn-row .btn--ghost-light { display: none; }
  .hero .btn-row .btn { flex: 1 1 auto; }
  .hero__meta { margin-top: 20px; gap: 14px; }
}

.open-status { display: inline-flex; align-items: center; gap: 10px; font: 500 .9rem/1.3 var(--f-body); color: var(--muted); }
.open-status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #b9b2a7; box-shadow: 0 0 0 4px rgba(185,178,167,.2); flex: none; }
.open-status.is-open::before { background: #4f9a63; box-shadow: 0 0 0 4px rgba(79,154,99,.18); }
.open-status strong { color: var(--ink); font-weight: 600; }

/* Google-Badge */
.gbadge {
  display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink);
  background: #fff; padding: 12px 20px 12px 14px; border: 1px solid var(--line); border-radius: 60px;
  box-shadow: 0 14px 34px -20px rgba(38,38,38,.45); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gbadge:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -20px rgba(38,38,38,.55); }
.gbadge__g { width: 34px; height: 34px; flex: none; }
.gbadge__score { font: 700 1.55rem/1 var(--f-head); letter-spacing: .01em; color: var(--gold-text); transition: color .3s var(--ease); }
.gbadge:hover .gbadge__score { color: var(--gold); }
.footer a.gbadge, .footer a.gbadge:hover { color: var(--ink); }
.gbadge__right { display: flex; flex-direction: column; gap: 4px; }
.stars { display: inline-flex; gap: 2px; color: #f4b400; }
.stars svg { width: 15px; height: 15px; }
.gbadge__label { font: 500 .74rem/1 var(--f-body); color: var(--muted); letter-spacing: .02em; white-space: nowrap; }
.gbadge--hero { border-color: transparent; box-shadow: 0 16px 40px -18px rgba(0,0,0,.6); }
@media (max-width: 960px) {
  .gbadge--hero { padding: 9px 16px 9px 11px; gap: 10px; }
  .gbadge--hero .gbadge__g { width: 28px; height: 28px; }
  .gbadge--hero .gbadge__score { font-size: 1.3rem; }
}

/* ---------- Trust-Leiste (schwebende Karte) ---------- */
.trust { position: relative; z-index: 3; margin-top: clamp(-60px, -5vw, -40px); }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); }
.trust li { padding: 28px 22px; display: flex; align-items: center; gap: 16px; font: 600 .78rem/1.35 var(--f-head); letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.trust li + li { border-left: 1px solid var(--line); }
.trust svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.trust small { display: block; font: 400 .88rem/1.4 var(--f-body); letter-spacing: 0; text-transform: none; color: var(--muted); margin-top: 3px; }
@media (max-width: 960px) { .trust { margin-top: 0; } }
@media (max-width: 900px) {
  .trust ul { grid-template-columns: 1fr 1fr; }
  .trust li:nth-child(3) { border-left: 0; }
  .trust li:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 520px) { .trust li { padding: 18px 12px; gap: 10px; font-size: .68rem; letter-spacing: .1em; } .trust svg { width: 24px; height: 24px; } .trust small { font-size: .8rem; } }

/* ---------- Leistungs-Karten ---------- */
.svc-head { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 60px; align-items: end; margin-bottom: clamp(36px, 5vw, 56px); }
.svc-head .heading { margin-bottom: 0; }
.svc-head .lead { margin: 0; color: var(--muted); }
@media (max-width: 800px) { .svc-head { grid-template-columns: 1fr; } }

.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.2vw, 30px); }
.service { text-decoration: none; color: inherit; display: flex; flex-direction: column; background: #fff; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow); transition: transform .4s var(--ease), box-shadow .4s var(--ease); position: relative; }
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service__img { aspect-ratio: 4/3; overflow: hidden; }
.service__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service:hover .service__img img { transform: scale(1.05); }
.service__img img[src$="brauen-wimpern.jpg"] { object-position: 40% 50%; }
.service__body { padding: 24px 24px 24px; display: flex; flex-direction: column; flex: 1; position: relative; }
.service h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px; }
.service p { font-size: .96rem; color: var(--muted); margin-bottom: 18px; }
.service__price { margin-top: auto; display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; border-top: 1px solid var(--line); font: 600 .72rem/1 var(--f-head); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.service__price b { font: 600 1.1rem/1 var(--f-head); color: var(--ink); letter-spacing: .02em; text-transform: none; }
@media (max-width: 1000px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; gap: 14px; }
  .service { flex-direction: row; }
  .service .service__img { aspect-ratio: auto; width: 36%; flex: none; }
  .service__body { padding: 18px 16px; }
  .service p { display: none; }
  .service .service__price { border-top: 0; padding-top: 8px; }
}

/* ---------- Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-img); box-shadow: var(--shadow-lg); }
.split__media--duo { position: relative; padding: 0 22% 18% 0; }
.split__media--duo img:first-child { aspect-ratio: 4/5; }
.split__media--duo img:last-child { position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 1; border: 6px solid #fff; }
.split__media--frame { position: relative; }
.split__media--frame::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--gold); border-radius: calc(var(--r-img) + 8px); z-index: -1; }
.stat-card { position: absolute; left: -24px; bottom: 32px; background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-lg); padding: 20px 24px; display: grid; gap: 6px; justify-items: start; }
.stat-card__num { font: 700 2.2rem/1 var(--f-head); color: var(--gold-text); }
.stat-card__label { font: 500 .8rem/1.2 var(--f-body); color: var(--muted); }
.checklist { list-style: none; padding: 0; margin: 26px 0 34px; display: grid; gap: 14px; }
.checklist li { position: relative; padding-left: 32px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .85em; width: 18px; height: 1px; background: var(--gold); }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media--frame::before { inset: -10px 10px 10px -10px; }
  .stat-card { left: 12px; bottom: 16px; padding: 14px 18px; }
  .stat-card__num { font-size: 1.7rem; }
}

/* ---------- Team (Monogramme statt Fotos) ---------- */
.team { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 3vw, 36px); }
.member { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); overflow: hidden; text-align: center; display: flex; flex-direction: column; }
.member__mono { aspect-ratio: 5/3.4; display: grid; place-items: center; background: radial-gradient(120% 90% at 50% 110%, var(--sand-deep), var(--paper)); position: relative; overflow: hidden; }
.member__mono::after { content: ""; position: absolute; width: 58%; aspect-ratio: 1; border: 1px solid var(--gold); border-radius: 50%; opacity: .55; }
.member__mono span { font-family: var(--f-script); color: var(--gold); font-size: clamp(5.5rem, 10vw, 8rem); line-height: 1; transform: translateY(.08em) rotate(-6deg); position: relative; z-index: 1; }
.member:nth-child(2) .member__mono { background: radial-gradient(120% 90% at 50% 110%, #3a3836, var(--ink)); }
.member:nth-child(2) .member__mono span { color: var(--gold-light); }
.member__body { padding: 26px 26px 30px; }
.member h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .16em; }
.member .role { font: 600 .7rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); display: block; margin-top: 10px; }
.member p { font-size: .96rem; color: var(--muted); margin: 16px 0 0; }
@media (max-width: 860px) {
  .team { grid-template-columns: 1fr; gap: 14px; }
  .member { flex-direction: row; text-align: left; }
  .member__mono { aspect-ratio: auto; width: 32%; flex: none; }
  .member__mono span { font-size: 4.2rem; }
  .member__mono::after { width: 70%; }
  .member__body { padding: 18px 18px 20px; }
  .member p { font-size: .9rem; margin-top: 10px; }
}

/* ---------- Bewertungen (dunkler Abschnitt) ---------- */
.dark { background: var(--ink); color: #d9d4cc; position: relative; overflow: hidden; }
.dark h2, .dark h3 { color: #fff; }
.dark .heading .script { color: var(--gold-light); }
.dark__water { position: absolute; right: -.05em; bottom: -.3em; font-family: var(--f-script); color: rgba(212,182,127,.08); font-size: clamp(12rem, 30vw, 26rem); line-height: 1; transform: rotate(-6deg); pointer-events: none; user-select: none; }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 50px; position: relative; }
.reviews-head .heading { margin-bottom: 0; }
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); position: relative; align-items: stretch; }
.review { background: var(--ink-soft); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-card); padding: 36px 32px 30px; margin: 0; display: flex; flex-direction: column; position: relative; box-shadow: 0 24px 50px -30px rgba(0,0,0,.7); }
.review::before { content: "“"; position: absolute; top: 4px; right: 22px; font: 400 6rem/1 var(--f-head); color: var(--gold); opacity: .35; }
.review--feature { background: #fff; border-color: #fff; color: var(--text); }
.review--feature blockquote { color: var(--text) !important; }
.review--feature cite { color: var(--ink) !important; }
.review--feature figcaption { border-color: var(--line) !important; }
.review--feature small { color: var(--muted) !important; }
.review .stars { margin-bottom: 20px; color: var(--gold-light); }
.review--feature .stars { color: var(--gold); }
.review blockquote { margin: 0 0 28px; font-size: 1.02rem; line-height: 1.75; color: #e8e3db; }
.review figcaption { margin-top: auto; display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--ink); display: grid; place-items: center; font: 700 .85rem/1 var(--f-head); flex: none; }
.review cite { font: 600 .8rem/1.3 var(--f-head); letter-spacing: .12em; text-transform: uppercase; color: #fff; font-style: normal; display: block; }
.review small { color: #a39c91; font-size: .85rem; }
@media (max-width: 960px) {
  .reviews { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 86%; overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 calc(var(--gutter) * -1); padding: 16px var(--gutter) 18px; scrollbar-width: none; }
  .reviews::-webkit-scrollbar { display: none; }
  .review { scroll-snap-align: center; padding: 30px 24px 24px; }
}
.swipe-hint { display: none; }
@media (max-width: 960px) { .swipe-hint { display: block; font-size: .85rem; color: #a39c91; margin-top: 6px; } }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(12px, 1.8vw, 22px); }
.g { margin: 0; border-radius: var(--r-img); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/10; background: var(--sand-deep); }
.g img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.g:hover img { transform: scale(1.05); }
@media (max-width: 760px) { .g { aspect-ratio: 1; } }

/* ---------- Page Hero (Unterseiten, hell mit Bild) ---------- */
.page-hero { position: relative; overflow: hidden; background: var(--sand); padding: clamp(44px, 6vw, 84px) 0; }
.page-hero .wrap { position: relative; }
.page-hero .script { font-family: var(--f-script); color: var(--gold); font-size: clamp(2.6rem, 5.5vw, 4.2rem); line-height: .9; display: block; transform: rotate(-4deg); transform-origin: left; margin-bottom: -.12em; position: relative; z-index: 2; white-space: nowrap; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.8rem); text-transform: uppercase; letter-spacing: .05em; position: relative; }
.page-hero p { margin: 18px 0 0; max-width: 520px; color: var(--muted); font-size: 1.08rem; }
.crumbs { font: 500 .7rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.crumbs a { text-decoration: none; color: var(--gold-text); }
@media (max-width: 800px) {
  .page-hero p { font-size: 1rem; }
}

/* ---------- Preisliste ---------- */
.price-nav { position: sticky; top: var(--header-h); z-index: 50; background: rgba(251,249,246,.96); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.price-nav .wrap { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-top: 14px; padding-bottom: 14px; }
.price-nav .wrap::-webkit-scrollbar { display: none; }
.chip { flex: none; text-decoration: none; font: 600 .72rem/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: var(--ink); border: 1px solid var(--line); padding: 13px 20px; border-radius: 40px; background: #fff; transition: all .3s var(--ease); }
.chip:hover, .chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.price-block { scroll-margin-top: calc(var(--header-h) + 90px); }
@media (max-width: 600px) {
  .price-nav .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; overflow: visible; padding-top: 10px; padding-bottom: 10px; }
  .chip { text-align: center; padding: 11px 4px; font-size: .62rem; letter-spacing: .1em; }
  .price-block { scroll-margin-top: calc(var(--header-h) + 120px); }
}

.price-note { display: flex; gap: 18px; align-items: flex-start; background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); border-left: 3px solid var(--gold); padding: 22px 26px; margin-bottom: clamp(40px, 6vw, 70px); }
.price-note svg { width: 24px; height: 24px; color: var(--gold); flex: none; margin-top: 2px; }
.price-note p { margin: 0; color: var(--muted); }

.price-block { display: grid; grid-template-columns: 340px 1fr; gap: clamp(30px, 6vw, 90px); padding: clamp(40px, 6vw, 70px) 0; align-items: start; }
.price-block:first-of-type { padding-top: 0; }
.price-block__head { position: sticky; top: calc(var(--header-h) + 90px); }
.price-block__head .script { font-family: var(--f-script); color: var(--gold); font-size: 2.7rem; line-height: .9; display: block; transform: rotate(-4deg); transform-origin: left; margin-bottom: -.05em; white-space: nowrap; }
.price-block__head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); text-transform: uppercase; letter-spacing: .06em; }
.price-block__head img { margin-top: 26px; aspect-ratio: 4/3; object-fit: cover; width: 100%; border-radius: var(--r-img); box-shadow: var(--shadow); }
.price-block__head p { margin-top: 18px; color: var(--muted); font-size: .98rem; }
.prices { list-style: none; margin: 0; padding: 8px 30px; background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); }
.prices li { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.prices li:last-child { border-bottom: 0; }
.prices .name { font: 600 1rem/1.4 var(--f-head); color: var(--ink); letter-spacing: .02em; }
.prices .name small { display: block; font: 400 .88rem/1.5 var(--f-body); color: var(--muted); letter-spacing: 0; margin-top: 3px; }
.prices .price { font: 600 1.05rem/1 var(--f-head); color: var(--ink); white-space: nowrap; }
.prices .price span { font: 500 .7rem/1 var(--f-head); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-text); margin-right: 6px; }
@media (max-width: 900px) {
  .price-block { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .price-block__head { position: static; }
  .price-block__head .script { font-size: clamp(2rem, 9vw, 2.6rem); padding-right: .4em; }
  .price-block__head img { display: none; }
  .prices { padding: 4px 18px; }
  .prices li { padding: 15px 0; gap: 12px; }
  .prices .name { font-size: .93rem; }
}

.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); position: relative; z-index: 1; }
.detail { background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); padding: 34px 30px; position: relative; overflow: hidden; }
.detail svg { width: 36px; height: 36px; color: var(--gold); margin-bottom: 20px; }
.detail h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.detail p { color: var(--muted); font-size: .98rem; margin: 0; }
.detail__num { position: absolute; right: 18px; top: -6px; font-family: var(--f-script); color: var(--pale); font-size: 6rem; line-height: 1; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }

/* ---------- CTA-Band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--sand); }
.cta-band .wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(30px, 6vw, 80px); align-items: center; position: relative; z-index: 1; }
.cta-band .phone-big { font: 700 clamp(1.9rem, 4.2vw, 3.1rem)/1 var(--f-head); letter-spacing: .03em; color: var(--ink); text-decoration: none; display: inline-block; margin: 6px 0 26px; transition: color .3s var(--ease); }
.cta-band .phone-big:hover { color: var(--gold-text); }
.hours { width: 100%; border-collapse: collapse; font-size: .98rem; }
.hours th, .hours td { padding: 11px 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th { font: 600 .74rem/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.hours td { text-align: right; color: var(--muted); }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold-text); font-weight: 600; }
.hours tr.is-today th::after { content: " · Heute"; letter-spacing: .06em; }
.hours .closed { color: #a59e93; }
.hours-card { background: #fff; padding: clamp(26px, 3.5vw, 40px); border-radius: var(--r-card); box-shadow: var(--shadow); }
.hours-card h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.hours-card h3 .open-status { text-transform: none; letter-spacing: 0; font: 400 .88rem/1.3 var(--f-body); }
.hours-card__addr { display: flex; gap: 12px; margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: .95rem; color: var(--muted); }
.hours-card__addr svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 3px; }
@media (max-width: 900px) { .cta-band .wrap { grid-template-columns: 1fr; } }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.contact-cards { display: grid; gap: 14px; margin: 30px 0; }
.ccard { display: flex; gap: 20px; align-items: center; padding: 22px 24px; background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: box-shadow .3s, transform .3s var(--ease); }
a.ccard:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.ccard__icon { width: 54px; height: 54px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; flex: none; }
.ccard__icon svg { width: 22px; height: 22px; color: var(--gold-text); }
.ccard--main { background: var(--ink); color: #fff; }
.ccard--main .ccard__icon { background: var(--gold); }
.ccard--main .ccard__icon svg { color: var(--ink); }
.ccard__label { font: 600 .7rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-text); display: block; margin-bottom: 7px; }
.ccard--main .ccard__label { color: var(--gold-light); }
.ccard__value { font: 600 1.15rem/1.3 var(--f-head); letter-spacing: .02em; display: block; white-space: nowrap; }
.ccard--main .ccard__value { color: #fff; }
.ccard__hint { display: block; font-size: .88rem; color: var(--muted); margin-top: 4px; }
.ccard--main .ccard__hint { color: #bdb6ab; }
@media (max-width: 600px) {
  .ccard { padding: 18px 16px; gap: 14px; }
  .ccard__icon { width: 44px; height: 44px; }
  .ccard__icon svg { width: 19px; height: 19px; }
  .ccard__label { font-size: .62rem; letter-spacing: .14em; }
  .ccard__value { font-size: clamp(.82rem, 4.1vw, 1.15rem); }
  .ccard__hint { font-size: .84rem; }
}
.map-box { position: relative; aspect-ratio: 16/11; background: var(--sand); border-radius: var(--r-card); box-shadow: var(--shadow); overflow: hidden; margin-top: 26px; }
.map-box iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-box__consent { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px; background: linear-gradient(rgba(243,238,230,.9), rgba(243,238,230,.95)), url("../img/haarwaesche.jpg") center/cover; }
.map-box__consent .script { font-family: var(--f-script); color: var(--gold); font-size: 2.6rem; line-height: 1; display: block; margin-bottom: 8px; transform: rotate(-4deg); }
.map-box__consent p { font-size: .9rem; color: var(--muted); max-width: 400px; margin: 0 auto 18px; }
@media (max-width: 600px) {
  .map-box { aspect-ratio: 4 / 5; }
  .map-box__consent .btn-row { flex-direction: column; align-items: stretch; max-width: 260px; margin: 0 auto; }
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #bdb6ab; padding: clamp(60px, 8vw, 100px) 0 0; position: relative; overflow: hidden; font-size: .96rem; }
.footer .deco-letter { position: absolute; right: -.05em; bottom: -.3em; font-family: var(--f-script); color: var(--gold); opacity: .1; font-size: clamp(11rem, 26vw, 22rem); line-height: 1; pointer-events: none; white-space: nowrap; transform: rotate(-6deg); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; position: relative; }
.footer .logo { color: #fff; }
.footer h4 { color: #fff; font: 600 .74rem/1 var(--f-head); letter-spacing: .22em; text-transform: uppercase; margin: 8px 0 22px; }
.footer a { color: #e6e0d7; text-decoration: none; }
.footer a:hover { color: var(--gold-light); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer address { font-style: normal; line-height: 1.8; }
.footer__about { margin-top: 22px; max-width: 320px; }
.footer__hours { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; margin: 0; }
.footer__hours dt { color: #fff; }
.footer__hours dd { margin: 0; }
.footer__bottom { margin-top: 70px; border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: .86rem; position: relative; }
.footer__bottom nav { display: flex; gap: 22px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__grid > :first-child { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: 1.25rem; text-transform: uppercase; letter-spacing: .08em; margin: 48px 0 14px; }
.legal .todo { background: #fff6e0; border: 1px solid #ecd9a8; border-radius: 10px; padding: 16px 20px; font-size: .95rem; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .2s; } .reveal-d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
.no-js .reveal { opacity: 1; transform: none; }
