/* =====================================================================
   BOSMEDIANO CONSULTING — Design System
   Warm & edel: Elfenbein · Nachtblau · Terrakotta · Amber
   Schriften lokal gehostet (DSGVO) — Fraunces (Display) + Inter (Text)
   ===================================================================== */

/* ---------- Schriften (lokal, variable Fonts) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/fraunces-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben */
  --bg: #FBF7F0;
  --bg-soft: #F5EDE1;
  --paper: #FFFFFF;
  --navy-950: #0B1322;
  --navy-900: #101B2E;
  --navy-800: #182740;
  --ink: #1D2736;
  --muted: #5A6473;
  --terra: #C05B2B;
  --terra-deep: #A0481D;
  --terra-text: #A64A1F;
  --amber: #D99A4E;
  --amber-soft: rgba(217, 154, 78, 0.16);
  --sand-line: #E8DCC8;
  --card-line: #ECE2D2;
  --on-dark: #F7F1E6;
  --on-dark-muted: #AAB5C7;
  --dark-line: rgba(247, 241, 230, 0.14);
  --error: #B3261E;
  --error-bg: #FDECEA;

  /* Typografie */
  --font-display: "Fraunces", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --fs-h1: clamp(2.6rem, 4.6vw + 1.1rem, 4.35rem);
  --fs-h2: clamp(1.85rem, 2.4vw + 0.9rem, 2.8rem);
  --fs-h3-serif: clamp(1.25rem, 0.6vw + 1.05rem, 1.5rem);
  --fs-lead: clamp(1.06rem, 0.35vw + 1rem, 1.19rem);

  /* Layout */
  --wrap: 1140px;
  --section-y: clamp(4.25rem, 9vw, 7.25rem);
  --r-lg: 22px;
  --r-md: 15px;
  --r-sm: 10px;
  --shadow-sm: 0 6px 20px -8px rgba(29, 39, 54, 0.12);
  --shadow-md: 0 18px 45px -18px rgba(29, 39, 54, 0.22);
  --shadow-dark: 0 24px 60px -24px rgba(4, 8, 16, 0.55);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }
address { font-style: normal; }

::selection { background: var(--amber); color: var(--navy-950); }

:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy-950);
  color: var(--on-dark);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

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

/* Honeypot-Feld für Bots — für Menschen unsichtbar */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(20px, 4.5vw, 32px);
}

section { padding-block: var(--section-y); }

/* ---------- Typografie ---------- */
h1, h2, .serif {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); margin-bottom: 1rem; }

.serif-accent {
  font-style: italic;
  font-weight: 480;
  color: var(--terra-text);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-text);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
}

.lead {
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 46em;
}

.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(192, 91, 43, 0.65);
}
.btn-primary:hover { background: var(--terra-deep); transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost-dark {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(247, 241, 230, 0.35);
}
.btn-ghost-dark:hover { background: rgba(247, 241, 230, 0.09); border-color: rgba(247, 241, 230, 0.6); }

.btn-ghost-light {
  background: transparent;
  color: var(--ink);
  border-color: var(--sand-line);
}
.btn-ghost-light:hover { border-color: var(--terra); color: var(--terra-text); }

.btn-block { width: 100%; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--on-dark);
  transition: color 0.25s var(--ease);
}
.brand-mark { width: 36px; height: 36px; flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.7rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.15rem;
  font-size: 0.94rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  color: var(--on-dark-muted);
  transition: color 0.2s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="true"] { color: var(--on-dark); }

.header-actions { display: flex; align-items: center; gap: 0.9rem; }

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(247, 241, 230, 0.3);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.lang-switch a {
  padding: 0.42rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--on-dark-muted);
  transition: background-color 0.2s, color 0.2s;
}
.lang-switch a[aria-current="true"] {
  background: var(--on-dark);
  color: var(--navy-950);
}
.lang-switch a:not([aria-current="true"]):hover { color: var(--on-dark); }

