/* =========================================================
   Salon Elke Wenzlaff – Friseursalon Frankfurt
   Farben: Anthrazit (Struktur) · Warmweiß (Basis) · Gold (Akzent)
   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;          /* dunkler Ton der bisherigen Website */
  --ink-soft: #3a3a3a;
  --text: #3d3a36;
  --muted: #6f6a63;
  --paper: #fbf9f6;
  --sand: #f3eee6;
  --sand-deep: #ebe3d6;
  --line: #e2d9cb;
  --gold: #bf9a5c;         /* Spiegelrahmen-Gold, dekorativ */
  --gold-light: #d4b67f;   /* Gold auf dunklem Grund */
  --gold-text: #8a6932;    /* Gold für kleine Schrift auf hellem Grund (AA) */
  --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);
  --radius: 2px;
  --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 a[href^="tel:"]:hover, li a[href^="tel:"]:hover { color: var(--gold-text); }
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; }
.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; }
.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; }

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font: 600 .74rem/1.2 var(--f-head); letter-spacing: .28em; text-transform: uppercase; color: var(--gold-text);
  margin: 0 0 18px; display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }

.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;
  margin: 0 0 -.22em; position: relative; z-index: 2; transform: rotate(-3deg); transform-origin: left center;
}
.heading--center .script { transform-origin: center; }
.heading .script, .hero__script, .page-hero .script, .price-block__head .script { white-space: nowrap; }
@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; }
/* Variante: große, blasse Schreibschrift hinter der Überschrift (statt Goldzeile) */
.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: #e9dfcd; line-height: 1; white-space: nowrap; pointer-events: none; user-select: none;
  font-size: clamp(6.5rem, 22vw, 12rem);
}
.section--sand .watermark { color: #e3d6c1; }
.heading--center .lead { margin-left: auto; margin-right: auto; }
.section--sand .heading--center .lead { font-size: clamp(1.08rem, 1.5vw, 1.2rem); color: var(--muted); }

/* ---------- Buttons ---------- */
.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(--radius); cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { --bg: var(--gold); --bd: var(--gold); --fg: var(--ink); }
.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); }
.btn--ghost:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--ghost-light { --bg: transparent; --fg: #fff; --bd: rgba(255,255,255,.55); }
.btn--ghost-light:hover { --bg: #fff; --fg: var(--ink); --bd: #fff; }
.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__script { font-family: var(--f-script); color: var(--gold); font-size: 2.35rem; margin-right: 12px; transform: translateY(4px) rotate(-4deg); display: inline-block; }
.logo__num { font: 600 1.05rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; padding: 8px 0 8px 12px; border-left: 1px solid var(--gold); }

.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; 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: 1100px) { .header__phone span { display: none; } }
@media (max-width: 960px) {
  :root { --header-h: 70px; }
  .logo__script { font-size: 1.9rem; margin-right: 9px; } .logo__num { font-size: .82rem; letter-spacing: .16em; padding-left: 9px; }
  .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-open { overflow: hidden; }
}
.nav__extra { display: none; }
.nav__extra .script { white-space: nowrap; font-family: var(--f-script); color: var(--gold); font-size: 2rem; line-height: 1; display: block; margin-bottom: 10px; }
.nav__extra p { color: var(--muted); font-size: .95rem; }

/* ---------- Mobile Kontaktleiste (immer präsent) ---------- */
.callbar { display: none; }
@media (max-width: 960px) {
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    background: var(--ink); padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -10px 30px -12px rgba(0,0,0,.4);
  }
  .callbar a { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 10px; height: 68px; color: #fff; text-decoration: none; font: 600 .74rem/1 var(--f-head); letter-spacing: .14em; text-transform: uppercase; }
  .callbar a + a { border-left: 1px solid rgba(255,255,255,.12); }
  .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) ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff; background: var(--ink);
  min-height: min(100svh, 940px); display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 clamp(60px, 8vw, 100px);
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 40%; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(24,22,20,.72) 0%, rgba(24,22,20,.5) 38%, rgba(24,22,20,.08) 68%, rgba(24,22,20,0) 100%);
}
.hero .wrap { position: relative; z-index: 2; max-width: 1280px; }
.hero__text { max-width: 620px; }
.hero .hero__script { font-family: var(--f-script); color: var(--gold-light); font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: .9; display: block; transform: rotate(-4deg); transform-origin: left; margin: 0 0 -.12em .05em; position: relative; z-index: 2; white-space: nowrap; }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4.6rem); text-transform: uppercase; letter-spacing: .03em; line-height: 1.04; position: relative; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero .hero__script, .hero h1 { text-shadow: 0 2px 22px rgba(0,0,0,.45); }
.hero__lead { margin: 26px 0 34px; max-width: 520px; font-size: clamp(1.08rem, 1.5vw, 1.22rem); color: #efe9e1; }
.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; margin-top: 40px; }
.hero .btn--ghost-light { backdrop-filter: blur(4px); }

