/* claudere gmbh – Experience 2026
   Eigene claudere-Palette, abgeleitet vom Bienen-Emblem:
   Ink #141414 · warmes Papier #F7F5F1 · Sand #ECE8E1 · Honig-Gold #B9862F */

:root {
  --ink: #171511;
  --ink-soft: #4c4841;
  --paper: #f7f4ec;
  --white: #ffffff;
  --sand: #ede7da;
  --line: #ded7c6;
  --accent: #b9862f;        /* Honig-Gold: einzige Aktionsfarbe */
  --accent-deep: #8f6620;
  --accent-soft: #f0e6cf;
  --font: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  --maxw: 1240px;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(20, 20, 20, .10);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button { cursor: none; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.preloader-emblem { width: 88px; height: 70px; color: var(--paper); }
.preloader-count {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .14em;
  color: rgba(247, 246, 244, .7);
  font-variant-numeric: tabular-nums;
}
.preloader-num::after { content: "%"; margin-left: 2px; opacity: .5; }
.no-motion .preloader { display: none; }

/* ---------- Custom Cursor ---------- */
.cursor { position: fixed; inset: 0; z-index: 999; pointer-events: none; display: none; }
.has-cursor .cursor { display: block; }
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
}
.cursor-dot {
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--ink);
  mix-blend-mode: difference;
  background: #fff;
}
.cursor-ring {
  width: 38px; height: 38px;
  margin: -19px 0 0 -19px;
  border: 1.5px solid #fff;
  mix-blend-mode: difference;
  transition: transform .3s var(--ease), opacity .3s;
}
.cursor.is-hover .cursor-ring { transform: scale(1.9); opacity: .8; }

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: -100%;
  z-index: 998;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -8%); }
  30% { transform: translate(3%, -12%); }
  50% { transform: translate(8%, 4%); }
  70% { transform: translate(-9%, 6%); }
  90% { transform: translate(4%, 10%); }
}
.no-motion .grain { animation: none; }

/* ---------- Split-Text ---------- */
[data-split] .w { display: inline-block; overflow: hidden; vertical-align: top; }
[data-split] .wi { display: inline-block; will-change: transform; }
.no-motion [data-split] .wi { transform: none !important; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 246, 244, .9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 32px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.header-emblem { width: 48px; height: 38px; color: var(--ink); transition: width .4s var(--ease), height .4s var(--ease); }
.header-wordmark { font-size: 24px; font-weight: 500; letter-spacing: .01em; }
.site-header.scrolled .header-emblem { width: 38px; height: 30px; }

.site-nav { display: flex; gap: 28px; }
.site-nav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); }