.btn-header {
  min-height: 44px;
  padding: 0.55rem 1.3rem;
  font-size: 0.92rem;
}

/* Header nach dem Scrollen: heller Hintergrund, dunkle Schrift */
.site-header.scrolled {
  background: rgba(251, 247, 240, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--sand-line);
}
.site-header.scrolled .header-bar { min-height: 66px; }
.site-header.scrolled .brand { color: var(--ink); }
.site-header.scrolled .brand-sub { color: var(--terra-text); }
.site-header.scrolled .site-nav a { color: var(--muted); }
.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a[aria-current="true"] { color: var(--ink); }
.site-header.scrolled .lang-switch { border-color: var(--sand-line); }
.site-header.scrolled .lang-switch a { color: var(--muted); }
.site-header.scrolled .lang-switch a[aria-current="true"] { background: var(--navy-900); color: var(--on-dark); }
.site-header.scrolled .lang-switch a:not([aria-current="true"]):hover { color: var(--ink); }

/* Burger */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(247, 241, 230, 0.3);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 120;
  transition: border-color 0.25s var(--ease);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--on-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s, background-color 0.25s;
}
.site-header.scrolled .nav-toggle { border-color: var(--sand-line); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }
body.nav-open .nav-toggle span { background: var(--on-dark); }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Zwischen 921 und 1120px wird es eng: CTA-Button im Header ausblenden */
@media (max-width: 1120px) and (min-width: 921px) {
  .header-actions .btn-header { display: none; }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .header-actions .btn-header { display: none; }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 60%, #1B2438 100%);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
  }
  body.nav-open .site-nav { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }

  .site-nav ul {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
  .site-nav a {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--on-dark);
    padding: 0.55rem 1rem;
  }
  .site-nav .nav-cta-item { margin-top: 1.4rem; }
  .site-nav .nav-cta-item a {
    font-family: var(--font-body);
    font-size: 1.05rem;
    background: var(--terra);
    border-radius: 999px;
    padding: 0.85rem 2rem;
    color: #fff;
  }
}
@media (min-width: 921px) {
  .site-nav .nav-cta-item { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--on-dark);
  padding-top: clamp(8.5rem, 16vh, 11.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52% 46% at 84% 6%, rgba(217, 154, 78, 0.16) 0%, transparent 70%),
    radial-gradient(60% 55% at 4% 100%, rgba(192, 91, 43, 0.26) 0%, transparent 72%),
    radial-gradient(38% 34% at 55% 45%, rgba(34, 52, 82, 0.55) 0%, transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.hero-eyebrow .dot { color: var(--amber); }

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  border: 1px solid rgba(247, 241, 230, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--on-dark);
}

.hero h1 {
  color: var(--on-dark);
  margin-bottom: 1.4rem;
  max-width: 13em;
}
.hero h1 .serif-accent { color: var(--amber); }

.hero .lead {
  color: var(--on-dark-muted);
  max-width: 36em;
  margin-bottom: 2.2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.hero-trust {
  font-size: 0.88rem;
  color: var(--on-dark-muted);
  letter-spacing: 0.02em;
}
.hero-trust .dot { color: var(--terra); margin-inline: 0.35rem; }

/* Brücken-Karte */
.bridge-card {
  background: rgba(247, 241, 230, 0.055);
  border: 1px solid rgba(247, 241, 230, 0.13);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-dark);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.bridge-figure { position: relative; margin-bottom: 0.75rem; }
.bridge-figure svg { width: 100%; height: auto; }
.bridge-arc-path {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: drawArc 1.5s var(--ease) 0.45s forwards;
}
@keyframes drawArc { to { stroke-dashoffset: 0; } }

.bridge-badge {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -14%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}
.bridge-badge .monogram {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--terra) 0%, var(--terra-deep) 100%);
  border: 2px solid rgba(247, 241, 230, 0.4);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(192, 91, 43, 0.7);
}
.bridge-badge img.monogram { display: block; object-fit: cover; object-position: 50% 15%; padding: 0; }
.bridge-badge .monogram-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
}

