/* Webwerk Emsland – gemeinsames Stylesheet
   Schriften lokal gehostet (keine Verbindung zu Google). Lizenz: SIL Open Font License. */

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --petrol: #0E3B43;
  --petrol-2: #155E63;
  --sand: #F4EEE3;
  --sand-2: #EAE1D1;
  --paper: #FFFDF8;
  --signal: #E8622C;
  --ink: #1A1D1E;
  --moss: #7A8F5A;
  --muted: #4A5052;          /* 7:1 auf Sand */
  --on-petrol: #F4EEE3;
  --on-petrol-muted: #C9D3CF; /* > 7:1 auf Petrol */
  --line: rgba(14, 59, 67, .14);

  --font-head: "Bricolage Grotesque", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(14, 59, 67, .06), 0 8px 24px -8px rgba(14, 59, 67, .18);
  --wrap: 1160px;
  --gutter: 20px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--petrol);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 7.4vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 4.6vw, 3rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
p, li { text-wrap: pretty; }

a { color: var(--petrol-2); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--petrol); text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
  border-radius: 6px;
}
.on-petrol :focus-visible, .site-footer :focus-visible { outline-color: #FFB38F; }

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

.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 100;
  background: var(--petrol); color: #fff; padding: 12px 18px; border-radius: 10px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(64px, 10vw, 120px) 0; }
.section--paper { background: var(--paper); }
.section--petrol { background: var(--petrol); color: var(--on-petrol); }
.section--petrol h2, .section--petrol h3 { color: #fff; }
.section--petrol a { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-size: .8125rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--petrol-2); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--signal); flex: none;
}
.section--petrol .eyebrow { color: var(--on-petrol-muted); }

.lead { font-size: clamp(1.125rem, 2.2vw, 1.3rem); color: var(--muted); max-width: 40em; }
.section--petrol .lead { color: var(--on-petrol-muted); }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }

/* Buttons – weiße Schrift auf Signal nur groß & fett (AA für große Schrift) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 52px; padding: 12px 24px;
  font-family: var(--font-body); font-size: 1.1875rem; font-weight: 700; line-height: 1.2;
  border-radius: 999px; border: 2px solid transparent; text-decoration: none; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s, transform .15s;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn--signal { background: var(--signal); color: #fff; }
.btn--signal:hover { background: #D5521E; color: #fff; }
.btn--petrol { background: var(--petrol); color: #fff; }
.btn--petrol:hover { background: var(--petrol-2); color: #fff; }
.btn--ghost { background: transparent; color: var(--petrol); border-color: var(--petrol); }
.btn--ghost:hover { background: var(--petrol); color: #fff; }
.btn--light { background: var(--sand); color: var(--petrol); }
.btn--light:hover { background: #fff; color: var(--petrol); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 238, 227, .92);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--petrol);
  flex: none;
}
.brand:hover { color: var(--petrol); }
.brand svg { width: 38px; height: 38px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em; }
.brand-sub { font-size: .625rem; font-weight: 600; letter-spacing: .32em; margin-top: 3px; color: var(--muted); }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--paper); color: var(--petrol); cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-cta { min-height: 46px; padding: 8px 16px; font-size: 1.1875rem; white-space: nowrap; }
.header-cta .cta-long, .header-cta .cta-mid { display: none; }

.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; text-decoration: none; color: var(--ink); font-weight: 500;
  padding: 12px 4px; border-radius: 8px;
}
.site-nav a:hover { color: var(--petrol-2); }

/* Mobile: Navigation als Panel (nur wenn JS läuft; ohne JS bleibt sie sichtbar) */
.js .site-nav {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--sand); border-bottom: 1px solid var(--line);
  padding: 8px var(--gutter) 20px; display: none;
  box-shadow: 0 16px 24px -16px rgba(14, 59, 67, .25);
}
.js .site-nav.is-open { display: block; }
.site-nav li + li { border-top: 1px solid var(--line); }
html:not(.js) .nav-toggle { display: none; }
html:not(.js) .header-inner { flex-wrap: wrap; }
html:not(.js) .site-nav { order: 3; width: 100%; }
html:not(.js) .site-nav ul { display: flex; flex-wrap: wrap; gap: 0 16px; }
html:not(.js) .site-nav li + li { border: 0; }