.lang-switch { display: flex; gap: 2px; border: 1px solid var(--line); border-radius: 99px; padding: 3px; background: rgba(255,255,255,.7); }
.lang-switch button {
  font: inherit;
  font-size: 12.5px;
  font-weight: 500;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  padding: 5px 10px;
  border-radius: 99px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.lang-switch button:hover { color: var(--accent-deep); }
/* Schmale Screens: kompakte Sprachwahl, damit der Burger nicht abgeschnitten wird */
@media (max-width: 430px) {
  .site-header { gap: 10px; padding: 14px 14px; }
  .lang-switch { padding: 2px; }
  .lang-switch button { font-size: 11px; padding: 4px 7px; }
}
.lang-switch button[aria-pressed="true"] { background: var(--accent); color: #fff; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 110px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 70% 20%, #efedeb 0%, rgba(239,237,235,0) 60%),
    var(--paper);
}
.swarm-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.no-motion .swarm-canvas, body:not(.webgl) .swarm-canvas { display: none; }
.section .container { position: relative; z-index: 2; }

.hero-logo-static {
  position: absolute;
  top: 14%;
  right: 7%;
  width: min(300px, 30vw);
  display: none;
  opacity: .28;
}
@media (max-width: 760px) {
  .hero-logo-static { top: 12%; right: 50%; transform: translateX(50%); width: min(220px, 48vw); opacity: .55; }
}
.no-motion .hero-logo-static, body:not(.webgl) .hero-logo-static { display: block; }
.hero-svg { width: 100%; height: auto; color: var(--ink); }
.logo-emblem { fill: currentColor; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.hero-title {
  font-size: clamp(44px, 7.2vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin: 0 0 26px;
  max-width: 14em;
  white-space: pre-line; /* \n aus den Sprachtexten bricht die Zeile */
}
.hero-sub {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 0 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-foot {
  position: absolute;
  right: 32px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 13.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-line {
  width: 54px;
  height: 1.5px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.hero-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: lineRun 2.2s var(--ease) infinite;
}
@keyframes lineRun {
  0% { transform: translateX(-100%); }
  55% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
.no-motion .hero-line::after { animation: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 99px;
  transition: box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 12px 32px rgba(143, 102, 32, .32); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); background: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); }

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

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 26px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 2;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.marquee:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 50px rgba(185, 134, 47, .18);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  width: max-content;
}
.marquee-seg {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  /* Versalien mit Laufweite (Weisung 27.08.2026: QUALITÄT · TRANSPARENZ · VERANTWORTUNG) */
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  padding-right: .2em;
  transition: color .35s var(--ease);
}
.marquee:hover .marquee-seg { color: var(--accent-deep); }

/* ---------- Sections ---------- */
.section { padding: 130px 0; position: relative; }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 22px;
}
.section-index {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--accent-deep);
  border: 1px solid var(--accent);
  border-radius: 99px;
  padding: 4px 12px;
}
.section-label {
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.section-label.light { color: rgba(255,255,255,.65); }
.section-title {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  max-width: 800px;
}
.section-title.light { color: #fff; }
.section-lead {
  font-size: clamp(16px, 1.9vw, 18.5px);
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 0 44px;
}
.section-lead.light { color: rgba(255,255,255,.82); }

/* ---------- Über uns ---------- */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
  perspective: 1000px;
}
.fact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
  transform-style: preserve-3d;
}
.fact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 50px rgba(185, 134, 47, .18);
}
.fact-card:hover .fact-number { color: var(--accent-deep); }
.fact-number {
  display: flex;
  align-items: flex-end;
  min-height: 62px;
  font-size: 56px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.03em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
  transition: color .35s var(--ease);
}
.fact-number--word {
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.1;
}
.fact-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 500; }
.fact-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Was wir tun ---------- */
.section-work { background: var(--sand); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
  perspective: 1000px;
}
.work-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 64px 32px 36px;
  transition: box-shadow .35s var(--ease), border-color .35s;
  transform-style: preserve-3d;
}
.work-card:hover { box-shadow: 0 18px 50px rgba(185, 134, 47, .18); border-color: var(--accent); }
.work-card:hover h3 { color: var(--accent-deep); }
.work-card h3 { transition: color .35s var(--ease); }
.work-num {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .08em;
}
.work-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 500; }
.work-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Wortspiel: CARNIVORE MAMMALS → CARNIMA ---------- */
.wordplay-wrap { margin: 20px 0 0; text-align: center; }
.wordplay {
  display: inline-block;
  position: relative;
  font-size: clamp(30px, 4.6vw, 60px);
  font-weight: 300;
  letter-spacing: .02em;
  white-space: nowrap;
  color: var(--ink);
  line-height: 1.1;
}
.wp-l { display: inline-block; }
/* Die Buchstaben, die CARNIMA bilden, tragen Gold – das Wortspiel ist
   schon im vollen Schriftzug sichtbar */
.wordplay .wp-l:not(.wp-drop) { color: var(--accent-deep); }
.wp-drop {
  overflow: hidden;
  vertical-align: bottom;
  color: #c4b896; /* Creme-Ton: die weichenden Buchstaben treten zurück */
}
.wp-underline {
  display: block;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
  transform: scaleX(0);
  transform-origin: left;
}
.no-motion .wp-underline { transform: none; }
.wordplay-caption {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 18px auto 0;
}