.bridge-ends {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.bridge-end { max-width: 46%; }
.bridge-end.right { text-align: right; }
.bridge-end .chip { margin-bottom: 0.5rem; border-color: rgba(217, 154, 78, 0.45); color: var(--amber); }
.bridge-end strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 560;
  color: var(--on-dark);
  margin-bottom: 0.25rem;
}
.bridge-end span { font-size: 0.82rem; line-height: 1.5; color: var(--on-dark-muted); display: block; }

/* Hero-Statistiken */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.75rem, 6vw, 4rem);
  padding-top: 1.9rem;
  border-top: 1px solid var(--dark-line);
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2vw + 1rem, 2.3rem);
  font-weight: 560;
  color: var(--amber);
  line-height: 1.1;
}
.stat .label {
  font-size: 0.85rem;
  color: var(--on-dark-muted);
  margin-top: 0.15rem;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .bridge-card { max-width: 540px; }
}

/* ---------- Karten & Raster ---------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--card-line);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #E2CFAF;
}
.card h3 {
  font-size: 1.07rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.card p { font-size: 0.95rem; color: var(--muted); }

.icon-tile {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--amber-soft);
  color: var(--terra-text);
  margin-bottom: 1rem;
}
.icon-tile svg { width: 22px; height: 22px; }

/* Hervorgehobene Karte (Kern-Zielgruppe) */
.card-featured {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #FFFFFF 0%, #FDF8EF 100%);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}
.card-featured::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--terra) 0%, var(--amber) 100%);
}
.card-featured h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3-serif);
  font-weight: 560;
  letter-spacing: -0.014em;
}
.card-featured p { font-size: 1rem; max-width: 62em; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.chip-light {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--sand-line);
  background: var(--bg);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.chip-light svg { width: 14px; height: 14px; color: var(--terra-text); }

/* ---------- Sanfte Bänder ---------- */
.band-soft { background: var(--bg-soft); }

/* ---------- Leistungen ---------- */
.flagship {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 55%, #1C2A45 100%);
  border-radius: var(--r-lg);
  padding: clamp(1.9rem, 4vw, 3rem);
  color: var(--on-dark);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-dark);
}
.flagship::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 60% at 96% 8%, rgba(217, 154, 78, 0.14) 0%, transparent 70%),
    radial-gradient(50% 65% at 0% 100%, rgba(192, 91, 43, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.flagship > * { position: relative; z-index: 1; }
.flagship-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  background: rgba(217, 154, 78, 0.16);
  border: 1px solid rgba(217, 154, 78, 0.4);
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.flagship h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw + 0.8rem, 2.1rem);
  font-weight: 560;
  letter-spacing: -0.016em;
  line-height: 1.15;
  color: var(--on-dark);
  max-width: 21em;
  margin-bottom: 1.1rem;
}
.flagship p {
  color: var(--on-dark-muted);
  max-width: 56em;
  font-size: 1.02rem;
}
.flagship .chip-row { margin-top: 1.4rem; }
.flagship .chip-light {
  background: rgba(247, 241, 230, 0.07);
  border-color: rgba(247, 241, 230, 0.22);
  color: var(--on-dark);
}
.flagship .chip-light svg { color: var(--amber); }

.b2b-note {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding: 1.1rem 1.3rem;
  border: 1px dashed var(--sand-line);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  color: var(--muted);
}
.b2b-note svg { width: 20px; height: 20px; flex: none; color: var(--terra-text); margin-top: 2px; }
.b2b-note strong { color: var(--ink); }

/* ---------- USP / Säulen ---------- */
.pillars { counter-reset: pillar; }
.pillar {
  position: relative;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.4rem, 2.5vw, 1.8rem);
  background: var(--paper);
  border: 1px solid var(--card-line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.pillar .pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 480;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.9rem;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3-serif);
  font-weight: 560;
  letter-spacing: -0.014em;
  margin-bottom: 0.6rem;
}
.pillar p { font-size: 0.96rem; color: var(--muted); }

