/* ============================================================
   HOUSE OF GLOW — Redesign-Demo 2026
   Design-System: Warm-Ivory + Champagner-Gold, hell & weich
   Cormorant Garamond (Display) + Inter (Text)
   ============================================================ */

:root {
  /* Farben — helle Bühne */
  --bg-0: #f3ede3;
  --bg-1: #faf7f1;
  --bg-2: #fffdf8;
  --panel: #ffffff;
  --line: rgba(96, 76, 52, 0.14);
  --line-strong: rgba(96, 76, 52, 0.3);
  --ink: #241c12;
  --ink-dim: #5d5347;
  --ink-faint: #776b5c;
  --accent: #b6905c;
  --accent-soft: #d3b285;
  --accent-ink: #8a683a;
  --rose: #c08e7d;

  /* Typo */
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --header-h: 80px;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg-1);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

img, svg, video, canvas { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* ---------- Typografie ---------- */
.overline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.overline .idx { color: var(--rose); margin-right: 0.9em; font-variant-numeric: tabular-nums; }

h1, h2, .display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.01em;
}
h3 { font-family: var(--sans); font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; line-height: 1.3; }

.display { font-size: clamp(3rem, 8.5vw, 7.5rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin: 18px 0 22px; }
h2 em, .display em { font-style: italic; color: var(--accent-ink); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-dim); max-width: 48ch; }

/* ---------- Platzhalter-Kennzeichnung (Demo: nichts erfinden) ---------- */
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1.5px dashed var(--line-strong);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--bg-2);
  white-space: nowrap;
}
.ph-badge::before { content: "◌"; color: var(--accent-ink); font-size: 12px; }
.ph-box {
  border: 1.5px dashed var(--line-strong);
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(96, 76, 52, 0.03) 14px 28px),
    var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--ink-faint);
  padding: 26px 18px;
}
.ph-box strong { font-family: var(--display); font-weight: 600; color: var(--ink-dim); font-size: 1.15rem; }
.ph-box span { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.btn--solid { background: var(--ink); border-color: var(--ink); color: #fdfaf5; }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn .arrow { transition: transform 0.35s ease; }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}
/* Blur auf kinderlosem Layer — Header darf kein Containing Block
   fürs fixed Mobile-Nav-Overlay werden */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(250, 247, 241, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.site-header.scrolled::before { opacity: 1; }
.header-inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo .l-main {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.06em;
}
.logo .l-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.main-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.main-nav a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 8px 2px;
  position: relative;
  transition: color 0.3s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--accent);
  transition: right 0.35s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.main-nav .btn { padding: 12px 26px; }
.main-nav a.btn::after { display: none; } /* Pill-Button bekommt keinen Nav-Unterstrich */
.main-nav a.btn--solid { color: #fdfaf5; }
.main-nav a.btn--solid:hover { color: #fff; }

.nav-toggle { display: none; z-index: 120; width: 44px; height: 44px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); top: 0; }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    gap: 34px;
    background: rgba(250, 247, 241, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  }
  .main-nav a { font-size: 16px; }
  body.nav-open .main-nav { opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s, 0s; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Sektions-Grundlagen ---------- */
section[id] { scroll-margin-top: calc(var(--header-h) + 10px); }
.section { position: relative; padding: clamp(90px, 14vh, 160px) 0; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section-head { max-width: 780px; margin-bottom: clamp(40px, 7vh, 80px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Scrub-Stage (helle Bühne) ---------- */
.stage {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: var(--bg-2);
}
.stage canvas,
.stage .stage-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stage .stage-poster { display: none; }
.stage .vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(250, 247, 241, 0.5) 100%),
    linear-gradient(180deg, rgba(250, 247, 241, 0.55) 0%, transparent 18%, transparent 82%, rgba(250, 247, 241, 0.8) 100%);
}
/* Aufhellungs-Layer statt Abdunklung: Lesbarkeit auf heller Bühne */
.stage .dim {
  position: absolute;
  inset: 0;
  background: #faf7f1;
  opacity: 0;
  pointer-events: none;
}

/* Text-Beats in gepinnten Stages */
.beat {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad);
  opacity: 0;
  pointer-events: none;
}
.beat::before,
.hero-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 100vw);
  height: min(560px, 74vh);
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(252, 250, 245, 0.85) 0%,
    rgba(252, 250, 245, 0.55) 45%,
    rgba(252, 250, 245, 0) 74%);
  pointer-events: none;
}
.beat > *, .hero-title > * { position: relative; z-index: 1; }
body.no-scrub .beat::before, body.no-scrub .hero-title::before { display: none; }
.beat .overline { margin-bottom: 18px; }
.beat .beat-big {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.1;
  max-width: 22ch;
}
.beat p { margin-top: 16px; color: var(--ink-dim); max-width: 52ch; }

/* ---------- Hero ---------- */
.hero-stage .hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad);
}
.hero-title .overline { margin-bottom: 24px; }
.hero-title .display { letter-spacing: 0.02em; }
.hero-title .sub {
  margin-top: 20px;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--ink-dim);
  letter-spacing: 0.08em;
}
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.scroll-hint .tick {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: tickfall 2s ease-in-out infinite;
}
@keyframes tickfall {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Trust-Band ---------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-0);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: clamp(34px, 5vh, 56px) 20px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat .t-word {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.15;
}
.stat .label {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
}

