/* ============================================================
   P8 Design – Küchen & Innenausbau nach Maß
   Nachbau Website-Entwurf Fassung 7 (Stand 3. September 2026)
   ============================================================ */

:root {
  --cream: #EFEAE7;          /* Grundfläche */
  --beige: #E6E1DB;          /* dunkleres Band */
  --green: #343B34;          /* Dunkelgrün */
  --ink: #14110F;            /* Überschriften, fast schwarz */
  --text: #4A4642;           /* Fließtext dunkel */
  --muted: #8A8580;          /* Fließtext grau */
  --label: #A29D98;          /* Kleinstlabels */
  --line: #D5CFC9;           /* Trennlinien hell */
  --line-dark: #14110F;      /* Trennlinien stark */
  --placeholder: #DAD5D1;    /* Bild-Platzhalter */
  --white: #F7F4F1;          /* helle Schrift auf grün */
  --green-muted: #B9BDB6;    /* gedämpfter Text auf grün */
  --green-line: #4E554D;     /* Linien auf grün */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 76px;
}

/* ---------- Kleinstlabels (letterspaced) ---------- */
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--label);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 11px 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, color .2s;
  text-align: center;
}
.btn:hover { background: var(--ink); color: var(--cream); }

.btn--light {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green);
}
.btn--light:hover { background: transparent; border-color: var(--cream); color: var(--cream); }

.btn--outline-light {
  background: transparent;
  border-color: var(--green-line);
  color: var(--white);
}
.btn--outline-light:hover { background: var(--cream); border-color: var(--cream); color: var(--green); }

.btn--dark {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: var(--cream);
}
.btn--dark:hover { background: transparent; color: var(--ink); border-color: var(--ink); }

/* Unterstrichene Textlinks */
.textlink {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.textlink--light { color: var(--white); border-color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding-top: 28px;
  padding-bottom: 20px;
}
.site-header__left { justify-self: start; padding-top: 18px; }
.site-header__right { justify-self: end; padding-top: 18px; }

.hdr-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  padding: 9px 22px;
  cursor: pointer;
}
.hdr-btn:hover { background: var(--ink); color: var(--cream); }
.hdr-btn .burger { display: inline-block; width: 14px; }
.hdr-btn .burger span {
  display: block;
  height: 1.5px;
  background: currentColor;
  margin: 3px 0;
}

.site-logo { text-align: center; }
.site-logo img { width: 118px; height: auto; margin: 0 auto; }

/* ============================================================
   HERO (Startseite)
   ============================================================ */
.hero { padding-top: 72px; }

.hero h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.005em;
}
.hero__sub {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}
.hero__body {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}

/* Leistungs-Spalten */
.services {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}
.service { padding-top: 24px; border-top: 1px solid var(--line); }
.service:first-child { border-top-color: var(--ink); }
.service h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}
.service p {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.service .service__link {
  display: inline-block;
  margin-top: 16px;
}
.service__link--strong {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  line-height: 1.5;
}
.service__link--mehr {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}

.hero__imgnote {
  margin-top: 74px;
  margin-bottom: 18px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}
.hero__img { width: 100%; }
.hero__img img { width: 100%; height: auto; }

/* ============================================================
   DUNKLE SEKTION (Was in Ihrem Raum möglich ist)
   ============================================================ */
.dark-section {
  background: var(--green);
  color: var(--white);
  margin-top: 40px;
}
.dark-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-top: 88px;
  padding-bottom: 96px;
}
.dark-section h2 {
  font-size: 27px;
  font-weight: 400;
  line-height: 1.4;
  color: #E9E6E1;
}
.dark-section h2 strong { font-weight: 600; color: var(--white); }
.dark-section__body {
  margin-top: 28px;
  font-size: 13px;
  color: var(--green-muted);
  line-height: 1.8;
  max-width: 380px;
}
.dark-section__claim {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--green-line);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  max-width: 280px;
  line-height: 1.6;
}

.dark-feature { border-top: 1px solid var(--green-line); padding: 18px 0 20px; }
.dark-feature:first-child { border-top: 1px solid var(--green-line); }
.dark-feature h4 { font-size: 13.5px; font-weight: 600; color: var(--white); }
.dark-feature p { margin-top: 5px; font-size: 11px; color: var(--green-muted); line-height: 1.7; }

/* ============================================================
   PROZESS-BAND
   ============================================================ */
.process {
  background: var(--beige);
  padding-top: 56px;
  padding-bottom: 68px;
}
.process .eyebrow { color: #9D968F; }
.process__track { margin-top: 46px; position: relative; }
.process__line {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: #A9A29B;
}
.process__steps {
  display: flex;
  justify-content: space-between;
}
.process__step { position: relative; flex: 1; }
.process__step::before {
  content: "";
  position: absolute;
  left: 0; top: -4px;
  width: 1px; height: 9px;
  background: #A9A29B;
}
.process__step:last-child { flex: 0; }
.process__step:last-child::before { left: auto; right: 0; }
.process__step span {
  display: inline-block;
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--text);
}
.process__step:last-child span { transform: translateX(0); }

/* ============================================================
   SHOWROOM
   ============================================================ */
