/* =========================================================
   Sachverständigenbüro Stephan Ohm – Stylesheet
   Modern, seriös, responsiv. Eine zentrale Stildatei.
   ========================================================= */

/* Lokal eingebundene Schriften – keine Verbindung zu Google-Servern (DSGVO) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/source-serif-4-latin.woff2') format('woff2');
}

:root {
  /* Farbwelt – Navy/Slate, edler Messing-Akzent */
  --navy-900: #0a1f3c;
  --navy-800: #0d2747;
  --navy-700: #143458;
  --navy-600: #1d4575;
  --accent:   #b8924a;   /* gedämpftes Messing/Gold – Seriosität */
  --accent-600:#a37f3a;
  --accent-soft:#f3ead9;
  --link:     #1d5fb0;   /* sachliches Blau für Textlinks */

  --ink:      #16202e;   /* Haupttext */
  --ink-soft: #475569;   /* Sekundärtext */
  --muted:    #6b7688;
  --line:     #e4e8ee;
  --line-soft:#eef1f5;

  --bg:       #ffffff;
  --bg-soft:  #f6f8fb;
  --bg-tint:  #f1f5f9;

  --white:    #ffffff;

  --radius:   14px;
  --radius-sm:10px;
  --radius-lg:22px;
  --shadow-sm: 0 1px 2px rgba(13,39,71,.06), 0 2px 8px rgba(13,39,71,.05);
  --shadow:    0 4px 14px rgba(13,39,71,.08), 0 12px 32px rgba(13,39,71,.07);
  --shadow-lg: 0 18px 50px rgba(13,39,71,.16);

  --container: 1160px;
  --gutter:    clamp(20px, 5vw, 48px);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif:"Source Serif 4", Georgia, "Times New Roman", serif;

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

/* ------------------------- Reset ------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(16px, 1.02vw, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
svg { stroke: currentColor; } /* Default-Strichfarbe für Icons; spezifische Regeln überschreiben */
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ----------------------- Typografie ---------------------- */
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--navy-900); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.45rem); }
h3 { font-size: clamp(1.18rem, 1.6vw, 1.35rem); }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.22rem); color: var(--ink-soft); }

