/* ============================================================
   Alltagshilfe Tomm — Design System v2 "Bold Editorial"
   Typo: Bricolage Grotesque (Display) · Instrument Sans (Body)
   Look: warme Basis, harte Konturen, Offset-Schatten, Grain,
         Marquee, Bento — modern statt brav.
   ============================================================ */

:root {
  --paper: #FAF6EF;
  --paper-dim: #F1EAE0;
  --ink: #132019;
  --ink-soft: #4A5850;
  --line: rgba(19, 32, 25, .14);
  --pine: #14554A;
  --pine-deep: #0C3B33;
  --pine-night: #071F1A;
  --apricot: #F26B3A;
  --apricot-deep: #B04416;  /* Text-tauglich: ~4.8:1 auf Papier */
  --sage: #DFE9DD;
  --sage-line: #C6D6C4;
  --gold: #F2B84B;
  --white: #FFFFFF;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-pop: 7px 7px 0 rgba(19, 32, 25, .1);
  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-body: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  --wrap: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;            /* 18px Grundschrift — Lesbarkeit! */
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  overflow-wrap: break-word;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--apricot-deep); }
:focus-visible { outline: 3px solid var(--apricot); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--apricot); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 92%;
  line-height: 1.04;
  letter-spacing: -.022em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 6.2vw, 4.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
.lead { font-size: clamp(1.15rem, 1.8vw, 1.32rem); line-height: 1.55; color: var(--ink-soft); }
.center { text-align: center; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.wrap-narrow { max-width: 860px; }
section { padding-block: clamp(3.2rem, 7vw, 6rem); position: relative; }

/* Eyebrow / Kicker */
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pine); margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--apricot); flex: none; }
.on-dark .kicker { color: var(--gold); }
.on-dark .kicker::before { background: var(--gold); }

/* ---------- Grain-Textur für dunkle Flächen ---------- */
.section-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section-dark > .wrap { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 650; font-size: 1.05rem; line-height: 1;
  padding: 1rem 1.6rem; border-radius: 14px; border: 2px solid var(--ink);
  text-decoration: none; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  min-height: 54px; position: relative;
}
.btn svg { width: 20px; height: 20px; flex: none; transition: transform .16s ease; }
.btn:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 rgba(19,32,25,.18); }
.btn:hover svg { transform: translateX(3px) rotate(-8deg); }
.btn:active { transform: translate(0,0); box-shadow: none; }
.btn-primary { background: var(--pine); border-color: var(--pine-deep); color: #fff; }
.btn-primary:hover { background: var(--pine-deep); color: #fff; }
.btn-accent { background: var(--apricot); border-color: var(--apricot-deep); color: #24120A; }
.btn-accent:hover { background: #FF7A47; color: #24120A; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.7); }
.on-dark .btn-ghost:hover { background: #fff; color: var(--pine-deep); box-shadow: 5px 5px 0 rgba(0,0,0,.3); }
.btn-lg { font-size: 1.14rem; padding: 1.15rem 2rem; min-height: 60px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--pine-night); color: #DCEAE2; font-size: .9rem; padding: .5rem 0; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 650; text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.topbar-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-item svg { width: 15px; height: 15px; opacity: .8; }
@media (max-width: 640px) { .topbar-hours { display: none; } }
@media (max-width: 480px) { .topbar .wrap { justify-content: center; } .topbar-item:not(a) { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, .9); backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.3rem; padding-block: .7rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); }
.brand-mark { width: 44px; height: 44px; flex: none; transition: transform .3s ease; }
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-name { font-family: var(--font-display); font-weight: 750; font-size: 1.28rem; line-height: 1; letter-spacing: -.01em; white-space: nowrap; }
.brand-sub { display: block; font-family: var(--font-body); font-weight: 600; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--pine); margin-top: .25rem; }
.main-nav { display: flex; align-items: center; gap: .35rem; }
.main-nav a {
  font-weight: 600; font-size: .98rem; color: var(--ink); text-decoration: none;
  padding: .5rem .8rem; border-radius: 999px; white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--sage); color: var(--pine-deep); }
.main-nav a[aria-current="page"] { background: var(--ink); color: var(--paper); }
.header-cta { display: inline-flex; min-height: 46px; padding: .7rem 1.2rem; }
.nav-toggle { display: none; background: none; border: 0; padding: .55rem; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 30px; height: 30px; }
@media (max-width: 1060px) {
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); flex-direction: column; align-items: stretch; gap: .2rem;
    padding: .8rem 1.2rem 1.2rem; border-bottom: 1.5px solid var(--line); box-shadow: 0 18px 30px -18px rgba(19,32,25,.3);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .85rem 1rem; font-size: 1.08rem; border-radius: 12px; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
}

/* ---------- Marquee-Band ---------- */
.marquee {
  background: var(--ink); color: var(--paper); overflow: hidden;
  padding: .8rem 0; border-block: 2px solid var(--ink);
  transform: rotate(-.6deg) scale(1.01);
}
.marquee-track { display: flex; gap: 2.6rem; width: max-content; animation: marquee 52s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 2.6rem; font-family: var(--font-display); font-weight: 650; font-size: 1.05rem; letter-spacing: .02em; white-space: nowrap; }
.marquee i { font-style: normal; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.6rem, 5.5vw, 4.6rem) clamp(3.2rem, 6vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(2rem, 5vw, 4.2rem); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 .accent { color: var(--pine); }
.hero h1 .accent-warm {
  color: var(--apricot-deep);
  text-decoration: underline; text-decoration-thickness: .09em; text-underline-offset: .08em; text-decoration-color: var(--gold);
}
.hero .lead { max-width: 34em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.8rem 0 1.4rem; }
.hero-note { display: flex; align-items: center; gap: .5rem; color: var(--ink-soft); font-size: .96rem; }
.hero-note svg { width: 18px; height: 18px; color: var(--pine); flex: none; }

.trust-chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.6rem; padding: 0; list-style: none; }
.trust-chips li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--white); border: 1.5px solid var(--ink); border-radius: 999px;
  padding: .45rem .95rem; font-size: .92rem; font-weight: 650; color: var(--ink);
}
.trust-chips svg { width: 16px; height: 16px; color: var(--pine); flex: none; }