.showroom {
  padding-top: 60px;
  padding-bottom: 96px;
}
.showroom__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: center;
}
.media-placeholder {
  background: var(--placeholder);
  aspect-ratio: 1.9 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.media-placeholder .l1 {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9A948F;
}
.media-placeholder .l2 { font-size: 11px; color: #A8A29D; }

.showroom__text { padding-left: 36px; }
.showroom__text h2 {
  margin-top: 22px;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.35;
}
.showroom__text p {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 320px;
}

/* ============================================================
   STATEMENT-BAND (Jede Küche beginnt mit Zuhören.)
   ============================================================ */
.statement {
  padding-top: 90px;
  padding-bottom: 120px;
}
.statement h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.005em;
}
.statement p {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green);
  color: var(--white);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding-top: 74px;
  padding-bottom: 30px;
}
.site-footer .eyebrow { color: #8E948C; }
.site-footer h3 {
  margin-top: 22px;
  font-size: 21px;
  font-weight: 500;
}
.site-footer .fcol p {
  margin-top: 16px;
  font-size: 12px;
  color: var(--green-muted);
  line-height: 1.75;
  max-width: 330px;
}
.site-footer .fcol .btn { margin-top: 28px; }

.site-footer__bottom {
  border-top: 1px solid var(--green-line);
  margin-top: 46px;
  padding-top: 26px;
  padding-bottom: 44px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  flex-wrap: wrap;
}
.site-footer__bottom .address {
  font-size: 11px;
  color: var(--green-muted);
}
.site-footer__links {
  display: flex;
  gap: 22px;
}
.site-footer__links a {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8E948C;
}
.site-footer__links a:hover { color: var(--white); }

/* Schlanker Footer (Unterseiten) */
.site-footer--slim {
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.site-footer--slim .address {
  padding: 30px 0 46px;
  font-size: 11px;
  color: var(--muted);
}

/* ============================================================
   UNTERSEITEN – Intro
   ============================================================ */
.page-intro { padding-top: 46px; }
.page-intro h1 {
  margin-top: 26px;
  font-size: 34px;
  font-weight: 600;
}
.page-intro .lead-strong {
  margin-top: 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.page-intro .lead {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

.rule-strong {
  border: 0;
  border-top: 1.5px solid var(--ink);
  margin: 48px 0 0;
}

.rule-light {
  border: 0;
  border-top: 1.5px solid var(--line);
  margin: 48px 0 0;
}

/* Enthalten-Liste */
.included { padding-top: 34px; padding-bottom: 70px; }
.included ul { list-style: none; margin-top: 22px; }
.included li {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 0;
}
.included .note {
  margin-top: 26px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.75;
}

/* Zitat-Band */
.quote-band {
  background: var(--green);
  color: var(--white);
}
.quote-band__inner {
  padding-top: 54px;
  padding-bottom: 54px;
}
.quote-band p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: #E9E6E1;
  max-width: 720px;
}
.quote-band .attribution {
  margin-top: 40px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8E948C;
}

/* ============================================================
   KÜCHEN-LISTE
   ============================================================ */
.kitchen-list { padding-top: 66px; padding-bottom: 10px; }
.kitchen-list__head { padding-top: 30px; }
.kitchen-list__head .sub {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
}

.kgroup { margin-top: 52px; }
.kgroup > h3 {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.kgroup__note {
  margin-top: 26px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.kgroup__note + .textlink { margin-top: 18px; }

.kitchen {
  display: grid;
  grid-template-columns: 232px 1fr auto;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.kitchen__thumb {
  background: var(--placeholder);
  aspect-ratio: 4 / 3.15;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kitchen__thumb span {
  font-size: 7.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A948F;
}
.kitchen__num {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}
.kitchen__body h4 {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
}
.kitchen__meta {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--muted);
}
.kitchen__body .textlink { margin-top: 16px; font-size: 9px; }
.kitchen__price { text-align: right; padding-top: 26px; }
.kitchen__price .amount { font-size: 17px; font-weight: 500; }
.kitchen__price .incl {
  margin-top: 6px;
  font-size: 10px;
  color: var(--muted);
}

/* ============================================================
   CTA-BAND (dunkel)
   ============================================================ */
.cta-band {
  background: var(--green);
  color: var(--white);
}
.cta-band__inner {
  padding-top: 62px;
  padding-bottom: 66px;
}
.cta-band .eyebrow { color: #8E948C; }
.cta-band h2 {
  margin-top: 20px;
  font-size: 25px;
  font-weight: 400;
  color: #E9E6E1;
}
.cta-band .cta-sub {
  margin-top: 10px;
  font-size: 12px;
  color: var(--green-muted);
}
.cta-band .btn { margin-top: 30px; }

.cta-band__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.cta-band__aside { padding-bottom: 4px; }
.cta-band__aside p {
  font-size: 12px;
  color: var(--green-muted);
  margin-bottom: 22px;
}

/* Fußnote unter CTA */
.footnote {
  padding-top: 34px;
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.75;
}
.footnote-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin-top: 30px;
}

/* ============================================================
   INDIVIDUELLE PLANUNG
   ============================================================ */
.big-statement {
  background: var(--beige);
  margin-top: 62px;
}
.big-statement p, h4 {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: #2E2B28;
  max-width: 900px;
}

.big-statement h4 {
  padding-top: 62px;
  padding-bottom: 74px;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.6;
  color: #2E2B28;
  max-width: 900px;
}

.walkthrough { padding-top: 58px; padding-bottom: 30px; }
.walkthrough__rows { margin-top: 26px; }
.wrow {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.wrow dt { font-size: 13.5px; font-weight: 600; }
.wrow dd { font-size: 12px; color: var(--muted); }

.makers { padding-top: 40px; padding-bottom: 40px; }
.makers__cols {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.makers__cols p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 400px;
}

/* ============================================================
   BAUHERREN
   ============================================================ */
.stats-band { background: var(--beige); margin-top: 52px; }
.stats-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 44px;
  padding-bottom: 46px;
}
.stat h3 { font-size: 17px; font-weight: 600; }
.stat p { margin-top: 8px; font-size: 11px; color: #8D8781; line-height: 1.6; }
.stat p + p { margin-top: 2px; color: #A39D96; }

.project-flow { padding-top: 58px; padding-bottom: 66px; }
.project-flow__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
}
.pf-item { border-top: 1px solid var(--line); padding: 20px 0 26px; }
.pf-item h4 { font-size: 14px; font-weight: 600; }
.pf-item p { margin-top: 6px; font-size: 11.5px; color: var(--muted); }

.why-band { background: var(--green); color: var(--white); }
.why-band__inner { padding-top: 66px; padding-bottom: 70px; }
.why-band .eyebrow { color: #8E948C; }
.why-band h2 {
  margin-top: 22px;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.5;
  color: #E9E6E1;
  max-width: 640px;
}
.why-band p {
  margin-top: 24px;
  font-size: 12px;
  color: var(--green-muted);
  line-height: 1.8;
  max-width: 560px;
}

.projects { padding-top: 64px; }
.projects__rule { border: 0; border-top: 1.5px solid var(--ink); margin-bottom: 30px; }
.projects__rows { margin-top: 24px; }
.prow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.prow .t { font-size: 13.5px; font-weight: 500; }
.prow .tag { font-size: 10.5px; color: var(--muted); }
.prow .tag--todo {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--label);
}
.prow--todo .t { color: var(--muted); font-weight: 400; }

.conditions { padding-top: 54px; padding-bottom: 74px; }
.conditions p {
  margin-top: 24px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}
.conditions .textlink { margin-top: 26px; }

/* ============================================================
   OVERLAYS (Menü / Kontakt)
   ============================================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 100;
  overflow-y: auto;
  display: none;
}
.overlay.is-open { display: block; }
body.overlay-open { overflow: hidden; }

.overlay .site-header { border-bottom: 0; }

/* Menü */
.menu-list { margin-top: 30px; padding-bottom: 40px; }
.menu-item { border-bottom: 1px solid var(--line); }
.menu-item:first-child { border-top: 1px solid var(--line); }
.menu-item__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
}
.menu-item__row h3 { font-size: 21px; font-weight: 500; }
.menu-item__row .indicator {
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
}
.menu-item__row .arrow {
  font-size: 18px;
  color: #8A8580;
}
.menu-sub { padding: 0 0 20px 24px; }
.menu-sub a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
}
.menu-sub .sl { font-size: 13.5px; color: var(--text); }
.menu-sub .sr { font-size: 11px; color: var(--label); }
.menu-sub a:hover .sl { color: var(--ink); }

.menu-meta {
  display: flex;
  gap: 60px;
  padding: 26px 0 80px;
}
.menu-meta a {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}
.menu-meta a:hover { color: var(--ink); }
.menu-meta .push { margin-left: auto; }

/* Kontakt */
.contact-panel { max-width: 640px; margin: 0 auto; padding: 60px 40px 80px; }
.contact-panel h2 {
  font-size: 30px;
  font-weight: 400;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row .cl {
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}
.contact-row .cv { font-size: 17px; font-weight: 400; }
.contact-panel .note {
  margin-top: 32px;
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.7;
}
.contact-panel .note strong { font-weight: 600; color: var(--ink); }
.contact-panel .btn--dark { margin-top: 26px; }
.contact-panel .fine {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--label);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .wrap { padding-left: 40px; padding-right: 40px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .dark-section__grid { grid-template-columns: 1fr; gap: 50px; }
  .showroom__grid { grid-template-columns: 1fr; }
  .showroom__text { padding-left: 0; }
}

@media (max-width: 720px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .hero h1 { font-size: 30px; }
  .services { grid-template-columns: 1fr; gap: 26px; }
  .site-header__inner { grid-template-columns: auto auto; grid-template-rows: auto auto; padding-top: 16px; }
  .site-logo { grid-column: 1 / -1; grid-row: 1; }
  .site-header__left, .site-header__right { padding-top: 14px; }
  .site-footer__grid,
  .cta-band__cols,
  .makers__cols,
  .project-flow__grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-band__grid { grid-template-columns: 1fr; gap: 26px; }
  .kitchen { grid-template-columns: 100px 1fr; }
  .kitchen__price { grid-column: 2; text-align: left; padding-top: 0; }
  .wrow { grid-template-columns: 1fr; gap: 6px; }
  .process__steps { flex-wrap: wrap; }
  .statement h2 { font-size: 26px; }
  .contact-panel { padding: 40px 20px 60px; }
}

/* ============================================================
   OPTIMIERTER AUFBAU (startseite-optimiert.html)
   ============================================================ */

/* Header mit Telefon */
.hdr-phone {
  display: inline-block;
  margin-right: 18px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--text);
}
.hdr-phone:hover { color: var(--ink); }

/* Hero v2 */
.hero-v2 { padding-top: 72px; }
.hero-v2 h1 {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.28;
  max-width: 760px;
}
.hero-v2__sub {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text);
}
.hero-v2__cta {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-v2__cta .btn { padding: 14px 38px; }
.hero-v2__img { margin-top: 70px; }
.hero-v2__img img { width: 100%; height: auto; }

/* Drei Wege */
.ways { padding-top: 84px; padding-bottom: 90px; }
.ways__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

/* Preis-Teaser */
.price-teaser {
  background: var(--beige);
  padding-top: 76px;
  padding-bottom: 84px;
}
.price-teaser__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  flex-wrap: wrap;
}
.price-teaser h2 { font-size: 28px; font-weight: 600; }
.price-teaser__head .sub { margin-top: 10px; font-size: 12.5px; color: #8D8781; }
.price-teaser__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.pt-card { background: transparent; }
.pt-card__thumb {
  background: var(--placeholder);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-card__thumb span {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A948F;
}
.pt-card__num {
  margin-top: 18px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9D968F;
}
.pt-card h4 { margin-top: 7px; font-size: 15px; font-weight: 600; }
.pt-card .meta { margin-top: 4px; font-size: 11.5px; color: #8D8781; }
.pt-card .price {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 500;
}
.pt-card .price small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #8D8781;
  margin-top: 3px;
}
.price-teaser__foot {
  margin-top: 42px;
  font-size: 10px;
  color: #9D968F;
}

/* Fakten-Band (kondensierte Dunkelsektion) */
.facts-band { background: var(--green); color: var(--white); }
.facts-band__inner { padding-top: 64px; padding-bottom: 64px; }
.facts-band__lead {
  font-size: 22px;
  font-weight: 400;
  color: #E9E6E1;
}
.facts-band__lead strong { font-weight: 600; color: var(--white); }
.facts-band__grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.facts-band .fact { border-top: 1px solid var(--green-line); padding-top: 18px; }
.facts-band .fact h4 { font-size: 14px; font-weight: 600; color: var(--white); }
.facts-band .fact p { margin-top: 5px; font-size: 11px; color: var(--green-muted); line-height: 1.7; }

/* Referenz-Zeile */
.ref-line { padding-top: 46px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.ref-line__inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  flex-wrap: wrap;
}
.ref-line p { font-size: 12.5px; color: var(--text); }
.ref-line p span { color: var(--label); margin: 0 10px; }

/* Termin-Formular */
.booking { padding-top: 84px; padding-bottom: 96px; }
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
}
.booking h2 { margin-top: 22px; font-size: 28px; font-weight: 600; }
.booking__text p {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 380px;
}
.booking__text .promise {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.booking__text .alt {
  margin-top: 22px;
  font-size: 12px;
  color: var(--muted);
}
.booking__text .alt a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}

.form-field { margin-bottom: 26px; }
.form-field label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #B9B3AD;
  padding: 8px 0 10px;
  border-radius: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--ink); }
.form-field textarea { resize: vertical; min-height: 60px; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2314110F' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  cursor: pointer;
}
.booking form .btn { padding: 14px 44px; margin-top: 6px; }
.form-hint { margin-top: 16px; font-size: 10px; color: var(--label); }
.form-success {
  display: none;
  border: 1px solid var(--ink);
  padding: 26px 28px;
}
.form-success h4 { font-size: 15px; font-weight: 600; }
.form-success p { margin-top: 8px; font-size: 12px; color: var(--muted); }

/* Sticky-Leiste mobil */
.sticky-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.sticky-bar a { flex: 1; }
.sticky-bar .btn { display: block; padding: 12px 10px; }
.sticky-bar .btn--filled { background: var(--ink); color: var(--cream); }

@media (max-width: 1080px) {
  .ways__grid, .price-teaser__grid, .facts-band__grid { grid-template-columns: 1fr 1fr; }
  .booking__grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 720px) {
  .hero-v2 h1 { font-size: 30px; }
  .ways__grid, .price-teaser__grid, .facts-band__grid { grid-template-columns: 1fr; }
  .hdr-phone { display: none; }
}

/* ============================================================
   HERO-BILDBÜHNE + FETTERE TYPO (nur startseite-optimiert, .page-v2)
   ============================================================ */
.hero-stage {
  position: relative;
  height: calc(100vh - var(--hdr-h, 196px));
  min-height: 560px;
  overflow: hidden;
  background: var(--green);
}
.hero-stage__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-out forwards;
}
.hero-stage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(20,17,15,.90) 0%,
    rgba(20,17,15,.50) 42%,
    rgba(20,17,15,.08) 72%,
    rgba(20,17,15,0) 100%);
}
.hero-stage__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding-bottom: 84px;
  color: #FFF;
  animation: fadeUp .9s ease-out both .2s;
}
.hero-stage__content h1 {
  font-size: 72px;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 950px;
  color: #FFF;
}
.hero-stage__sub {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(247,244,241,.88);
}
.hero-stage__cta {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap;
}
.hero-stage__cta .btn { padding: 17px 48px; font-size: 11px; letter-spacing: .22em; }
.hero-stage__cta .textlink--light { font-size: 11px; }

