/* =====================================================================
   Bay Raumausstattung – Styles
   Mobile First · lokale Schriften · DSGVO-konform (keine externen Quellen)
   Design: warmes "Atelier" – Leinen-Papier, Loden-Grün, Messing-Akzent
   ===================================================================== */

/* ---------- Lokale Schriften ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal; font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/fraunces-300.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fraunces-400.woff2") format("woff2");
}
@font-face {
  font-family: "Fraunces";
  font-style: normal; font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/fraunces-600.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal; font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/hanken-400.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal; font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/hanken-500.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal; font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/hanken-600.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal; font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/hanken-700.woff2") format("woff2");
}

/* ---------- Design Tokens ---------- */
:root {
  --ink: #211c17;
  --ink-soft: #5f574d;
  --ink-faint: #8a8175;

  --paper: #faf6ef;
  --surface: #ffffff;
  --surface-2: #f4ecdf;
  --line: #e7ddcc;
  --line-strong: #d8cbb3;

  --forest: #2c3a30;
  --forest-deep: #243029;
  --brand: #3c5246;

  --brass: #946524;        /* AA-tauglich für Text auf hell */
  --brass-soft: #b98b3c;   /* dekorativ */
  --brass-tint: #f2e7d2;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(33,28,23,.06), 0 2px 8px rgba(33,28,23,.04);
  --shadow: 0 6px 24px rgba(33,28,23,.08), 0 2px 6px rgba(33,28,23,.05);
  --shadow-lg: 0 24px 60px rgba(33,28,23,.14), 0 8px 24px rgba(33,28,23,.08);

  --maxw: 1180px;
  --gutter: 20px;
  --header-h: 68px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brass-soft); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
h1 em { font-style: italic; font-weight: 300; color: var(--brand); }
p { color: var(--ink-soft); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--forest); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 13px 24px;
  border: 1px solid transparent; border-radius: 999px;
  font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  will-change: transform;
}
.btn-sm { min-height: 42px; padding: 9px 18px; font-size: .95rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(33,28,23,.03); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,239,.82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-mark { color: var(--forest); display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.28rem; letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; text-transform: uppercase; letter-spacing: .22em; color: var(--brass); font-weight: 600; }

.nav-desktop { display: none; }
.header-cta { display: none; align-items: center; gap: 14px; }
.phone-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink);
  font-size: .98rem; transition: color .2s var(--ease);
}
.phone-link svg { color: var(--brass); }
.phone-link:hover { color: var(--brass); }

/* Burger */
.burger {
  width: 46px; height: 46px; display: inline-grid; place-items: center;
  background: transparent; border: 1px solid var(--line-strong); border-radius: 12px;
  position: relative;
}
.burger span {
  display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 95;
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter) 24px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
  box-shadow: var(--shadow-lg);
  max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  padding: 15px 6px; font-size: 1.12rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-nav nav a:active { color: var(--brass); }
.mobile-nav-actions { display: grid; gap: 12px; margin-top: 18px; }
.phone-link--block { justify-content: center; min-height: 48px; border: 1px solid var(--line-strong); border-radius: 999px; }

.nav-scrim {
  position: fixed; inset: 0; z-index: 90; background: rgba(33,28,23,.42);
  opacity: 0; pointer-events: none; transition: opacity .28s var(--ease);
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Eyebrow / Section heads ---------- */
.eyebrow {
  display: inline-block; font-size: .76rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 14px;
}
.section { padding: 64px 0; }
.section--alt { background: var(--surface-2); }
.section-head { max-width: 640px; margin-bottom: 38px; }
.section-head h2 { font-size: clamp(1.8rem, 5vw, 2.6rem); }
.section-lead { margin-top: 14px; font-size: 1.08rem; }

/* ---------- Hero ---------- */
.hero { padding: 40px 0 56px; position: relative; }
.hero-grid { display: grid; gap: 36px; }
.hero-copy h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); margin: 6px 0 18px; }
.hero-lead { font-size: 1.12rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 30px; }
.hero-badges {
  list-style: none; padding: 0; display: grid; gap: 12px;
  border-top: 1px solid var(--line); padding-top: 22px;
}
.hero-badges li { font-size: .98rem; color: var(--ink-soft); }
.hero-badges strong { color: var(--ink); font-family: var(--display); font-weight: 600; margin-right: 4px; }