.bridge-banner {
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3.5vw, 2.6rem);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  color: var(--on-dark);
  box-shadow: var(--shadow-dark);
}
.bridge-banner .banner-chips {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}
.bridge-banner .chip { font-size: 0.76rem; }
.bridge-banner .chip.warm { border-color: rgba(217, 154, 78, 0.5); color: var(--amber); }
.bridge-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.8vw + 0.8rem, 2rem);
  font-weight: 560;
  letter-spacing: -0.014em;
  line-height: 1.2;
  color: var(--on-dark);
  margin-bottom: 0.5rem;
}
.bridge-banner p { color: var(--on-dark-muted); font-size: 0.98rem; max-width: 48em; }
@media (max-width: 720px) {
  .bridge-banner { grid-template-columns: 1fr; }
  .bridge-banner .banner-chips { flex-direction: row; flex-wrap: wrap; }
}

/* ---------- Über Ana ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.portrait-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(247, 241, 230, 0.35);
  border-radius: calc(var(--r-lg) - 8px);
  pointer-events: none;
}
.about-copy p { color: var(--muted); margin-bottom: 1rem; max-width: 58em; }
.about-copy p strong { color: var(--ink); }
.about-facts { margin-top: 1.4rem; }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 420px; }
}

/* ---------- Szenarien ---------- */
.scenario {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--card-line);
  border-radius: var(--r-md);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  padding-top: clamp(2.4rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.scenario::before {
  content: "\201E";
  position: absolute;
  top: -0.45em;
  right: 0.18em;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 560;
  color: var(--amber-soft);
  line-height: 1;
  pointer-events: none;
}
.scenario-tag {
  display: inline-block;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  background: var(--amber-soft);
  color: var(--terra-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.scenario h3 {
  font-family: var(--font-display);
  font-size: var(--fs-h3-serif);
  font-weight: 560;
  margin-bottom: 0.7rem;
}
.scenario p { color: var(--muted); font-size: 0.97rem; }
.scenario-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Ablauf ---------- */
.steps { position: relative; }
.step { position: relative; padding-top: 0.4rem; }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 2px solid var(--terra);
  color: var(--terra-text);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1.05rem; font-weight: 650; margin-bottom: 0.4rem; }
.step p { font-size: 0.93rem; color: var(--muted); }

@media (min-width: 621px) {
  .step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(0.4rem + 26px);
    left: 62px;
    right: -10px;
    border-top: 2px dashed var(--sand-line);
  }
}
@media (max-width: 920px) and (min-width: 621px) {
  .step:nth-child(2)::before { display: none; }
}

/* ---------- Netzwerk (dunkles Band) ---------- */
.band-dark {
  background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-900) 70%);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.band-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 92% 0%, rgba(192, 91, 43, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.band-dark .wrap { position: relative; }
.band-dark h2 { color: var(--on-dark); }
.band-dark .eyebrow { color: var(--amber); }
.band-dark .eyebrow::before { background: var(--amber); }
.band-dark .lead { color: var(--on-dark-muted); }

.card-dark {
  background: rgba(247, 241, 230, 0.05);
  border: 1px solid rgba(247, 241, 230, 0.13);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 2.5vw, 1.8rem);
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.card-dark:hover {
  background: rgba(247, 241, 230, 0.08);
  border-color: rgba(217, 154, 78, 0.4);
  transform: translateY(-4px);
}
.card-dark .icon-tile {
  background: rgba(217, 154, 78, 0.14);
  color: var(--amber);
}
.card-dark h3 { font-size: 1.03rem; font-weight: 650; color: var(--on-dark); margin-bottom: 0.4rem; }
.card-dark p { font-size: 0.92rem; color: var(--on-dark-muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--card-line);
  border-radius: var(--r-md);
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terra-text); }
.faq-item summary svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--terra-text);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.faq-item[open] .faq-body { animation: faqIn 0.3s var(--ease); }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-panel {
  background: linear-gradient(155deg, var(--navy-950) 0%, var(--navy-900) 70%);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: var(--shadow-dark);
}
.contact-panel h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 560;
  color: var(--on-dark);
}
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--on-dark-muted);
  font-size: 0.97rem;
  line-height: 1.55;
}
.contact-line svg { width: 20px; height: 20px; flex: none; color: var(--amber); margin-top: 3px; }
.contact-line a {
  color: var(--on-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 154, 78, 0.5);
  transition: border-color 0.2s, color 0.2s;
}
.contact-line a:hover { color: var(--amber); border-color: var(--amber); }
.contact-panel .panel-foot {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--dark-line);
  font-size: 0.86rem;
  color: var(--on-dark-muted);
}

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--card-line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.form-alert {
  display: none;
  align-items: flex-start;
  gap: 0.7rem;
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid rgba(179, 38, 30, 0.3);
  border-radius: var(--r-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.form-alert.show { display: flex; }
.form-alert svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.field label .req { color: var(--terra-text); }
.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--sand-line);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.field input::placeholder,
.field textarea::placeholder { color: #9AA1AC; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terra);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(192, 91, 43, 0.16);
}
.field textarea { resize: vertical; min-height: 130px; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.consent input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--terra);
  cursor: pointer;
}
.consent a { color: var(--terra-text); font-weight: 600; }