.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; }
.hero .open-status { color: #e4ddd3; }
.hero .open-status strong { color: #fff; }
.hero .open-status.is-open::before { background: #6fcf8a; }

@media (max-width: 960px) {
  .hero { min-height: calc(100svh - 68px); align-items: flex-end; padding: calc(var(--header-h) + 160px) 0 34px; }
  .hero__bg { object-position: 64% 20%; }
  .hero::after { background: linear-gradient(180deg, rgba(24,22,20,.45) 0%, rgba(24,22,20,0) 18%, rgba(24,22,20,.35) 36%, rgba(24,22,20,.8) 52%, rgba(24,22,20,.94) 100%); }
  .hero .hero__script { font-size: 2.6rem; }
  .hero h1 { font-size: 2.15rem; }
  .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; }
  .hero .gbadge { padding: 9px 16px 9px 11px; gap: 10px; }
  .hero .gbadge__g { width: 28px; height: 28px; }
  .hero .gbadge__score { font-size: 1.3rem; }
}

/* 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,.4); 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,.5); }
.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, .gbadge:focus-visible .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; }
.hero .gbadge { border-color: transparent; box-shadow: 0 16px 40px -18px rgba(0,0,0,.6); }

/* Startseite: Header liegt transparent über dem Foto */
.home .header { position: fixed; left: 0; right: 0; }
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__script { color: var(--gold-light); }
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) .logo__num { border-color: var(--gold-light); }
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; }
}

/* ---------- Trust-Leiste ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust li { padding: 28px 20px; 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: 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: 20px 12px; gap: 12px; font-size: .7rem; } .trust svg { width: 24px; height: 24px; } }

/* ---------- Leistungs-Karten ---------- */
.services { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.service { text-decoration: none; color: inherit; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.service:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -34px rgba(38,38,38,.45); }
.service__img { aspect-ratio: 4/5; 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__body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.service__num { font-family: var(--f-script); color: var(--gold); font-size: 2rem; line-height: 1; margin-bottom: 6px; }
.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; }
@media (max-width: 1000px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .services { grid-template-columns: 1fr; grid-auto-rows: 1fr; }
  .service { flex-direction: row; }
  .service__img { aspect-ratio: auto; width: 38%; flex: none; }
  .service__body { padding: 18px 16px; }
  .service p { display: none; }
  .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--rev .split__media { order: 2; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media--wide img { aspect-ratio: 5/4; }
.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); }
.checklist a[href^="tel:"] { white-space: nowrap; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
}

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); }
.member { text-align: center; }
.member__img { aspect-ratio: 4/5; overflow: hidden; background: var(--sand); margin-bottom: 22px; position: relative; }
.member__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; filter: saturate(.92); transition: transform .8s var(--ease); }
.member:hover .member__img img { transform: scale(1.04); }
.member h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .14em; }
.member .role { font-family: var(--f-script); color: var(--gold); font-size: 1.9rem; line-height: 1.1; display: block; margin-top: 2px; }
.member p { font-size: .96rem; color: var(--muted); margin-top: 10px; }
@media (max-width: 800px) {
  .team { gap: 12px; }
  .member h3 { font-size: .85rem; letter-spacing: .1em; }
  .member .role { font-size: clamp(.85rem, 3.6vw, 1.15rem); }
  .member p { display: none; }
  }