/* Foto-Behandlung: Kontur + Offset-Schatten + warmer Grade — einheitlich statt Stock-Look */
.photo-stack { position: relative; padding: 0 14px 14px 0; }
.photo-stack .photo-main {
  border-radius: var(--radius); border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--sage-line);
  aspect-ratio: 11 / 10; object-fit: cover; width: 100%;
  filter: saturate(.94) contrast(1.05) sepia(.06);
}
.photo-badge {
  position: absolute; left: -12px; bottom: 8px; transform: rotate(-3deg);
  background: var(--gold); border: 2px solid var(--ink); border-radius: var(--radius-sm);
  box-shadow: 5px 5px 0 rgba(19,32,25,.22);
  padding: .7rem 1rem; display: flex; align-items: center; gap: .6rem; max-width: 250px;
}
.photo-badge.badge-paper { background: var(--white); transform: rotate(1.8deg); }
.photo-badge.badge-coral { background: var(--apricot); transform: rotate(2.2deg); }
.photo-badge strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.15; }
.photo-badge span { font-size: .8rem; color: rgba(19,32,25,.75); font-weight: 600; }

/* ---------- Sektionen ---------- */
.section-sage { background: var(--sage); border-block: 1.5px solid var(--sage-line); }
.section-dim { background: var(--paper-dim); }
.section-dark { background: var(--pine-night); color: #DFEDE4; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: #B8CEC2; }
.section-head { max-width: 740px; margin-bottom: clamp(1.8rem, 3.6vw, 3rem); }
.section-head.center { margin-inline: auto; }

/* Zahlen-Band */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
@media (max-width: 900px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800; font-stretch: 80%;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem); line-height: 1; letter-spacing: -.02em; color: var(--gold);
}
.stat span { display: block; margin-top: .45rem; font-size: .95rem; font-weight: 600; color: #9DB8AC; }

/* Karten-Grids + Bento */
.grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1020px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.bento { display: grid; gap: 1.2rem; grid-template-columns: repeat(6, 1fr); }
.bento > * { grid-column: span 2; }
.bento > .bento-wide { grid-column: span 3; }
.bento > .bento-4 { grid-column: span 4; }
@media (max-width: 1020px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento > *, .bento > .bento-wide, .bento > .bento-4 { grid-column: span 1; } }
@media (max-width: 640px) { .bento { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: 16px; padding: 1.7rem 1.6rem;
  border: 1.5px solid rgba(19, 32, 25, .75);
  box-shadow: 5px 5px 0 rgba(19, 32, 25, .08);
  display: flex; flex-direction: column; gap: .35rem; position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 rgba(19,32,25,.14); border-color: var(--ink); }
.card h3 { margin-bottom: .2rem; }
.card p { color: var(--ink-soft); font-size: 1rem; margin-bottom: .4rem; }
.card .card-more {
  margin-top: auto; font-weight: 700; color: var(--pine);
  display: inline-flex; align-items: center; gap: .45rem; font-size: .98rem;
}
.card .card-more svg {
  width: 30px; height: 30px; flex: none; padding: 6px;
  border: 1.5px solid var(--ink); border-radius: 50%; color: var(--ink);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
a.card:hover .card-more svg { transform: rotate(-35deg); background: var(--apricot); color: #24120A; border-color: var(--apricot-deep); }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--sage); border: 1.5px solid var(--ink); color: var(--pine-deep); margin-bottom: .9rem; flex: none;
}
.card-icon svg { width: 28px; height: 28px; }
.card-photo { margin: -1.7rem -1.6rem 1.1rem; }
.card-photo img { border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0; aspect-ratio: 16/9; object-fit: cover; width: 100%; filter: saturate(.94) contrast(1.05) sepia(.06); border-bottom: 1.5px solid var(--line); }

/* Bento-Extras: Ghost-Ziffer, Icon-Rotation, Tags */
.card .ghost-num {
  position: absolute; top: .4rem; right: 1rem; pointer-events: none;
  font-family: var(--font-display); font-weight: 800; font-stretch: 78%;
  font-size: clamp(3.4rem, 5vw, 4.6rem); line-height: 1; color: var(--ink); opacity: .07;
}
.bento .card:nth-child(3n+2) .card-icon { background: var(--pine); color: var(--paper); }
.bento .card:nth-child(3n) .card-icon { background: var(--apricot); color: #24120A; border-color: var(--apricot-deep); }
.card .card-more { min-height: 48px; align-items: center; }
.card-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: .1rem 0 .8rem; padding: 0; list-style: none; }
.card-tags li { font-size: .82rem; font-weight: 650; color: var(--pine-deep); background: var(--sage); border: 1px solid var(--sage-line); border-radius: 999px; padding: .18rem .65rem; }

/* Schritte */
.step { position: relative; padding: 1.6rem 1.5rem; background: var(--white); border: 1.5px solid rgba(19,32,25,.75); border-radius: 16px; box-shadow: 5px 5px 0 rgba(19,32,25,.08); }
.step-num {
  display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: var(--apricot); border: 2px solid var(--ink); color: #24120A;
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  margin-bottom: .9rem; box-shadow: 4px 4px 0 rgba(19,32,25,.15);
  -webkit-text-stroke: 0;
}
.section-dark .step { background: rgba(255,255,255,.05); border-color: rgba(250,246,239,.3); box-shadow: 5px 5px 0 rgba(0,0,0,.25); }
.section-dark .step-num { background: var(--gold); }

/* Preis-Box */
.price-box {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--sage-line);
  overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr;
}
@media (max-width: 860px) { .price-box { grid-template-columns: 1fr; } }
.price-main { padding: clamp(1.7rem, 3.4vw, 2.6rem); }
.price-side { background: var(--pine-deep); color: #DFEDE4; padding: clamp(1.7rem, 3.4vw, 2.6rem); }
.price-side h3 { color: #fff; }
.price-side p { color: #C4D8CC; }
.price-side a { color: var(--gold); }
.price-side .ticks svg { color: var(--gold); }
.price-side .ticks li { color: #DFEDE4; }
.price-tag { display: flex; align-items: baseline; gap: .5rem; margin: .7rem 0 1rem; }
.price-tag .amount {
  font-family: var(--font-display); font-weight: 800; font-stretch: 82%;
  font-size: clamp(3.2rem, 6.5vw, 4.6rem); color: var(--pine); line-height: 1; white-space: nowrap; letter-spacing: -.02em;
}
.price-tag .unit { font-size: 1.1rem; color: var(--ink-soft); font-weight: 650; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.ticks li { display: flex; gap: .6rem; align-items: flex-start; font-size: 1.02rem; }
.ticks svg { width: 21px; height: 21px; color: var(--pine); flex: none; margin-top: .12rem; }
.on-dark .ticks svg { color: var(--gold); }

/* Hinweis-/Förderband */
.callout {
  border: 1.5px solid var(--ink); border-left: 8px solid var(--apricot); background: #FFF3EA;
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem; margin: 1.5rem 0;
}
.callout strong { color: var(--apricot-deep); }

/* Testimonials */
.quote-card {
  background: var(--white); border-radius: 16px; padding: 1.8rem 1.6rem;
  border: 1.5px solid rgba(19, 32, 25, .75); box-shadow: 5px 5px 0 rgba(19, 32, 25, .08); display: flex; flex-direction: column; position: relative;
  transition: transform .2s ease;
}
.quote-card::before {
  content: "„"; position: absolute; top: -6px; right: 18px;
  font-family: var(--font-display); font-weight: 800; font-size: 4.6rem; line-height: 1; color: var(--sage-line);
}
.quote-card:nth-child(odd) { transform: rotate(-.5deg); }
.quote-card:nth-child(even) { transform: rotate(.5deg); }
.quote-card:hover { transform: rotate(0) translateY(-3px); }
.quote-card .stars { color: var(--gold); letter-spacing: .12em; font-size: 1.05rem; margin-bottom: .8rem; }
.quote-card blockquote { margin: 0 0 1.1rem; font-size: 1.04rem; color: var(--ink); }
.quote-card figcaption { margin-top: auto; font-weight: 700; font-size: .93rem; color: var(--ink-soft); display: flex; align-items: center; gap: .55rem; }
.quote-card figcaption::before { content: ""; width: 22px; height: 3px; background: var(--apricot); border-radius: 2px; }

/* FAQ — Linien-Akkordeon statt Boxen */
.faq { display: grid; border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1.5px solid var(--line); background: transparent; border-radius: 0; box-shadow: none; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  font-family: var(--font-display); font-weight: 650; font-size: 1.12rem; padding: 1.15rem .2rem;
  transition: color .15s ease;
}
.faq summary:hover { color: var(--pine); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; line-height: 1;
  color: var(--apricot); transition: transform .2s ease; flex: none;
}
.faq details[open] summary { color: var(--pine); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 .2rem 1.3rem; color: var(--ink-soft); max-width: 62em; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* Stadt-/Gebietsliste */
.area-links { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 0; list-style: none; }
.area-links a {
  display: inline-block; background: var(--white); border: 1.5px solid var(--ink); border-radius: 999px;
  padding: .5rem 1.05rem; font-size: .95rem; font-weight: 650; color: var(--ink); text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.area-links a:hover { background: var(--pine); border-color: var(--pine-deep); color: #fff; transform: translate(-2px,-2px); box-shadow: 4px 4px 0 rgba(19,32,25,.15); }
.on-dark .area-links a { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.on-dark .area-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Über-uns-Band */
.about-band { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .about-band { grid-template-columns: 1fr; } }
.signature { font-family: var(--font-display); font-weight: 750; font-size: 1.45rem; color: var(--pine); letter-spacing: -.01em; }

/* CTA-Band */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-stretch: 86%; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.cta-phone-big {
  font-family: var(--font-display); font-weight: 800; font-stretch: 84%; font-size: clamp(2rem, 4.6vw, 3.4rem);
  color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: .8rem; letter-spacing: -.01em;
}
.cta-phone-big:hover { color: #fff; }
.cta-phone-big svg { width: 36px; height: 36px; }

/* ---------- Formular ---------- */
.form-card { background: var(--white); border-radius: var(--radius); border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--sage-line); padding: clamp(1.6rem, 3.4vw, 2.5rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 650; font-size: .97rem; }
.field label .opt { font-weight: 400; color: var(--ink-soft); font-size: .87rem; }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--ink); border-radius: var(--radius-sm);
  padding: .85rem 1rem; min-height: 54px; width: 100%;
  transition: box-shadow .15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; box-shadow: 4px 4px 0 var(--sage-line); }
.form-msg { display: none; border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-weight: 600; margin-top: 1rem; border: 1.5px solid var(--ink); }
.form-msg.ok { display: block; background: #E0F2E4; color: #14532D; }
.form-msg.err { display: block; background: #FDECEA; color: #8C2A1C; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-night); color: #A9C2B5; padding: clamp(3rem, 6vw, 4.5rem) 0 0; font-size: .98rem; position: relative; }
.site-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-footer .wrap { position: relative; }
.site-footer a { color: #E2EFE7; text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 2.2rem; padding-bottom: 2.6rem; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold); font-family: var(--font-body); font-size: .84rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 700; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-brand .brand-name { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; margin-top: .25rem; flex: none; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 1.3rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .9rem; color: #7E9A8C; }
.footer-bottom a { color: #A9C2B5; }

/* ---------- Mobile Sticky Call Bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; grid-template-columns: 1fr 1fr; gap: 0; border-top: 2px solid var(--ink);
  padding-bottom: env(safe-area-inset-bottom); box-shadow: 0 -10px 26px -12px rgba(19,32,25,.4);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem .5rem; font-weight: 700; font-size: 1.02rem; text-decoration: none;
}
.callbar a svg { width: 21px; height: 21px; }
.callbar .cb-phone { background: var(--pine); color: #fff; }
.callbar .cb-mail { background: var(--gold); color: var(--ink); }
@media (max-width: 760px) { .callbar { display: grid; } body { padding-bottom: 64px; } }

/* ---------- Breadcrumbs, Prose (Ratgeber) ---------- */
.breadcrumbs { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs span[aria-current] { color: var(--ink); font-weight: 650; }
.prose { max-width: 65ch; line-height: 1.7; }
.prose h2 { margin-top: 2.1em; font-size: clamp(1.6rem, 2.7vw, 2.1rem); }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; margin-bottom: 1.2em; }
.prose li { margin-bottom: .45em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 1rem; border: 1.5px solid var(--ink); }
.prose th, .prose td { text-align: left; padding: .75rem .95rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose tr:last-child th, .prose tr:last-child td { border-bottom: 0; }
.prose th { background: var(--sage); font-weight: 700; font-family: var(--font-display); font-size: .98rem; }
.prose .table-scroll { overflow-x: auto; }
.meta-row { display: flex; gap: 1.2rem; flex-wrap: wrap; color: var(--ink-soft); font-size: .92rem; margin-bottom: 2rem; }

/* Scroll-Reveal — NUR wenn JS läuft (html.js), sonst ist alles sofort sichtbar. */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; } }

/* Utility */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--pine); color: #fff; padding: .8rem 1.2rem; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- Verhinderungspflege-Rechner & Bedingungs-Check ---------- */
.vp-tool {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--sage-line);
  padding: clamp(1.6rem, 3.4vw, 2.5rem);
}
.vp-seg { display: flex; flex-wrap: wrap; gap: .6rem; margin: .5rem 0 1.4rem; }
.vp-seg input[type="radio"] { position: absolute; opacity: 0; width: 0; }
.vp-seg label {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 116px; padding: .72rem 1.05rem; border-radius: 999px;
  border: 1.5px solid var(--ink); background: var(--paper);
  font-weight: 700; cursor: pointer; transition: all .15s ease; font-size: 1rem;
}
.vp-seg label:hover { transform: translateY(-2px); }
.vp-seg input:checked + label { background: var(--pine); border-color: var(--pine-deep); color: #fff; box-shadow: 4px 4px 0 var(--sage-line); }
.vp-seg input:focus-visible + label { outline: 3px solid var(--apricot); outline-offset: 2px; }
.vp-slider-row { display: flex; align-items: center; gap: 1.2rem; margin: .5rem 0 1.6rem; }
.vp-slider-row output {
  font-family: var(--font-display); font-weight: 800; font-size: 1.85rem; color: var(--pine);
  min-width: 4.6ch; text-align: center; flex: none; letter-spacing: -.01em;
}
input[type="range"].vp-range {
  flex: 1; appearance: none; -webkit-appearance: none;
  height: 16px; min-height: 16px; /* überschreibt .field input { min-height: 54px } */
  border-radius: 10px;
  border: 1.5px solid var(--ink); box-sizing: border-box; margin: 0; padding: 0;
  /* --fill wird per JS als calc() gesetzt und berücksichtigt die Daumenbreite */
  background: linear-gradient(90deg, var(--pine) 0, var(--pine) var(--fill, 50%), var(--white) var(--fill, 50%));
  outline-offset: 4px; cursor: grab;
}
input[type="range"].vp-range:active { cursor: grabbing; }
input[type="range"].vp-range::-webkit-slider-runnable-track { background: transparent; height: 100%; }
input[type="range"].vp-range::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none; width: 32px; height: 32px; border-radius: 50%;
  background: var(--apricot); border: 3px solid var(--ink);
  box-shadow: 0 0 0 3px var(--paper), 0 3px 8px rgba(19,32,25,.35);
  margin-top: -9.5px; /* (32 - 13) / 2 — zentriert auf der 16px-Spur (13px Innenhöhe) */
  cursor: grab;
}
input[type="range"].vp-range::-moz-range-track { background: transparent; height: 100%; }
input[type="range"].vp-range::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: var(--apricot);
  border: 3px solid var(--ink); box-shadow: 0 0 0 3px var(--paper), 0 3px 8px rgba(19,32,25,.35);
  cursor: grab;
}
.vp-result {
  background: var(--pine-night); color: #DFEDE4; border: 2px solid var(--ink);
  border-radius: var(--radius-sm); padding: 1.6rem 1.7rem; margin-top: 1.4rem; overflow: hidden; position: relative;
}
.vp-result::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vp-result > * { position: relative; }
.vp-result .big {
  font-family: var(--font-display); font-weight: 800; font-stretch: 84%;
  font-size: clamp(1.9rem, 3.8vw, 2.7rem); color: var(--gold); line-height: 1.08; display: block; margin: .2rem 0 .6rem; letter-spacing: -.015em;
}
.vp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1rem 0 .4rem; }
@media (max-width: 640px) { .vp-stats { grid-template-columns: 1fr; } }
.vp-stats b { display: block; font-family: var(--font-display); font-weight: 800; font-stretch: 80%; font-size: clamp(1.7rem, 3.2vw, 2.4rem); line-height: 1.05; color: var(--gold); letter-spacing: -.015em; }
.vp-stats span { display: block; margin-top: .3rem; font-size: .9rem; font-weight: 600; color: #9DB8AC; }
.vp-result .btn { margin-top: 1.2rem; }
.vp-result ul { list-style: none; margin: .9rem 0 0; padding: 0; display: grid; gap: .55rem; }
.vp-result li { display: flex; gap: .6rem; align-items: flex-start; font-size: 1.01rem; }
.vp-result li svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: .15rem; }
.vp-disclaimer { font-size: .87rem; color: var(--ink-soft); margin-top: 1rem; }
.vp-result .vp-disclaimer { color: #8FAA9D; }
.vp-check-q { display: grid; gap: 1rem; }
.vp-check-q .field label { font-size: 1.03rem; }
.check-result { display: none; border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; margin-top: 1.2rem; font-weight: 600; border: 1.5px solid var(--ink); }
.check-result.ok { display: block; background: #E0F2E4; color: #14532D; }
.check-result.warn { display: block; background: #FFF3EA; color: #8a4a1f; }
.check-result p { margin: 0 0 .4rem; } .check-result p:last-child { margin: 0; }
