/* =========================================================================
   Coiffeur Eliona – Stylesheet
   Mobile first. Ein Designsystem, gesteuert über CSS-Variablen.
   Farben stammen aus der Logodatei; siehe README, Abschnitt Designsystem.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Schriften – lokal ausgeliefert, keine Verbindung zu Google Fonts
   Archivo Variable (SIL OFL), Achsen: wght 400–700, wdth 100–125.
   Zwei Subsets: latin deckt Deutsch vollständig ab und lädt allein;
   latin-ext wird nur bei Bedarf nachgeladen.
   ------------------------------------------------------------------------- */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-stretch: 100% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-latin-ext.woff2") format("woff2");
  font-weight: 400 700;
  font-stretch: 100% 125%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
    U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
    U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

/* -------------------------------------------------------------------------
   2. Designtokens
   ------------------------------------------------------------------------- */
:root {
  /* --- Farben, aus der Logodatei gemessen -------------------------------
     Orange  #E89A45  Wortmarke „eliona“
     Graphit #404040  Wortmarke „Coiffeur“
     Ring    #BBBCBD  Ellipse hinter dem Schriftzug
     Wichtig: Weiss auf Orange erreicht nur 2.3:1. Orange trägt deshalb
     immer dunkle Schrift, nie weisse. */
  --accent:      #E89A45;
  --accent-ink:  #241A0E;   /* Schrift auf Orange, 7.4:1 */
  --accent-dark: #D2842F;
  --accent-text: #8F5209;   /* Orange als Textfarbe, 5.9:1 auf Weiss */
  --accent-soft: #FDF6EE;
  --accent-line: #F0D3B0;

  --graphite:    #3A3A3A;
  --graphite-2:  #2E2E2E;
  --ink:         #262626;   /* Überschriften, 14.9:1 */
  --ink-soft:    #4A4A4A;   /* Fliesstext, 8.6:1 */
  --muted:       #6B6B6B;   /* Metadaten, 5.4:1 */
  --line:        #E7E5E2;
  --line-strong: #C6C4C1;
  --paper:       #FFFFFF;
  --surface:     #F7F6F4;
  --surface-2:   #F1EFEC;
  --white:       #FFFFFF;

  /* --- Schrift --------------------------------------------------------- */
  --font: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
          Roboto, Arial, sans-serif;

  /* --- Schriftgrössen, fluid ------------------------------------------- */
  --fs-2xs:  0.75rem;
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lead: clamp(1.125rem, 1.04rem + 0.38vw, 1.3125rem);
  --fs-h3:   clamp(1.1875rem, 1.1rem + 0.4vw, 1.375rem);
  --fs-h2:   clamp(1.75rem, 1.4rem + 1.45vw, 2.625rem);
  --fs-h1:   clamp(2.25rem, 1.62rem + 2.85vw, 4rem);

  /* --- Abstände, 4-Punkt-System ---------------------------------------- */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;  --sp-4: 1rem;
  --sp-5: 1.5rem;   --sp-6: 2rem;     --sp-7: 3rem;     --sp-8: 4rem;
  --section-y: clamp(3.5rem, 2.3rem + 5vw, 7rem);

  --wrap: 1200px;
  --radius: 2px;            /* flache Schnitte wie im Logo */
  --radius-lg: 4px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 200ms var(--ease);
  --header-h: 64px;
  --shadow-sm: 0 1px 2px rgba(38, 38, 38, 0.04),
               0 4px 16px rgba(38, 38, 38, 0.05);
}