/* ---------- Bewertungen (dunkler Abschnitt) ---------- */
.dark { background: var(--ink); color: #d9d4cc; position: relative; overflow: hidden; }
.dark h2, .dark h3 { color: #fff; }
.dark .eyebrow { color: var(--gold-light); }
.dark .lead { color: #bdb6ab; }
.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; }
.review { background: var(--ink-soft); border: 1px solid rgba(255,255,255,.06); padding: 36px 32px 30px; display: flex; flex-direction: column; position: relative; }
.review::before { content: "“"; position: absolute; top: 4px; right: 22px; font: 400 6rem/1 var(--f-head); color: var(--gold); opacity: .35; }
.review .stars { margin-bottom: 20px; color: var(--gold-light); }
.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 .9rem/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; }
.dark .gbadge { background: #fff; }
@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: 0 var(--gutter) 10px; 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: 14px; } }

/* ---------- Inspirations-Teaser & Boards ---------- */
.boards { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 2vw, 24px); }
.board { grid-column: span 2; position: relative; overflow: hidden; display: block; text-decoration: none; color: #fff; aspect-ratio: 4/5; background: var(--ink); }
.board--wide { grid-column: span 3; aspect-ratio: 5/4; }
.board img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), opacity .5s; }
.board::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,20,20,0) 40%, rgba(20,20,20,.78) 100%); }
.board__frame { position: absolute; inset: 14px; border: 1px solid rgba(212,182,127,0); z-index: 2; transition: border-color .5s var(--ease), inset .5s var(--ease); pointer-events: none; }
.board:hover .board__frame, .board:focus-visible .board__frame { border-color: rgba(212,182,127,.9); inset: 18px; }
.board:hover img { transform: scale(1.06); }
.board__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 26px 28px; }
.board__script { font-family: var(--f-script); color: var(--gold-light); font-size: 2.2rem; line-height: 1; display: block; margin-bottom: 2px; }
.board h3 { color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .14em; }
.board__cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 12px; font: 600 .68rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: #fff; opacity: .85; }
.board__cta svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .boards { grid-template-columns: 1fr 1fr; }
  .board, .board--wide { grid-column: span 1; aspect-ratio: 4/5; }
  .board--wide:first-child { grid-column: span 2; aspect-ratio: 5/4; }
  .board__body { padding: 18px 16px; }
  .board__script { font-size: 1.7rem; }
  .board h3 { font-size: .78rem; letter-spacing: .08em; }
  .board:not(:first-child) .board__cta { display: none; }
  .board__frame { inset: 8px; }
}