/* ---------- Marke Carnima (Verweis) ---------- */
.section-brand { background: var(--paper); }
/* Markenversprechen: gehört zur Marke, bewusst KEINE Karten (Abgrenzung zu den Firmenwerten) */
.brand-promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin-top: 64px;
}
.bp { border-top: 2px solid var(--accent); padding-top: 18px; }
.bp-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
}
.bp p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 760px) {
  .brand-promise { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
}
/* Offenes Editorial-Statement statt Box – die goldene Linie trägt es */
.brand-band {
  /* Gold-Linie entfernt (Weisung 27.08.2026): die Versprechen-Spalten tragen bereits Linien */
  padding: 8px 0;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  margin-top: 28px;
}
.brand-note {
  margin: 0;
  font-size: clamp(19px, 2.3vw, 24px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
}
/* Rechts neben der Karte formt der Schwarm die Carnima-Logo-Katze –
   die Sektion reserviert ihr den Raum */
.section-brand .container { min-height: 460px; }

/* ---------- Werte ---------- */
.section-values { background: var(--sand); }

/* ---------- Manifest (Symbolik der Biene) ---------- */
.section-manifesto { background: var(--paper); padding: 150px 0; }
.manifesto-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}
.manifesto-emblem { width: 54px; height: 43px; color: var(--accent); }
/* Läuft der Schwarm, übernimmt die Mini-Biene die Rolle des Emblems */
body.webgl .manifesto-emblem { visibility: hidden; }
.manifesto-text {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -.01em;
  max-width: 900px;
  margin: 0;
  color: var(--ink);
}
/* Warum die Biene? – kompakter Haltungs-Block (Markenkonzept 2026) */
.manifesto-bee { max-width: 620px; margin-top: 34px; }
.manifesto-bee p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.mv-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 6px;
  margin-bottom: 12px;
}
/* ---------- Der Name: eigener goldener Abschnitt ---------- */
.section-name { background: var(--sand); padding: 120px 0; }
.name-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-name .manifesto-coda { margin: 0; }
.section-name .wp-drop { color: #b3a480; }

.manifesto-coda {
  margin: 52px 0 0;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--ink);
  font-style: normal;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
  perspective: 1000px;
}
.value-card {
  position: relative;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 64px 32px 36px;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
  transform-style: preserve-3d;
}
.value-card:hover {
  border-color: var(--accent);
  box-shadow: 0 18px 50px rgba(185, 134, 47, .18);
}
.value-card:hover h3 { color: var(--accent-deep); }
.value-card h3 { transition: color .35s var(--ease); }
.value-num {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: .08em;
}
.value-card h3 { margin: 0 0 10px; font-size: 20px; font-weight: 500; }
.value-card p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Kontakt ---------- */
.section-contact { padding-bottom: 150px; }
.contact-big {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  max-width: 800px;
}
.contact-mail {
  display: inline-flex;
  align-items: baseline;
  gap: 20px;
  /* bewusst unter der Headline (56px): Hierarchie Headline > Mail-Link > Text */
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 300;
  letter-spacing: -.02em;
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 8px;
  margin: 8px 0 44px;
  transition: color .3s, border-color .3s;
}
.contact-mail { border-bottom-color: var(--accent); }
.contact-mail:hover { color: var(--accent-deep); border-color: var(--accent-deep); }
.footer-links a:hover { color: #fff; text-decoration-color: var(--accent); }
.contact-mail-arrow {
  font-size: .6em;
  transition: transform .35s var(--ease);
}
.contact-mail:hover .contact-mail-arrow { transform: translateX(12px) rotate(-45deg); }
.contact-b2b {
  margin: -14px 0 44px;
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 560px;
}
.contact-card {
  font-style: normal;
  font-size: 15.5px;
  color: var(--ink-soft);
  margin-top: 12px;
}
.contact-card strong { color: var(--ink); }
.muted { color: var(--ink-soft); }

/* ---------- Rechtsseiten (Datenschutz) ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 150px 28px 90px;
}
.legal h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 300;
  letter-spacing: -.02em;
  margin: 10px 0 8px;
}
.legal-stand { color: var(--ink-soft); font-size: 14px; margin: 0 0 44px; }
.legal h2 {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 19px;
  font-weight: 500;
  margin: 42px 0 10px;
}
.legal-num { color: var(--accent-deep); font-size: 14px; }
.legal p { margin: 0; color: var(--ink-soft); line-height: 1.7; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  padding: 70px 0 30px;
  font-size: 14.5px;
  position: relative;
  z-index: 2;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr .8fr .8fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 500; color: #fff; }
.footer-emblem { width: 40px; height: 32px; color: #fff; }
.footer-tagline {
  margin: 18px 0 0;
  max-width: 280px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.footer-col p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  padding: 3px 0;
  transition: color .25s;
}
.footer-col a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
}

/* ---------- Reveal-Grundzustand ---------- */
[data-reveal], [data-reveal-group] > * { opacity: 0; }
.no-motion [data-reveal], .no-motion [data-reveal-group] > * { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .fact-grid, .value-grid, .work-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .brand-band { max-width: none; }
}

@media (max-width: 760px) {
  .site-header { gap: 16px; padding: 14px 20px; }
  .site-nav {
    position: fixed;
    top: 62px; right: 16px;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
  }
  .site-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav a { padding: 8px 0; font-size: 16px; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.8);
    cursor: pointer;
    align-items: center;
  }
  .nav-toggle span { display: block; width: 16px; height: 2px; background: var(--ink); transition: transform .3s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .section { padding: 90px 0; }
  /* Marken-Text bündig zur Headline (Handy-Abnahme 27.08.2026) */
  .brand-band { padding: 8px 0; }
  .hero { padding-bottom: 70px; }
  .hero-foot { display: none; }
  .hero-actions .btn { width: 100%; text-align: center; }
  /* Footer auf dem Handy: alles zentriert untereinander (Weisung 27.08.2026) */
  .footer-cols { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-tagline { max-width: none; }
  .footer-legal { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .contact-mail { gap: 12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
