/* ============================================================
   Lipperty Finance — Website Stylesheet
   Brand: Navy #233249 · Source Serif 4 (Display) + Source Sans 3 (Body)
   Craft: Trust & Authority × Editorial. Mobile-first. WCAG AA.
   ============================================================ */

/* ---------- Fonts: lokal gehostet (DSGVO — kein Google-Fonts-Request) ----------
   Quelle: google-webfonts-helper, Subsets latin + latin-ext (ä/ö/ü/ß).
   Serif-Kursive real geladen (Hero-„Zufall", Band-Quote, About-Quote, Footer-Claim). */
@font-face {
  font-family: "Source Sans 3"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("assets/fonts/source-sans-3-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("assets/fonts/source-sans-3-500.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("assets/fonts/source-sans-3-600.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("assets/fonts/source-sans-3-700.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("assets/fonts/source-serif-4-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("assets/fonts/source-serif-4-500.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-600.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("assets/fonts/source-serif-4-700.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4"; font-style: italic; font-weight: 400;
  font-display: swap; src: url("assets/fonts/source-serif-4-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4"; font-style: italic; font-weight: 500;
  font-display: swap; src: url("assets/fonts/source-serif-4-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Source Serif 4"; font-style: italic; font-weight: 600;
  font-display: swap; src: url("assets/fonts/source-serif-4-600-italic.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy:        #233249;
  --navy-700:    #1b2738;
  --navy-900:    #131c2a;
  --navy-tint:   #eef2f8;
  --navy-tint-2: #e2e9f3;

  /* Neutrals */
  --paper:   #ffffff;
  --canvas:  #f6f8fb;
  --ink:     #1d2531;
  --ink-soft:#52607a;
  --line:    #dde4ee;
  --line-2:  #cdd7e6;

  /* On navy */
  --on-navy:      #eaf0f8;
  --on-navy-soft: #a9b8d0;

  /* Type */
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Scale (fluid) */
  --fs-display: clamp(2.55rem, 1.4rem + 5vw, 4.6rem);
  --fs-h2:      clamp(1.95rem, 1.2rem + 2.6vw, 3rem);
  --fs-h3:      clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem);
  --fs-lead:    clamp(1.08rem, 1rem + 0.45vw, 1.3rem);
  --fs-body:    1.0625rem;
  --fs-eyebrow: 0.8rem;

  /* Space */
  --section-y: clamp(4.5rem, 3rem + 7vw, 8rem);
  --gap:       clamp(1.25rem, 1rem + 1vw, 2rem);
  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1180px;
  --measure:   62ch;

  --shadow-sm: 0 1px 2px rgba(19,28,42,.06), 0 4px 14px rgba(19,28,42,.05);
  --shadow-md: 0 10px 30px rgba(19,28,42,.10), 0 2px 8px rgba(19,28,42,.06);
  --shadow-lg: 0 24px 60px rgba(19,28,42,.16);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 72px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; margin: 0; color: var(--navy); overflow-wrap: break-word; }

/* Prevent CSS Grid min-content blowout (overflow on narrow screens) */
.hero-grid > *, .about-grid > *, .contact-grid > *,
.value-grid > *, .service-grid > *, .step-grid > *, .trust-grid > *,
.footer-grid > * { min-width: 0; }
p { margin: 0; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.measure { max-width: var(--measure); }

/* ---------- Accessibility helpers ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: .65rem 1rem; border-radius: 8px;
  font-weight: 600; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}
.contact :focus-visible, .band :focus-visible { outline-color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  --b-bg: var(--navy); --b-fg: #fff; --b-bd: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: 1rem; line-height: 1;
  min-height: 48px; padding: 0 1.4rem;
  background: var(--b-bg); color: var(--b-fg); border: 1.5px solid var(--b-bd);
  border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: transform .18s var(--ease), background-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
  touch-action: manipulation;
}
.btn-lg { min-height: 54px; padding: 0 1.8rem; font-size: 1.05rem; }
.btn-primary:hover { background: var(--navy-700); border-color: var(--navy-700); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { --b-bg: transparent; --b-fg: var(--navy); --b-bd: var(--line-2); }
.btn-ghost:hover { --b-bd: var(--navy); background: var(--navy-tint); transform: translateY(-2px); }
.btn-on-dark { --b-bg: #fff; --b-fg: var(--navy); --b-bd: #fff; }
.btn-on-dark:hover { background: var(--navy-tint); border-color: var(--navy-tint); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---------- Eyebrow / Section head ---------- */
.eyebrow {
  font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: .9rem;
}
.eyebrow-light { color: var(--on-navy-soft); }
.section { padding-block: var(--section-y); }
.section-tint { background: var(--canvas); border-block: 1px solid var(--line); }
.section-head { max-width: 56ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }
.lead { font-size: var(--fs-lead); color: var(--ink-soft); line-height: 1.6; }

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

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; border-radius: 8px; }
.brand-word { display: inline-flex; align-items: baseline; gap: .4rem; line-height: 1; }
.brand-serif { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: var(--navy); letter-spacing: -.01em; }
.brand-sans { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .22em; color: var(--navy); }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); }
.nav > a {
  font-weight: 600; font-size: .98rem; color: var(--ink); text-decoration: none;
  padding: .4rem 0; position: relative; transition: color .18s var(--ease);
}
.nav > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--navy); transition: width .22s var(--ease);
}
.nav > a:hover { color: var(--navy); }
.nav > a:hover::after { width: 100%; }
.nav-cta { margin-left: .4rem; min-height: 44px; padding: 0 1.25rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; padding: 0 11px; background: none; border: 1px solid var(--line-2);
  border-radius: 10px; cursor: pointer;
}
.nav-toggle-bar { display: block; height: 2px; width: 100%; background: var(--navy); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: clamp(2.5rem, 2rem + 4vw, 5rem); padding-bottom: clamp(2rem, 1.5rem + 3vw, 3.5rem); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 70%;
  background: radial-gradient(80% 120% at 85% 0%, var(--navy-tint) 0%, transparent 60%);
  z-index: -1; pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero-title { font-size: var(--fs-display); margin: .4rem 0 1.3rem; }
.hero-title em { color: var(--navy); position: relative; white-space: nowrap; }
.hero-title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em;
  background: var(--navy-tint-2); z-index: -1; border-radius: 2px;
}
.hero-copy .lead { max-width: 46ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }

.usp-row { display: flex; flex-wrap: wrap; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.usp-row li {
  position: relative; padding-left: 1.4rem; font-weight: 600; color: var(--navy); font-size: .98rem;
}
.usp-row li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px;
  background: var(--navy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hero-figure { position: relative; }
.hero-photo {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  aspect-ratio: 4 / 3.05;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: -14px; bottom: -18px;
  display: flex; align-items: center; gap: .65rem;
  background: var(--navy); color: var(--on-navy);
  padding: .8rem 1.1rem; border-radius: 12px; box-shadow: var(--shadow-md);
  font-size: .9rem; line-height: 1.25; font-weight: 500;
}
.hero-badge img { border-radius: 6px; background: #fff; padding: 3px; }

.hero-facts {
  display: flex; flex-wrap: wrap; gap: .7rem 1.1rem; align-items: center;
  margin-top: clamp(2.5rem, 4vw, 3.5rem); padding-top: 1.4rem; border-top: 1px solid var(--line);
  color: var(--ink-soft); font-weight: 600; font-size: .92rem;
}
.hero-facts span[aria-hidden] { color: var(--line-2); }

/* ============================================================
   WERTE
   ============================================================ */
.value-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--gap); grid-template-columns: repeat(4, 1fr); }
.value-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.value-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.value-card h3 { font-size: var(--fs-h3); margin-bottom: .5rem; }
.value-card p { color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.service-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(3, 1fr); }
.service-card {
  background: var(--navy); color: var(--on-navy);
  border-radius: var(--radius); padding: 2rem 1.8rem; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.service-card::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 70%); pointer-events: none;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(255,255,255,.10); color: #fff; margin-bottom: 1.2rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: .35rem; }
.service-card h3 + p { color: var(--on-navy-soft); }
.service-card p { font-size: 1.02rem; line-height: 1.6; }
.service-foot {
  margin-top: clamp(1.8rem, 3vw, 2.6rem); text-align: center;
  color: var(--ink-soft); font-size: 1rem;
}
.service-foot-label { font-weight: 700; color: var(--navy); }

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-figure figure { margin: 0; position: relative; }
.about-figure img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); aspect-ratio: 4 / 5.2; object-fit: cover; object-position: center top;
}
.about-figure figcaption {
  margin-top: .9rem; font-weight: 600; color: var(--ink-soft); font-size: .95rem;
  padding-left: 1rem; border-left: 3px solid var(--navy);
}
.about-copy h2 { font-size: var(--fs-h2); margin: .3rem 0 1.2rem; }
.about-copy p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 56ch; }
.about-quote {
  margin: 1.8rem 0 0; padding: 0 0 0 1.4rem; border-left: 4px solid var(--navy);
  font-family: var(--serif); font-style: italic; font-size: clamp(1.25rem, 1rem + 1vw, 1.6rem);
  color: var(--navy); line-height: 1.4;
}