/* -------------------------------------------------------------------------
   3. Grundlagen
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  font-stretch: 112%;        /* leicht breit, wie die Wortmarke */
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 var(--sp-4);
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: 1.04; letter-spacing: -0.028em; }
h2 { font-size: var(--fs-h2); line-height: 1.08; letter-spacing: -0.022em; }
h3 { font-size: var(--fs-h3); }
p  { margin: 0 0 var(--sp-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.15rem; }
li + li { margin-top: var(--sp-2); }

a { color: var(--ink); text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
a:hover { color: var(--accent-text); text-decoration-color: currentColor; }

:focus-visible {
  outline: 2px solid var(--accent-text);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 768px) { .wrap { padding-inline: var(--sp-6); } }

.section { padding-block: var(--section-y); }
.section--surface { background: var(--surface); }
.section--tight { padding-block: clamp(2.5rem, 1.8rem + 3vw, 4.5rem); }
.section + .section--surface,
.section--surface + .section { border-top: 1px solid var(--line); }

.skip-link {
  position: absolute; left: var(--sp-4); top: -100px; z-index: 200;
  background: var(--ink); color: var(--white);
  padding: var(--sp-3) var(--sp-4); border-radius: var(--radius);
  text-decoration: none; font-weight: 600;
  transition: top var(--t);
}
.skip-link:focus { top: var(--sp-3); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Kleine Grossbuchstabenmarke über Abschnittstiteln */
.eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--sp-3);
}
/* Schräger Balken in Logo-Orange – greift die Kursive der Wortmarke auf */
.eyebrow::before {
  content: ""; flex: none;
  width: 14px; height: 11px;
  background: var(--accent);
  transform: skewX(-16deg);
}
.eyebrow--light { color: #B9B7B4; }

.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.55; }
.measure { max-width: 62ch; }
.muted { color: var(--muted); font-size: var(--fs-sm); }

/* -------------------------------------------------------------------------
   4. Buttons und Links
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 50px;
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color var(--t), color var(--t),
              border-color var(--t), transform var(--t), box-shadow var(--t);
}
.btn svg { flex: none; }
.btn--primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 1px 2px rgba(143, 82, 9, 0.14);
}
.btn--primary:hover { background: var(--accent-dark); color: var(--accent-ink); box-shadow: 0 2px 10px rgba(143, 82, 9, 0.2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); color: var(--ink); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--line-strong); }
.btn--light:hover { border-color: var(--ink); color: var(--ink); }
.btn--block { width: 100%; }
.btn--sm { min-height: 42px; padding: 0.5rem 1rem; font-size: var(--fs-xs); }
.btn:active { transform: translateY(1px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  min-height: 44px;
  font-weight: 600; font-size: var(--fs-sm);
  text-decoration: none; color: var(--ink);
}
.link-arrow > span:first-child { box-shadow: inset 0 -1px 0 var(--line-strong); transition: box-shadow var(--t); }
.link-arrow:hover { color: var(--accent-text); }
.link-arrow:hover > span:first-child { box-shadow: inset 0 -1px 0 currentColor; }
.link-arrow svg { transition: transform var(--t); }
.link-arrow:hover svg { transform: translateX(3px); }

/* -------------------------------------------------------------------------
   5. Kopfbereich und Navigation
   ------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(10px)) { .header { background: var(--paper); } }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
}
.header__logo { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; }
.header__logo img { width: 142px; height: auto; }

.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link {
  position: relative;
  display: block;
  font-size: var(--fs-sm); font-weight: 500; text-decoration: none; color: var(--ink-soft);
  padding: 0.5rem 0;
  transition: color var(--t);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: var(--sp-2); }
.header__cta { display: none; }
.header__phone {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--radius);
  border: 1px solid var(--line-strong); color: var(--ink); text-decoration: none;
  transition: border-color var(--t), background-color var(--t);
}
.header__phone:hover { border-color: var(--ink); background: var(--surface); color: var(--ink); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px;
  background: none; border: 1px solid var(--line-strong); border-radius: var(--radius);
  cursor: pointer; color: var(--ink);
  transition: border-color var(--t), background-color var(--t);
}
.nav-toggle:hover { border-color: var(--ink); background: var(--surface); }
.nav-toggle__bars { display: block; width: 18px; height: 12px; position: relative; }
.nav-toggle__bars::before, .nav-toggle__bars::after, .nav-toggle__bars span {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: currentColor; transition: transform var(--t), opacity var(--t);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 5.25px; }
.nav-toggle__bars::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(5.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-5.25px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--paper);
  padding: var(--sp-5) var(--sp-5) calc(var(--sp-8) + 76px);
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity var(--t), transform var(--t), visibility var(--t);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav ul { list-style: none; margin: 0 0 var(--sp-5); padding: 0; }
.mobile-nav li { margin: 0; border-bottom: 1px solid var(--line); }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4) 0;
  font-size: 1.3125rem; font-weight: 600; font-stretch: 108%;
  color: var(--ink); text-decoration: none;
}
.mobile-nav a[aria-current="page"] { color: var(--accent-text); }
.mobile-nav .btn { margin-bottom: var(--sp-3); }
.mobile-nav__meta { margin-top: var(--sp-5); font-size: var(--fs-sm); color: var(--muted); }
body.no-scroll { overflow: hidden; }

@media (min-width: 960px) {
  .nav { display: block; }
  .nav-toggle, .header__phone { display: none; }
  .header__cta { display: inline-flex; }
  .mobile-nav { display: none; }
}

/* Mobile Aktionsleiste: Anrufen und Buchen immer erreichbar */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 1fr 1.35fr; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3) calc(var(--sp-2) + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
@supports not (backdrop-filter: blur(10px)) { .actionbar { background: var(--paper); } }
.actionbar .btn {
  min-height: 48px; font-size: var(--fs-sm);
  white-space: nowrap; padding-inline: 0.75rem;
}
@media (min-width: 960px) { .actionbar { display: none; } }
@media (max-width: 959px) { body { padding-bottom: 76px; } }
@media (max-width: 359px) { .actionbar .btn { font-size: 0.875rem; padding-inline: 0.5rem; } }
/* Bei sehr geringer Viewport-Höhe (z. B. 200 % Browser-Zoom oder
   Smartphone im Querformat) darf die fixe Leiste keine Inhalte verdecken.
   Die primären Aktionen bleiben im Hero und im Header erreichbar. */
@media (max-width: 959px) and (max-height: 600px) {
  .actionbar { display: none; }
  body { padding-bottom: 0; }
}

/* -------------------------------------------------------------------------
   6. Hero
   Ohne Bild bleibt der ruhige typografische Hero aktiv. Mit echtem
   Salonfoto wird das Bild vollflächig und mit lesbarem Verlauf gezeigt.
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(2.5rem, 1.6rem + 4vw, 5rem);
  padding-bottom: clamp(2.5rem, 1.6rem + 4vw, 5rem);
  overflow: hidden;
}
/* Ruhiger Verlauf für die bildlose Variante. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70ch 48ch at 88% -12%, rgba(232, 154, 69, 0.13), transparent 62%),
    radial-gradient(60ch 40ch at -8% 8%, rgba(58, 58, 58, 0.05), transparent 60%);
}
.hero__inner { max-width: 46ch; }
.hero__title { margin-bottom: var(--sp-4); }
/* Ohne Bild wird der Hero ab Tablet mittig gesetzt. Das wirkt bewusst
   gesetzt statt „hier fehlt ein Foto“ – und kehrt sich um, sobald ein
   echtes Salonfoto eingesetzt wird (.hero--media). */
@media (min-width: 768px) {
  .hero:not(.hero--media) { text-align: center; }
  .hero:not(.hero--media) .hero__inner { max-width: none; }
  .hero:not(.hero--media) .hero__text { max-width: 54ch; margin-inline: auto; }
  .hero:not(.hero--media) .eyebrow { justify-content: center; }
  .hero:not(.hero--media) .hero__actions { justify-content: center; }
  .hero:not(.hero--media) .hero__actions .btn { flex: 0 1 auto; }
  .hero:not(.hero--media) .hero__note { justify-content: center; }
}
.hero__title em {
  font-style: normal;
  color: var(--accent-text);
}
.hero__text { max-width: 44ch; margin-bottom: var(--sp-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__actions .btn { flex: 1 1 auto; min-width: 200px; }
.hero__note {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: var(--sp-5);
  font-size: var(--fs-sm); color: var(--muted);
}
.hero__note svg { flex: none; color: var(--accent-text); }

/* Vollflächige Bildvariante mit responsivem Kontrastverlauf. */
.hero--media {
  min-height: clamp(34rem, calc(100svh - var(--header-h) - 5rem), 43rem);
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #20201F;
}
.hero--media::before {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.68) 0%, rgba(22, 22, 22, 0.62) 58%, rgba(22, 22, 22, 0.76) 100%),
    linear-gradient(90deg, rgba(22, 22, 22, 0.42), transparent 82%);
}
.hero--media .hero__grid {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero--media .hero__inner { max-width: 49ch; }
.hero--media .hero__title { color: var(--white); }
.hero--media .hero__title em { color: #F2AA59; }
.hero--media .hero__text { color: #F1EFEC; }
.hero--media .eyebrow { color: #E2DFDB; }
.hero--media .hero__note { color: #E2DFDB; }
.hero--media .hero__note svg { color: #F2AA59; }
.hero--media .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(22, 22, 22, 0.18);
}
.hero--media .btn--ghost:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}
.hero__media { display: none; }
.hero--media > .hero__media {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero--media > .hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 52%;
}
@media (min-width: 768px) {
  .hero--media::before {
    background:
      linear-gradient(90deg, rgba(22, 22, 22, 0.88) 0%, rgba(22, 22, 22, 0.73) 38%, rgba(22, 22, 22, 0.34) 68%, rgba(22, 22, 22, 0.18) 100%),
      linear-gradient(180deg, rgba(22, 22, 22, 0.10), rgba(22, 22, 22, 0.38));
  }
  .hero--media .hero__actions .btn { flex: 0 1 auto; }
}
@media (max-width: 767px) {
  .hero--media {
    min-height: auto;
    padding-block: clamp(3rem, 11vw, 4.5rem);
  }
  .hero--media::before {
    background:
      linear-gradient(180deg, rgba(22, 22, 22, 0.68) 0%, rgba(22, 22, 22, 0.72) 48%, rgba(22, 22, 22, 0.84) 100%),
      linear-gradient(90deg, rgba(22, 22, 22, 0.30), rgba(22, 22, 22, 0.18));
  }
  .hero--media > .hero__media img { object-position: 46% 50%; }
  .hero--media .hero__note { align-items: flex-start; }
  .hero--media .hero__note svg { margin-top: 0.25rem; }
}
@media (min-width: 768px) and (max-width: 959px) {
  .hero--media {
    min-height: clamp(38rem, 78svh, 43rem);
  }
  .hero--media > .hero__media img { object-position: 49% 52%; }
}
@media (min-width: 1600px) {
  .hero--media > .hero__media img { object-position: 50% 55%; }
}

/* -------------------------------------------------------------------------
   7. Informationsband unter dem Hero
   ------------------------------------------------------------------------- */
.infobar { background: var(--graphite); color: #E6E4E1; }
.infobar__grid {
  display: grid; gap: var(--sp-4);
  padding-block: var(--sp-5);
  margin: 0;
}
@media (min-width: 560px) { .infobar__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }
@media (min-width: 960px) {
  .infobar__grid { grid-template-columns: repeat(5, auto); justify-content: space-between; gap: var(--sp-6); }
}
.infobar__item { display: block; }
/* Die Zeile „Heute“ erscheint nur, wenn das Skript den Status gesetzt hat.
   Muss nach `.infobar__item` stehen – bei gleicher Spezifität gewinnt sonst
   die spätere Regel und die Zeile bliebe ohne JavaScript leer sichtbar. */
.infobar__item--today { display: none; }
.infobar__item--today:has([data-state]) { display: block; }
.infobar__item dt {
  font-size: var(--fs-2xs); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #B3B0AC; margin-bottom: 3px;
}
.infobar__item dd { margin: 0; font-weight: 600; color: var(--white); font-variant-numeric: tabular-nums; }
/* Die Trefferfläche wird auf 44 px vergrössert, ohne das Layout zu verschieben:
   Innenabstand nach aussen, gleich grosser negativer Aussenabstand zurück. */
.infobar__item dd a {
  display: inline-flex; align-items: center;
  padding-block: 0.8rem; margin-block: -0.8rem;
  color: var(--white); text-decoration-color: rgba(255,255,255,0.45);
}
.infobar__item dd a:hover { color: var(--accent); text-decoration-color: var(--accent); }
/* Erscheint erst, wenn das Skript den Status ausgewertet hat.
   Ohne JavaScript bleibt die Zeile leer und damit unsichtbar. */
.infobar__status { display: none; }
.infobar__status[data-state] {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: var(--fs-2xs); font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.infobar__status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
}
.infobar__status[data-state="open"]   { color: #8FD09A; }
.infobar__status[data-state="closed"] { color: #B3B0AC; }

/* -------------------------------------------------------------------------
   8. Abschnittsköpfe
   ------------------------------------------------------------------------- */
.section__head { max-width: 60ch; margin-bottom: var(--sp-6); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head p { color: var(--ink-soft); }
.section__head p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   9. Split, Karten, Raster
   ------------------------------------------------------------------------- */
.split { display: grid; gap: var(--sp-6); align-items: start; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .split--center { align-items: center; }
}

.cards { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .cards--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px) { .cards--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: var(--sp-5);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.card:hover { box-shadow: var(--shadow-sm); border-color: var(--line-strong); border-top-color: var(--accent-dark); }
.card__title { margin-bottom: var(--sp-1); }
.card__price {
  font-size: var(--fs-sm); color: var(--muted); margin-bottom: var(--sp-4);
}
.card__price strong { color: var(--accent-text); font-weight: 700; font-size: 1.125rem; font-variant-numeric: tabular-nums; }
.card__list { list-style: none; margin: 0 0 var(--sp-5); padding: 0; font-size: var(--fs-sm); }
.card__list li { position: relative; padding-left: 1.1rem; color: var(--ink-soft); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 0.5rem; height: 1px; background: var(--line-strong);
}
.card__foot { margin-top: auto; }

/* Werte als schlichte Liste mit Oberlinie */
.values { display: grid; gap: var(--sp-5); list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px) { .values { grid-template-columns: 1fr 1fr; column-gap: var(--sp-6); } }
@media (min-width: 1024px) { .values { grid-template-columns: repeat(4, 1fr); } }
.values li { margin: 0; padding-top: var(--sp-4); border-top: 2px solid var(--accent); }
.values h3 { font-size: 1.0625rem; margin-bottom: var(--sp-2); }
.values p { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }

/* -------------------------------------------------------------------------
   10. Team – Karten ohne Foto, mit Initial als Signet.
   Sobald Porträts vorliegen: .person__photo einsetzen (siehe README).
   ------------------------------------------------------------------------- */
.team { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); } }
/* In der zweispaltigen Startseiten-Sektion stehen die Karten untereinander,
   damit sie nicht auf halbe Spaltenbreite zusammenfallen. */
.team--stack { grid-template-columns: 1fr !important; }

.person {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-5);
  transition: border-color var(--t), box-shadow var(--t);
}
.person:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.person__head { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-4); }
.person__mark {
  flex: none;
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-text);
  font-size: 1.5rem; font-weight: 700; font-stretch: 112%;
  line-height: 1;
}
/* Platz für ein späteres Porträt – gleiche Masse, kein Layoutwechsel */
.person__photo {
  flex: none;
  width: 64px; height: 64px;
  border-radius: 50%; object-fit: cover;
}
.person__name { margin: 0 0 2px; font-size: var(--fs-h3); }
.person__role { margin: 0; font-size: var(--fs-sm); color: var(--muted); }
.person__list { list-style: none; margin: 0 0 var(--sp-5); padding: 0; font-size: var(--fs-sm); }
.person__list li { position: relative; padding-left: 1.1rem; color: var(--ink-soft); }
.person__list li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 0.5rem; height: 1px; background: var(--line-strong);
}
.person__foot { margin-top: auto; }

/* -------------------------------------------------------------------------
   11. Leistungen und Preise
   Mobil: Name, Dauer, Preis in einer ruhigen Zeile – ohne Buttonflut.
   ------------------------------------------------------------------------- */
.pricegroup + .pricegroup { margin-top: var(--sp-7); }
.pricegroup__head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: var(--sp-2) var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--graphite);
  margin-bottom: var(--sp-1);
}
.pricegroup__head h2 { margin: 0; font-size: var(--fs-h3); }
.pricegroup__note { font-size: var(--fs-xs); color: var(--muted); }
.pricegroup__foot { margin-top: var(--sp-5); }

.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { margin: 0; border-bottom: 1px solid var(--line); }
.price-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px var(--sp-4);
  align-items: baseline;
  padding-block: var(--sp-4);
}
.price-item__name { grid-column: 1; font-weight: 500; color: var(--ink); line-height: 1.4; }
.price-item__meta { grid-column: 1; font-size: var(--fs-xs); color: var(--muted); }
.price-item__price {
  grid-column: 2; grid-row: 1 / span 2;
  font-weight: 700; font-size: 1.125rem;
  color: var(--accent-text);
  white-space: nowrap; font-variant-numeric: tabular-nums;
  text-align: right;
}

/* Hinweiszeile über den Preisen */
.price-intro {
  display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-6);
}
.price-intro span { display: inline-flex; align-items: center; gap: 0.45rem; }
.price-intro svg { flex: none; color: var(--accent-text); }

