@font-face{font-family:'Fraunces';font-style:normal;font-weight:400;font-display:swap;src:url('./assets/fonts/Fraunces-400.woff2') format('woff2');}
@font-face{font-family:'Fraunces';font-style:normal;font-weight:500;font-display:swap;src:url('./assets/fonts/Fraunces-500.woff2') format('woff2');}
@font-face{font-family:'Fraunces';font-style:normal;font-weight:600;font-display:swap;src:url('./assets/fonts/Fraunces-600.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url('./assets/fonts/Inter-400.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url('./assets/fonts/Inter-500.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:600;font-display:swap;src:url('./assets/fonts/Inter-600.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:700;font-display:swap;src:url('./assets/fonts/Inter-700.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:800;font-display:swap;src:url('./assets/fonts/Inter-800.woff2') format('woff2');}
@font-face{font-family:'Inter';font-style:normal;font-weight:900;font-display:swap;src:url('./assets/fonts/Inter-900.woff2') format('woff2');}

/* ============================================================
   KIA , KI-Agentur Appiarius (appiarius-ki.de)
   Marke: Schwarz / Gold / Weiss (kein Navy). Seriös, kompetent,
   vertrauensbildend. Inter (klar, technisch). Design-System als
   Fork der Appiarius-Premium-Basis (GSAP + Lenis + ScrollTrigger).
   ============================================================ */

:root {
  --ink:       #1b1b1b;
  --ink-2:     #262626;     /* Charcoal aus dem Logo-Wort APPIARIUS */
  --ink-3:     #333333;
  --paper:     #ffffff;
  --sand:      #f4f3f1;
  --sand-2:    #e8e6e2;
  --line:      rgba(20, 20, 20, 0.12);
  --line-soft: rgba(255, 255, 255, 0.14);
  --muted:     #6c6c6c;
  --muted-2:   rgba(255, 255, 255, 0.68);
  --steel:     #8f8f8f;     /* Grau aus dem Logo (Haus-Mark) */

  --accent:      #c9a84c;   /* KIA-Gold (Marke Schwarz/Gold/Weiss) */
  --accent-deep: #8a6c25;   /* dunkles Bronze-Gold, AA-fest fuer Text auf Weiss */
  --accent-deeper: #6f5418; /* Link-/Button-Hover */
  --accent-soft: #e8d48b;   /* helles Gold auf dunklem Grund */
  --signal:      #c9a84c;

  --serif: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  --shell: min(1240px, calc(100vw - 48px));
  --r: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --measure: 66ch;
  --section-y: clamp(86px, 12.5vh, 164px);
  --hero-sub-h: 58svh;
  --shadow-card: 0 26px 56px rgba(22, 19, 14, 0.12);
  --shadow-media: 0 34px 70px rgba(22, 19, 14, 0.16);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 700; line-height: 1.06; letter-spacing: -0.022em; }
p { margin: 0; }

.shell { width: var(--shell); margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow-light { color: var(--accent-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 14px 32px rgba(22,19,14,0.24); }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--ink); box-shadow: 0 14px 30px rgba(201,168,76,0.36); }
.btn-accent:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.42); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-block { width: 100%; margin-top: 8px; }

.text-link { display: inline-flex; align-items: center; margin-top: 22px; font-weight: 600; color: var(--accent-deep); }
.text-link::after { content: "\2197"; margin-left: 7px; transition: transform .3s var(--ease); }
.text-link:hover::after { transform: translate(2px,-2px); }
.text-link.muted-link { color: var(--muted); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  z-index: 120;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-lockup { display: inline-flex; align-items: center; gap: 13px; line-height: 1; }
.brand-mark { width: 40px; height: 40px; border-radius: 10px; flex: none; display: block; }
.brand-words { display: flex; flex-direction: column; gap: 2px; }
.brand-words .b-name { font-family: var(--serif); font-weight: 500; font-size: 1.18rem; letter-spacing: 0.01em; color: #fff; transition: color .35s var(--ease); }
.brand-words .b-tag { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.62); transition: color .35s var(--ease); }
/* Echte Wortmarke (APPIARIUS KI-Agentur), Hell/Dunkel-Umschaltung bei Scroll.
   Unter .brand-lockup gescoped, damit es die generische .brand-logo-Regel (Z.525) schlaegt. */
.brand-lockup .brand-logo { height: 34px; width: auto; max-width: none; display: block; }
.brand-lockup .brand-logo-onlight { display: none; }
.nav.is-solid .brand-lockup .brand-logo-ondark { display: none; }
.nav.is-solid .brand-lockup .brand-logo-onlight { display: block; }
@media (max-width: 480px){ .brand-lockup .brand-logo { height: 28px; } }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.9); transition: color .3s; }
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 11px 22px; border-radius: 999px; background: var(--accent-deep); color: #fff !important; font-weight: 600; transition: background .3s, transform .3s; }
.nav-cta:hover { background: var(--accent-deeper); transform: translateY(-1px); }
.nav-burger { display: none; }

.nav.is-solid {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  padding: 13px 0;
  box-shadow: 0 12px 34px rgba(22,19,14,0.08);
}
.nav.is-solid .brand-words .b-name { color: var(--ink); }
.nav.is-solid .brand-words .b-tag { color: var(--muted); }
.nav.is-solid .nav-links a { color: var(--ink); }
.nav.is-solid .nav-cta { color: #fff !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(96px, 9vh, 120px);
  padding-bottom: clamp(56px, 8vh, 96px);
  overflow: hidden;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; background: var(--ink); }
.hero-media img, .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 116%;
  object-fit: cover;
  will-change: transform;
}
.hero-video { opacity: 0; transition: opacity .9s var(--ease); z-index: 1; }
.hero-video.is-ready { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(0deg, rgba(17,17,17,0.9) 0%, rgba(17,17,17,0.52) 38%, rgba(17,17,17,0.28) 100%),
    linear-gradient(90deg, rgba(17,17,17,0.64) 0%, rgba(17,17,17,0.18) 60%, rgba(17,17,17,0) 100%);
}
.hero-content { position: relative; z-index: 3; max-width: 940px; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; }
.hero-eyebrow::after { content: ""; width: 56px; height: 1px; background: rgba(255,255,255,0.4); }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 6.6vw, 5.6rem);
  font-weight: 800;
  line-height: 1.0;
  margin: 18px 0 0;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 40px rgba(12,10,7,0.5);
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-title .line-in { display: block; }
.hero-title .accent { color: var(--accent-soft); }
.hero-lead {
  max-width: 600px; margin-top: 26px;
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 36px; margin: 42px 0 0; padding: 0; list-style: none; }
.hero-meta li { position: relative; padding-left: 20px; font-size: 14px; color: rgba(255,255,255,0.82); letter-spacing: 0.01em; }
.hero-meta li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero-scrollcue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 4; width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 14px; }
.hero-scrollcue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; background: #fff; border-radius: 2px; transform: translateX(-50%); animation: cue 1.7s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translate(-50%, 0);} 40% {opacity:1;} 80% {opacity:0; transform: translate(-50%, 14px);} 100%{opacity:0;} }