@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* Typo-Skala v2: größer und fetter, nur auf der optimierten Seite */
.page-v2 { font-size: 16px; }
.page-v2 .ways { padding-top: 96px; padding-bottom: 100px; }
.page-v2 .ways__lead {
  font-size: 27px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
  max-width: 860px;
}
.page-v2 .ways__grid { margin-top: 58px; }
.page-v2 .service { padding-top: 28px; }
.page-v2 .service h3 { font-size: 22px; font-weight: 600; }
.page-v2 .service p { font-size: 14px; margin-top: 14px; }
.page-v2 .service__link--mehr { font-size: 11px; }

.page-v2 .price-teaser h2 { font-size: 42px; font-weight: 600; letter-spacing: -0.01em; }
.page-v2 .price-teaser__head .sub { font-size: 14px; margin-top: 14px; }
.page-v2 .pt-card h4 { font-size: 18px; }
.page-v2 .pt-card .meta { font-size: 13px; }
.page-v2 .pt-card .price { font-size: 27px; font-weight: 600; margin-top: 14px; }
.page-v2 .pt-card .price small { font-size: 11px; }
.page-v2 .textlink { font-size: 11px; }

.page-v2 .process__step span { font-size: 14px; font-weight: 500; }
.page-v2 .process .eyebrow { font-size: 11px; }
.page-v2 .eyebrow { font-size: 11px; }

.page-v2 .facts-band__lead { font-size: 32px; font-weight: 400; letter-spacing: -0.005em; }
.page-v2 .facts-band .fact h4 { font-size: 18px; }
.page-v2 .facts-band .fact p { font-size: 13px; }

.page-v2 .ref-line p:not(.eyebrow) { font-size: 15px; font-weight: 500; }