/* ---------- Leistungs-Karten ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--panel);
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.card:hover { background: var(--bg-2); box-shadow: 0 18px 44px rgba(96, 76, 52, 0.08); }
.card .c-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card .c-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .c-media img { transform: scale(1.045); }
.card .c-body { padding: clamp(22px, 2.4vw, 32px) clamp(20px, 2vw, 32px) clamp(28px, 3.4vw, 44px); }
.card .c-idx {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--rose);
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card > p { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.65; }
.card .c-price { margin-top: 18px; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); }
.card .ph-badge { margin-top: 18px; }
@media (max-width: 1100px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- Split-Sektion (Studio / Atmosphäre) ---------- */
.split-section { background: var(--bg-0); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split-media { position: relative; }
.split-media img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 4px; }
.split-media .ph-badge { position: absolute; top: 14px; left: 14px; }
.split-copy .btn { margin-top: 34px; }
.split-copy .split-extra { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-dim); }
@media (max-width: 960px) { .split { grid-template-columns: 1fr; } }

/* ---------- Standort / Kontakt ---------- */
.standorte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
.standort {
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  border-radius: 4px;
}
.standort .map-frame { aspect-ratio: 16 / 10; background: var(--bg-0); position: relative; }
.standort .map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.55) sepia(0.14);
}
.standort .s-body { padding: 26px 28px 30px; }
.standort h3 { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.standort h3 .s-tag { font-size: 10.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-ink); border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 12px; }
.standort p { margin-top: 10px; font-size: 0.93rem; color: var(--ink-dim); }
.standort .ph-badge { margin-top: 14px; }
@media (max-width: 860px) { .standorte-grid { grid-template-columns: 1fr; } }

.hours-list { border-top: 1px solid var(--line); margin-top: 6px; }
.hours-list .h-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hours-list .h-row span:first-child { color: var(--ink-dim); }
.hours-list .h-row span:last-child { font-variant-numeric: tabular-nums; }

/* ---------- Marken-Zeile ---------- */
.brands-row {
  margin-top: clamp(50px, 8vh, 90px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px 44px;
}
.brands-row .b-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-faint); margin-right: 12px; }
.brands-row .b-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink-dim);
}
.brands-row .b-name span { display: block; font-family: var(--sans); font-weight: 400; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink-faint); }

/* ---------- Vorteile (Kundenkarte, Gutscheine, Beratung) ---------- */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.perk { background: var(--bg-2); padding: clamp(26px, 3vw, 40px) clamp(22px, 2.4vw, 34px); }
.perk .p-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  margin-bottom: 8px;
}
.perk .p-title em { font-style: italic; color: var(--accent-ink); }
.perk p { font-size: 0.92rem; color: var(--ink-dim); }
@media (max-width: 860px) { .perks-grid { grid-template-columns: 1fr; } }