.hero-visual { position: relative; }
.drape-card {
  aspect-ratio: 4 / 5; border-radius: var(--radius-xl); overflow: hidden;
  position: relative; box-shadow: var(--shadow-lg);
}
.hero-chip {
  position: absolute; left: 14px; bottom: -14px;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); color: var(--ink); font-weight: 600; font-size: .92rem;
  padding: 12px 16px; border-radius: 14px; box-shadow: var(--shadow);
  border: 1px solid var(--line); max-width: 88%;
}
.hero-chip svg { color: var(--brass); flex-shrink: 0; }

/* ---------- Bild-Platzhalter (hochwertig, ruhig, nicht "KI") ---------- */
.ph {
  position: relative; background: var(--surface-2); border: 1px solid var(--line);
  display: grid; place-items: end start; overflow: hidden;
  border-radius: var(--radius-lg);
}
.ph::before {
  /* sehr dezente, vertikale "Stoff-Falten" – ruhiger Material-Hint */
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(33,28,23,.035) 0 2px,
      rgba(33,28,23,0) 2px 16px),
    linear-gradient(160deg, #efe7d8, #e7dcc8 60%, #ded0b8);
}
.ph-fold {
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 30% 10%, rgba(255,255,255,.5), transparent 55%);
  mix-blend-mode: screen;
}
.ph-tag {
  position: relative; z-index: 2; margin: 14px;
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  color: var(--ink-soft); background: rgba(250,246,239,.86);
  border: 1px solid var(--line); padding: 6px 11px; border-radius: 999px;
  backdrop-filter: blur(2px);
}
.ph--portrait { aspect-ratio: 4 / 5; }

/* ---------- Trust strip ---------- */
.trust { padding: 8px 0 8px; }
.trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
}
.trust-item { background: var(--surface); padding: 22px 18px; display: flex; flex-direction: column; gap: 6px; }
.trust-num { font-family: var(--display); font-weight: 600; font-size: 1.9rem; color: var(--forest); line-height: 1; }
.trust-label { font-size: .86rem; color: var(--ink-soft); }