/* ============================================================
   BAND / ESSENZ
   ============================================================ */
.band {
  background: var(--navy);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-900) 100%);
  padding-block: clamp(3.5rem, 3rem + 4vw, 6rem); text-align: center;
}
.band-quote {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.6rem, 1.1rem + 2.6vw, 2.9rem); line-height: 1.28;
  color: #fff; max-width: 20ch; margin-inline: auto; letter-spacing: -.01em;
}
.band-quote em { font-style: italic; color: #fff; }
.band-quote em { text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 6px; text-decoration-thickness: 2px; }

/* ============================================================
   VORGEHEN
   ============================================================ */
.step-grid { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--gap); grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.step { position: relative; padding-top: 1.4rem; }
.step::before {
  content: ""; position: absolute; left: 27px; right: -1rem; top: 26px; height: 2px;
  background: var(--line-2); z-index: 0;
}
.step:last-child::before { display: none; }
.step-num {
  position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--navy); color: var(--navy);
  font-family: var(--serif); font-weight: 600; font-size: 1.4rem; margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   VERTRAUEN
   ============================================================ */
.trust-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(3, 1fr); }
.trust-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-card h3 { font-size: 1.35rem; margin-bottom: .5rem; position: relative; padding-bottom: .7rem; }
.trust-card h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; background: var(--navy); border-radius: 2px; }
.trust-card p { color: var(--ink-soft); }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact { background: var(--navy); background-image: linear-gradient(160deg, var(--navy) 0%, var(--navy-900) 100%); color: var(--on-navy); }
.contact h2 { color: #fff; font-size: var(--fs-h2); margin-bottom: 1rem; }
.contact .lead { color: var(--on-navy-soft); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-actions { margin: 1.8rem 0 2rem; }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.2rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list strong { color: #fff; font-weight: 700; }
.contact-list a { color: var(--on-navy); text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); }
.contact-list a:hover { text-decoration-color: #fff; }
.contact-ic {
  flex: none; width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.10); display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.contact-ic svg { width: 22px; height: 22px; }
.contact-social { margin-top: 1.6rem; display: flex; gap: 1.2rem; }
.contact-social a { color: #fff; font-weight: 600; }

.cal-card {
  background: var(--paper); color: var(--ink); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-lg); text-align: center;
}
.cal-card h3 { font-size: 1.4rem; margin-bottom: .7rem; }
.cal-note { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.2rem; }
.cal-card .btn { width: 100%; }
.cal-fallback { margin-top: 1.1rem; font-size: .92rem; color: var(--ink-soft); }
.cal-embed { min-height: 660px; border-radius: var(--radius); overflow: hidden; background: #fff; }
/* Calendly-initInlineWidget vergibt keine .calendly-inline-widget-Klasse an unseren Container —
   ohne diese Regel fällt das iframe (height="100%"-Attribut) auf 150px Browser-Default zurück. */
.cal-embed iframe { display: block; width: 100%; height: 660px; border: 0; }
.cal-embed:not([hidden]) { margin-top: 0; box-shadow: var(--shadow-lg); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: var(--on-navy-soft); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer-word .brand-serif, .footer-word .brand-sans { color: #fff; }
.footer-brand p { margin-top: .9rem; max-width: 34ch; font-size: .96rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-nav, .footer-legal { display: flex; flex-direction: column; gap: .55rem; }
.footer-nav a, .footer-legal a { color: var(--on-navy-soft); text-decoration: none; font-size: .96rem; }
.footer-nav a:hover, .footer-legal a:hover { color: #fff; }
.footer-legal a[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }
.footer-contact p { margin-bottom: .7rem; font-size: .96rem; }
.footer-contact a { color: var(--on-navy-soft); }
.footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-block: 1.5rem 2rem; font-size: .9rem; }
.footer-claim { font-family: var(--serif); font-style: italic; color: var(--on-navy); }

/* ============================================================
   MOTION — scroll reveal (progressive, opt-in via JS)
   ============================================================ */
.js-reveal .reveal,
.js-reveal .reveal-group > * { opacity: 0; transform: translateY(22px); }
.js-reveal .reveal.is-in,
.js-reveal .reveal-group.is-in > * { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js-reveal .reveal-group.is-in > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-figure { order: -1; max-width: 520px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
}
@media (max-width: 860px) {
  .service-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
}
@media (max-width: 1000px) {
  /* Mobile nav — Breakpoint 1000px: zwischen 720 und ~1000px kollidierte
     die Desktop-Navi mit der Wortmarke (nur 16px Abstand bei 820px). */
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem clamp(1.15rem, 4vw, 2.5rem) 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .26s var(--ease), opacity .2s var(--ease), visibility .26s var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav > a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav > a::after { display: none; }
  .nav-cta { margin: 1.1rem 0 0; width: 100%; min-height: 52px; }
  .nav-toggle { display: flex; }
}
@media (max-width: 720px) {
  .value-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
}
@media (max-width: 420px) {
  .hero-actions .btn { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js-reveal .reveal, .js-reveal .reveal-group > * { opacity: 1 !important; transform: none !important; }
  .btn:hover, .value-card:hover, .service-card:hover, .trust-card:hover { transform: none; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .nav-toggle, .hero-actions, .contact-cal, .cal-embed { display: none; }
  body { color: #000; }
  .band, .contact, .service-card { background: #fff !important; color: #000 !important; }
}