.page-v2 .booking h2 { font-size: 40px; font-weight: 600; letter-spacing: -0.01em; }
.page-v2 .booking__text p { font-size: 14px; }
.page-v2 .booking__text .promise { font-size: 15px; }
.page-v2 .form-field input,
.page-v2 .form-field select,
.page-v2 .form-field textarea { font-size: 16px; padding: 10px 0 12px; }
.page-v2 .form-field label { font-size: 10px; }
.page-v2 .booking form .btn { padding: 16px 52px; font-size: 11px; }

.page-v2 .cta-band h2 { font-size: 30px; font-weight: 500; }
.page-v2 .cta-band .btn { padding: 15px 40px; font-size: 11px; }
.page-v2 .site-footer--slim .address { font-size: 12px; }

@media (max-width: 720px) {
  .hero-stage { min-height: 480px; height: calc(100svh - var(--hdr-h, 150px)); }
  .hero-stage__content { padding-bottom: 56px; }
  .hero-stage__content h1 { font-size: 40px; line-height: 1.12; }
  .hero-stage__sub { font-size: 15px; }
  .hero-stage__cta { gap: 24px; }
  .page-v2 .ways__lead { font-size: 21px; }
  .page-v2 .price-teaser h2 { font-size: 32px; }
  .page-v2 .facts-band__lead { font-size: 25px; }
  .page-v2 .booking h2 { font-size: 30px; }
}

/* ============================================================
   KÜCHEN-SLIDER (horizontale Scroll-Leiste, startseite-optimiert)
   ============================================================ */
.kslider {
  background: var(--beige);
  padding-top: 84px;
  padding-bottom: 92px;
  overflow: hidden;
}
.kslider__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.kslider__head h2 {
  margin-top: 18px;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.kslider__head .sub {
  margin-top: 12px;
  font-size: 14px;
  color: #8D8781;
  max-width: 520px;
}
.kslider__nav { display: flex; gap: 10px; }
.kslider__nav button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.kslider__nav button:hover { background: var(--ink); color: var(--cream); }

.kslider__track {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-left: max(40px, calc((100vw - 1068px) / 2));
  padding-right: max(40px, calc((100vw - 1068px) / 2));
  padding-bottom: 10px;
  scrollbar-width: none;
}
.kslider__track::-webkit-scrollbar { display: none; }

.kcard {
  flex: 0 0 400px;
  scroll-snap-align: start;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}
.kcard__thumb {
  background: var(--placeholder);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kcard__thumb span {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9A948F;
}
.kcard__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.kcard__num {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}
.kcard__body h3 {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}
.kcard__meta { margin-top: 6px; font-size: 13px; color: var(--muted); }
.kcard__foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.kcard__price { font-size: 24px; font-weight: 600; }
.kcard__price small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
  max-width: 200px;
  line-height: 1.5;
}
.kcard__foot .textlink { font-size: 9px; white-space: nowrap; }

@media (max-width: 720px) {
  .kslider__head h2 { font-size: 32px; }
  .kslider__nav { display: none; }
  .kslider__track {
    gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .kcard { flex-basis: 82vw; }
  .kcard__body { padding: 20px 20px 24px; }
}

/* Küchen-Slider: echte Bilder + Beschreibung */
.kcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kcard__desc {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* Showroom-Video (Klick-Start, kein Autoplay) */
.media-video {
  position: relative;
  aspect-ratio: 1.9 / 1;
  background: var(--placeholder);
  overflow: hidden;
}
.media-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-video__play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(20,17,15,.28);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background .2s;
}
.media-video__play:hover { background: rgba(20,17,15,.42); }
.media-video__play .circle {
  width: 74px;
  height: 74px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-video__play .circle::after {
  content: "";
  display: block;
  margin-left: 5px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--cream);
}
.media-video__play span.label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
}

/* Küchen-Slider: Filter + Kategorie-Badges */
.kslider__filters {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.kfilter {
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.kfilter:hover { background: var(--ink); color: var(--cream); }
.kfilter.is-active { background: var(--ink); color: var(--cream); }

.kcard__thumb { position: relative; }
.kcard__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--cream);
  color: var(--ink);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 14px;
}
.kcard.is-hidden { display: none; }

/* ============================================================
   FERTIG GEPLANTE KÜCHEN v2 (Detailseite)
   ============================================================ */
.hero-stage--page {
  height: calc(72vh - var(--hdr-h, 196px) * 0.4);
  min-height: 420px;
  max-height: 640px;
}

.kjump {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.kjump__inner {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 26px 0;
}

.kgroup-v2 { padding-top: 84px; }
.kgroup-v2__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1.5px solid var(--ink);
}
.kgroup-v2__head h2 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.kgroup-v2__head .count {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}

.kdetail {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}
.kdetail:last-child { border-bottom: 0; }
.kdetail__media { position: relative; align-self: start; }
.kdetail__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.kdetail__media .kcard__badge { top: 16px; left: 16px; }

.kdetail__num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}
.kdetail__num .code { color: #C0BAB4; }
.kdetail h3 {
  margin-top: 12px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.kdetail__desc {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
}
.kdetail__front {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--text);
}
.kdetail__front strong { font-weight: 600; }

.kdetail__specs {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}
.kdetail__specs .srow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.kdetail__specs dt {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--label);
  align-self: center;
}
.kdetail__specs dd {
  font-size: 13px;
  font-weight: 500;
  text-align: right;
}

.kdetail__buy {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.kdetail__price { font-size: 30px; font-weight: 600; }
.kdetail__price small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.55;
}
.kdetail__buy .btn { padding: 14px 40px; }

.kincluded-note {
  margin-top: 30px;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 640px;
}

@media (max-width: 1080px) {
  .kdetail { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .kgroup-v2 { padding-top: 56px; }
  .kgroup-v2__head h2 { font-size: 26px; }
  .kdetail { padding: 40px 0; }
  .kdetail h3 { font-size: 21px; }
  .kdetail__price { font-size: 25px; }
}

/* Küchen-Liste (PDF-Aufbau) mit echten Bildern + Aufklapp-Details */
.kitchen__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kitchen__detail {
  display: none;
  grid-column: 1 / -1;
  padding: 6px 0 10px 158px;
}
.kitchen.is-open .kitchen__detail { display: block; }
.kitchen__detail-code {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
}
.kitchen__detail-desc {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
}
.kitchen__detail-front {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--text);
  max-width: 620px;
}
.kitchen__detail .kdetail__specs { max-width: 480px; margin-top: 18px; }

@media (max-width: 720px) {
  .kitchen__detail { padding-left: 0; }
}

/* ============================================================
   VARIANTE 2 – Leistungs-Sektion, 5 Layout-Vorschläge
   ============================================================ */
.lv-intro { padding: 56px 0 10px; }
.lv-intro h1 { margin-top: 16px; font-size: 34px; font-weight: 600; }
.lv-intro p { margin-top: 14px; font-size: 14px; color: var(--muted); max-width: 640px; }

.lv-label {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  margin-top: 70px;
}
.lv-label .eyebrow { color: var(--ink); }
.lv-label h2 { margin-top: 10px; font-size: 22px; font-weight: 600; }
.lv-label p { margin-top: 6px; font-size: 13px; color: var(--muted); }

.lv-lead {
  font-size: 15px;
  color: var(--text);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
}