/* ----------------------- Layout -------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(56px, 8vw, 104px); }
.section-tint { background: var(--bg-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-600);
  margin-bottom: 14px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--accent); display:inline-block; }
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display:none; }
.section-head p { margin-top: 14px; }

/* ----------------------- Buttons ------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(184,146,74,.28); }
.btn-primary:hover { background: var(--accent-600); box-shadow: 0 12px 26px rgba(184,146,74,.34); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.6); }

/* ----------------------- Header -------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(241,234,219,.92); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.scrolled { background: rgba(245,240,229,.94); box-shadow: var(--shadow-sm); border-color: var(--line); }

/* Einzeilig: Logo links, Navigation rechts */
.header-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 13px; transition: padding .3s var(--ease); }
.site-header.scrolled .header-top { padding-block: 8px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { height: clamp(44px, 5.5vw, 58px); width: auto; display: block; transition: height .3s var(--ease); }
.site-header.scrolled .brand-logo { height: clamp(40px, 4.5vw, 46px); }
.brand .mark { width: 42px; height: 42px; flex: none; border-radius: 11px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.brand .mark svg { width: 23px; height: 23px; stroke: var(--accent); }
.brand .name { font-family: var(--font-serif); font-weight: 600; font-size: 1.16rem; color: var(--navy-900); line-height: 1.05; letter-spacing: -.01em; }
.brand .role { display:block; font-family: var(--font-sans); font-weight: 500; font-size: .72rem; letter-spacing: .05em; color: var(--muted); text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .96rem; padding: 9px 14px; border-radius: 9px; transition: background .2s, color .2s; }
.nav-links a:hover { background: var(--bg-tint); color: var(--navy-900); text-decoration: none; }
.nav-toggle { display: none; flex: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--navy-900); align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .ico-close { display: none; }
body.menu-open .nav-toggle .ico-open { display: none; }
body.menu-open .nav-toggle .ico-close { display: block; }

/* ----------------------- Hero ---------------------------- */
.hero { position: relative; color: #fff; background: var(--navy-900); overflow: hidden; padding-block: clamp(8px, 1.5vw, 16px) 0; }
.hero::before {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(241,234,219,1), rgba(241,234,219,.5) 14px, rgba(241,234,219,.16) 34px, rgba(241,234,219,.04) 58px, rgba(241,234,219,0) 96px),
    radial-gradient(1100px 540px at 78% -8%, rgba(184,146,74,.20), transparent 60%),
    radial-gradient(900px 600px at 8% 110%, rgba(29,69,117,.55), transparent 62%),
    linear-gradient(160deg, var(--navy-800), var(--navy-900) 60%);
}
.hero::after {
  content:""; position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(80% 70% at 60% 30%, #000, transparent 80%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 64px); align-items: center; padding-block: clamp(36px, 4.5vw, 56px) clamp(48px, 6.5vw, 88px); }
.hero h1 { color: #fff; font-size: clamp(2rem, 3.8vw, 3rem); }
.hero h1 .accent { display: block; margin-top: 16px; font-size: clamp(1.15rem, 1.9vw, 1.5rem); font-weight: 600; color: var(--accent); letter-spacing: .02em; }
.hero .lead { color: rgba(233,239,247,.82); margin-top: 22px; max-width: 36em; }
.hero-text { color: rgba(233,239,247,.72); margin-top: 16px; max-width: 38em; font-size: .97rem; line-height: 1.7; }
.hero-claim { margin-top: 24px; color: #fff; font-weight: 600; font-size: 1.12rem; letter-spacing: .01em; }
.hero-eyebrow { color: #d8c39a; }
.hero-eyebrow::before { background: var(--accent); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* Hero-Visitenkarte */
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg);
  padding: 30px; backdrop-filter: blur(6px); box-shadow: var(--shadow-lg);
}
.hero-card .seal { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.hero-card .seal > b { color: #fff; font-size: 1.35rem; display: block; font-family: var(--font-serif); letter-spacing: .01em; }
.hero-card .seal-sub { display: block; color: rgba(233,239,247,.72); font-size: .85rem; margin-top: 2px; }
.hero-card .seal-row { display: flex; align-items: center; gap: 13px; margin-top: 14px; }
.hero-card .seal-ico { width: 48px; height: 48px; flex: none; border-radius: 9px; background: #fff; overflow: hidden; display: grid; place-items: center; }
.hero-card .seal-ico img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hero-card .seal-note { line-height: 1.45; }
.hero-card .seal-note b { display: block; color: rgba(255,255,255,.95); font-size: .9rem; font-weight: 600; }
.hero-card .seal-note span { display: block; color: rgba(233,239,247,.62); font-size: .8rem; }
.hero-card .facts { display: grid; gap: 14px; }
.hero-card .facts li { display: flex; gap: 13px; align-items: flex-start; color: rgba(233,239,247,.9); font-size: .94rem; }
.hero-card .facts svg { width: 19px; height: 19px; stroke: var(--accent); flex: none; margin-top: 2px; }

/* ----------------------- Services ------------------------ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Themenfelder mit Symbolbild: Flex, damit die letzte Reihe zentriert ist */
.cards-photo { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; }
.cards-photo .card { width: calc((100% - 44px) / 3); padding: 0 0 26px; display: flex; flex-direction: column; }
.cards-photo .card h3, .cards-photo .card p { padding-inline: 26px; }
.cards-photo .card h3 { margin-top: 20px; }
.card-photo { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: var(--bg-tint); }
.card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.card:hover .card-photo img { transform: scale(1.045); }

/* Gutachtenarten: kompakte horizontale Karten */
.subsection-head { max-width: 720px; margin: clamp(44px, 7vw, 72px) auto clamp(26px, 4vw, 40px); text-align: center; }
.subsection-head h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.subsection-head p { margin-top: 10px; }
.arten { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.arten .art-wide { grid-column: 1 / -1; }
.art { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.art:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.art .ico { width: 50px; height: 50px; flex: none; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; }
.art .ico svg { width: 24px; height: 24px; stroke: var(--accent-600); }
.art h3 { font-size: 1.12rem; margin-bottom: 6px; }
.art p { font-size: .94rem; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  position: relative; overflow: hidden;
}
.card::after { content:""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--accent), transparent); opacity: 0; transition: opacity .25s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d7deea; }
.card:hover::after { opacity: 1; }
.card .ico { width: 54px; height: 54px; border-radius: 13px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 20px; }
.card .ico svg { width: 27px; height: 27px; stroke: var(--accent-600); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; }

/* ----------------------- About --------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 72px); align-items: center; }
.about-copy p + p { margin-top: 16px; }
.about-list { display: grid; gap: 14px; margin-top: 26px; }
.about-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink); font-size: .98rem; }
.about-list svg { width: 22px; height: 22px; stroke: var(--accent-600); flex: none; margin-top: 2px; }

.about-photo { position: relative; align-self: stretch; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 280px; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(1.32) contrast(.74) saturate(.88); }

/* ----------------------- Locations ----------------------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.loc .loc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.loc .pin { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-soft); display: grid; place-items: center; flex: none; }
.loc .pin svg { width: 22px; height: 22px; stroke: var(--accent-600); }
.loc h3 { margin: 0; }
.loc .sub { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.loc dl { display: grid; grid-template-columns: 24px 1fr; gap: 12px 12px; align-items: start; margin: 0; }
.loc dt { display: grid; place-items: center; padding-top: 2px; }
.loc dt svg { width: 19px; height: 19px; stroke: var(--accent-600); }
.loc dd { margin: 0; color: var(--ink); font-size: .96rem; }
.loc dd a { color: var(--ink); }
.loc dd a:hover { color: var(--link); }

/* ----------------------- Contact ------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px,5vw,56px); align-items: start; }
.contact-aside .lead { margin-bottom: 26px; }
.contact-info { display: grid; gap: 18px; margin-bottom: 28px; }
.contact-info li { display: flex; gap: 15px; align-items: flex-start; }
.contact-info .ci-ico { width: 46px; height: 46px; border-radius: 11px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.contact-info .ci-ico svg { width: 21px; height: 21px; stroke: var(--accent-600); }
.contact-info b { display: block; color: var(--navy-900); font-family: var(--font-sans); font-size: .98rem; }
.contact-info span, .contact-info a { color: var(--ink-soft); font-size: .96rem; }
.hours { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; background: var(--accent-soft); color: var(--accent-600); border-radius: 999px; font-weight: 600; font-size: .9rem; }
.hours svg { width: 18px; height: 18px; stroke: currentColor; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy-900); margin-bottom: 7px; }
.field label .req { color: var(--accent-600); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: var(--bg-soft); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(184,146,74,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .88rem; color: var(--muted); margin-bottom: 22px; }
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.consent a { color: var(--link); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ----------------------- Footer -------------------------- */
.site-footer { background: var(--navy-900); color: rgba(233,239,247,.7); padding-block: clamp(48px, 6vw, 72px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 46px; }
.footer-brand .brand .name { color: #fff; }
.footer-brand .brand .role { color: rgba(233,239,247,.55); }
.footer-brand p { margin-top: 18px; color: rgba(233,239,247,.6); font-size: .94rem; max-width: 34em; }
.footer-ihk { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.footer-ihk img { width: 60px; height: 60px; border-radius: 10px; object-fit: contain; display: block; }
.footer-ihk span { font-size: .88rem; color: rgba(233,239,247,.6); line-height: 1.55; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col span { color: rgba(233,239,247,.7); font-size: .95rem; }
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .87rem; }
.footer-bottom a { color: rgba(233,239,247,.7); }
.footer-bottom a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ----------------- Legal pages (Impressum/DS) ------------ */
.page-hero { background: var(--navy-900); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(900px 400px at 80% -20%, rgba(184,146,74,.18), transparent 60%), linear-gradient(160deg, var(--navy-800), var(--navy-900)); }
.page-hero .container { position: relative; z-index: 1; padding-block: clamp(48px, 7vw, 86px); }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(233,239,247,.78); margin-top: 12px; }
.breadcrumb { font-size: .9rem; color: rgba(233,239,247,.6); margin-bottom: 18px; }
.breadcrumb a { color: rgba(233,239,247,.85); }
.legal { max-width: 820px; }
.legal h2 { font-size: 1.4rem; margin-top: 44px; margin-bottom: 14px; padding-top: 8px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin-top: 26px; margin-bottom: 8px; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px; padding-left: 0; }
.legal ul li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--ink-soft); }
.legal ul li::before { content:""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.legal address { font-style: normal; color: var(--ink); line-height: 1.9; }
.legal .note { background: var(--accent-soft); border-left: 3px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 16px 20px; color: #7a5e22; font-size: .92rem; }
.legal .note strong { color: #6b5119; }

/* ----------------------- Reveal anim --------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ======================= Responsive ====================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { min-height: 320px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards-photo .card { width: calc((100% - 22px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 880px) {
  html { scroll-padding-top: 84px; }
  .nav-links { display: none; }
  .brand-logo { height: 46px; }
  .site-header.scrolled .brand-logo { height: 42px; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 16px var(--gutter) 26px; transform: translateY(-12px);
    opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; z-index: 99; max-height: calc(100vh - 90px); overflow-y: auto;
  }
  body.menu-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
  .mobile-menu a { display: block; padding: 14px 8px; font-weight: 500; color: var(--navy-900); border-bottom: 1px solid var(--line-soft); }
  .mobile-menu a:hover { text-decoration: none; color: var(--accent-600); }
  .mobile-menu .btn { width: 100%; margin-top: 18px; }
}
@media (min-width: 881px) { .mobile-menu { display: none; } }
@media (max-width: 620px) {
  .cards, .loc-grid, .form-row, .arten { grid-template-columns: 1fr; }
  .cards-photo .card { width: 100%; }
  .hero h1 { font-size: 1.8rem; hyphens: auto; overflow-wrap: break-word; }
  .hero-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .loc { padding: 26px; }
}