.form-note { margin-top: 1rem; font-size: 0.83rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--on-dark-muted);
  padding-top: clamp(3.25rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: clamp(2.25rem, 4vw, 3rem);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .brand { color: var(--on-dark); margin-bottom: 0.9rem; }
.footer-claim { font-size: 0.94rem; max-width: 30em; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col a {
  color: var(--on-dark-muted);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--on-dark); }
.footer-col address { font-size: 0.94rem; line-height: 1.8; }

.footer-bottom {
  border-top: 1px solid var(--dark-line);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.85rem;
}
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom a { color: var(--on-dark-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--on-dark); }

/* ---------- Unterseiten (Impressum, Datenschutz, Danke) ---------- */
.page-header {
  background: var(--navy-900);
  padding-block: 1.1rem;
}
.page-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--on-dark-muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover { color: var(--on-dark); }
.back-link svg { width: 17px; height: 17px; }

.prose {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(20px, 4.5vw, 32px) clamp(4rem, 8vw, 6rem);
}
.prose h1 { font-size: clamp(2.1rem, 3vw + 1rem, 3rem); margin-bottom: 2rem; }
.prose h2 {
  font-size: 1.35rem;
  margin-top: 2.6rem;
  margin-bottom: 0.8rem;
}
.prose p, .prose li, .prose address { color: var(--muted); margin-bottom: 0.9rem; font-size: 0.99rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.prose a { color: var(--terra-text); font-weight: 600; }
.prose .todo {
  background: #FFF6E4;
  border: 1px dashed var(--amber);
  border-radius: var(--r-sm);
  padding: 0.35rem 0.7rem;
  font-weight: 600;
  color: #7A5A17;
}

/* Danke-Seite */
.thanks-main {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(45% 40% at 90% 0%, rgba(217, 154, 78, 0.14) 0%, transparent 70%),
    radial-gradient(50% 45% at 0% 100%, rgba(192, 91, 43, 0.1) 0%, transparent 70%),
    var(--bg);
}
.thanks-card {
  max-width: 560px;
  background: var(--paper);
  border: 1px solid var(--card-line);
  border-radius: var(--r-lg);
  padding: clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.thanks-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--amber-soft);
  color: var(--terra-text);
}
.thanks-icon svg { width: 32px; height: 32px; }
.thanks-card h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.9rem; }
.thanks-card p { color: var(--muted); margin-bottom: 1.75rem; }

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* Hero-Eintritt beim Laden */
@keyframes heroUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.fade-up { animation: heroUp 0.85s var(--ease) both; animation-delay: var(--d, 0s); }

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bridge-arc-path { stroke-dashoffset: 0; animation: none; }
}