/* ---------- Contact strip ---------- */
.factbar { background: var(--ink); color: rgba(255,255,255,0.74); }
.factbar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.1); }
.factbar-item { background: var(--ink); padding: 26px clamp(18px, 2.4vw, 34px); display: flex; flex-direction: column; gap: 5px; }
.factbar-item span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-soft); }
.factbar-item strong { font-family: var(--serif); font-weight: 500; font-size: 1.18rem; color: #fff; }
.factbar-item a:hover strong { color: var(--accent-soft); }

/* ---------- Section heads ---------- */
.section { padding: var(--section-y) 0; }
.section.paper { background: var(--paper); }
.section.sand { background: var(--sand); }
.section.dark { background: var(--ink); color: #fff; }
.section.dark .section-sub { color: rgba(255,255,255,0.68); }
.section-head { max-width: 760px; margin-bottom: 58px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 800; margin-top: 16px; letter-spacing: -0.03em; }
.section-sub { margin-top: 20px; color: var(--muted); font-size: 1.12rem; line-height: 1.6; }
.split-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(28px,5vw,80px); align-items: end; margin-bottom: 56px; }
.split-head .section-title { margin-top: 14px; }
.split-head p { color: var(--muted); font-size: 1.1rem; line-height: 1.62; }

/* ---------- Manifest (Haltung) ---------- */
.manifest { background: var(--ink); color: var(--paper); padding: clamp(96px, 17vh, 200px) 0; }
.manifest .eyebrow { color: var(--accent-soft); }
.manifest-text {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4.2vw, 3.35rem);
  line-height: 1.22; font-weight: 400; letter-spacing: -0.015em;
  max-width: 22ch; margin-top: 26px;
  max-inline-size: 28ch;
}
.manifest-text { max-width: min(56ch, 100%); }
.manifest-text .word { display: inline-block; opacity: 0.18; transition: opacity .2s; }
.manifest-text .word.lit { opacity: 1; }
.manifest-sign { display: flex; flex-wrap: wrap; gap: 8px 40px; margin-top: 48px; color: rgba(255,255,255,0.5); font-size: 14px; letter-spacing: 0.04em; }