/* Gemeinsame Kachel */
.lv-item h3 { font-size: 21px; font-weight: 600; line-height: 1.3; }
.lv-item p { margin-top: 12px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.lv-item .service__link { display: inline-block; margin-top: 16px; }

/* ---- Vorschlag 1: Bild links, 2×2 rechts ---- */
.lv1 {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 20px;
}
.lv1__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.lv1__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 40px;
}
.lv1__grid .lv-item { padding-top: 22px; border-top: 1px solid var(--line); }
.lv1__grid .lv-item:first-child { border-top-color: var(--ink); }

/* ---- Vorschlag 2: Vier Bildkacheln ---- */
.lv2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 44px;
  padding-bottom: 20px;
}
.lv2 .lv-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 22px;
}

/* ---- Vorschlag 3: Zwei Zeilen im Wechsel ---- */
.lv3__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 30px 0;
}
.lv3__row + .lv3__row { border-top: 1px solid var(--line); }
.lv3__row--flip { grid-template-columns: 1fr 1fr 1.1fr; }
.lv3__row--flip .lv3__media { order: 3; }
.lv3__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---- Vorschlag 4: Bildbühne mit Kacheln ---- */
.lv4 {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.lv4__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.lv4__overlay { position: absolute; inset: 0; background: rgba(20,17,15,.45); }
.lv4__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 960px;
}
.lv4__grid .lv-item {
  background: var(--cream);
  padding: 34px 36px 36px;
}

/* ---- Vorschlag 5: Dunkelgrün, nummeriert, Bild rechts ---- */
.lv5 {
  background: var(--green);
  color: var(--white);
  padding: 84px 0;
}
.lv5__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}
.lv5__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 44px;
}
.lv5 .lv-item { border-top: 1px solid var(--green-line); padding-top: 22px; }
.lv5 .lv-item .num {
  display: block;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8E948C;
  margin-bottom: 12px;
}
.lv5 .lv-item h3 { color: var(--white); }
.lv5 .lv-item p { color: var(--green-muted); }
.lv5 .lv-item .service__link--strong,
.lv5 .lv-item .service__link--mehr { color: var(--white); border-color: var(--white); }
.lv5__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

@media (max-width: 1080px) {
  .lv1, .lv5__grid { grid-template-columns: 1fr; gap: 40px; }
  .lv3__row, .lv3__row--flip { grid-template-columns: 1fr 1fr; }
  .lv3__media { grid-column: 1 / -1; order: 0 !important; }
}
@media (max-width: 720px) {
  .lv1__grid, .lv2, .lv3__row, .lv3__row--flip, .lv4__grid, .lv5__list { grid-template-columns: 1fr; }
  .lv4 { padding: 48px 0; }
  .lv4__grid .lv-item { padding: 26px 24px 28px; }
  .lv-label { padding-top: 48px; margin-top: 48px; }
}

/* ============================================================
   STATEMENT ALS BILDBAND (Startseite)
   ============================================================ */
.statement--image {
  position: relative;
  padding: 160px 0 150px;
  overflow: hidden;
  color: #FFF;
}
.statement--image .statement__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.statement--image .statement__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,17,15,.62) 0%, rgba(20,17,15,.38) 55%, rgba(20,17,15,.18) 100%);
}
.statement--image .wrap { position: relative; }
.statement--image h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #FFF;
  max-width: 760px;
}
.statement--image p {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 300;
  color: rgba(247,244,241,.85);
}
.statement--image .attribution {
  margin-top: 40px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(247,244,241,.7);
}
@media (max-width: 720px) {
  .statement--image { padding: 96px 0 90px; }
  .statement--image h2 { font-size: 32px; }
  .statement--image p { font-size: 16px; }
}

/* Statement-Band als zentriertes Zitat, schmal, heller Overlay */
.statement--quote {
  padding: 64px 0 58px;
  margin: 40px 0 0 0;
  color: var(--ink);
  text-align: left;
}
.statement--quote .statement__bg { object-position: center 55%; }
.statement--quote .statement__overlay { background: rgba(255,255,255,.66); }
.statement--quote h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  max-width: 820px;
}
.statement--quote p {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
}
.statement--quote .attribution {
  margin-top: 26px;
  color: var(--muted);
}
@media (max-width: 720px) {
  .statement--quote { padding: 52px 0 48px; }
  .statement--quote h2 { font-size: 26px; }
  .statement--quote p { font-size: 15px; }
}

/* ============================================================
   TYPO-SKALA – eine Größe pro Überschriftenebene (gilt site-weit)
   Ebenen: h1 Seitentitel · h2 Sektionen · h3 Elemente · h4 Kleinelemente
   ============================================================ */
:root {
  --fs-h1: 64px;
  --fs-h2: 36px;
  --fs-h3: 22px;
  --fs-h4: 16px;
}
@media (max-width: 720px) {
  :root { --fs-h1: 40px; --fs-h2: 28px; --fs-h3: 19px; --fs-h4: 15px; }
}
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: var(--fs-h1) !important; font-weight: 600; line-height: 1.08; }
h2 { font-size: var(--fs-h2) !important; }
h3 { font-size: var(--fs-h3) !important; }
h4 { font-size: var(--fs-h4) !important; }

/* Sektions-Einleitung als h2 (Leistungen) */
.section-lead {
  font-weight: 500;
  color: var(--text);
  max-width: 860px;
  line-height: 1.35 !important;
}
.hero .services { margin-top: 56px; }

/* Fakten (Bauherren) sind keine Überschriften */
.stat__value { font-size: 22px; font-weight: 600; line-height: 1.2; }

/* Menüpunkte sind keine Überschriften */
.menu-item__title { font-size: 21px; font-weight: 500; }

/* Formular-Erfolgsmeldung */
.form-success__title { font-size: 16px; font-weight: 600; }

/* Gruppen-Überschriften der Küchenliste (jetzt h2) */
.kgroup > h2 {
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.kitchen__body h3 { margin-top: 8px; font-weight: 600; }
.project-flow h2 { margin-top: 12px; }

/* ============================================================
   HERO-PARALLAX (leicht)
   ============================================================ */
.hero-stage__media {
  position: absolute;
  left: 0; right: 0;
  top: -12%; bottom: -12%;
  will-change: transform;
}
.hero-stage__media .hero-stage__bg { position: absolute; inset: 0; }
@media (prefers-reduced-motion: reduce) {
  .hero-stage__media { transform: none !important; }
  .hero-stage__bg { animation: none; }
}

/* ============================================================
   ABSATZ-EINHEITSGRÖSSE – alle <p> gleich groß,
   Ausnahme: Auflistung der fertig geplanten Küchen (.kitchen, .kcard)
   ============================================================ */
:root { --fs-p: 14px; }
@media (max-width: 720px) { :root { --fs-p: 14px; } }
p:not(.kitchen *):not(.kcard *) { font-size: var(--fs-p) !important; }

/* Statement-Band: Bildwrapper für Parallax (überhoch, damit keine Ränder aufreißen) */
.statement--image .statement__media {
  position: absolute;
  left: 0; right: 0;
  top: -18%; bottom: -18%;
  will-change: transform;
}
.statement--image .statement__media .statement__bg { position: absolute; inset: 0; }
@media (prefers-reduced-motion: reduce) {
  .statement__media { transform: none !important; }
}

/* ============================================================
   ANGEBOT ERHALTEN – Secondary-Button + Modal (Küchen-Seite)
   ============================================================ */
.btn--secondary {
  border-color: #B9B3AD;
  color: var(--text);
  padding: 10px 22px;
}
.btn--secondary:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.kitchen__price .btn--secondary { margin-top: 16px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20,17,15,.55);
}
.modal.is-open { display: flex; }
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--cream);
  padding: 44px 44px 40px;
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
}
.modal__panel .eyebrow { margin-bottom: 12px; }
.modal__kitchen {
  margin-top: 10px;
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.modal__kitchen strong { font-weight: 600; color: var(--ink); }
.modal__panel form { margin-top: 26px; }
.modal__panel .form-success { margin-top: 26px; }
@media (max-width: 720px) {
  .modal { padding: 12px; }
  .modal__panel { padding: 56px 22px 28px; }
}

/* ============================================================
   LIGHTBOX – Bild per Klick vergrößert als Popup
   ============================================================ */
[data-lightbox] { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20,17,15,.9);
}
.lightbox.is-open { display: flex; }
.lightbox__close {
  position: absolute;
  top: 22px; right: 22px;
  border-color: rgba(247,244,241,.7);
  color: var(--cream);
}
.lightbox__close:hover { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.lightbox figure { margin: 0; max-width: min(1400px, 92vw); text-align: center; }
.lightbox img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  object-fit: contain;
  cursor: zoom-out;
}
.lightbox figcaption {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(247,244,241,.75);
}
@media (max-width: 720px) {
  .lightbox { padding: 12px; }
  .lightbox__close { top: 12px; right: 12px; }
}

