/* ============================================================
   Kanzlei Natterodt — kanzlei-natterodt.de
   Jaguargrün · Messing · Papierweiß — Mobile First
   ============================================================ */

/* ---------- Fonts (self-hosted, DSGVO) ---------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --green: #0B3D2E;         /* Jaguargrün, Primär */
  --green-dark: #072B20;    /* dunkler Grund */
  --green-tint: #EDF2EE;    /* helle grüne Sektion */
  --paper: #FAF8F3;         /* warmes Papierweiß */
  --paper-dark: #F2EFE8;
  --brass: #B08D57;         /* Messing-Akzent — Linien, Rahmen, Flächen */
  --brass-text: #856232;    /* Messing für kleine Schrift auf hellem Grund (WCAG AA: 5.2:1) */
  --brass-light: #C9A97C;   /* Messing auf dunklem Grund (6.9:1 auf Jaguargrün) */
  --brass-pale: #E8DCC8;
  --text: #222B27;
  --text-muted: #5C6862;
  --text-on-dark: #E9EDE9;
  --text-on-dark-muted: #A9BCB2;
  --white: #FFFFFF;
  --radius: 4px;
  --shadow: 0 12px 34px rgba(7, 43, 32, .12);
  --shadow-soft: 0 4px 16px rgba(7, 43, 32, .08);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --header-h: 68px;
  /* Notch/Dynamic Island: bei viewport-fit=cover liefert env() die Höhe der
     Statusleiste, sonst 0. Der Header schiebt sich entsprechend nach unten. */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--safe-top) + 12px);
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--green); text-decoration-color: var(--brass); text-underline-offset: 3px; }
a:hover { color: var(--brass); }
ul { list-style: none; }
::selection { background: var(--brass-pale); color: var(--green-dark); }

h1, h2, h3 { font-family: var(--font-head); color: var(--green-dark); line-height: 1.22; }
h1 { font-size: clamp(2rem, 6.4vw, 3.4rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.55rem, 4.4vw, 2.3rem); font-weight: 700; margin-bottom: .7rem; }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); font-weight: 600; }
p { margin-bottom: 1em; }
strong { font-weight: 600; }

.container { width: min(100% - 2.5rem, 1120px); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 780px); margin-inline: auto; }

/* Messing-Auszeichnung über Überschriften */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-text);
  margin-bottom: 1rem;
}
.kicker::before { content: ''; width: 2.2rem; height: 1px; background: var(--brass); }
/* Auf dunklem Grund kehrt sich das Verhältnis um: heller Ton, gleicher Effekt */
.section-dark .kicker, .page-hero .kicker { color: var(--brass-light); }
.section-dark .kicker::before, .page-hero .kicker::before { background: var(--brass-light); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  display: flex;
  align-items: center;
  background: rgba(250, 248, 243, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 61, 46, .08);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img.mark { height: 40px; width: auto; }
.brand img.word { height: 15px; width: auto; }

/* Burger */
.nav-toggle {
  appearance: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  position: relative;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* Nav: Mobile Overlay.
   visibility:hidden ist Pflicht: translateY(-115%) allein lässt die unteren
   ~20px des Overlays oben in den Viewport ragen (Overlay startet erst unter
   dem Header, verschiebt sich aber nur um die eigene Höhe) — das verdeckte
   auf Handys die Logo-Oberkante. */
.nav {
  position: fixed;
  inset: calc(var(--header-h) + var(--safe-top)) 0 auto 0;
  background: var(--paper);
  border-bottom: 1px solid rgba(11, 61, 46, .1);
  padding: 1rem 1.25rem 1.5rem;
  transform: translateY(-115%);
  visibility: hidden;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), visibility 0s .35s;
  box-shadow: var(--shadow);
}
.nav-open .nav { transform: translateY(0); visibility: visible; transition-delay: 0s; }
.nav a {
  display: block;
  padding: .8rem .25rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--green-dark);
  border-bottom: 1px solid rgba(11, 61, 46, .07);
}
.nav a:last-child { border-bottom: 0; }
.nav a.active { color: var(--brass); }
.nav a.nav-cta {
  margin-top: .75rem;
  text-align: center;
  background: var(--green);
  color: var(--paper);
  border-radius: var(--radius);
  border-bottom: 0;
  padding: .8rem 1rem;
}
.nav a.nav-cta:hover { background: var(--green-dark); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(176, 141, 87, .16), transparent 60%),
    radial-gradient(900px 600px at -15% 110%, rgba(233, 237, 233, .07), transparent 55%),
    linear-gradient(160deg, var(--green-dark) 0%, var(--green) 68%, #0E4636 100%);
  color: var(--text-on-dark);
  padding: calc(var(--header-h) + var(--safe-top) + 4rem) 0 4.5rem;
  overflow: hidden;
}
/* feine Pinstripes als Textur */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .022) 0 1px, transparent 1px 9px);
  pointer-events: none;
}
/* Portrait als angedeutetes Duotone hinter dem Text: grayscale nimmt dem
   Backstein das Rot, der Schleier in ::after legt das Grün darüber.
   Kein object-fit:cover — das Bild hängt rechts in voller Hero-Höhe mit
   festem Seitenverhältnis, damit das Gesicht bei jeder Fenstergröße komplett
   sichtbar bleibt und nie nur die Augenpartie übrig ist. Die linke Kante
   blendet per Maske weich ins Grün. */