/* ---------- Focus fields (Handwerk / Immobilien / KI) ---------- */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.focus-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 38px 34px 40px; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.focus-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--accent); transition: width .5s var(--ease); }
.focus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.focus-card:hover::before { width: 100%; }
.focus-no { font-family: var(--serif); font-size: 1.05rem; color: var(--accent-deep); }
.focus-card h3 { font-size: 1.55rem; margin-top: 16px; }
.focus-card p { margin-top: 14px; color: var(--muted); }

/* ============================================================
   Markenwelt , Hub mit Hierarchie (verbindlich)
   3 gleichrangig (M&H / AEDISO / KIA) + Haustechnik untergerueckt
   ============================================================ */
.hub { background: var(--sand); padding: var(--section-y) 0; }
.hub-root { text-align: center; max-width: 720px; margin: 0 auto 18px; }
.hub-node {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; padding: 13px 24px 13px 16px; border-radius: 999px;
  box-shadow: 0 16px 36px rgba(22,19,14,0.18);
}
.hub-node img { width: 30px; height: 30px; border-radius: 8px; }
.hub-node span { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.01em; }
.hub-node small { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-soft); }
.hub-connector { width: 1px; height: 46px; margin: 8px auto 0; background: linear-gradient(var(--accent), rgba(177,128,60,0)); }
.hub-tier-label { display: block; text-align: center; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin: 4px 0 28px; }

.hub-tier1 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.brand-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.brand-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--sand-2); }
.brand-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.brand-card:hover .brand-media img { transform: scale(1.05); }
.brand-rank { position: absolute; left: 16px; top: 14px; z-index: 2; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; background: rgba(22,19,14,0.55); backdrop-filter: blur(6px); padding: 6px 12px; border-radius: 999px; }
.brand-body { display: flex; flex-direction: column; flex: 1; padding: 30px 30px 32px; }
.brand-name { font-family: var(--serif); font-size: 1.72rem; font-weight: 500; letter-spacing: -0.01em; }
.brand-kicker { margin-top: 4px; font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep); }
.brand-desc { margin-top: 16px; color: var(--muted); font-size: 1rem; line-height: 1.62; }
.brand-caps { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 9px; }
.brand-caps li { position: relative; padding-left: 22px; font-size: 0.95rem; color: var(--muted); }
.brand-caps li::before { content: ""; position: absolute; left: 0; top: 10px; width: 12px; height: 1.5px; background: var(--accent); }
.brand-foot { margin-top: auto; padding-top: 24px; }
.brand-link { display: inline-flex; align-items: center; font-weight: 600; color: var(--accent-deep); }
.brand-link::after { content: "\2197"; margin-left: 7px; transition: transform .3s var(--ease); }
.brand-link:hover::after { transform: translate(2px,-2px); }
.brand-soon { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--muted); font-size: 0.95rem; }
.brand-soon::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent-soft); }
.brand-domain { display: block; margin-top: 6px; font-size: 0.86rem; color: var(--muted); opacity: 0.8; }