/* Pinterest-Einbettung (erst nach Zustimmung) */
.pin-consent { margin-top: clamp(50px, 7vw, 80px); background: #fff; border: 1px solid var(--line); padding: clamp(28px, 4vw, 48px); display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; }
.pin-consent svg.pin-logo { width: 46px; height: 46px; color: #e60023; }
.pin-consent h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.pin-consent p { margin: 0; color: var(--muted); font-size: .95rem; }
@media (max-width: 800px) { .pin-consent { grid-template-columns: 1fr; text-align: left; } }
.pin-embeds { display: none; margin-top: 40px; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.pin-embeds.is-loaded { display: grid; }
.pin-embed { background: #fff; border: 1px solid var(--line); padding: 20px; overflow: hidden; }
.pin-embed h4 { font: 600 .78rem/1.3 var(--f-head); letter-spacing: .16em; text-transform: uppercase; margin: 0 0 14px; }

/* ---------- Page Hero (Unterseiten) ---------- */
.page-hero { position: relative; min-height: clamp(300px, 46vh, 460px); display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--ink); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; filter: grayscale(.35); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(30,30,30,.55), rgba(30,30,30,.1)); }
.page-hero .wrap { position: relative; z-index: 2; text-align: center; padding-top: 30px; padding-bottom: 30px; }
.page-hero .script { font-family: var(--f-script); color: var(--gold-light); font-size: clamp(2.8rem, 6vw, 4.6rem); line-height: .9; display: block; transform: rotate(-4deg); margin-bottom: -.12em; position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 6vw, 4.4rem); text-transform: uppercase; letter-spacing: .06em; }
.page-hero p { margin: 18px auto 0; max-width: 560px; color: #ece7df; font-size: 1.08rem; }
.crumbs { font: 500 .72rem/1 var(--f-head); letter-spacing: .2em; text-transform: uppercase; color: #d7d0c5; margin-top: 26px; }
.crumbs a { text-decoration: none; color: var(--gold-light); }

/* ---------- Preisliste ---------- */
.price-nav { position: sticky; top: var(--header-h); z-index: 50; background: rgba(251,249,246,.96); 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: .18em; 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: 1fr 1fr; gap: 8px; overflow: visible; padding-top: 12px; padding-bottom: 12px; }
  .chip { text-align: center; padding: 12px 6px; font-size: .66rem; letter-spacing: .12em; }
  .price-block { scroll-margin-top: calc(var(--header-h) + 130px); }
}

.price-note { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); 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; border-top: 1px solid var(--line); align-items: start; }
.price-block:first-of-type { border-top: 0; 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: 3rem; line-height: .9; display: block; transform: rotate(-4deg); transform-origin: left; margin-bottom: -.1em; }
.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%; }
.price-block__head p { margin-top: 18px; color: var(--muted); font-size: .98rem; }
.prices { list-style: none; margin: 0; padding: 0; }
.prices li { display: flex; align-items: baseline; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.prices li:first-child { padding-top: 0; }
.prices .name { font: 600 1rem/1.4 var(--f-head); color: var(--ink); letter-spacing: .02em; }
.prices .name small { display: block; font: 400 .9rem/1.5 var(--f-body); color: var(--muted); letter-spacing: 0; margin-top: 4px; }
.prices .dots { flex: 1; border-bottom: 1px dotted #c8bda9; transform: translateY(-5px); min-width: 20px; }
.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: 26px; }
  .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 li { padding: 16px 0; }
  .prices .name { font-size: .95rem; }
}

.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.detail { background: #fff; border: 1px solid var(--line); padding: 34px 30px; }
.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; }
@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 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: 1px solid var(--line); }
.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); }
@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: 16px; margin: 30px 0; }
.ccard { display: flex; gap: 20px; align-items: center; padding: 22px 24px; background: #fff; border: 1px solid var(--line); text-decoration: none; color: inherit; transition: border-color .3s, transform .3s var(--ease); }
a.ccard:hover { border-color: var(--gold); transform: translateX(4px); }
.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); border-color: 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; }
.ccard--main .ccard__value { color: #fff; }
.ccard__value { display: block; white-space: nowrap; }
@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; }
}
.ccard__hint { display: block; font-size: .88rem; color: var(--muted); margin-top: 4px; }
.ccard--main .ccard__hint { color: #bdb6ab; }
.map-box { position: relative; aspect-ratio: 16/10; background: var(--sand) center/cover no-repeat; border: 1px solid var(--line); overflow: hidden; margin-top: 30px; }
.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,.88), rgba(243,238,230,.94)), url("../img/salon-innen.jpg") center/cover; }
.map-box__consent p { font-size: .9rem; color: var(--muted); max-width: 420px; 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: -.35em; font-family: var(--f-script); color: var(--gold); opacity: .12; font-size: clamp(16rem, 34vw, 30rem); line-height: 1; pointer-events: none; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; position: relative; }
.footer .logo { color: #fff; }
.footer .logo__num { border-color: var(--gold); }
.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; }
.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 h3 { font-size: 1rem; margin: 28px 0 10px; }
.legal .todo { background: #fff6e0; border: 1px solid #ecd9a8; 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; }