/* Intro-CTA unter dem Seitentitel (Unterseiten) */
.intro-cta {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.intro-cta .btn { padding: 15px 40px; font-size: 11px; }
.intro-cta .textlink { font-size: 11px; }

/* ============================================================
   HERSTELLER-LOGOS – eine Zeile, einheitliche Felder, Textfarbe (CSS-Maske)
   ============================================================ */
.brand-logos {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  height: 32px;
  background-color: var(--muted);
  -webkit-mask: var(--logo) center / contain no-repeat;
  mask: var(--logo) center / contain no-repeat;
}
@media (max-width: 1080px) {
  .brand-logos { overflow-x: auto; justify-content: flex-start; gap: 32px; padding-bottom: 8px; scrollbar-width: none; }
  .brand-logos::-webkit-scrollbar { display: none; }
  .brand-logo { flex: 0 0 110px; height: 30px; }
}

/* Leistungen (Startseite): Secondary-Button statt MEHR-Link */
.service .btn--secondary { display: inline-block; margin-top: 24px; }
.service .btn--secondary + .service__link--strong { display: block; width: fit-content; margin-top: 18px; }

/* ============================================================
   RECHTSSEITEN + Footer-Links (schlanker Footer)
   ============================================================ */
.legal { padding: 24px 0 96px; }
.legal .wrap > * { max-width: 760px; }
.legal h2 { margin-top: 48px; }
.legal h3 { margin-top: 28px; }
.legal p { margin-top: 12px; color: var(--text); line-height: 1.7; }
.legal a { border-bottom: 1px solid var(--line); }

.site-footer--slim__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px 30px;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 46px;
}
.site-footer--slim .site-footer--slim__row .address { padding: 0; }
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-links a:hover { color: var(--ink); }

/* ============================================================
   SCHRÄNKE & INNENAUSBAU – zweispaltige Abschnitte
   ============================================================ */
.split { padding: 72px 0; }
.split + .split { padding-top: 0; }
.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.split--flip .split__media { order: 2; }
.media-placeholder--tall { aspect-ratio: 4 / 5; }
.split__text h2 { margin-top: 18px; }
.split__text > p:not(.eyebrow) { margin-top: 18px; color: var(--muted); line-height: 1.75; }
.split__items { margin-top: 32px; }
.split__item { padding: 18px 0; border-top: 1px solid var(--line); }
.split__item p { margin-top: 6px; color: var(--muted); }
@media (max-width: 1080px) {
  .split__grid { grid-template-columns: 1fr; gap: 36px; }
  .split--flip .split__media { order: 0; }
}

/* Schränke & Innenausbau: echte Bilder in den Split-Abschnitten */
.split__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Split-Bilder: so hoch wie der Text daneben */
.split__grid { align-items: stretch; }
.split__media, .split__image { height: 100%; }
.split__image img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 420px;
}
@media (max-width: 1080px) {
  .split__image img { height: auto; aspect-ratio: 4 / 3; min-height: 0; }
}