/* Sprungmarken zu den Preisgruppen */
.chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); list-style: none; margin: 0 0 var(--sp-6); padding: 0; }
.chips li { margin: 0; }
.chips a {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0.5rem 1rem;
  font-size: var(--fs-sm); font-weight: 600; text-decoration: none;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--line-strong); border-radius: 100px;
  transition: border-color var(--t), background-color var(--t), color var(--t);
}
.chips a:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-text); }

/* -------------------------------------------------------------------------
   12. Vertrauen / Google-Bewertungen
   ------------------------------------------------------------------------- */
.trust {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.1rem + 2.2vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
/* Solange keine geprüfte Bewertung hinterlegt ist, steht der Block ruhig
   und mittig – schmaler als die Spalte, damit die Fläche gesetzt wirkt. */
.trust--link-only { max-width: 46rem; margin-inline: auto; text-align: center; }
.trust--link-only .trust__head { justify-content: center; }
.trust--link-only .trust__actions { justify-content: center; }
.trust--link-only .measure { margin-inline: auto; }
.trust__head { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4); }
.trust__logo { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; color: var(--ink); }
.trust__logo svg { flex: none; }
.trust__actions { margin-top: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.trust__note { margin-top: var(--sp-4); font-size: var(--fs-xs); color: var(--muted); }

/* Kopfzeile mit Gesamtbewertung: Zahl und Sterne links, Erklärung rechts */
.trust__summary { display: grid; gap: var(--sp-5); align-items: center; }
@media (min-width: 768px) {
  .trust__summary { grid-template-columns: auto minmax(0, 1fr); gap: var(--sp-7); }
}
.trust__scorebox { text-align: center; }
@media (min-width: 768px) {
  .trust__scorebox {
    text-align: left;
    padding-right: var(--sp-7);
    border-right: 1px solid var(--line);
  }
}
.trust__score {
  display: block;
  font-size: clamp(3rem, 2.2rem + 3.4vw, 4.25rem); font-weight: 700;
  font-stretch: 112%; color: var(--ink); line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--sp-2);
}
.trust__meta { font-size: var(--fs-sm); color: var(--muted); margin: var(--sp-2) 0 0; }
.trust__cta p { color: var(--ink-soft); margin-bottom: var(--sp-4); }
.trust__cta { text-align: center; }
@media (min-width: 768px) { .trust__cta { text-align: left; } }

