@font-face {
  font-family: 'Inter';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
}

/* ==================================================================
   HEBEISEN — geteiltes Stylesheet fuer alle Seiten
   Design-Grundlage: brand/identitaet.md
   ================================================================== */

  :root {
    --surface: #F7F6F2;
    --surface-deep: #EFEBE3;
    --text: #201D18;
    --text-soft: #55504A;
    --text-mute: #6E6759; /* BFSG/WCAG AA: >=4.5:1 auf --surface, --surface-deep und Weiß (vorher #837C70 lag bei nur 3.5–4.1:1) */
    --accent: #8C7355;
    --accent-deep: #6B5640;
    --on-accent: #F7F6F2;
    --line: rgba(32,29,24,0.12);
    --line-strong: rgba(32,29,24,0.22);
    --max: 1240px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  body {
    margin: 0;
    background: var(--surface);
    color: var(--text);
    font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
  a { color: inherit; }
  img, svg { max-width: 100%; display: block; }
  ::selection { background: var(--accent); color: var(--on-accent); }

  /* ---------- BFSG/WCAG: Hilfsklassen ---------- */
  .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;
  }
  .skip-link {
    position: absolute; left: 12px; top: -60px; z-index: 1000;
    background: var(--text); color: var(--surface); padding: 12px 20px;
    border-radius: 4px; text-decoration: none; font-size: 0.9rem; font-weight: 600;
    transition: top 0.15s ease;
  }
  .skip-link:focus { top: 12px; }

  /* ---------- Top bar ---------- */
  header.site-head {
    position: sticky; top: 0; z-index: 40;
    background: var(--surface);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
  }
  header.site-head.is-scrolled {
    border-bottom: 1px solid var(--line);
  }
  .site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 96px; }
  .wordmark { font-weight: 700; font-size: 1.7rem; letter-spacing: 0.01em; display: flex; }
  .wordmark small {
    display: block; font-weight: 500; font-size: 0.62rem; letter-spacing: 0.24em;
    color: var(--text-mute); margin-top: 3px; text-transform: uppercase;
  }
  .wordmark img { display: block; height: 26px; width: auto; margin: 0; padding: 0; }
  @media (max-width: 780px) { .wordmark img { height: 20px; } }
  nav.site-nav { display: flex; gap: clamp(14px, 2.4vw, 30px); align-items: center; }
  nav.site-nav a { text-decoration: none; font-size: 0.88rem; color: var(--text-soft); transition: color 0.2s ease; white-space: nowrap; }
  nav.site-nav a:hover, nav.site-nav a:focus-visible { color: var(--text); }
  nav.site-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
  @media (max-width: 780px) {
    .site-head .wrap { height: 68px; }
    .wordmark { font-size: 1.3rem; }
    nav.site-nav a:not(.btn) { display: none; }
    nav.site-nav .btn { padding: 0.6em 1em; font-size: 0.78rem; }
  }

  /* ---------- Mobil-Navigation (Hamburger) — BFSG: vollständige Navigation muss auch auf schmalen Displays erreichbar sein ---------- */
  .nav-toggle {
    display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    width: 44px; height: 44px; padding: 0; margin-left: 10px; border: none; background: none; cursor: pointer; flex: none;
  }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 780px) { .nav-toggle { display: flex; } }

  .mobile-nav { display: none; flex-direction: column; background: var(--surface); border-bottom: 1px solid var(--line); padding: 4px clamp(20px, 5vw, 64px) 12px; }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--text); font-size: 1.02rem; }
  .mobile-nav a:last-child { border-bottom: none; }
  .mobile-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; border-radius: 2px; }

  /* ---------- Footer wordmark ---------- */
  .footer-wordmark {
    font-weight: 700; font-size: 1.6rem; letter-spacing: 0.01em; color: var(--text);
    margin-bottom: 28px; display: flex;
  }
  .footer-wordmark img { display: block; height: 24px; width: auto; margin: 0; padding: 0; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px;
    padding: 0.85em 1.5em; border-radius: 2px;
    font-size: 0.92rem; font-weight: 500; text-decoration: none;
    border: 1px solid var(--line-strong); color: var(--text);
    transition: border-color 0.2s ease, background 0.2s ease;
    cursor: pointer; background: transparent;
  }
  .btn:hover, .btn:focus-visible { border-color: var(--accent); }
  .btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
  .btn-primary { background: var(--accent); border-color: var(--accent); color: var(--on-accent); font-weight: 600; }
  .btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-deep); border-color: var(--accent-deep); }

  /* ---------- Eyebrow / headings ---------- */
  .eyebrow {
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.72rem;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep);
  }
  /* overflow-wrap/hyphens: Schutz gegen abgeschnittene lange deutsche Komposita (z. B.
     "Ausstellungsstücke") auf schmalen Viewports — sonst clippt die überstehende Silbe am
     rechten Rand statt umzubrechen, da einzelne lange Wörter ohne Trennzeichen nicht
     automatisch umbrechen (BFSG/WCAG 1.4.10 Reflow, Andy Hebeisen, 13.09.2026). */
  h1, h2, h3 { text-wrap: balance; margin: 0; font-weight: 600; overflow-wrap: break-word; hyphens: auto; }
  h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); line-height: 1.04; letter-spacing: -0.02em; }
  h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); line-height: 1.1; letter-spacing: -0.01em; }
  h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; line-height: 1.3; }
  p.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--text-soft); max-width: 46ch; line-height: 1.65; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative; padding: clamp(32px, 4vw, 48px) 0 0; overflow: hidden;
    background: var(--surface);
  }
  .hero::after {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(115deg, rgba(32,29,24,0.012) 0 1px, transparent 1px 3px);
    pointer-events: none;
  }
  .masthead {
    position: relative; z-index: 1; display: flex; align-items: baseline; justify-content: space-between;
    gap: 20px; padding-bottom: 16px; margin-bottom: clamp(20px, 3vw, 32px); border-bottom: 1px solid var(--line);
  }
  .masthead-meta { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em; color: var(--text-mute); white-space: nowrap; }
  /* Auf schmalen Screens drängen sich Eyebrow ("Küchenspezialist · Rhein-Main") und Meta
     ("Seit 1980 · Hanau") zusammen — Meta ausblenden, Eyebrow ist der für die Zielgruppe
     relevantere Teil (Andy Hebeisen, 25.08.2026). Ab 560px wieder beide nebeneinander. */
  @media (max-width: 560px) { .masthead-meta { display: none; } }
  .hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: stretch; }
  @media (max-width: 820px) { .hero-inner { grid-template-columns: 1fr; } }
  .hero h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
  .hero-lede-block { display: flex; flex-direction: column; justify-content: flex-end; gap: 20px; }
  .hero-photo {
    position: relative; z-index: 1; margin-top: clamp(20px, 3vw, 32px);
    aspect-ratio: 21/7; border-radius: 4px; overflow: hidden;
    background: #E9E5DA; border: 1px dashed var(--line-strong);
    display: flex; align-items: flex-end; justify-content: flex-start;
  }
  /* Auf Mobile ist 21:7 zu flach/breit — das Motiv wirkt gequetscht. 16:9 zeigt spürbar
     mehr vom Bild und wirkt auf schmalen Screens ausgewogener (Andy Hebeisen, 21.08.2026). */
  @media (max-width: 640px) { .hero-photo { aspect-ratio: 16/9; } }
  .hero-photo-tag {
    margin: 0; background: #141414; color: #F7F6F2; font-size: 0.76rem;
    font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.6em 1em; border-radius: 0;
  }
  .hero-photo-note { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--text-mute); font-size: 0.78rem; text-align: center; padding: 0 20px; }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
  .stat .l { font-size: 0.78rem; color: var(--text-mute); margin-top: 2px; }
  .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

  /* ---------- Section shell ---------- */
  section { padding: clamp(64px, 9vw, 120px) 0; }
  /* Gemeinsame Hero-Formel für die Unterseiten N°1, COSMOPOLITAN, Karriere und Outlet
     (Andy Hebeisen, 03.09.2026) — vorher hatte jede Seite ihre eigenen, leicht
     unterschiedlichen Padding-Werte. Die Startseite bleibt bewusst außen vor, ihr Hero
     ist strukturell anders (zweispaltig mit Foto, kein Vollbild-Hintergrundbild). */
  .brand-hero { padding: clamp(72px, 10vw, 120px) 0 clamp(56px, 8vw, 90px); }
  .section-head { max-width: 620px; margin-bottom: clamp(36px, 5vw, 64px); }
  .section-head .eyebrow { margin-bottom: 14px; }

  /* ---------- Trust bar ---------- */
  .trustbar { padding: 0 0 clamp(48px, 7vw, 84px); }
  /* Trustbar (Familienunternehmen/Google-Bewertung/Inhaber) und "Was Kunden sagen" gehören
     inhaltlich zur selben Vertrauens-Sektion — engerer Übergang als der Sektions-Standard. */
  .trustbar + .reviews { padding-top: clamp(24px, 4vw, 48px); }
  .trustbar-inner {
    display: flex; flex-wrap: wrap; gap: 20px 44px; align-items: center; justify-content: center;
    padding-top: clamp(28px, 4vw, 40px); border-top: 1px solid var(--line);
    font-size: 0.88rem; color: var(--text-soft);
  }
  .trust-item { display: flex; align-items: center; gap: 9px; white-space: nowrap; }
  .trust-icon { color: var(--accent); font-size: 0.6rem; }
  .stars { color: var(--accent); letter-spacing: 1px; font-size: 0.85rem; }

  /* ---------- Brand split ---------- */
  .split {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 28px);
  }
  @media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

  .brand-card {
    position: relative; padding: clamp(36px, 5vw, 56px); min-height: 480px;
    display: flex; flex-direction: column; justify-content: flex-end; gap: 18px;
    text-decoration: none; color: var(--card-text); background: var(--card-bg);
    border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
    transition: transform 0.4s cubic-bezier(.2,.7,.3,1);
    isolation: isolate;
  }
  .brand-card .texture { position: absolute; inset: 0; z-index: -1; }
  .brand-card:hover, .brand-card:focus-visible { transform: translateY(-3px); }
  .brand-card:focus-visible { outline: 2px solid var(--accent); outline-offset: -4px; }

  .n1 {
    --card-bg: #FCFBF8; --card-text: #201D18; --card-text-soft: #55504A;
    --card-mute: #8B8579; --card-accent: #6B5640;
  }
  .n1 .texture {
    background:
      linear-gradient(0deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.55) 42%, rgba(255,255,255,0.08) 68%),
      url('../images/n1-modern.png') center 38% / cover no-repeat;
  }
  .cosmo {
    --card-bg: #141414; --card-text: #F7F6F2; --card-text-soft: #C8C6C1;
    --card-mute: #9B9488; --card-accent: #C9A67D;
  }
  .cosmo .texture {
    background:
      linear-gradient(0deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 42%, rgba(10,10,10,0.12) 68%),
      url('../images/cosmo-dark.png') center 42% / cover no-repeat;
  }

  .brand-card .kicker {
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.72rem;
    letter-spacing: 0.16em; text-transform: uppercase; color: var(--card-mute);
    display: flex; align-items: center; gap: 10px;
  }
  .signet-placeholder {
    width: 20px; height: 20px; border: 1.5px dashed var(--card-mute); border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.55rem; color: var(--card-mute); flex: none;
  }
  .price-tag {
    position: absolute; top: 20px; left: 20px; z-index: 4;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.74rem;
    font-variant-numeric: tabular-nums; letter-spacing: 0.01em;
    background: rgba(255,255,255,0.94); color: #201D18;
    padding: 0.4em 0.75em; border-radius: 3px;
  }
  .cosmo .price-tag { background: rgba(20,20,20,0.85); color: #F7F6F2; }

  /* ---------- Brand split v2 (Foto oben, Text darunter) ---------- */
  .welten-tight { padding-top: 50px; }
  .split-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
  @media (max-width: 820px) { .split-v2 { grid-template-columns: 1fr; } }
  .bcard { display: flex; flex-direction: column; }
  .bcard-photo {
    position: relative; display: block; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden;
    background-size: cover; background-position: center 40%; isolation: isolate;
  }
  .n1-photo { background-image: url('../images/n1-modern.png'); }
  .cosmo-photo { background-image: url('../images/cosmo-dark.png'); }
  .cosmo-photo .price-tag { background: rgba(20,20,20,0.85); color: #F7F6F2; }
  .bcard-logo { display: block; height: 30px; width: auto; max-width: 100%; margin-top: 24px; align-self: flex-start; flex: none; object-fit: contain; }
  .bcard-tagline { color: var(--text-soft); font-size: 0.96rem; margin-top: 14px; max-width: 44ch; }
  .bcard-btn {
    margin-top: 22px; align-self: flex-start; display: inline-flex; align-items: center; gap: 8px;
  }
  .bcard-btn svg { width: 14px; height: 14px; }

  /* ---------- Zwei Handschriften (alternierende Zeilen) ---------- */
  .hs-row { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
  .hs-row + .hs-row { margin-top: clamp(48px, 7vw, 88px); }
  @media (max-width: 860px) { .hs-row, .hs-row-reverse { grid-template-columns: 1fr; } }
  .hs-row-reverse .hs-photo { order: 2; }
  @media (max-width: 860px) { .hs-row-reverse .hs-photo { order: 0; } }
  .hs-photo {
    position: relative; aspect-ratio: 4/3; border-radius: 4px; overflow: hidden;
    background-size: cover; background-position: center 40%;
  }
  .hs-num {
    position: absolute; left: 20px; bottom: 12px; font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 4.5rem; line-height: 1; color: rgba(255,255,255,0.5);
  }
  .hs-logo { display: block; height: 30px; width: auto; }
  .hs-kicker {
    display: block; margin-top: 18px; font-family: 'Inter', sans-serif; font-weight: 600;
    font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-deep);
  }
  .hs-text p { margin-top: 14px; color: var(--text-soft); max-width: 46ch; }
  .hs-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 8px; }
  .hs-list li { position: relative; padding-left: 18px; font-size: 0.94rem; color: var(--text); }
  .hs-list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; background: var(--accent); }
  .hs-cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
  .hs-cta-row .btn { white-space: nowrap; }
  .hs-price-tag { position: static; background: var(--surface-deep); color: var(--text); border: 1px solid var(--line-strong); }

  /* ---------- Outlet-Teaser (wiederverwendet Outlet-Karten-Optik) ---------- */
  .listing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; align-items: stretch; }
  .listing-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #FFFFFF; }
  .listing-photo { position: relative; aspect-ratio: 16/9; background: var(--surface-deep); overflow: hidden; }
  .listing-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  /* UVP/Sonderpreis sollen in einer Kartenreihe immer auf derselben Höhe stehen, auch wenn eine
     Karte mehr Front-/APL-Zeilen hat als ihre Nachbarn — price-row+note werden per margin-top:auto
     an den Kartenboden gedrückt, der zusätzliche Freiraum entsteht dann automatisch oberhalb davon
     (Andy Hebeisen, 25.08.2026). */
  .listing-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
  .listing-body .name { font-weight: 600; text-transform: uppercase; letter-spacing: 0.01em; }
  /* Front:/APL: als zwei Flex-Spalten statt inline-block — sonst rutscht eine umgebrochene
     zweite Zeile des Werts (z.B. "... Nachbildung") an den linken Rand statt in die Wertspalte
     einzurücken (Andy Hebeisen, 25.08.2026). */
  .listing-body .mline { display: flex; font-size: 0.82rem; color: var(--text-soft); }
  .listing-body .mline-label { flex: 0 0 auto; min-width: 4.2em; color: var(--text-mute); }
  .listing-body .mline-value { flex: 1 1 auto; }
  .listing-body .price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 12px; flex-wrap: wrap; }
  /* Gleiche Schriftgröße wie .mline, damit "Abholpreis ohne E-Geräte, Spüle und Dekoration"
     einzeilig bleibt (Andy Hebeisen, 25.08.2026). */
  .listing-body .note { margin-top: 6px; font-size: 0.82rem; color: var(--text-mute); }
  .listing-body .uvp { color: var(--text-mute); font-size: 0.86rem; font-variant-numeric: tabular-nums; }
  .listing-body .price { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.4rem; font-variant-numeric: tabular-nums; color: var(--accent-deep); }
  .photo-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  @media (max-width: 640px) { .photo-gallery { grid-template-columns: 1fr; } }
  .photo-gallery-item { position: relative; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; }
  .photo-gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* ---------- Galerien: Klick zum Vergrößern (nur Desktop, site.js) ---------- */
  .is-zoomable img { cursor: zoom-in; transition: transform 0.35s ease; }
  .is-zoomable:hover img { transform: scale(1.03); }
  .lightbox {
    position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center;
    background: rgba(10,10,10,0.94); padding: 56px;
  }
  .lightbox.is-open { display: flex; }
  .lightbox-frame { position: relative; max-width: 100%; max-height: 100%; line-height: 0; }
  .lightbox-img { max-width: 100%; max-height: 100%; border-radius: 4px; box-shadow: 0 24px 64px rgba(0,0,0,0.45); display: block; }
  .lightbox-frame .ai-label { right: 12px; bottom: 12px; font-size: 9pt; }
  .lightbox-close {
    position: absolute; top: 22px; right: 30px; background: none; border: none; color: #F7F6F2;
    font-size: 2.2rem; line-height: 1; cursor: pointer; padding: 6px 12px; font-family: 'Inter', sans-serif;
  }
  .lightbox-close:hover { color: #C9A67D; }

  .ot-tag {
    position: absolute; top: 14px; right: 14px; background: rgba(20,20,20,0.85); color: #F7F6F2;
    font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; padding: 0.45em 0.8em; border-radius: 3px;
  }

  .kicker-logo {
    display: block; height: 48px; width: auto; max-width: 100%;
    align-self: flex-start; flex: none; object-fit: contain;
  }
  @media (max-width: 480px) { .kicker-logo { height: 34px; } }
  .card-foot {
    display: flex; flex-direction: column; justify-content: flex-end;
    gap: 14px; min-height: 148px;
  }
  .brand-card .name { font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 600; letter-spacing: -0.01em; color: var(--card-text); }
  .brand-card .tagline { color: var(--card-text-soft); font-size: 1rem; max-width: 36ch; }
  .brand-card .go {
    margin-top: 6px; font-size: 0.88rem; font-weight: 500;
    display: inline-flex; align-items: center; gap: 8px; color: var(--card-accent);
  }
  .brand-card .go svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
  .brand-card:hover .go svg { transform: translateX(4px); }

  /* ---------- Value section ---------- */
  .value-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1px; background: var(--line); border: 1px solid var(--line);
  }
  .value-item { background: var(--surface); padding: 30px 28px; }
  .value-item .num {
    font-family: 'Inter', sans-serif; font-weight: 500; font-variant-numeric: tabular-nums;
    font-size: 0.75rem; color: var(--text-mute); letter-spacing: 0.08em;
  }
  .value-item h3 { margin-top: 14px; }
  .value-item p { color: var(--text-soft); font-size: 0.94rem; margin: 10px 0 0; }

  /* ---------- Reviews ---------- */
  .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
  .review-card {
    background: #FFFFFF; border: 1px solid var(--line); border-radius: 6px;
    padding: 26px 26px 22px;
  }
  .review-card .stars { display: block; color: var(--accent); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 14px; }
  .review-card p { font-size: 0.96rem; color: var(--text-soft); line-height: 1.55; margin: 0 0 16px; }
  .review-author { font-size: 0.78rem; color: var(--text-mute); }

  /* ---------- Terminvereinbarung: 4-Schritte-Wizard ---------- */
  .wizard-section { background: #141414; }
  .wizard-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
  @media (max-width: 900px) { .wizard-layout { grid-template-columns: 1fr; } }
  .wizard-intro .eyebrow { color: var(--accent-deep); } /* BFSG/WCAG AA: --accent lag bei 4.13:1, --accent-deep bei 6.93:1 */
  .wizard-intro h2 { color: #F7F6F2; margin-top: 14px; font-size: clamp(1.9rem, 3.4vw, 2.5rem); }
  .wizard-intro .lede { color: #B9B2A3; margin-top: 18px; max-width: 46ch; }
  .wizard-steps {
    list-style: none; margin: 40px 0 0; padding: 24px 0 0; border-top: 1px solid rgba(247,246,242,0.14);
    display: flex; flex-direction: column; gap: 16px;
  }
  .wizard-steps li {
    display: flex; align-items: center; gap: 12px; font-size: 0.94rem; color: #6E6A60;
    font-weight: 500; transition: color 0.2s ease;
  }
  .wizard-dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid #6E6A60; flex: none; transition: all 0.2s ease; }
  .wizard-steps li.is-active { color: #F7F6F2; }
  .wizard-steps li.is-active .wizard-dot { background: var(--accent); border-color: var(--accent); }
  .wizard-steps li.is-done { color: #B9B2A3; }
  .wizard-steps li.is-done .wizard-dot { background: #B9B2A3; border-color: #B9B2A3; }

  .wizard-card { background: #FFFFFF; border-radius: 6px; padding: clamp(28px, 4vw, 44px); }
  .wizard-panel { display: none; }
  .wizard-panel.is-active { display: block; animation: wizardPanelIn 0.32s ease both; }
  @keyframes wizardPanelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
  .wizard-counter { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; color: var(--accent-deep); font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }
  .wizard-panel h3 { margin-top: 8px; font-size: clamp(1.2rem, 2vw, 1.5rem); }

  .wizard-options { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
  .wizard-options[hidden] { display: none; }
  .wizard-option {
    position: relative; display: flex; align-items: center; gap: 16px;
    border: 1px solid var(--line); border-radius: 6px; padding: 16px 20px; cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .wizard-option:hover { background: var(--surface-deep); }
  .wizard-option input { position: absolute; opacity: 0; pointer-events: none; }
  .wizard-option input:checked ~ .wo-radio { border-color: var(--accent); }
  .wizard-option input:checked ~ .wo-radio::after { transform: scale(1); }
  .wizard-option:has(input:checked) { border-color: var(--accent); background: var(--surface-deep); }
  .wo-num { font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--text-mute); flex: none; }
  .wo-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
  .wo-text strong { font-size: 0.98rem; font-weight: 600; color: var(--text); }
  .wo-text small { font-size: 0.86rem; color: var(--text-mute); }
  .wo-radio {
    width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--line-strong); flex: none;
    position: relative; transition: border-color 0.2s ease;
  }
  .wo-radio::after {
    content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--accent);
    transform: scale(0); transition: transform 0.15s ease;
  }

  .wizard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px 24px; margin-top: 24px; }
  .wizard-field { display: flex; flex-direction: column; gap: 8px; font-size: 0.88rem; font-weight: 500; color: var(--text-soft); }
  .wizard-field input, .wizard-field textarea {
    font-family: 'Inter', sans-serif; font-size: 0.96rem; color: var(--text);
    background: #FFFFFF; border: 1px solid var(--line-strong); border-radius: 4px;
    padding: 0.7em 0.85em; width: 100%;
  }
  .wizard-field textarea { resize: vertical; }
  .wizard-field input:focus, .wizard-field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
  /* Erst sichtbar NACH einem blockierten "Weiter"/Absenden-Versuch (Klasse wird per JS gesetzt) —
     sonst stünden schon beim ersten Öffnen alle leeren Pflichtfelder rot da. */
  .wizard-attempted .wizard-field input:invalid, .wizard-attempted .wizard-field textarea:invalid { border-color: #A3402F; }
  .wizard-attempted .wizard-option:has(input:invalid) { border-color: #A3402F; }
  .wizard-attempted .wizard-timeslot:has(input:invalid) { border-color: #A3402F; }
  .wizard-honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .wizard-hint { font-size: 0.78rem; font-weight: 400; color: var(--text-mute); }
  .wizard-hint.is-error { color: #A3402F; }
  .wizard-timeslots { display: flex; flex-wrap: wrap; gap: 8px; }
  .wizard-timeslot {
    font-family: 'Inter', sans-serif; font-size: 0.86rem; font-weight: 500; color: var(--text-soft);
    background: #FFFFFF; border: 1px solid var(--line-strong); border-radius: 20px;
    padding: 0.55em 1.1em; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  }
  .wizard-timeslot:hover { border-color: var(--accent); }
  .wizard-timeslot input { position: absolute; opacity: 0; pointer-events: none; }
  .wizard-timeslot:has(input:checked) { background: var(--text); border-color: var(--text); color: #FFFFFF; }
  .wizard-timeslot:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }

  .wizard-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; font-size: 0.86rem; color: var(--text-soft); }
  .wizard-consent input { margin-top: 3px; flex: none; }
  .wizard-consent a { color: var(--text); }

  .wizard-actions { margin-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .wizard-back { color: var(--text-mute); border-color: transparent; }
  .wizard-next svg { width: 14px; height: 14px; }
  .booking-status { display: block; margin-top: 16px; font-size: 0.86rem; color: var(--text-mute); }
  .booking-status.is-error { color: #A3402F; }
  .booking-status.is-ok { color: var(--accent-deep); }

  /* ---------- FAQ ---------- */
  .faq-list { max-width: 780px; display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
  .faq-item { background: var(--surface); }
  .faq-item summary {
    list-style: none; cursor: pointer; padding: 22px 26px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
    font-weight: 600; font-size: 1rem; color: var(--text);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary svg { width: 18px; height: 18px; flex: none; color: var(--text-mute); transition: transform 0.25s ease; }
  .faq-item[open] summary svg { transform: rotate(180deg); }
  .faq-item p { margin: 0; padding: 0 26px 24px; color: var(--text-soft); font-size: 0.94rem; line-height: 1.6; max-width: 62ch; }

  /* Markierung für rechtlich ungeprüfte Aussagen (z. B. Superlative) — nur als dezenter
     Hinweis für die interne Bearbeitung gedacht, siehe brand/recht.md */
  .legal-pending { border-bottom: 1px dotted var(--accent); cursor: help; }

  /* ---------- Regional verwurzelt ---------- */
  .roots-section { background: #141414; padding: clamp(64px, 9vw, 100px) 0; }
  .roots-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
  @media (max-width: 900px) { .roots-layout { grid-template-columns: 1fr; } }
  .roots-text .eyebrow { color: #A88B67; } /* BFSG/WCAG AA: heller Ton für dunklen Abschnittshintergrund (#141414) — var(--accent) kam dort nur auf 4.12:1, dies auf 5.75:1 */
  .roots-text h2 { color: #F7F6F2; margin-top: 14px; font-size: clamp(2rem, 4vw, 2.8rem); }
  .roots-text .lede { color: #B9B2A3; margin-top: 20px; max-width: 52ch; }
  .roots-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 32px; text-align: center;
    margin-top: clamp(40px, 6vw, 64px); padding-top: 32px; border-top: 1px solid rgba(247,246,242,0.14);
  }
  @media (max-width: 640px) { .roots-stats { grid-template-columns: repeat(2, 1fr); } }
  .roots-stat .n {
    display: block; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 2.2rem;
    color: #F7F6F2; font-variant-numeric: tabular-nums; line-height: 1;
  }
  .roots-stat .l { display: block; margin-top: 8px; font-size: 0.78rem; color: #9B9488; text-transform: uppercase; letter-spacing: 0.06em; }
  .roots-photo {
    position: relative;
    aspect-ratio: 4/3; border-radius: 4px; background: #0d0d0d;
    border: 1px dashed rgba(247,246,242,0.2);
    display: flex; align-items: center; justify-content: center;
    color: #6E6A60; font-size: 0.78rem; text-align: center; padding: 16px;
  }

  /* ---------- Quote ---------- */
  .quote-section { background: #141414; padding: clamp(64px, 9vw, 100px) 0; }
  .quote-layout { display: grid; grid-template-columns: 380px 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
  @media (max-width: 780px) { .quote-layout { grid-template-columns: 1fr; } }
  .portrait-placeholder {
    position: relative; aspect-ratio: 3/4; border-radius: 4px;
    overflow: hidden;
  }
  .portrait-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .quote-section blockquote { color: #F7F6F2; }
  .quote-section blockquote::before, .quote-section blockquote::after { color: var(--accent); }
  .quote-section figcaption { color: #9B9488; }

  /* ---------- KI-Kennzeichnung (EU AI Act, seit 02.08.2026) ----------
     Konvention wie im Print: "AI modified", Inter 8pt, 90° gedreht, unten rechts.
     Gilt für alle KI-generierten/-bearbeiteten Bilder auf der Seite. */
  .ai-label {
    position: absolute; right: 6px; bottom: 6px; z-index: 5; pointer-events: none;
    font-family: 'Inter', sans-serif; font-size: 8pt; font-weight: 400; letter-spacing: 0.02em;
    color: rgba(247,246,242,0.7); text-shadow: 0 1px 2px rgba(0,0,0,0.45);
    writing-mode: vertical-rl; white-space: nowrap;
  }
  blockquote { margin: 0; font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 500; line-height: 1.45; letter-spacing: -0.005em; color: var(--text); }
  blockquote::before { content: "„"; color: var(--accent-deep); }
  blockquote::after { content: "“"; color: var(--accent-deep); }
  figcaption { margin-top: 20px; color: var(--text-mute); font-size: 0.9rem; }

  /* ---------- CTA band ---------- */
  .cta-band {
    background:
      radial-gradient(ellipse 700px 320px at 90% 50%, rgba(140,115,85,0.08), transparent 65%),
      var(--surface);
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  }
  .cta-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

  /* ---------- Footer (bewusst dunkel — Kontrast zur hellen Seite) ---------- */
  footer {
    padding: 56px 0 40px; background: #141414; color: #E7E4DC;
  }
  .footer-wordmark { color: #F7F6F2; }
  /* max-content + justify-content:space-between statt fester fr-Anteile (Andy Hebeisen,
     15.09.2026): bei fr-Spalten fiel der sichtbare Abstand zwischen "Öffnungszeiten" und
     "Entdecken" viel kleiner aus als die übrigen Abstände, weil die Öffnungszeiten-Zeilen
     ihre Spalte fast ausfüllten. Mit max-content-Spalten ist jede Spalte genau so breit wie
     ihr Inhalt, space-between verteilt den Rest gleichmäßig — der Abstand ist dadurch
     zwischen allen vier Spalten immer gleich groß, unabhängig von der Textlänge. */
  .footer-grid { display: grid; grid-template-columns: repeat(4, max-content); justify-content: space-between; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(247,246,242,0.14); }
  @media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; justify-content: normal; } }
  @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
  footer h3 { font-size: 0.78rem; letter-spacing: 0.06em; color: #8F897C; font-weight: 500; text-transform: uppercase; margin-bottom: 14px; }
  footer address, footer p { font-style: normal; color: #C8C3B6; font-size: 0.92rem; margin: 0 0 6px; }
  /* Mehr Luft zwischen Adresse und Telefon/E-Mail, damit sich die beiden Kontakt-Gruppen
     im Footer sichtbar voneinander absetzen (Andy Hebeisen, 15.09.2026). */
  footer address + p { margin-top: 16px; }
  footer p a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(247,246,242,0.3); }
  footer p a:hover { border-color: #F7F6F2; }
  footer nav a { display: block; color: #C8C3B6; text-decoration: none; font-size: 0.92rem; padding: 4px 0; }
  /* Telefon-/Mail-Symbol vor Rufnummer und Adresse, überall wo beide auftauchen (Footer,
     Kontaktseite) — Größe folgt der umgebenden Schrift, Farbe der umgebenden Textfarbe
     (Andy Hebeisen, 15.09.2026). */
  .icon-inline { display: inline-block; width: 1em; height: 1em; vertical-align: -0.15em; margin-right: 0.6em; flex-shrink: 0; }
  /* Hearst-Signet-Pflicht (brand/recht.md): "COSMOPOLITAN" darf nie ohne Signet auftreten —
     auch nicht als reiner Nav-Text. Gleiche Höhe wie die Schrift und mittig zur Textzeile
     ausgerichtet, statt klein hochgesetzt wie eine Trademark-Marke (Andy Hebeisen, 15.09.2026). */
  /* width:auto statt fixer 1em-Breite — das Signet (1343×1517px) ist höher als breit;
     eine erzwungene 1:1-Box hätte es gestaucht. Mehr Abstand zum Wort (Andy Hebeisen,
     15.09.2026). */
  /* Unten bündig mit der Textzeile, wächst nach oben über die Versalhöhe hinaus
     (Andy Hebeisen, 15.09.2026) — width bleibt auto, damit die Bergspitze/der Kreis
     nicht gestaucht wird. */
  /* Unterkante auf der Grundlinie, Oberkante nicht höher als die Versalhöhe der Schrift
     (Andy Hebeisen, 15.09.2026: 1.6em war zu groß) — width bleibt auto, keine Verzerrung. */
  .nav-signet { display: inline-block; height: 0.95em; margin-left: 8px; vertical-align: -0.1em; }
  .nav-signet img { display: block; height: 100%; width: auto; }
  footer nav a:hover { color: #F7F6F2; }
  .footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 0.8rem; color: #8F897C; }

  /* ---------- Reveal on scroll ---------- */
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  /* ---------- Bearbeiten-Modus: Bilder ersetzen ---------- */
  body.edit-mode [data-img-replaceable] {
    cursor: pointer; outline: 2px dashed rgba(140,115,85,0.6); outline-offset: -2px;
    transition: outline-color 0.15s ease, filter 0.15s ease;
  }
  body.edit-mode [data-img-replaceable]:hover { outline-color: var(--accent); filter: brightness(0.88); }
  [data-img-replaceable].has-custom-image { border-color: transparent !important; }
  .hero-photo.has-custom-image .hero-photo-note,
  .roots-photo.has-custom-image { color: transparent; }

  /* ---------- Bearbeiten-Modus ---------- */
  body.edit-mode [data-edit] {
    outline: 1px dashed rgba(140,115,85,0.55); outline-offset: 3px; border-radius: 2px;
    cursor: text; transition: outline-color 0.15s ease, background 0.15s ease;
  }
  body.edit-mode [data-edit]:hover { outline-color: var(--accent); background: rgba(140,115,85,0.08); }
  body.edit-mode [data-edit]:focus { outline: 2px solid var(--accent); background: rgba(140,115,85,0.12); }

  /* Standardmäßig unsichtbar für alle echten Besucher (Andy Hebeisen, 15.09.2026, vor
     Go-Live) — die Bearbeitungsleiste ist ein internes Werkzeug, kein Teil der
     öffentlichen Seite. Erscheint nur, wenn body.editor-unlocked gesetzt ist
     (siehe site.js, Freischaltung per einmaligem ?edit=1 in der URL). */
  #editbar { display: none; }
  body.editor-unlocked #editbar {
    position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 100;
    display: flex; align-items: center; gap: 10px;
    background: #1A1A1A; border: 1px solid rgba(247,246,242,0.24); border-radius: 999px;
    padding: 8px 10px 8px 16px; box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    font-family: 'Inter', sans-serif;
  }
  #editbar .status { font-size: 0.8rem; color: #9B9488; white-space: nowrap; }
  #editbar button {
    font-family: inherit; font-size: 0.78rem; font-weight: 500; border-radius: 999px;
    border: 1px solid rgba(247,246,242,0.24); background: transparent; color: #F7F6F2;
    padding: 0.5em 1.1em; cursor: pointer; white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  #editbar button:hover { border-color: var(--accent); }
  #editbar button.primary { background: var(--accent); border-color: var(--accent); color: #1A1A1A; font-weight: 600; }
  #editbar button.primary:hover { background: #A88968; }
  #editbar button.ghost { border-color: transparent; color: #9B9488; }
  #editbar button.ghost:hover { color: #F7F6F2; }
  @media (max-width: 1080px) { #editbar { flex-wrap: wrap; justify-content: center; bottom: 10px; width: calc(100% - 24px); } }

  #colorpanel {
    position: fixed; left: 50%; bottom: 78px; transform: translateX(-50%); z-index: 99;
    display: none; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 6px 22px; width: min(620px, calc(100% - 24px));
    background: #1A1A1A; border: 1px solid rgba(247,246,242,0.24); border-radius: 12px;
    padding: 16px 20px; box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    font-family: 'Inter', sans-serif;
  }
  #colorpanel.is-open { display: grid; }
  .swatch-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 5px 0; }
  .swatch-row label { font-size: 0.78rem; color: #C8C6C1; }
  .swatch-row input[type="color"] {
    width: 30px; height: 30px; padding: 0; border: 1px solid rgba(247,246,242,0.3);
    border-radius: 6px; background: none; cursor: pointer;
  }
  @media (max-width: 640px) { #colorpanel { bottom: 128px; } }
  .swatch-group-head {
    grid-column: 1 / -1; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: #6E6759; margin: 14px 0 2px;
  }
  .swatch-group-head:first-child { margin-top: 0; }
  .swatch-row .reset-btn {
    width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(247,246,242,0.24);
    background: none; color: #9B9488; font-size: 0.7rem; cursor: pointer; line-height: 1; flex: none;
  }
  .swatch-row .reset-btn:hover { border-color: var(--accent); color: #F7F6F2; }

  /* ---------- Text-Werkzeugleiste (Schriftgröße & Farbe je Element) ---------- */
  #textToolbar {
    position: fixed; z-index: 101; display: none; align-items: center; gap: 8px;
    background: #1A1A1A; border: 1px solid rgba(247,246,242,0.24); border-radius: 999px;
    padding: 6px 10px; box-shadow: 0 12px 32px rgba(0,0,0,0.35); font-family: 'Inter', sans-serif;
  }
  #textToolbar.is-open { display: flex; }
  #textToolbar button {
    width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(247,246,242,0.24);
    background: none; color: #F7F6F2; font-size: 0.78rem; font-weight: 600; cursor: pointer; line-height: 1;
  }
  #textToolbar button:hover { border-color: var(--accent); }
  #textToolbar .fs-value {
    font-size: 0.74rem; color: #9B9488; width: 34px; text-align: center; font-variant-numeric: tabular-nums;
  }
  #textToolbar input[type="color"] {
    width: 26px; height: 26px; padding: 0; border: 1px solid rgba(247,246,242,0.3);
    border-radius: 50%; background: none; cursor: pointer; overflow: hidden;
  }
  #textToolbar .divider { width: 1px; height: 18px; background: rgba(247,246,242,0.18); }
  #textToolbar .fs-swatches { display: flex; align-items: center; gap: 4px; }
  #textToolbar .fs-swatch {
    width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(247,246,242,0.4);
    padding: 0; cursor: pointer; flex: none;
  }
  #textToolbar .fs-swatch:hover { border-color: var(--accent); transform: scale(1.15); }