/* Sub-Marken (nur unter M&H) */
.brand-sub { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.brand-sub-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.brand-sub-items { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.brand-sub-items a {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--sand); font-size: 0.9rem; font-weight: 600; color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.brand-sub-items a::after { content: "\2197"; font-size: 0.85em; color: var(--accent-deep); transition: transform .3s var(--ease); }
.brand-sub-items a:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.brand-sub-items a:hover::after { color: var(--accent-soft); transform: translate(2px,-2px); }

/* Tier 2 , Haustechnik untergerueckt + abgesetzt */
.hub-offset-wrap { margin-top: 30px; }
.hub-offset-connector { width: 1px; height: 34px; margin: 0 auto; background: repeating-linear-gradient(var(--line) 0 4px, transparent 4px 9px); }
.hub-tier2 { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; margin: 14px auto 0; max-width: 1040px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: 0 18px 44px rgba(22,19,14,0.07); }
.hub-tier2 .brand-media { aspect-ratio: auto; min-height: 100%; }
.hub-tier2 .brand-body { padding: 36px 38px 38px; }
.hub-offset-tag { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.hub-offset-tag::before { content: ""; width: 22px; height: 1px; background: var(--accent); }
.hub-note { margin: 40px auto 0; max-width: 1040px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.92rem; line-height: 1.6; }

/* ---------- Region ---------- */
.region-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 92px); align-items: center; }
.region-media { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-media); }
.region-media img { width: 100%; height: 100%; object-fit: cover; }
.region-text p { margin-top: 20px; color: var(--muted); font-size: 1.1rem; line-height: 1.62; }
.region-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 11px; margin: 26px 0 0; padding: 0; }
.region-chips li { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); font-size: 14px; font-weight: 500; transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease); }
.region-chips li:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }

/* ---------- Principles (Arbeitsweise) ---------- */
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.principle { border-top: 2px solid rgba(255,255,255,0.16); padding-top: 26px; }
.principle .p-no { font-family: var(--serif); font-size: 1.1rem; color: var(--accent-soft); }
.principle h3 { margin-top: 16px; font-size: 1.4rem; color: #fff; font-weight: 500; }
.principle p { margin-top: 12px; color: rgba(255,255,255,0.66); font-size: 0.98rem; line-height: 1.6; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: clamp(104px, 16vh, 196px) 0; color: #fff; overflow: hidden; }
.cta-media { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 120% at 82% 8%, rgba(177,128,60,0.34), transparent 56%), radial-gradient(120% 120% at 8% 92%, rgba(216,176,121,0.18), transparent 55%); }
.cta-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 6vw, 84px); align-items: center; }
.cta-title { font-size: clamp(2.2rem, 5vw, 3.7rem); margin-top: 16px; font-weight: 500; letter-spacing: -0.02em; }
.cta-text p { margin-top: 20px; color: rgba(255,255,255,0.82); font-size: 1.12rem; max-width: 46ch; line-height: 1.62; }
.cta-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--r); padding: 32px; backdrop-filter: blur(8px); }
.cta-line { display: flex; flex-direction: column; gap: 3px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.cta-line:first-child { padding-top: 0; }
.cta-line span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.cta-line strong { font-size: 1.16rem; font-weight: 600; }
a.cta-line:hover strong { color: var(--accent-soft); }

/* ---------- Footer ---------- */
.foot { background: #100d09; color: rgba(255,255,255,0.7); padding: 76px 0 36px; }
.foot-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 54px; }
.foot-brand .brand-lockup { margin-bottom: 18px; }
.foot-brand .b-name { color: #fff; }
.foot-brand p { font-size: 0.95rem; max-width: 42ch; line-height: 1.6; }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.foot-cols h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.foot-cols a, .foot-cols span { display: block; font-size: 0.95rem; padding: 5px 0; color: rgba(255,255,255,0.66); transition: color .3s; }
.foot-cols a:hover { color: var(--accent-soft); }
.foot-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.foot-legal a { color: rgba(255,255,255,0.6); }
.foot-legal a:hover { color: var(--accent-soft); }
.foot-links { display: inline-flex; gap: 18px; }

/* ---------- AI-Hinweis (EU-AI-Act Art. 50) ---------- */
.ai-note { font-size: 12px; color: var(--muted); opacity: 0.85; }
.dark .ai-note, .foot .ai-note { color: rgba(255,255,255,0.4); }

/* ---------- Reveal base ---------- */
[data-reveal] { will-change: transform, opacity; }

/* ============================================================
   Legal-Seiten (Impressum / Datenschutz)
   ============================================================ */
.page-hero {
  position: relative; isolation: isolate;
  min-height: var(--hero-sub-h); display: flex; align-items: flex-end;
  padding: 140px 0 clamp(60px, 9vh, 104px); overflow: hidden; color: #fff;
}
.page-hero .hero-media img { height: 112%; }
.page-hero .hero-content { max-width: 880px; }
.page-kicker { max-width: 720px; margin-top: 22px; color: rgba(255,255,255,0.88); font-size: clamp(1.04rem, 1.6vw, 1.25rem); line-height: 1.6; }

.legal { padding: clamp(56px, 9vh, 104px) 0 110px; background: var(--paper); }
.legal-shell { width: min(840px, calc(100vw - 44px)); margin-inline: auto; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin: 12px 0 26px; font-weight: 500; }
.legal h2 { font-size: 1.32rem; margin: 38px 0 12px; font-weight: 600; font-family: var(--sans); letter-spacing: -0.01em; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; line-height: 1.72; max-width: var(--measure); }
.legal ul { padding-left: 22px; }
.legal a:not(.btn) { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal .lead { font-family: var(--serif); font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.4; color: var(--ink); max-width: none; }
.legal-callout { margin: 14px 0 22px; padding: 18px 20px; background: var(--sand); border-left: 3px solid var(--accent); border-radius: 8px; }
.legal-callout p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* ---------- Content (Ueber uns) ---------- */
.content-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr); gap: clamp(34px, 6vw, 86px); align-items: start; }
.content-main { max-width: 760px; }
.content-main h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 8px 0 18px; font-weight: 500; }
.content-main h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin: 34px 0 12px; font-weight: 500; }
.content-main p, .content-main li { color: var(--muted); max-width: var(--measure); line-height: 1.72; }
.content-main p + p { margin-top: 1.3em; }
.content-main ul { margin: 18px 0 0; padding-left: 22px; }
.content-main li + li { margin-top: 10px; }
.lead-block { font-family: var(--serif); font-size: clamp(1.4rem, 2.9vw, 2.15rem); line-height: 1.3; color: var(--ink); font-weight: 400; }
.note-card { border: 1px solid var(--line); border-radius: var(--r); padding: 30px; background: var(--sand); position: sticky; top: 100px; }
.note-card h3 { font-size: 1.3rem; margin-bottom: 14px; font-weight: 500; }
.note-card p, .note-card li { color: var(--muted); font-size: 0.98rem; }
.note-card .cta-line { border-bottom-color: var(--line); }
.note-card .cta-line span { color: var(--muted); }
.note-card .cta-line strong { color: var(--ink); }
.note-card a.cta-line:hover strong { color: var(--accent-deep); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 10px; }
.value-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px; }
.value-card .p-no { font-family: var(--serif); color: var(--accent-deep); font-size: 1.1rem; }
.value-card h3 { font-size: 1.35rem; margin-top: 14px; font-weight: 500; }
.value-card p { margin-top: 12px; color: var(--muted); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(34px, 6vw, 78px); align-items: start; }
.contact-form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: 0.94rem; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px;
  font: inherit; color: var(--ink); background: var(--paper);
}
.field textarea { min-height: 156px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(177,128,60,0.28); border-color: var(--accent); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { color: var(--muted); font-size: 0.92rem; }
.contact-side .cta-line { border-bottom-color: var(--line); }
.contact-side .cta-line span { color: var(--muted); }
.contact-side .cta-line strong { color: var(--ink); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav-inner { position: relative; z-index: 60; }
  .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; z-index: 55;
    padding: 92px 22px 30px;
    background: rgba(255,255,255,0.985); backdrop-filter: blur(16px);
    box-shadow: 0 26px 54px rgba(22,19,14,0.18);
    transform: translateY(-106%); opacity: 0; pointer-events: none;
    transition: transform .42s var(--ease), opacity .42s var(--ease);
  }
  .nav.nav-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { color: var(--ink); font-size: 1.06rem; padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav-links a.nav-cta { margin-top: 18px; background: var(--accent-deep); color: #fff !important; border-radius: 999px; text-align: center; border: 0; padding: 14px 20px; }
  .nav-burger { display: inline-flex; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; }
  .nav-burger span { width: 26px; height: 2px; background: #fff; display: block; transition: background .3s, transform .3s; }
  .nav.is-solid .nav-burger span, .nav.nav-open .nav-burger span { background: var(--ink); }
  .nav.nav-open .nav-burger span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav.nav-open .nav-burger span:last-child { transform: translateY(-4px) rotate(-45deg); }
}

@media (max-width: 980px) {
  .focus-grid, .hub-tier1, .principle-grid, .value-grid { grid-template-columns: 1fr 1fr; }
  .split-head, .region-inner, .cta-inner, .foot-inner, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-head { gap: 18px; }
  .factbar-inner { grid-template-columns: 1fr 1fr; }
  .hub-tier2 { grid-template-columns: 1fr; }
  .hub-tier2 .brand-media { aspect-ratio: 16 / 9; min-height: 0; }
  .note-card { position: static; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .hero { align-items: flex-start; padding-top: 110px; padding-bottom: 11vh; }
  .hero-title { font-size: clamp(2.5rem, 9vw, 3.4rem); }
  .hero-lead { margin-top: 20px; }
  .hero-meta { margin-top: 30px; gap: 10px 24px; }
  .focus-grid, .hub-tier1, .principle-grid, .value-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 16px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-legal { flex-direction: column; }
  .hero-eyebrow::after { width: 36px; }
  .page-hero { min-height: 52svh; padding-top: 120px; }
}

@media (max-width: 480px) {
  .factbar-inner, .foot-cols { grid-template-columns: 1fr; }
}

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--accent); color: #fff; padding: 10px 18px; border-radius: 8px; font-weight: 600; transition: top .2s var(--ease); }
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.hero a:focus-visible, .nav a:focus-visible, .cta a:focus-visible, .foot a:focus-visible, .dark a:focus-visible { outline-color: #fff; box-shadow: 0 0 0 5px rgba(0,0,0,0.45); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .hero-media img, .hero-video { height: 100%; }
  .hero-video { display: none; }
}

/* ============================================================
   OVERHAUL-KOMPONENTEN (echte Logos, Vernetzung, Referenzen, Zahlen, Team)
   ============================================================ */

/* Logo-Strip , alle Marken auf einen Blick (Gesamtheit) */
.logo-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.logo-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(22px, 5vw, 64px); padding: 30px 0; }
.logo-strip img { height: clamp(26px, 3vw, 36px); width: auto; object-fit: contain; opacity: 0.78; filter: grayscale(0.15); transition: opacity .3s var(--ease), filter .3s var(--ease); }
.logo-strip a:hover img { opacity: 1; filter: none; }
.logo-strip .ls-soon { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .02em; }

/* Logo im Karten-Body (echtes Marken-Logo auf weiss) */
.brand-logo { height: 40px; width: auto; max-width: 78%; object-fit: contain; object-position: left center; display: block; }
.brand-card .brand-logo { margin-bottom: 4px; }

/* Vernetzung , wie die Marken ineinandergreifen */
.network { background: var(--ink); color: #fff; }
.network .eyebrow { color: var(--accent-soft); }
.network .section-title, .network h2 { color: #fff; }
.network-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.net-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r); padding: 30px 28px; }
.net-card .net-no { font-family: var(--serif); font-weight: 800; font-size: 1.1rem; color: var(--accent-soft); }
.net-card h3 { color: #fff; font-size: 1.3rem; margin-top: 12px; font-weight: 700; }
.net-card p { color: rgba(255,255,255,0.72); margin-top: 12px; font-size: 0.98rem; line-height: 1.6; }
.net-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.net-tags a, .net-tags span { font-size: 12px; font-weight: 600; letter-spacing: .02em; padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); transition: background .3s var(--ease), color .3s var(--ease); }
.net-tags a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Referenzen-Galerie (echte Projektfotos) */
.refs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ref { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand-2); box-shadow: 0 14px 34px rgba(20,20,20,0.10); }
.ref img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ref:hover img { transform: scale(1.06); }
.ref figcaption { position: absolute; inset: auto 0 0 0; padding: 42px 18px 16px; background: linear-gradient(0deg, rgba(20,18,16,0.86), rgba(20,18,16,0) 100%); color: #fff; }
.ref figcaption span { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 3px; }
.ref figcaption strong { font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; }

/* Zahlen & Fakten */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: left; }
.stat strong { display: block; font-family: var(--serif); font-weight: 800; font-size: clamp(2.6rem, 5.5vw, 4rem); line-height: 1; color: var(--ink); letter-spacing: -0.03em; }
.stat .stat-suffix { color: var(--accent); }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 0.98rem; max-width: 26ch; }
.section.dark .stat strong { color: #fff; }
.section.dark .stat span { color: rgba(255,255,255,0.66); }

/* Team / Menschen */
.team-inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.team-media { margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-media); }
.team-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-text p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; line-height: 1.62; }
.team-text .stats { margin-top: 30px; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.team-text .stat strong { font-size: clamp(2rem, 4vw, 2.8rem); }

@media (max-width: 980px) {
  .network-grid { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .team-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .refs-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .team-text .stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- Echtes Logo in Nav + Footer ---------- */
.nav-logo { position: relative; display: inline-flex; line-height: 0; }
.nav-logo img { height: 38px; width: auto; display: block; transition: opacity .35s var(--ease); }
.nav-logo .logo-color { position: absolute; inset: 0; opacity: 0; }
.nav.is-solid .nav-logo .logo-light { opacity: 0; }
.nav.is-solid .nav-logo .logo-color { opacity: 1; }
@media (max-width: 600px){ .nav-logo img { height: 32px; } }
.foot-logo { height: 40px; width: auto; margin-bottom: 18px; display: block; }

/* ---------- Brand-Card: Logo im Body + KIA-Logo-Panel ---------- */
.brand-media.is-logo { display: flex; align-items: center; justify-content: center; background: radial-gradient(120% 120% at 70% 20%, #2f2f2f, #141414); }
.brand-media.is-logo img { width: 60%; max-height: 46%; object-fit: contain; }
.brand-logohead { display: flex; align-items: flex-end; min-height: 46px; margin-bottom: 4px; }
.brand-logohead img { height: 38px; width: auto; max-width: 80%; object-fit: contain; object-position: left bottom; }
.brand-logohead .brand-name { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }

/* ---------- KIA-Erweiterungen (Startseite + Unterseiten) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.stat-row { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stat-row li { padding: 30px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); }
.section.sand .stat-row li { background: var(--paper); }
.stat-row strong { display: block; font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.05; }
.stat-row span { display: block; margin-top: 10px; color: var(--muted); font-size: 0.98rem; line-height: 1.5; }
.dark-cta { margin-top: 48px; }
.calc { margin: 30px 0 10px; border: 1px solid var(--line); border-radius: var(--r); background: var(--sand); padding: clamp(22px,3vw,34px); }
.calc h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
.calc-field { display: grid; gap: 7px; margin-top: 20px; }
.calc-field label { font-weight: 600; font-size: 0.94rem; }
.calc-field input { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; font: inherit; color: var(--ink); background: var(--paper); }
.calc-field input:focus { outline: 3px solid rgba(177,128,60,0.28); border-color: var(--accent); }
.calc-out { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.calc-out div { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.calc-out .hl { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.calc-out small { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.calc-out strong { display: block; margin-top: 7px; font-family: var(--serif); font-size: 1.8rem; font-weight: 800; color: var(--ink); line-height: 1.05; }
.calc-note { margin-top: 16px; font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 560px){ .calc-out { grid-template-columns: 1fr; } }
.price-tag { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 18px; padding: 12px 16px; background: var(--sand); border-left: 3px solid var(--accent); border-radius: 8px; }
.price-tag b { font-family: var(--serif); font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.price-tag span { font-size: 0.9rem; color: var(--muted); }
.faq-list { display: grid; gap: 14px; margin-top: 8px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); padding: 24px 26px; }
.faq-item h3 { font-size: 1.16rem; font-weight: 600; }
.faq-item p { margin-top: 10px; color: var(--muted); line-height: 1.62; max-width: var(--measure); }
@media (max-width: 880px) { .svc-grid { grid-template-columns: 1fr; } .stat-row { grid-template-columns: 1fr; } }

/* ---------- Festpreis-Angebote ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 30px 32px; display: flex; flex-direction: column; overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); }
.offer::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--accent); transition: width .5s var(--ease); }
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.offer:hover::before { width: 100%; }
.offer.featured { border-color: var(--accent); }
.offer.featured::before { width: 100%; }
.offer-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); }
.offer h3 { font-size: 1.4rem; margin-top: 10px; }
.offer-price { font-family: var(--serif); font-size: 2.2rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); margin-top: 16px; }
.offer-price span { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.offer p { color: var(--muted); margin: 14px 0 22px; line-height: 1.6; flex: 1; }
.offer .btn { margin-top: auto; }
.price-note { margin-top: 24px; font-size: 0.9rem; color: var(--muted); }
.founder-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.founder-media { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-media); background: var(--sand-2); }
.founder-media img { width: 100%; height: 100%; object-fit: cover; }
.founder-text .sig { margin-top: 22px; font-family: var(--serif); font-weight: 600; color: var(--ink); }
.founder-text .sig small { display: block; font-family: var(--sans); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; color: var(--muted); margin-top: 2px; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } .founder-inner { grid-template-columns: 1fr; } }

/* Mobil: Hero-Scrim kraeftiger fuer Textkontrast ueber Querformat-Foto */
@media (max-width: 760px){
  .hero-scrim{ background: linear-gradient(0deg, rgba(17,17,17,0.94) 0%, rgba(17,17,17,0.6) 46%, rgba(17,17,17,0.34) 100%); }
}