/* Sternereihe – wird nur gerendert, wenn eine geprüfte Bewertung vorliegt */
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { flex: none; }
.trust__scorebox .stars { justify-content: center; }
@media (min-width: 768px) { .trust__scorebox .stars { justify-content: flex-start; } }

/* Rezensionskarten
   minmax(0, 1fr) statt 1fr: sonst erzwingt die Mindestbreite des Inhalts
   breitere Spalten als verfügbar und das Raster läuft aus der Seite. */
.reviews { display: grid; gap: var(--sp-4); margin-top: var(--sp-5); }
@media (min-width: 700px)  { .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--sp-5); } }

.review {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-5);
  font-size: var(--fs-sm);
  transition: border-color var(--t), box-shadow var(--t);
}
.review:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.review__top { margin-bottom: var(--sp-4); }
.review__text {
  margin: 0 0 var(--sp-5);
  color: var(--ink-soft);
  line-height: 1.6;
  overflow-wrap: break-word;
  quotes: "\201E" "\201C";
}
.review__text::before { content: open-quote; }
.review__text::after  { content: close-quote; }
.review__by {
  display: flex; align-items: center; gap: var(--sp-3);
  margin-top: auto; padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  font-weight: 600; color: var(--ink);
}
.review__who { min-width: 0; overflow-wrap: break-word; }
.review__avatar {
  flex: none;
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent-text);
  font-size: 0.9375rem; font-weight: 700; line-height: 1;
}
.review__date { display: block; font-weight: 400; color: var(--muted); font-size: var(--fs-xs); }