/* Termin-Modal: Beschreibungsfeld */
.modal__panel textarea { min-height: 84px; }
.modal__panel .form-field textarea::placeholder { color: #B9B3AD; }

/* Footer-Spalten: Buttons unabhängig von der Textlänge auf gleicher Höhe */
.site-footer__grid .fcol { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__grid .fcol .btn { margin-top: auto; padding-top: 12px; padding-bottom: 12px; }
.site-footer__grid .fcol p:not(.eyebrow) { margin-bottom: 28px; }

/* ============================================================
   MOBILE OPTIMIERUNG (≤ 720px) – nach Sichtprüfung aller Seiten
   ============================================================ */
@media (max-width: 720px) {
  /* Lange deutsche Komposita dürfen umbrechen (verhindert horizontales Scrollen) */
  h1, h2, h3 { hyphens: auto; -webkit-hyphens: auto; overflow-wrap: anywhere; }
  :root { --fs-h1: 34px; --fs-h2: 27px; }

  /* Hero: Headline kompakter, CTAs volle Breite untereinander */
  .hero-stage__content h1 { font-size: 34px; line-height: 1.12; }
  .hero-stage__content { padding-bottom: 40px; }
  .hero-stage__cta { flex-direction: column; align-items: stretch; gap: 18px; margin-top: 28px; }
  .hero-stage__cta .btn { width: 100%; }
  .hero-stage__cta .textlink { align-self: flex-start; }

  /* Intro-CTAs der Unterseiten: Button volle Breite, Link darunter */
  .intro-cta { flex-direction: column; align-items: stretch; gap: 18px; }
  .intro-cta .btn { width: 100%; }
  .intro-cta .textlink { align-self: flex-start; }

  /* Tippflächen mindestens 44px */
  .btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
  .hdr-btn { min-height: 42px; padding: 10px 20px; font-size: 10px; }
  .kfilter { min-height: 42px; font-size: 11px; }
  .textlink { font-size: 10px; padding: 12px 0 10px; line-height: 1.2; }
  .service__link--mehr { padding: 12px 0 10px; }
  .footer-links a, .site-footer__links a, .menu-meta a { font-size: 10px; padding: 10px 0; display: inline-block; }

  /* Kleinschriften anheben */
  .kcard__num, .kitchen__num, .kdetail__num { font-size: 10px; }
  .kcard__badge { font-size: 9px; padding: 7px 12px; }
  .kitchen__price .incl, .kcard__price small { font-size: 11px; }
  .form-field label { font-size: 11px; }
  .eyebrow { letter-spacing: 0.16em; }

  /* Prozess: statt Zeitstrahl eine zweispaltige Liste mit Punkten */
  .process__line { display: none; }
  .process__track { margin-top: 28px; }
  .process__steps { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
  .process__step { flex: none; padding-left: 18px; }
  .process__step::before { top: 50%; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--ink); left: 0; }
  .process__step:last-child::before { left: 0; right: auto; }
  .process__step span { margin-top: 0; font-size: 15px; }

  /* Footer-Linkzeilen umbrechen */
  .site-footer__links, .footer-links { flex-wrap: wrap; gap: 0 18px; }
  .site-footer__bottom { padding-bottom: 32px; }

  /* Termin-Sektion und Split-Abschnitte: etwas kompakter */
  .booking { padding-top: 56px; padding-bottom: 64px; }
  .split { padding: 48px 0; }
}

/* Mobile – Nachjustierung nach zweiter Sichtprüfung */
@media (max-width: 720px) {
  /* Hero wächst mit dem Inhalt; Abstand für die Sticky-Leiste, damit der CTA nicht verdeckt wird */
  .hero-stage { height: auto; min-height: calc(100svh - var(--hdr-h, 150px)); display: flex; align-items: flex-end; }
  .hero-stage__content { position: relative; padding-top: 240px; padding-bottom: 56px; }

  /* Lange Button-Texte in einer Zeile halten */
  .hero-stage__cta .btn, .intro-cta .btn { padding-left: 12px; padding-right: 12px; letter-spacing: 0.13em; }

  /* Spezifischere Basisregeln übersteuern */
  .kcard__thumb .kcard__badge { font-size: 9px; }
  .kcard__foot .textlink, .kitchen__body .textlink { font-size: 10px; padding: 12px 0 10px; }
  .textlink { padding: 14px 0 12px; }
}
@media (max-width: 720px) {
  .textlink, .kcard__foot .textlink, .kitchen__body .textlink { padding: 16px 0 14px; }
}

/* Startseite: Hero-Headline und Leistungs-Einleitung in Regular */
.hero-stage h1, h2 { font-weight: 300; }
.section-lead { font-weight: 300; }

/* Mobile Navbar: Menü – Logo – Kontakt in einer Zeile, vertikal zentriert */
@media (max-width: 720px) {
  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .site-logo { grid-column: 2; grid-row: 1; }
  .site-logo img { width: 92px; }
  .site-header__left, .site-header__right { padding-top: 0; grid-row: 1; }
  .site-header__left { grid-column: 1; }
  .site-header__right { grid-column: 3; }
  .hdr-btn { padding: 10px 14px; font-size: 9.5px; letter-spacing: 0.16em; min-height: 40px; }
  .hdr-btn .burger { width: 12px; }
}

/* Dunkelblock (Startseite): mobil etwas mehr Luft nach oben und unten */
@media (max-width: 720px) {
  .dark-section__grid { padding-top: 72px; padding-bottom: 72px; gap: 44px; }
}

/* Küchen-Seite mobil: Zitat-Band mit mehr Luft, Küchenzeilen kompakt mit großem Bild */
@media (max-width: 720px) {
  .quote-band__inner { padding-top: 76px; padding-bottom: 76px; }

  .kitchen {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0 28px;
  }
  .kitchen__thumb { width: 100%; aspect-ratio: 16 / 10; }
  .kitchen__body h3 { margin-top: 6px; }
  .kitchen__meta { margin-top: 4px; }
  .kitchen__body .textlink { margin-top: 6px; padding: 10px 0 8px; }

  /* Preis links, Angebots-Button rechts – in einer Reihe */
  .kitchen__price {
    grid-column: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 14px;
    padding-top: 4px;
    text-align: left;
  }
  .kitchen__price .amount { grid-column: 1; grid-row: 1; font-size: 20px; }
  .kitchen__price .incl { grid-column: 1; grid-row: 2; margin-top: 2px; font-size: 11px; }
  .kitchen__price .btn--secondary { grid-column: 2; grid-row: 1 / 3; margin-top: 0; padding: 12px 16px; }
  .kitchen__detail { grid-column: 1; padding: 4px 0 6px; }
}

/* ============================================================
   HERSTELLER-LOGOS: mobil als Laufband (rechts → links), Desktop unverändert
   ============================================================ */
.brand-logos__track, .brand-logos__set:first-child { display: contents; }
.brand-logos__set:nth-child(2) { display: none; }

@media (max-width: 1080px) {
  .brand-logos { overflow: hidden; justify-content: flex-start; gap: 0; padding-bottom: 6px; }
  .brand-logos__track {
    display: flex;
    width: max-content;
    animation: brand-marquee 32s linear infinite;
    will-change: transform;
  }
  .brand-logos__set, .brand-logos__set:first-child, .brand-logos__set:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 44px;
    padding-right: 44px;
  }
  .brand-logos__set .brand-logo { flex: 0 0 110px; height: 30px; }
  @keyframes brand-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .brand-logos { overflow-x: auto; }
    .brand-logos__track { animation: none; }
  }
}

/* Formular-Fehlermeldung (nur wenn Netlify die Sendung nicht bestätigt) */
.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #B45A4A;
  color: #7A3A2E;
  font-size: 14px !important;
  line-height: 1.55;
}
.form-error a { color: inherit; border-bottom: 1px solid currentColor; }
button[type="submit"]:disabled { opacity: .6; cursor: default; }

/* Showroom-Video mobil: nur der Play-Button, ohne Beschriftung */
@media (max-width: 720px) {
  .media-video__play .label { display: none; }
  .media-video__play { gap: 0; }
}

/* ===== KÜCHEN AUS DER DATENBANK: Ladezustand ===== */
.kitchens-loading {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 24px 0;
}
.kslider__track .kitchens-loading { padding-left: 4px; }
.kslider__empty { padding: 8px 0 24px; }