/* ---------- Cards (Leistungen) ---------- */
.cards { display: grid; gap: 18px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card-icon {
  display: inline-grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; background: var(--brass-tint); color: var(--brass); margin-bottom: 16px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { font-size: .98rem; }

/* ---------- Über uns ---------- */
.about-grid { display: grid; gap: 30px; }
.about-copy h2 { font-size: clamp(1.7rem, 5.4vw, 2.4rem); margin-bottom: 16px; }
.about-copy p + p { margin-top: 14px; }
.about-more { display: grid; }
.readmore-toggle {
  margin-top: 16px; align-self: start;
  background: transparent; border: 1px solid var(--line-strong); color: var(--ink);
  padding: 11px 20px; border-radius: 999px; font-weight: 600; min-height: 46px;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.readmore-toggle:hover { border-color: var(--ink); background: rgba(33,28,23,.03); }

/* ---------- USP ---------- */
.usp-grid { display: grid; gap: 18px; }
.usp {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.usp-icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: var(--forest); color: #fff; margin-bottom: 14px; }
.usp h3 { font-size: 1.18rem; margin-bottom: 6px; }
.usp p { font-size: .96rem; }

/* ---------- Ablauf / Steps ---------- */
.steps { list-style: none; padding: 0; display: grid; gap: 18px; counter-reset: step; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; position: relative; box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--display); font-weight: 600; font-size: 1.6rem; color: var(--brass-soft);
  display: block; margin-bottom: 8px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { font-size: .96rem; }

/* ---------- Accordion / FAQ ---------- */
.accordion { display: grid; gap: 12px; }
.ac-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ac-trigger {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--ink);
  background: transparent; min-height: 56px;
}
.ac-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.ac-icon::before, .ac-icon::after {
  content: ""; position: absolute; background: var(--brass); border-radius: 2px;
  transition: transform .3s var(--ease);
}
.ac-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.ac-icon::after { left: 8px; top: 0; width: 2px; height: 18px; }
.ac-trigger[aria-expanded="true"] .ac-icon::after { transform: scaleY(0); }
.ac-panel { overflow: hidden; height: 0; transition: height .32s var(--ease); }
.ac-inner { padding: 0 22px 22px; }
.ac-inner p { font-size: .98rem; }
@media (prefers-reduced-motion: reduce) { .ac-panel { transition: none; } }

/* ---------- Standort ---------- */
.loc-grid { display: grid; gap: 28px; }
.loc-copy h2 { font-size: clamp(1.7rem, 5.4vw, 2.4rem); }
.loc-address { font-style: normal; margin: 16px 0 18px; font-size: 1.05rem; color: var(--ink); }
.loc-hours { list-style: none; padding: 0; margin: 0 0 22px; border-top: 1px solid var(--line); }
.loc-hours li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.loc-hours li span:first-child { color: var(--ink); font-weight: 600; }
.loc-hours li span:last-child { color: var(--ink-soft); text-align: right; }
.loc-hours .closed span:last-child { color: var(--ink-faint); }

.loc-map { min-height: 280px; }
.map-ph { aspect-ratio: 4 / 3; place-items: center; color: var(--forest); }
.map-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(33,28,23,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,28,23,.07) 1px, transparent 1px);
  background-size: 38px 38px;
}
.map-pin { position: relative; z-index: 2; color: var(--forest); filter: drop-shadow(0 6px 10px rgba(33,28,23,.25)); animation: pin-float 3.4s var(--ease) infinite; }
@keyframes pin-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .map-pin { animation: none; } }
.ph-tag--map { position: absolute; left: 14px; bottom: 14px; margin: 0; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; gap: 32px; }
.contact-intro h2 { font-size: clamp(1.7rem, 5.4vw, 2.4rem); }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 13px; font-size: 1rem; }
.contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--brass); text-decoration: underline; }
.ci { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--brass-tint); color: var(--brass); flex-shrink: 0; }