/* -------------------------------------------------------------------------
   13. Buchung, Öffnungszeiten, Kontakt
   ------------------------------------------------------------------------- */
.booking {
  background: var(--graphite);
  color: #E6E4E1;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.2rem + 3vw, 3.25rem);
}
.booking h2 { color: var(--white); }
.booking p { color: #CFCCC8; }
.booking__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }
.booking__actions .btn { flex: 1 1 auto; min-width: 200px; }
.booking__actions .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.35); }
.booking__actions .btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.booking__note { margin-top: var(--sp-4); font-size: var(--fs-xs); color: #A9A6A2; }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: var(--sp-4);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.hours li:last-child { border-bottom: 0; }
.hours__day { color: var(--ink-soft); }
.hours__time { color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }
.hours li[data-closed] .hours__time { color: var(--muted); font-weight: 400; }
.hours li[aria-current="true"] { font-weight: 600; }
.hours li[aria-current="true"] .hours__day,
.hours li[aria-current="true"] .hours__time { color: var(--ink); }
.hours__today {
  margin-left: 0.4rem; font-size: var(--fs-2xs); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text);
}

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { margin: 0; padding-block: var(--sp-4); border-bottom: 1px solid var(--line); }
.contact-list li:first-child { padding-top: 0; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list__label {
  display: block; font-size: var(--fs-2xs); color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 3px;
}
.contact-list a { font-weight: 500; }
.contact-list__big {
  font-size: 1.25rem; font-weight: 700; font-stretch: 108%;
  color: var(--ink); text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.contact-list__big:hover { color: var(--accent-text); }

.arrival-grid {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
@media (min-width: 720px) { .arrival-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.arrival-card {
  min-width: 0;
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
}
.arrival-card h3 { margin-bottom: var(--sp-2); }
.arrival-card p { margin: 0; color: var(--ink-soft); overflow-wrap: break-word; }

/* -------------------------------------------------------------------------
   13b. Karte
   Google Maps wird direkt im Kartenbereich eingebettet.
   ------------------------------------------------------------------------- */
.map {
  position: relative;
  width: 100%;
  /* Feste Höhe statt aspect-ratio + max-height: die Kombination staucht
     sonst die Breite, um das Seitenverhältnis zu halten. */
  height: clamp(240px, 34vw, 400px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.map__frame { width: 100%; height: 100%; border: 0; display: block; }
.map.is-loaded {
  border-color: var(--line-strong);
}
.map__actions { margin-top: var(--sp-4); }
@media (max-width: 479px) { .map__actions .btn { width: 100%; } }

/* -------------------------------------------------------------------------
   14. Galerie (derzeit deaktiviert – Markup bleibt einsatzbereit)
   ------------------------------------------------------------------------- */
.gallery { display: grid; gap: var(--sp-3); grid-template-columns: 1fr 1fr; }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); } }
.gallery__item { margin: 0; }
.gallery__item button {
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden;
}
.gallery__item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius);
  transition: transform 320ms var(--ease);
}
.gallery__item button:hover img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) { .gallery__item button:hover img { transform: none; } }