.hero-portrait {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  filter: grayscale(1);
  opacity: .5;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40%);
  pointer-events: none;
}
/* Grüner Schleier über dem Portrait — links satt, damit der Text auf
   ruhigem Grund steht, nach rechts öffnet sich das Bild */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 43, 32, .93) 0%, rgba(7, 43, 32, .72) 45%, rgba(11, 61, 46, .34) 100%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); max-width: 17ch; }
.hero h1 em { font-style: italic; color: var(--brass-light); }
.hero .lead {
  margin: 1.4rem 0 2.2rem;
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  color: var(--text-on-dark);
  max-width: 46ch;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.6rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(233, 237, 233, .18);
  font-size: .88rem;
  color: var(--text-on-dark-muted);
}
.hero-meta strong { color: var(--text-on-dark); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.7rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brass); color: var(--green-dark); }
.btn-primary:hover { background: var(--brass-light); color: var(--green-dark); }
.btn-outline { background: transparent; color: var(--paper); border-color: rgba(250, 248, 243, .45); }
.btn-outline:hover { border-color: var(--brass-light); color: var(--brass-light); }
.btn-green { background: var(--green); color: var(--paper); }
.btn-green:hover { background: var(--green-dark); color: var(--paper); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Sektionen ---------- */
.section { padding: 4rem 0; }
.section-tint { background: var(--green-tint); }
.section-dark { background: linear-gradient(165deg, var(--green-dark), var(--green)); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { max-width: 640px; margin-bottom: 2.4rem; }

/* ---------- Karten ---------- */
.card-grid { display: grid; gap: 1.2rem; }
.card {
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, .09);
  border-top: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .6rem; }
.card ul { margin: .9rem 0 1.2rem; }
.card ul li { padding: .32rem 0 .32rem 1.4rem; position: relative; color: var(--text-muted); }
.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .78em;
  width: .55rem;
  height: 1px;
  background: var(--brass);
}
.card .card-link { font-weight: 600; text-decoration: none; }
.card .card-link::after { content: ' →'; color: var(--brass); }

/* Ergänzender Hinweis unter den Schwerpunkt-Karten (Strafrecht) */
.zusatz-hinweis {
  margin: 1.6rem 0 0;
  padding: 1.1rem 1.3rem;
  background: var(--paper-dark);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--text-muted);
}
.zusatz-hinweis strong { color: var(--green-dark); }
.zusatz-hinweis a { font-weight: 600; white-space: nowrap; }

/* ---------- Über mich / Portrait ---------- */
.profil { display: grid; gap: 2rem; align-items: center; }
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  z-index: 0;
}
.portrait-frame picture { display: block; position: relative; z-index: 1; }
.portrait-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Merkmale (Arbeitsweise) ---------- */
.feature-row { display: grid; gap: 1.6rem; }
.feature { padding-left: 1.15rem; border-left: 2px solid var(--brass); }
.feature h3 { margin-bottom: .35rem; font-size: 1.1rem; }
.feature p { color: var(--text-muted); margin: 0; }
.section-dark .feature p { color: var(--text-on-dark-muted); }
.section-dark .feature { border-left-color: var(--brass-light); }

/* ---------- Standorte ---------- */
.standort-grid { display: grid; gap: 1.2rem; }
.standort {
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, .09);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.standort-body { padding: 1.6rem; }
.standort h3 { display: flex; align-items: baseline; gap: .6rem; }
.standort .ort-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-text);
}
.standort address { font-style: normal; margin: .7rem 0; }
.standort .tel { font-weight: 600; text-decoration: none; }
.standort .zeiten { font-size: .88rem; color: var(--text-muted); margin-top: .7rem; }

/* 2-Klick-Maps */
.map-consent {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(45deg, rgba(11, 61, 46, .04) 0 2px, transparent 2px 14px),
    var(--green-tint);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}
.map-consent p { font-size: .82rem; color: var(--text-muted); margin: 0 0 .8rem; max-width: 42ch; }
.map-consent iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--white);
  border: 1px solid rgba(11, 61, 46, .1);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-weight: 600;
  color: var(--green-dark);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--brass);
  transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details[open] summary { border-bottom: 1px solid rgba(11, 61, 46, .08); }
.faq .faq-body { padding: 1rem 1.3rem 1.2rem; color: var(--text-muted); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Rechtsgebiets-Seiten ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: var(--text-on-dark);
  padding: calc(var(--header-h) + var(--safe-top) + 3rem) 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .02) 0 1px, transparent 1px 9px);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); max-width: 22ch; }