/* ---------- Kontakt-CTA ---------- */
.cta-section { text-align: center; background: var(--bg-1); }
.cta-section .display { font-size: clamp(2.3rem, 5.6vw, 4.6rem); }
.cta-contacts {
  margin: 44px auto 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 54px;
  color: var(--ink-dim);
  font-size: 1.02rem;
}
.cta-contacts a { color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; transition: border-color 0.3s ease, color 0.3s ease; }
.cta-contacts a:hover { color: var(--accent-ink); border-color: var(--accent); }
.cta-note { margin-top: 26px; font-size: 0.85rem; color: var(--ink-faint); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-0); padding: clamp(50px, 8vh, 80px) 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  margin-bottom: 50px;
}
.footer-grid .logo { margin-bottom: 18px; }
.footer-grid p, .footer-grid a { font-size: 0.92rem; color: var(--ink-dim); }
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--accent-ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.demo-note {
  margin-bottom: 34px;
  padding: 16px 20px;
  border: 1.5px dashed var(--line-strong);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.demo-note strong { color: var(--ink-dim); font-weight: 600; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal-Utilities (JS setzt .in) ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.4s; }

/* ---------- Fallback: kein Scrubbing (reduced motion) ---------- */
body.no-scrub .stage { height: auto; min-height: 0; background: var(--bg-2); }
body.no-scrub .stage canvas { display: none; }
body.no-scrub .stage .vignette { display: none; }
body.no-scrub .stage .stage-poster {
  display: block;
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
}
body.no-scrub .beat {
  position: relative;
  inset: auto;
  opacity: 1;
  pointer-events: auto;
  padding: 44px var(--pad);
}
body.no-scrub .hero-stage { display: block; padding-top: var(--header-h); }
body.no-scrub .hero-stage .hero-title {
  position: relative;
  inset: auto;
  padding: clamp(50px, 9vh, 90px) var(--pad) 30px;
}
body.no-scrub .scroll-hint { display: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-hint .tick { animation: none; }
}

/* ============================================================
   Unterseiten
   ============================================================ */
.subpage-hero {
  padding: calc(var(--header-h) + clamp(70px, 12vh, 130px)) 0 clamp(60px, 9vh, 100px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 85% -20%, rgba(182, 144, 92, 0.16), transparent 60%),
    var(--bg-2);
}
.subpage-hero .display { font-size: clamp(2.5rem, 6vw, 5rem); }
.subpage-hero .lead { margin-top: 24px; }

.prose { max-width: 820px; }
.prose p { margin-bottom: 1.2em; color: var(--ink-dim); }
.prose a { color: var(--accent-ink); border-bottom: 1px solid var(--line-strong); }

/* ---------- Leistungslisten / Preise ---------- */
.price-group { max-width: 980px; margin-bottom: clamp(40px, 7vh, 70px); }
.price-group .pg-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 30px;
  align-items: baseline;
  padding: clamp(16px, 2.2vh, 22px) 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.price-row:hover { background: rgba(182, 144, 92, 0.05); padding-left: 14px; }
.price-row h3 { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 500; }
.price-row .p-sub { margin-top: 4px; font-size: 0.88rem; color: var(--ink-dim); }
.price-row .p-val {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  white-space: nowrap;
}
.price-row .p-val .cur { color: var(--accent-ink); font-size: 0.68em; margin-right: 0.25em; }
.price-hints { margin-top: 30px; display: grid; gap: 10px; max-width: 980px; }
.price-hints p { font-size: 0.9rem; color: var(--ink-faint); padding-left: 22px; position: relative; }
.price-hints p::before { content: ""; position: absolute; left: 0; top: 13px; width: 10px; height: 1px; background: var(--accent); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 90px); }
.contact-item { padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-item .c-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.contact-item a, .contact-item p { font-size: 1.12rem; color: var(--ink); }
.contact-item a:hover { color: var(--accent-ink); }
.contact-item .c-sub { font-size: 0.88rem; color: var(--ink-dim); margin-top: 6px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Button-Text schlägt Kontext-Linkfarben (Nav, Kontaktliste …) ---------- */
a.btn { color: var(--ink); }
a.btn--solid { color: #fdfaf5; }
a.btn--solid:hover { color: #fff; }

/* ============================================================
   Termin-Panel (Slide-in wie auf der Original-Site)
   ============================================================ */
.bk-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  justify-content: flex-end;
}
.bk-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 28, 18, 0.35);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.bk-panel {
  position: relative;
  width: min(480px, 100%);
  height: 100%;
  background: var(--bg-2);
  box-shadow: -24px 0 60px rgba(36, 28, 18, 0.18);
  padding: clamp(28px, 5vh, 48px) clamp(24px, 3vw, 42px) 40px;
  overflow-y: auto;
  transform: translateX(102%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.bk-overlay.open .bk-backdrop { opacity: 1; }
.bk-overlay.open .bk-panel { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .bk-backdrop, .bk-panel { transition: none; }
}
.bk-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  color: var(--ink-dim);
  transition: background 0.3s ease, color 0.3s ease;
}
.bk-close:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.bk-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin: 12px 0 14px;
}
.bk-lead { font-size: 0.95rem; color: var(--ink-dim); margin-bottom: 28px; }
.bk-options { display: grid; gap: 12px; }
.bk-opt {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 16px 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.bk-opt:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(96, 76, 52, 0.12);
  transform: translateY(-2px);
}
.bk-opt svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  stroke: var(--accent-ink);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bk-opt .o-label { font-weight: 600; font-size: 1rem; line-height: 1.3; }
.bk-opt .o-sub { display: block; font-size: 0.82rem; font-weight: 400; color: var(--ink-faint); margin-top: 2px; }
.bk-back {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 10px;
}
.bk-back:hover { color: var(--accent-ink); }
.bk-form { display: grid; gap: 14px; margin-top: 8px; }
.bk-form .bk-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bk-field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.bk-field input, .bk-field select, .bk-field textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  transition: border-color 0.3s ease;
}
.bk-field input:focus, .bk-field select:focus, .bk-field textarea:focus { outline: none; border-color: var(--accent); }
.bk-form .btn { justify-content: center; margin-top: 6px; }
.bk-note { margin-top: 18px; font-size: 0.8rem; color: var(--ink-faint); }
@media (max-width: 520px) { .bk-form .bk-row { grid-template-columns: 1fr; } }