.lightbox {
  position: fixed; inset: 0; z-index: 150;
  display: none; place-items: center;
  max-width: 100%; max-height: 100%; width: 100%; height: 100%;
  background: rgba(24, 22, 20, 0.92);
  border: 0; padding: var(--sp-4);
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(24, 22, 20, 0.92); }
.lightbox img { max-width: min(96vw, 1100px); max-height: 80vh; width: auto; border-radius: var(--radius); }
.lightbox__caption { color: #E6E4E1; font-size: var(--fs-sm); text-align: center; margin-top: var(--sp-3); }
.lightbox__close {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* -------------------------------------------------------------------------
   15. Fussbereich
   ------------------------------------------------------------------------- */
.footer { background: var(--surface); border-top: 1px solid var(--line); padding-block: var(--sp-7) var(--sp-6); }
.footer__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: var(--sp-7); } }
.footer h2, .footer h3 {
  font-size: var(--fs-2xs); font-weight: 600; font-stretch: 100%;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: var(--sp-3); letter-spacing: 0.14em;
}
.footer ul { list-style: none; margin: 0; padding: 0; font-size: var(--fs-sm); }
.footer li { margin-bottom: var(--sp-2); }
.footer a { text-decoration: none; color: var(--ink-soft); }
.footer a:hover { color: var(--accent-text); text-decoration: underline; }
.footer__logo img { width: 148px; margin-bottom: var(--sp-4); }
.footer__social { display: flex; gap: var(--sp-2); margin-top: var(--sp-4); }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong); border-radius: var(--radius);
  color: var(--ink-soft);
  transition: border-color var(--t), color var(--t), background-color var(--t);
}
.footer__social a:hover { border-color: var(--ink); color: var(--ink); background: var(--white); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--sp-3);
  margin-top: var(--sp-7); padding-top: var(--sp-4);
  border-top: 1px solid var(--line-strong);
  font-size: var(--fs-xs); color: var(--muted);
}
.footer__bottom p { margin: 0; }
.footer__bottom ul { display: flex; flex-wrap: wrap; gap: var(--sp-4); font-size: var(--fs-xs); }
.footer__bottom li { margin: 0; }

/* -------------------------------------------------------------------------
   16. Seitenkopf der Unterseiten
   ------------------------------------------------------------------------- */
.page-head {
  padding-block: clamp(2.25rem, 1.7rem + 2.5vw, 3.75rem) var(--sp-6);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.page-head h1 { margin-bottom: var(--sp-4); }
.page-head p { max-width: 58ch; margin-bottom: 0; }

/* Rechtstexte */
.legal { max-width: 68ch; }
.legal h2 { font-size: var(--fs-h3); margin-top: var(--sp-6); }
.legal h2:first-of-type { margin-top: 0; }
.legal ul { padding-left: 1.15rem; }

/* -------------------------------------------------------------------------
   17. Sanftes Einblenden beim Scrollen
   ------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(12px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
}
/* Ohne JavaScript bleibt alles sichtbar */
.no-js .reveal { opacity: 1; transform: none; }

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

/* -------------------------------------------------------------------------
   18. Druck
   ------------------------------------------------------------------------- */
@media print {
  .header, .mobile-nav, .actionbar, .booking, .skip-link, .footer__social { display: none !important; }
  body { padding-bottom: 0; color: #000; }
  .reveal { opacity: 1; transform: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.75em; word-break: break-all; }
}