.contact-form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 22px; box-shadow: var(--shadow);
}
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field-row { display: grid; gap: 16px; }
.field label { font-weight: 600; font-size: .94rem; color: var(--ink); }
.req { color: var(--brass); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: 12px; padding: 13px 14px;
  min-height: 48px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); background: #fff;
  box-shadow: 0 0 0 3px rgba(60,82,70,.14);
}
.field input.invalid, .field textarea.invalid { border-color: #b3261e; box-shadow: 0 0 0 3px rgba(179,38,30,.12); }
.error { color: #b3261e; font-size: .84rem; font-weight: 500; }

.consent { margin-top: 4px; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; cursor: pointer; }
.checkbox input { position: absolute; opacity: 0; width: 24px; height: 24px; cursor: pointer; }
.checkbox .box {
  width: 24px; height: 24px; border: 1.5px solid var(--line-strong); border-radius: 7px; background: var(--paper);
  display: grid; place-items: center; transition: background .15s var(--ease), border-color .15s var(--ease); margin-top: 1px;
}
.checkbox .box::after {
  content: ""; width: 11px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) scale(0); transform-origin: center; transition: transform .18s var(--ease);
}
.checkbox input:checked + .box { background: var(--forest); border-color: var(--forest); }
.checkbox input:checked + .box::after { transform: rotate(-45deg) scale(1); }
.checkbox input:focus-visible + .box { outline: 3px solid var(--brass-soft); outline-offset: 2px; }
.consent-text { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }
.consent-text a { color: var(--brand); font-weight: 600; text-decoration: underline; }
.consent .error { margin-top: 6px; }

.form-status { margin-top: 14px; padding: 13px 16px; border-radius: 12px; font-weight: 600; font-size: .96rem; }
.form-status.is-ok { background: #e7f1ea; color: #1f5135; border: 1px solid #bcd9c8; }
.form-status.is-err { background: #fbe9e7; color: #8c2f26; border: 1px solid #f0c5bf; }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--ink-faint); }
.btn-block { margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: #d9e0d8; margin-top: 8px; }
.footer-top {
  display: grid; gap: 34px; padding: 52px var(--gutter) 40px;
  max-width: var(--maxw); margin-inline: auto;
}
.footer-brand .brand-name { color: #fff; font-size: 1.35rem; }
.footer-brand p { color: #aebbac; margin-top: 10px; font-size: .95rem; max-width: 32ch; }
.social { display: flex; gap: 12px; margin-top: 18px; }
.social a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px;
  border: 1px solid rgba(255,255,255,.18); color: #cfd8cd; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.social a:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }

.footer-top h4 { color: #fff; font-family: var(--body); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a, .footer-legal a { color: #c4cec2; transition: color .18s var(--ease); width: max-content; }
.footer-nav a:hover, .footer-legal a:hover { color: #fff; }
.footer-contact address { font-style: normal; color: #c4cec2; line-height: 1.8; }
.footer-contact a:hover { color: #fff; text-decoration: underline; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
  padding: 20px var(--gutter); font-size: .86rem;
}
.footer-bottom .copy { color: #9fad9d; }
.powered { color: #9fad9d; }
.powered a { color: #22b8e0; font-weight: 600; }
.powered a:hover { text-decoration: underline; }

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .btn, .card, .ac-trigger { transition: none; }
}

/* =====================================================================
   Breakpoints
   ===================================================================== */
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .trust-num { font-size: 2.2rem; }
}

@media (min-width: 860px) {
  :root { --gutter: 32px; --header-h: 76px; }
  .section { padding: 92px 0; }
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
  .hero-badges { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .hero-badges li { border-left: 2px solid var(--brass-soft); padding-left: 12px; }

  .burger { display: none; }
  .nav-desktop { display: flex; gap: 30px; }
  .nav-desktop a { font-weight: 600; font-size: .98rem; color: var(--ink); position: relative; padding: 6px 0; }
  .nav-desktop a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--brass);
    transition: width .25s var(--ease);
  }
  .nav-desktop a:hover::after { width: 100%; }
  .header-cta { display: flex; }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .usp-grid { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }

  .about-grid { grid-template-columns: .85fr 1.15fr; align-items: center; gap: 50px; }
  .loc-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; align-items: start; gap: 52px; }

  .contact-form { padding: 34px 32px; }

  .footer-top { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 40px; padding: 64px var(--gutter) 48px; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }

  /* Über-uns "Mehr"-Text auf großen Screens immer sichtbar */
  .about-more { height: auto !important; }
  .readmore-toggle { display: none; }
}

@media (min-width: 1080px) {
  .section-head h2 { font-size: 2.7rem; }
}

/* =====================================================================
   Rechtliche Seiten (Impressum / Datenschutz)
   ===================================================================== */
.legal-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,246,239,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.legal-header .header-inner { min-height: 64px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); }
.back-link:hover { color: var(--brass); }

.legal { padding: 48px 0 72px; }
.legal .container { max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 6vw, 2.8rem); margin-bottom: 10px; }
.legal .lead { color: var(--ink-soft); margin-bottom: 8px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h3 { font-size: 1.1rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 14px; padding-left: 20px; display: grid; gap: 6px; }
.legal address { font-style: normal; color: var(--ink); line-height: 1.8; }
.legal a { color: var(--brand); text-decoration: underline; }

.placeholder-box {
  background: var(--brass-tint); border: 1px solid var(--line-strong);
  border-left: 4px solid var(--brass-soft); border-radius: 12px;
  padding: 16px 18px; margin: 18px 0; color: #6b5320; font-size: .95rem;
}
.placeholder-box strong { color: #5a4517; }
mark.todo {
  background: #fff3d6; color: #6b5320; padding: 1px 7px; border-radius: 6px;
  font-weight: 600; border: 1px dashed var(--brass-soft);
}