@media (max-width: 400px) {
  .brand svg { width: 34px; height: 34px; }
  .brand-name { font-size: 1.2rem; }
}
@media (min-width: 480px) {
  .header-cta .cta-short { display: none; }
  .header-cta .cta-mid { display: inline; }
}
@media (min-width: 1180px) {
  .header-cta .cta-mid { display: none; }
  .header-cta .cta-long { display: inline; }
}
@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .js .site-nav, .site-nav {
    position: static; display: block; background: none; border: 0; padding: 0; box-shadow: none;
  }
  .site-nav ul { display: flex; gap: 2px; }
  .site-nav li + li { border: 0; }
  .site-nav a { padding: 8px 12px; font-size: .96rem; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 7vw, 88px) 0 clamp(56px, 8vw, 104px); position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: .4em; }
.hero h1 .accent { display: block; color: var(--petrol-2); font-size: .74em; margin-top: .25em; line-height: 1.1; }
.hero h1 .dot { color: var(--signal); }
.hero .lead { margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2rem; }
.hero-ctas .btn { flex: 1 1 auto; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px 24px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; }
.checks svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--moss); }

@media (min-width: 560px) {
  .checks { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn { flex: 0 0 auto; }
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 64px; }
}

/* Handy-Mock im Hero */
.hero-visual { position: relative; display: flex; justify-content: center; padding: 8px 0 24px; isolation: isolate; }
.hero-visual::before {
  content: ""; position: absolute; z-index: -1; width: min(88%, 460px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #DDE6D3 0%, var(--sand-2) 55%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.phone {
  position: relative; width: min(270px, 70vw); aspect-ratio: 9 / 17;
  background: #0B1416; border-radius: 40px; padding: 11px; box-shadow: 0 30px 60px -20px rgba(14, 59, 67, .5);
  transform: rotate(-3deg);
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 30px; overflow: hidden; background: #FBF5EC;
  display: flex; flex-direction: column; font-size: 11px; color: #3B2A20;
}
.ps-bar { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px 8px; font-weight: 700; }
.ps-bar span:last-child { width: 18px; height: 2px; background: currentColor; box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor; }
.ps-hero {
  margin: 4px 10px 0; border-radius: 16px; padding: 18px 14px; color: #fff; min-height: 150px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.18) 0 22%, transparent 23%),
    linear-gradient(160deg, #7A4B34, #3B2A20);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.ps-hero b { font-family: var(--font-head); font-size: 20px; line-height: 1.05; letter-spacing: -.02em; }
.ps-hero small { opacity: .85; margin-top: 4px; }
.ps-open { margin: 10px 10px 0; display: flex; align-items: center; gap: 6px; font-weight: 600; }
.ps-open i { width: 7px; height: 7px; border-radius: 50%; background: #3F9A5B; }
.ps-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin: 10px; }
.ps-actions span { border-radius: 10px; padding: 9px 6px; text-align: center; font-weight: 700; background: #EFE4D3; }
.ps-actions span:first-child { background: #B5452B; color: #fff; }
.ps-lines { margin: 4px 12px; display: grid; gap: 6px; }
.ps-lines i { height: 7px; border-radius: 4px; background: #E8DCC8; }
.ps-lines i:nth-child(2) { width: 80%; } .ps-lines i:nth-child(3) { width: 60%; }
.float-card {
  position: absolute; background: var(--paper); border-radius: 14px; box-shadow: var(--shadow);
  padding: 10px 14px; font-size: .875rem; font-weight: 600; color: var(--petrol);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.float-card small { display: block; font-weight: 500; color: var(--muted); font-size: .75rem; }
.float-card .badge-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--signal); flex: none; }
.float-card--a { left: 0; top: 60%; }
.float-card--b { right: 0; bottom: 8%; }
@media (min-width: 560px) { .float-card--a { left: 6%; } .float-card--b { right: 6%; } }

/* ---------- Problem ---------- */
.problem-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .problem-grid { grid-template-columns: 1fr 1fr; gap: 72px; } }
.stat-big {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -.04em; line-height: .9;
  font-size: clamp(4.5rem, 16vw, 8.5rem); color: var(--petrol); margin: .15em 0 0;
}
.stat-big span { color: var(--signal); }
.stat-caption { font-size: clamp(1.2rem, 2.6vw, 1.5rem); font-weight: 600; color: var(--petrol); margin: 14px 0 8px; line-height: 1.35; }
.source { font-size: .875rem; color: var(--muted); }
.dots {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 7px; max-width: 360px; margin-top: 28px;
}
.dots i { aspect-ratio: 1; border-radius: 50%; background: var(--petrol); opacity: .22; }
.dots i.off { background: var(--signal); opacity: 1; }
.dots-legend { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .875rem; color: var(--muted); margin-top: 12px; }
.dots-legend span { display: inline-flex; align-items: center; gap: 6px; }
.dots-legend span::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--signal); }
.dots-legend span + span::before { background: var(--petrol); opacity: .22; }

.pain-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.pain-list li {
  background: var(--paper); border-radius: var(--radius-sm); padding: 16px 18px;
  border-left: 4px solid var(--signal); box-shadow: 0 1px 2px rgba(14,59,67,.06);
}
.pain-list strong { display: block; color: var(--petrol); }

/* ---------- Ablauf ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: step; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  position: relative; background: var(--paper); border-radius: var(--radius); padding: 28px 24px 26px;
  box-shadow: var(--shadow); counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; letter-spacing: -.04em;
  color: var(--signal); display: block; line-height: 1; margin-bottom: 18px;
}
.step h3 { margin-bottom: .45em; }
.step p { color: var(--muted); margin: 0; font-size: 1rem; }
.step .tag {
  display: inline-block; margin-top: 16px; font-size: .8125rem; font-weight: 600;
  background: var(--sand); color: var(--petrol); padding: 5px 10px; border-radius: 999px;
}

/* ---------- Pakete ---------- */
.plans { display: grid; gap: 18px; align-items: stretch; }
@media (min-width: 760px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan {
  display: flex; flex-direction: column; background: var(--paper); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); border: 2px solid transparent; position: relative;
}
.plan--pilot { border-color: var(--signal); }
.plan--featured { background: var(--petrol); color: var(--on-petrol); }
.plan--featured h3, .plan--featured .price { color: #fff; }
.plan--featured .plan-desc, .plan--featured .price small { color: var(--on-petrol-muted); }
.plan--featured .features svg { color: #B7CB95; }
.plan-badge {
  align-self: flex-start; font-size: .8125rem; font-weight: 700; letter-spacing: .02em;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 16px;
  background: var(--sand); color: var(--petrol);
}
.plan--pilot .plan-badge { background: #FBE3D8; color: #8A3210; }
.plan--featured .plan-badge { background: rgba(255,255,255,.12); color: #fff; }
.plan h3 { font-size: 1.5rem; margin-bottom: .25em; }
.price {
  font-family: var(--font-head); font-weight: 800; font-size: 2.75rem; letter-spacing: -.03em;
  color: var(--petrol); line-height: 1; margin: 10px 0 4px;
}
.price small { font-family: var(--font-body); font-size: .9375rem; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.plan-desc { color: var(--muted); font-size: 1rem; margin: 10px 0 18px; }
.features { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; font-size: 1rem; }
.features li { display: flex; gap: 10px; }
.features svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--moss); }
.plan .btn { margin-top: auto; width: 100%; }

.care {
  margin-top: 18px; display: grid; gap: 20px; align-items: center;
  background: var(--paper); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
  border: 2px dashed rgba(14,59,67,.25);
}
@media (min-width: 860px) { .care { grid-template-columns: auto 1fr auto; gap: 36px; padding: 28px 32px; } }
.care h3 { margin: 0; font-size: 1.5rem; }
.care .price { margin: 6px 0 0; font-size: 2.25rem; }
.care ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.care li { background: var(--sand); color: var(--petrol); font-weight: 500; font-size: .9375rem; padding: 6px 12px; border-radius: 999px; }
.care-term { font-size: .9375rem; color: var(--muted); }
.tax-note {
  margin-top: 22px; font-size: .9375rem; color: var(--muted); display: flex; gap: 10px; align-items: flex-start;
}
.tax-note svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--petrol-2); }

/* ---------- Mehrwert / Monatsbericht ---------- */
.value-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 960px) { .value-grid { grid-template-columns: 1fr 1.05fr; gap: 72px; } }
.metric-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 18px; }
.metric-list li { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
.metric-icon {
  width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,.1);
  display: grid; place-items: center; color: #fff;
}
.metric-icon svg { width: 24px; height: 24px; }
.metric-list strong { display: block; color: #fff; font-size: 1.125rem; }
.metric-list span { color: var(--on-petrol-muted); font-size: 1rem; }

.report {
  background: var(--paper); color: var(--ink); border-radius: 22px; padding: 22px;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.45);
}
@media (min-width: 560px) { .report { padding: 28px; } }
.report-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.report-title { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--petrol); line-height: 1.1; }
.report-title small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .875rem; color: var(--muted); margin-top: 4px; letter-spacing: 0; }
.example-badge {
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #8A3210; background: #FBE3D8; border: 1px solid #F2B9A0; border-radius: 6px; padding: 5px 8px;
}
.tiles { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 440px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile { background: var(--sand); border-radius: 14px; padding: 14px 14px 12px; }
.tile-label { font-size: .8125rem; font-weight: 600; color: var(--muted); }
.tile-value { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--petrol); line-height: 1.05; letter-spacing: -.03em; }
.tile-delta { font-size: .8125rem; font-weight: 600; color: #3E5A22; display: inline-flex; align-items: center; gap: 4px; }
.tile-delta svg { width: 12px; height: 12px; }
.report-note {
  margin: 16px 0 0; padding: 14px 16px; border-radius: 12px; background: #EEF2E8; color: #2F3E1E; font-size: .9375rem;
}
.report-foot { margin: 14px 0 0; font-size: .8125rem; color: var(--muted); }

/* ---------- Musterprojekte ---------- */
.cards { display: grid; gap: 20px; }
@media (min-width: 760px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  display: flex; flex-direction: column; background: var(--paper); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: var(--ink);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(14,59,67,.08), 0 18px 36px -12px rgba(14,59,67,.3); color: var(--ink); text-decoration: none; }
.card-thumb { aspect-ratio: 16 / 10; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 18px; }
.card-thumb b { position: relative; font-size: 1.6rem; line-height: 1; letter-spacing: -.02em; }
.thumb-cafe { background: radial-gradient(circle at 76% 34%, #E9B872 0 15%, transparent 16%), linear-gradient(215deg, #B5452B 0 40%, #FBF5EC 40%); color: #3B2A20; }
.thumb-cafe b { font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
.thumb-tischlerei {
  background:
    repeating-linear-gradient(95deg, rgba(0,0,0,.06) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, #C79A5B, #8C6239);
  color: #fff;
}
.thumb-tischlerei b { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; letter-spacing: .02em; font-size: 1.4rem; text-shadow: 0 2px 10px rgba(0,0,0,.25); }
.thumb-friseur { background: linear-gradient(90deg, #F7EFEA 0 62%, #1C1A1A 62%); color: #1C1A1A; }
.thumb-friseur::after { content: ""; position: absolute; right: 12%; top: 18%; width: 22%; aspect-ratio: 1; border-radius: 50%; background: #E9C9C0; }
.thumb-friseur b { font-family: Georgia, serif; font-style: italic; font-weight: 400; font-size: 1.8rem; }
.card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.card-kicker { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.card-body h3 { margin: 8px 0 6px; }
.card-body p { color: var(--muted); font-size: 1rem; margin-bottom: 16px; }
.card-link { margin-top: auto; font-weight: 700; color: var(--petrol); display: inline-flex; gap: 6px; align-items: center; }
.card-link svg { width: 18px; height: 18px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(3px); }
.honest-note {
  margin-top: 24px; font-size: .9375rem; color: var(--muted); max-width: 720px;
}

/* ---------- Über mich ---------- */
.about { display: grid; gap: 40px; align-items: center; }
@media (min-width: 900px) { .about { grid-template-columns: .8fr 1.2fr; gap: 72px; } }
.about-visual {
  position: relative; border-radius: 28px; background: var(--petrol); aspect-ratio: 4 / 4.2;
  overflow: hidden; display: grid; place-items: center; max-width: 420px; width: 100%; margin: 0 auto;
}
@media (max-width: 899px) { .about-visual { aspect-ratio: 16 / 10; max-width: none; } }
.about-visual svg.fields { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-pin {
  position: relative; background: var(--paper); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; color: var(--petrol); font-weight: 700;
}
.about-pin svg { width: 40px; height: 40px; }
.about-pin small { display: block; font-weight: 500; color: var(--muted); }
.about-text p:not(.eyebrow) { font-size: 1.0625rem; }
.promise { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.promise li { display: flex; gap: 10px; }
.promise svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--signal); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq details {
  background: var(--paper); border-radius: 14px; margin-bottom: 10px; box-shadow: 0 1px 2px rgba(14,59,67,.06);
  border: 1px solid var(--line);
}
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 56px 18px 20px; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--petrol); letter-spacing: -.01em;
  border-radius: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 22px; height: 22px; margin-top: -11px;
  background:
    linear-gradient(var(--petrol), var(--petrol)) center / 14px 2px no-repeat,
    linear-gradient(var(--petrol), var(--petrol)) center / 2px 14px no-repeat;
  border-radius: 50%; transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 20px 20px; color: var(--ink); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------- Kontakt ---------- */
.contact { display: grid; gap: 40px; }
@media (min-width: 900px) { .contact { grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; } }
.contact-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; padding: 24px;
}
.contact-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.contact-lines a {
  display: flex; gap: 14px; align-items: center; padding: 14px 8px; border-radius: 12px; text-decoration: none; color: #fff;
  overflow-wrap: anywhere;
}
.contact-lines a:hover { background: rgba(255,255,255,.08); color: #fff; }
.contact-lines .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.1); display: grid; place-items: center; flex: none; }
.contact-lines svg { width: 22px; height: 22px; }
.contact-lines small { display: block; color: var(--on-petrol-muted); font-size: .8125rem; font-weight: 500; }
.contact-lines strong { font-size: 1.0625rem; }
.contact-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.contact-cta .btn { width: 100%; }
@media (min-width: 560px) { .contact-cta .btn { width: auto; } }
.contact-cta small { color: var(--on-petrol-muted); font-size: .875rem; }
.area { margin-top: 20px; font-size: .9375rem; color: var(--on-petrol-muted); }

/* ---------- Footer ---------- */
.site-footer { background: #0A2D33; color: var(--on-petrol-muted); padding: 48px 0 36px; font-size: .9375rem; }
.footer-inner { display: grid; gap: 28px; }
@media (min-width: 760px) { .footer-inner { grid-template-columns: 1fr auto; align-items: end; } }
.site-footer .brand { color: #fff; }
.site-footer .brand-sub { color: var(--on-petrol-muted); }
.site-footer a { color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 22px; }
.footer-links a { display: inline-block; padding: 6px 0; }
.footer-meta { margin-top: 14px; }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; }

/* ---------- Rechtstexte ---------- */
.legal { padding: clamp(40px, 7vw, 80px) 0 clamp(64px, 9vw, 110px); }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); }
.legal h2 { font-size: clamp(1.35rem, 3vw, 1.7rem); margin-top: 2em; }
.legal h3 { font-size: 1.125rem; margin-top: 1.5em; }
.legal address { font-style: normal; white-space: pre-line; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: .35em; }
.legal .muted { color: var(--muted); font-size: .9375rem; }
.note-box {
  background: #FFF4D6; border: 2px solid #D9A400; color: #3D2E00; border-radius: 14px;
  padding: 16px 18px 16px 18px; margin: 20px 0 32px; font-size: .9375rem;
}
.note-box strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.note-box ul { margin: 8px 0 0; }
.note-box p:last-child { margin-bottom: 0; }
.back-link { display: inline-flex; gap: 6px; align-items: center; font-weight: 600; margin-bottom: 24px; }
.back-link svg { width: 18px; height: 18px; }

.legal { overflow-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; }
.legal h1, .legal h2 { -webkit-hyphens: manual; hyphens: manual; }