/* ===== ADMIN: Küchen verwalten ===== */
body.admin { background: var(--cream); }
.admin__bar {
  display: flex; align-items: center; gap: 24px;
  padding: 18px 40px; border-bottom: 1px solid rgba(20,17,15,.12);
}
.admin__bar .logo img { height: 52px; width: auto; display: block; }
.admin__title { font-size: 13px !important; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); flex: 1; }
.admin__login .wrap { max-width: 520px; padding-top: 80px; padding-bottom: 80px; }
.admin__login h1 { margin: 8px 0 14px; }
.admin__login form { margin-top: 28px; }
.admin__main .wrap { padding-top: 48px; padding-bottom: 96px; }
.admin__grid { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }
.admin__list-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin__list-head .btn { padding: 10px 16px; font-size: 11px; }
.admin__hint { font-size: 13px !important; color: var(--muted); margin-top: 12px; }
.admin__items { list-style: none; margin: 18px 0 0; padding: 0; border-top: 1px solid rgba(20,17,15,.12); }
.admin__item { display: flex; align-items: stretch; border-bottom: 1px solid rgba(20,17,15,.12); }
.admin__item.is-active { background: var(--beige); }
.admin__item.is-inactive .admin__item-name { color: var(--muted); }
.admin__item-main {
  flex: 1; display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center;
  background: none; border: 0; padding: 14px 12px; text-align: left; font: inherit; color: inherit; cursor: pointer;
}
.admin__item-main:hover { background: rgba(20,17,15,.04); }
.admin__item-num { font-size: 12px; color: var(--muted); letter-spacing: .06em; }
.admin__item-name { font-size: 15px; font-weight: 500; }
.admin__item-name small, .admin__item-meta small { display: block; font-size: 12px; font-weight: 400; color: var(--muted); margin-top: 2px; }
.admin__item-meta { font-size: 12px; text-align: right; white-space: nowrap; }
.admin__item-sort { display: flex; flex-direction: column; border-left: 1px solid rgba(20,17,15,.12); }
.admin__item-sort button {
  flex: 1; width: 40px; background: none; border: 0; cursor: pointer; font-size: 14px; color: var(--ink);
}
.admin__item-sort button:first-child { border-bottom: 1px solid rgba(20,17,15,.12); }
.admin__item-sort button:hover:not(:disabled) { background: var(--ink); color: var(--cream); }
.admin__item-sort button:disabled { opacity: .25; cursor: default; }
.admin__editor { background: #fff; padding: 36px 40px 40px; }
.admin__editor h2 { margin: 6px 0 22px; font-size: 28px !important; }
.admin__empty p:last-child { font-size: 15px !important; color: var(--muted); margin-top: 8px; }
.admin__row { display: grid; gap: 0 24px; }
.admin__row--2 { grid-template-columns: 1fr 1fr; }
.admin__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.admin__editor .form-field textarea, .admin__editor .form-field input, .admin__editor .form-field select { width: 100%; }
.admin__editor textarea {
  font: inherit; font-size: 15px; line-height: 1.5; border: 0; border-bottom: 1px solid rgba(20,17,15,.3);
  background: transparent; padding: 8px 0; resize: vertical; color: var(--ink);
}
.admin__editor textarea:focus { outline: none; border-bottom-color: var(--ink); }
.admin__preview img { max-width: 260px; height: auto; display: block; margin: -6px 0 22px; }
.admin__check { display: flex; align-items: center; gap: 10px; font-size: 14px; margin: 8px 0 26px; cursor: pointer; }
.admin__check input { width: 16px; height: 16px; accent-color: var(--green); }
.admin__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.admin__delete { background: none; border: 0; cursor: pointer; margin-left: auto; color: #A33; font: inherit; }
.admin__saved { color: var(--green); font-size: 13px !important; margin-top: 14px; }
@media (max-width: 900px) {
  .admin__bar { padding: 14px 20px; }
  .admin__grid { grid-template-columns: 1fr; gap: 32px; }
  .admin__editor { padding: 24px 20px 28px; }
  .admin__row--2, .admin__row--3 { grid-template-columns: 1fr; }
}

/* ============================================================
   ÄNDERUNGEN AUFTRAGGEBER (Sept. 2026)
   ============================================================ */

/* 1. Hero-Überschrift einzeilig; wenn nicht möglich, bricht sie vor „mit Stil“ */
.nowrap { white-space: nowrap; }
.hero-stage__content h1 { max-width: none; }

/* 3. Leistungsbereiche: Linie wird beim Überfahren/Antippen schwarz, erste Spalte dauerhaft */
.service { transition: border-top-color .25s; }
.service:hover, .service:focus-within { border-top-color: var(--ink); }
.page-v2 .service h3 { font-size: 20px; }

/* 8. Lieferregion: Zeile im Fußbereich, Bildunterschrift in normaler Textgröße */
.site-footer__region {
  margin-top: 48px;
  font-size: 14px !important;
  color: rgba(247,244,241,.8);
}
.site-footer__region a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.lightbox figcaption { font-size: 15px; letter-spacing: 0; line-height: 1.5; max-width: 720px; margin-left: auto; margin-right: auto; }

/* 9. Zitat auf dunkelgrüner Fläche, cremefarbene Schrift, Text nah an der Überschrift */
.statement--green {
  background: var(--green);
  color: var(--cream);
  padding: 92px 0 96px;
  margin-top: 0;
}
.statement--green h2 { color: var(--cream); max-width: 820px; }
.statement--green p {
  margin-top: 14px;
  max-width: 720px;
  font-size: 18px !important;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(239,234,231,.85);
}
@media (max-width: 720px) {
  .statement--green { padding: 60px 0 64px; }
  .statement--green p { font-size: 16px !important; }
}

/* 10e. Große Überschriften optisch bündig: Vorlauf des ersten Buchstabens ausgleichen */
.page-v2 h1, .page-v2 h2 { text-indent: -0.045em; }
.page-v2 .kcard h3, .page-v2 .kitchen__body h3, .page-v2 .service h3 { text-indent: 0; }

/* 7b/10d. Formulare: Eingabe nur für Name, Telefon, E-Mail – alles andere zum Anklicken */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 22px; }
.choice { border: 0; padding: 0; margin: 0 0 26px; min-width: 0; }
.choice legend {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 10px;
  padding: 0;
}
.choice__note { text-transform: none; letter-spacing: .04em; }
.choice__options { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 9px 14px;
  border: 1px solid #B9B3AD;
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--ink);
  transition: background .15s, border-color .15s, color .15s;
}
.chip:hover span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.chip input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }
.beratung-form .form-hint + .form-hint { margin-top: 8px; }
.beratung-form .form-hint a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.modal__panel--wide { max-width: 640px; }
@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .chip span { padding: 10px 14px; font-size: 13px; }
}

/* 5. Filter U-Form: Hinweis, solange keine U-Form-Küche kalkuliert ist */
.kslider__note {
  padding: 8px 0 24px;
  font-size: 15px !important;
  color: var(--text);
  max-width: 560px;
}
.kslider__note a { text-decoration: underline; text-underline-offset: 3px; }
/* Hero-Überschrift mobil: ganze Wörter umbrechen („Innenausbau“ nicht trennen) */
.hero-stage__content h1 { hyphens: manual; -webkit-hyphens: manual; }

/* ============================================================
   HERSTELLER-LOGOS: 31 Marken als schnelles Laufband auf allen Breiten
   (Größe und Farbe wie bisher: 32px hoch, Textfarbe per Maske)
   ============================================================ */
.brand-logos { overflow: hidden; justify-content: flex-start; gap: 0; padding-bottom: 6px; }
.brand-logos__track {
  display: flex;
  width: max-content;
  animation: brand-marquee 60s linear infinite;
  will-change: transform;
}
.brand-logos:hover .brand-logos__track { animation-play-state: paused; }
.brand-logos__set, .brand-logos__set:first-child, .brand-logos__set:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
}
.brand-logos__set .brand-logo { flex: 0 0 120px; height: 32px; }
@media (max-width: 720px) {
  .brand-logos__track { animation-duration: 60s; }
  .brand-logos__set, .brand-logos__set:first-child, .brand-logos__set:nth-child(2) { gap: 44px; padding-right: 44px; }
  .brand-logos__set .brand-logo { flex: 0 0 110px; height: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .brand-logos { overflow-x: auto; }
  .brand-logos__track { animation: none; }
}
/* Hero-Überschrift: fließende Größe, damit „Küchen und Innenausbau mit Stil“ möglichst einzeilig bleibt;
   muss sie umbrechen, dann nur vor „mit Stil“ (nowrap-Span) */
@media (min-width: 721px) {
  .hero-stage__content h1 { font-size: clamp(40px, 4.9vw, 64px) !important; }
}
/* Keyframes global (die ältere Definition liegt in einer Mobil-Media-Query und gilt dort nur) */
@keyframes brand-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Laufband in Safari/iOS: Track und Sets dürfen als Flex-Kinder nicht schrumpfen, sonst
   quetscht Safari die Sets auf Containerbreite (Logos übereinander, Animation fast still) */
.brand-logos__track { flex: 0 0 auto; min-width: max-content; min-width: -webkit-max-content; }
.brand-logos__set, .brand-logos__set:first-child, .brand-logos__set:nth-child(2) { flex: 0 0 auto; }
/* iOS-Safari: maskierte Logos in einem transform-animierten Container werden sonst nicht sauber
   mitbewegt (Logos scheinen übereinander zu liegen, Bewegung ruckelt) – eigene Compositing-Ebenen */
.brand-logos__set .brand-logo {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.brand-logos__track { transform: translate3d(0, 0, 0); }
@keyframes brand-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Startseite: Hersteller-Laufband direkt unter dem Hero, über den vier Leistungen */
.brand-band { margin-top: 44px; }
.brand-band .brand-logos { margin-top: 0; padding-top: 0; border-top: 0; }
.brand-band + .services { margin-top: 48px; }
/* Laufweg = Breite eines Logo-Sets in Pixeln (per JS gemessen), Fallback 50 % */
@keyframes brand-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-1 * var(--marquee-set, 50%)), 0, 0); }
}
/* Hero-Unterzeile mobil ohne Silbentrennung („gan-zen Norden“) */
.hero-stage__content h2 { hyphens: manual; -webkit-hyphens: manual; }