.page-hero .lead { margin-top: 1.2rem; max-width: 60ch; color: var(--text-on-dark); }
.breadcrumb { font-size: .82rem; margin-bottom: 1.4rem; color: var(--text-on-dark-muted); }
.breadcrumb a { color: var(--text-on-dark-muted); }
.breadcrumb a:hover { color: var(--brass-light); }

.topic { padding: 2.6rem 0 0; }
.topic:last-of-type { padding-bottom: 1rem; }
.topic h2 { margin-bottom: .9rem; }
.topic p { max-width: 70ch; }
.topic .cta-line { margin-top: 1.1rem; }
.topic .cta-line a { font-weight: 600; }

/* ---------- Kontakt / Formular ---------- */
.kontakt-grid { display: grid; gap: 2.4rem; }
.kontakt-direkt li { padding: .45rem 0; }
.kontakt-direkt a { font-weight: 600; }
.kontakt-direkt .label {
  display: block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass-text);
}

.form-grid { display: grid; gap: 1rem; }
.form-field label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  margin-bottom: .3rem;
  color: var(--green-dark);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid rgba(11, 61, 46, .22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 61, 46, .12);
}
.form-check { display: flex; gap: .6rem; align-items: flex-start; font-size: .86rem; color: var(--text-muted); }
.form-check input { margin-top: .3rem; accent-color: var(--green); }
.form-note { font-size: .8rem; color: var(--text-muted); }

/* Honeypot: unsichtbar für Menschen */
.hnpt { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-banner {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.form-banner.show { display: block; }
.form-banner.success { background: #E4EFE7; border: 1px solid #9DBFA8; color: #14532D; }
.form-banner.error { background: #F8E8E4; border: 1px solid #D9A79A; color: #7C2D12; }

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + var(--safe-bottom));
  z-index: 90;
  background: var(--green);
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  padding: .8rem 1.3rem;
  border-radius: 999px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .25s ease;
}
.floating-cta.visible { opacity: 1; transform: none; pointer-events: auto; }
.floating-cta:hover { background: var(--green-dark); color: var(--paper); }

/* ---------- Footer ---------- */
.footer {
  background: var(--green-dark);
  color: var(--text-on-dark-muted);
  padding: 3rem 0 2rem;
  font-size: .9rem;
}
.footer a { color: var(--text-on-dark); text-decoration: none; }
.footer a:hover { color: var(--brass-light); }
.footer-grid { display: grid; gap: 2rem; margin-bottom: 2.2rem; }
.footer h3 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: .8rem;
}
.footer address { font-style: normal; }
.footer .brandline { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.footer .brandline img { height: 34px; width: auto; filter: brightness(0) invert(.92); }
.footer .brandline img.word { height: 15px; }
.footer-bottom {
  border-top: 1px solid rgba(233, 237, 233, .14);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  justify-content: space-between;
}
.footer-legal { display: flex; gap: 1.4rem; }

/* ---------- Rechtsseiten (Impressum, Datenschutz) ---------- */
.legal-content {
  width: min(100% - 2.5rem, 780px);
  margin-inline: auto;
  padding: calc(var(--header-h) + var(--safe-top) + 3rem) 0 4rem;
}
.legal-content h1 { margin-bottom: 1.6rem; }
.legal-content h2 { font-size: 1.3rem; margin: 2.2rem 0 .7rem; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1em; }
.legal-content ul li { margin: .3rem 0; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn, .nav { transition: none; }
}

/* ============================================================
   Tablet / Desktop
   ============================================================ */
@media (min-width: 768px) {
  :root { --header-h: 76px; }
  .brand img.mark { height: 44px; }
  .brand img.word { height: 17px; }

  .nav-toggle { display: none; }
  .nav {
    position: static;
    transform: none;
    visibility: visible;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.6rem;
  }
  .nav a { border: 0; padding: .4rem 0; position: relative; }
  .nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
  }
  .nav a:not(.nav-cta):hover::after, .nav a.active:not(.nav-cta)::after { transform: scaleX(1); }
  .nav a.nav-cta { margin: 0; padding: .6rem 1.2rem; }

  .hero { padding: calc(var(--header-h) + var(--safe-top) + 6rem) 0 6.5rem; }
  .hero-portrait { opacity: .44; }
  .section { padding: 5.5rem 0; }

  .card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card { padding: 2.2rem 2rem; }

  .profil { grid-template-columns: 340px 1fr; gap: 3.5rem; }
  .feature-row { grid-template-columns: repeat(3, 1fr); gap: 2.2rem; }
  .standort-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 5fr 7fr; gap: 3.5rem; }
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .form-grid.two .form-field.full, .form-grid.two .form-check, .form-grid.two .form-actions { grid-column: 1 / -1; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .floating-cta { right: 1.6rem; bottom: calc(1.6rem + var(--safe-bottom)); }
}

@media (min-width: 1080px) {
  .hero h1 { max-width: 19ch; }
}
