/* =====================================================================
   PAMAGO Group AG — Stylesheet
   Design-Tokens aus dem Logo abgeleitet (siehe :root).
   Look: seriös, modern, luxuriös, erhaben — Navy / Schwarz / Weiss / Silber
   + sehr dezenter Messing-Akzent.
   ===================================================================== */

/* ----------  DESIGN TOKENS  ---------- */
:root {
  /* Navy (aus Logo gesampelt) */
  --navy-900: #0a1729;   /* Hero-Tiefe */
  --navy-800: #0e2038;   /* dunkle Sektionen / Header */
  --navy-700: #1f3a62;   /* Leitfarbe (P + Rahmen) */
  --navy-600: #244a7a;   /* Zwischenton */
  --navy-500: #2d528d;   /* helleres Navy (GROUP) — Hover/Aktiv */

  /* Tinte / Text */
  --ink:      #14181c;   /* Headlines & Fliesstext auf hell */
  --ink-soft: #454c56;   /* Sekundärtext */
  --ink-mute: #6b7480;   /* Labels, Meta */

  /* Neutral / Silber */
  --white:    #ffffff;
  --paper:    #fbfbfc;   /* leicht abgesetzter Grund */
  --silver-50:  #f4f5f7; /* ruhige Flächen */
  --silver-100: #eceef2;
  --silver-200: #dcdfe6; /* Trennlinien */
  --silver-300: #c4cad4;

  /* Akzent — aus dem Logo-Navy abgeleitet (kein Gold).
     --brass       = Akzent auf HELLEM Grund (Ziffern, Hairlines, aktive Sprache)
     --brass-soft  = Akzent auf DUNKLEM Grund (helles Stahlblau) */
  --brass:      #2d528d;   /* Logo-Navy «GROUP» */
  --brass-soft: #9dbbe6;   /* helles Stahlblau */

  /* On-dark */
  --on-dark:        #f3f5f9;
  --on-dark-soft:   rgba(233, 238, 246, 0.72);
  --on-dark-mute:   rgba(233, 238, 246, 0.5);
  --hairline-dark:  rgba(255, 255, 255, 0.14);

  /* Typografie */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 4px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.5s;
}

/* ----------  RESET / BASE  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 108px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;      /* 17px */
  line-height: 1.68;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--navy-700); color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--navy-700); color: #fff; padding: 0.6rem 1rem; border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

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

/* ----------  TYPOGRAPHY HELPERS  ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 1.4rem;
}
.eyebrow--onDark { color: var(--on-dark-soft); }
.sect-num {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 0.95rem; letter-spacing: 0; color: var(--brass); text-transform: none;
}
.eyebrow__tick { width: 26px; height: 1px; background: var(--brass); display: inline-block; }
.eyebrow--onDark .eyebrow__tick, .ansatz .eyebrow__tick { background: var(--brass-soft); }

/* ----------  BUTTONS  ---------- */
.btn {
  --btn-bg: var(--navy-700);
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem; min-height: 52px; padding: 0 1.9rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid transparent; border-radius: var(--radius); cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.2s var(--ease);
  overflow: hidden; background: none; color: inherit;
}
.btn--primary { background: var(--navy-700); color: #fff; isolation: isolate; }
.btn--primary::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--navy-500); transform: translateX(-101%); transition: transform 0.6s var(--ease-lux); }
.btn--primary:hover::before { transform: translateX(0); }
.btn--ghost { border-color: var(--silver-200); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--navy-700); color: var(--navy-700); }
.btn--line-light { border-color: var(--hairline-dark); color: var(--on-dark); }
.btn--line-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.btn--block { width: 100%; }
.btn:active { transform: translateY(1px); }
.btn__arrow { display: inline-block; margin-left: 0.15rem; transition: transform 0.45s var(--ease-lux); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ----------  HEADER  ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 90px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 52px; width: auto; transition: opacity 0.35s var(--ease); }
.brand-logo--dark { position: absolute; opacity: 0; }

.main-nav { margin-inline-start: auto; }
.nav-list { list-style: none; display: flex; gap: clamp(1.2rem, 2.4vw, 2.4rem); margin: 0; padding: 0; }
.nav-list a {
  position: relative; font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em;
  color: var(--on-dark); padding: 0.4rem 0; white-space: nowrap; transition: color 0.3s var(--ease);
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--brass); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav-list a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.lang-switch { display: flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--on-dark-mute); }
.lang-switch a { padding: 0.2rem 0.15rem; color: var(--on-dark-mute); transition: color 0.3s var(--ease); position: relative; }
.lang-switch a:hover { color: var(--on-dark); }
.lang-switch a.is-active { color: var(--on-dark); }
.lang-switch a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px; background: var(--brass-soft);
}
.lang-sep { color: var(--on-dark-mute); }
.header-cta { min-height: 42px; padding: 0 1.2rem; }

/* Header state: scrolled -> weisser Grund, dunkle Schrift, Farb-Logo */
.site-header[data-state="scrolled"] {
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--silver-200);
  box-shadow: 0 1px 30px rgba(14, 32, 56, 0.06);
}
.site-header[data-state="scrolled"] .brand-logo--light { opacity: 0; }
.site-header[data-state="scrolled"] .brand-logo--dark { opacity: 1; }
.site-header[data-state="scrolled"] .nav-list a,
.site-header[data-state="scrolled"] .lang-switch a.is-active { color: var(--ink); }
.site-header[data-state="scrolled"] .lang-switch a,
.site-header[data-state="scrolled"] .lang-sep { color: var(--ink-mute); }
.site-header[data-state="scrolled"] .header-cta { border-color: var(--silver-200); color: var(--ink); }
.site-header[data-state="scrolled"] .header-cta:hover { border-color: var(--navy-700); color: var(--navy-700); }
.site-header[data-state="scrolled"] .nav-toggle span { background: var(--ink); }
.site-header[data-state="scrolled"] .lang-switch a.is-active::after { background: var(--brass); }

/* ----------  MOBILE MENU  ---------- */
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 0; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--on-dark); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--navy-800);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--gutter) 3rem; transform: translateY(-100%);
  transition: transform 0.5s var(--ease); }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { border-bottom: 1px solid var(--hairline-dark); }
.mobile-menu a { display: flex; align-items: baseline; gap: 1rem; padding: 1.15rem 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 8vw, 2.7rem); color: var(--on-dark); }
.mm-index { font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; color: var(--brass); }
.mobile-menu__foot { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.4rem; color: var(--on-dark-soft); font-size: 0.95rem; }

/* ----------  HERO  ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--on-dark); overflow: hidden; padding: 8rem 0 4rem; background: var(--navy-900); }
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 112%; object-fit: cover; object-position: 70% center; will-change: transform; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
/* Standbild-Fallback (immer als Hintergrund; Video liegt darüber, wenn aktiv) */
.hero--video .hero__bg { background-image: url("../img/hero-video-poster.jpg"); background-size: cover; background-position: 70% center; }
/* Mobil & Reduced-Motion: kein Autoplay-Video, nur Standbild */
@media (max-width: 767px) { .hero__video { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }
.hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgba(9,20,36,0.9) 0%, rgba(9,20,36,0.62) 34%, rgba(9,20,36,0.18) 62%, rgba(9,20,36,0) 88%),
  linear-gradient(180deg, rgba(9,20,36,0.55) 0%, rgba(9,20,36,0.05) 26%, rgba(9,20,36,0.12) 72%, rgba(9,20,36,0.45) 100%); }
.hero__inner { position: relative; z-index: 2; max-width: 60rem; }
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.8rem, 6.8vw, 5.8rem); line-height: 1.02; letter-spacing: -0.015em;
  margin: 0 0 1.6rem; color: #fff; }
.hero__title span { display: block; }
.hero__title span:nth-child(2) { color: #eaf0f8; }
.hero__title span:nth-child(3) { font-style: italic; color: var(--brass-soft); }
.hero__lead { max-width: 40rem; font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--on-dark-soft); margin-bottom: 2.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.7rem; color: var(--on-dark-mute); }
.hero__scroll-label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--brass-soft), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--brass-soft); animation: scrollcue 2.2s var(--ease) infinite; }
@keyframes scrollcue { 0% { transform: translateY(0); } 100% { transform: translateY(300%); } }

/* ----------  SECTIONS  ---------- */
.section { padding-block: var(--section-y); }
.section-head { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head--split { display: grid; grid-template-columns: 1fr; gap: 1.4rem; align-items: end; }
.section-intro { color: var(--ink-soft); max-width: 34rem; font-size: 1.08rem; }

/* Über uns — Zweispalten-Text (Titel | Fliesstext) */
.about__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; }
.about__head .eyebrow { margin-bottom: 1.4rem; }
.about__head .display { font-size: clamp(2rem, 4.8vw, 3.4rem); margin: 0; }
.about__body { max-width: 42rem; color: var(--ink-soft); font-size: 1.08rem; }
.about__body p + p { margin-top: 1.1em; }

/* Werte — Karten mit Hover-Lift */
.werte { background: var(--silver-50); }
.value-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: clamp(0.9rem, 1.6vw, 1.25rem); }
.value-card { background: var(--white); border: 1px solid var(--silver-200); border-radius: var(--radius); padding: clamp(1.7rem, 2.8vw, 2.4rem); position: relative; overflow: hidden; transition: border-color 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux), background 0.5s var(--ease-lux); }
.value-card::before { content: ""; position: absolute; top: 0; left: 0; height: 2px; width: 0; background: var(--brass); transition: width 0.6s var(--ease-lux); }
.value-card:hover { border-color: var(--navy-500); box-shadow: 0 14px 34px rgba(14, 32, 56, 0.09); }
.value-card:hover::before { width: 100%; }
.value-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; margin-bottom: 0.7rem; color: var(--ink); transition: color 0.45s var(--ease-lux); }
.value-card:hover h3 { color: var(--navy-700); }
.value-card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

/* Bild-Band / Leitgedanke */
.quote-band { position: relative; overflow: hidden; min-height: clamp(360px, 58vh, 560px); display: flex; align-items: center; color: var(--on-dark); background: var(--navy-900); }
.quote-band__bg { position: absolute; inset: 0; overflow: hidden; }
.quote-band__img { position: absolute; left: 0; width: 100%; top: -10%; height: 120%; object-fit: cover; object-position: center 42%; will-change: transform; }
.quote-band__scrim { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(9,20,36,0.55) 0%, rgba(9,20,36,0.3) 45%, rgba(9,20,36,0.62) 100%); }
.quote-band__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(3.5rem, 9vw, 6rem); }
.quote-band__mark { width: clamp(48px, 7vw, 66px); height: auto; margin: 0 auto 1.7rem; }
.quote-band__text { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.9rem, 4.6vw, 3.3rem); line-height: 1.12; letter-spacing: -0.01em; color: #fff; margin: 0; }

/* Leistungen — Index-Layout */
.pillars { border-top: 1px solid var(--silver-200); }
.pillar { display: grid; grid-template-columns: 1fr; gap: 0.5rem 2.5rem; padding: clamp(1.7rem, 4vw, 2.5rem) clamp(0.5rem, 2vw, 1.4rem); border-bottom: 1px solid var(--silver-200); position: relative; transition: background 0.4s var(--ease); }
.pillar:hover { background: var(--silver-50); }
.pillar__head { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.15rem; }
.pillar__icon { display: inline-flex; flex: none; color: var(--navy-500); transition: color 0.4s var(--ease); }
.pillar__icon svg { width: 27px; height: 27px; display: block; }
.pillar:hover .pillar__icon { color: var(--navy-700); }
.pillar__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.55rem, 2.8vw, 2.05rem); color: var(--ink); margin: 0; }
.pillar__desc { color: var(--ink-soft); margin: 0; }
.pillar__line { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--brass); transition: width 0.55s var(--ease); }
.pillar:hover .pillar__line { width: 100%; }

/* Ansatz */
.ansatz { background: var(--navy-800); color: var(--on-dark); }
.ansatz .display, .ansatz .eyebrow { color: var(--on-dark); }
.ansatz .eyebrow { color: var(--on-dark-soft); }
.ansatz .section-intro { color: var(--on-dark-soft); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2rem); }
.step { position: relative; padding-top: 2rem; }
.step::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--hairline-dark); transform: scaleX(0); transform-origin: left; transition: transform 0.9s var(--ease-lux); }
.step.is-visible::after { transform: scaleX(1); }
.step::before { content: ""; position: absolute; top: -1px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--brass-soft); transform: translateY(-50%) scale(0); box-shadow: 0 0 0 4px var(--navy-800); transition: transform 0.5s var(--ease-lux) 0.28s; z-index: 1; }
.step.is-visible::before { transform: translateY(-50%) scale(1); }
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: 0.6rem; color: #fff; }
.step p { color: var(--on-dark-soft); margin: 0; max-width: 30rem; }

/* Kontakt */
.kontakt__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.kontakt__intro .display { margin-bottom: 1.2rem; }
.kontakt__text { color: var(--ink-soft); max-width: 32rem; font-size: 1.08rem; margin-bottom: 2.6rem; }
.contact-details { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; }
.contact-details li { display: grid; grid-template-columns: 1fr; gap: 0.25rem; padding-top: 1.2rem; border-top: 1px solid var(--silver-200); }
.cd-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.cd-value { color: var(--ink); line-height: 1.5; }
.cd-value a:hover { color: var(--navy-500); }

/* Formular */
.kontakt__form-wrap { background: var(--paper); border: 1px solid var(--silver-200); border-radius: var(--radius); padding: clamp(1.6rem, 3.5vw, 2.6rem); }
.field { margin-bottom: 1.35rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-soft); margin-bottom: 0.5rem; transition: color 0.4s var(--ease-lux); }
.field:focus-within label { color: var(--navy-700); }
.field__control { display: block; position: relative; }
.field__control::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--navy-700); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease-lux); }
.field:focus-within .field__control::after { transform: scaleX(1); }
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; font-family: inherit; font-size: 1.05rem; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--silver-300); border-radius: 0;
  padding: 0.75rem 0; min-height: 48px; transition: border-color 0.4s var(--ease-lux), box-shadow 0.4s var(--ease-lux); }
.field textarea { resize: vertical; min-height: 120px; }
.field input[type="text"]:focus, .field input[type="email"]:focus, .field textarea:focus { outline: none; border-bottom-color: var(--silver-300); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-bottom-color: #b4443b; box-shadow: 0 1px 0 0 #b4443b; }
.field__error { display: block; min-height: 1rem; margin-top: 0.35rem; font-size: 0.82rem; color: #b4443b; }
.field--check { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; }
.field--check input { width: 20px; height: 20px; min-height: 0; margin-top: 0.15rem; accent-color: var(--navy-700); }
.field--check label { margin: 0; font-weight: 400; font-size: 0.9rem; color: var(--ink-soft); letter-spacing: 0; }
.field--check a { color: var(--navy-600); text-decoration: underline; text-underline-offset: 2px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.btn__spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff; border-radius: 50%; display: none; animation: spin 0.7s linear infinite; }
.is-sending .btn__spinner { display: inline-block; }
.is-sending .btn__label { opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { margin: 1rem 0 0; font-size: 0.92rem; min-height: 1.2rem; }
.form-status.is-ok { color: #2c6e49; }
.form-status.is-err { color: #b4443b; }

/* ----------  FOOTER  ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--navy-900); color: var(--on-dark); padding-top: clamp(3.5rem, 6vw, 5.5rem); border-top: 1px solid var(--brass-soft); }
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand img { height: 58px; width: auto; margin-bottom: 1.2rem; }
.footer__claim { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: var(--on-dark-soft); max-width: 22rem; }
.footer__col h4 { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-mute); margin-bottom: 1.1rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer__col li { width: fit-content; }
.footer__col a { position: relative; color: var(--on-dark-soft); transition: color 0.3s var(--ease); }
.footer__col a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--brass-soft); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-lux); }
.footer__col a:hover { color: #fff; }
.footer__col a:hover::after { transform: scaleX(1); }
.footer__col address { font-style: normal; color: var(--on-dark-soft); line-height: 1.7; }
.footer__bar { display: flex; flex-direction: column; gap: 1rem; padding-block: 1.6rem; border-top: 1px solid var(--hairline-dark); font-size: 0.85rem; color: var(--on-dark-mute); }
.footer__lang { display: flex; gap: 0.5rem; }
.footer__lang a:hover { color: #fff; }
.footer__lang .is-active { color: var(--brass-soft); }

/* ----------  BRAND MARK (P) WATERMARK  ---------- */
.brand-mark { position: absolute; pointer-events: none; user-select: none; z-index: 0; height: auto; }
.ansatz { position: relative; overflow: hidden; }
.ansatz .container { position: relative; z-index: 1; }
.brand-mark--light { top: -2%; right: -1%; width: clamp(150px, 24vw, 340px); opacity: 0.08; }
.brand-mark--footer { right: -2%; bottom: -14%; width: clamp(220px, 32vw, 460px); opacity: 0.08; }
.footer__inner, .footer__bar { position: relative; z-index: 1; }

/* ----------  FILM-GRAIN auf dunklen Flächen (sehr dezent, „teures“ Material)  ---------- */
.hero::after, .quote-band::after, .ansatz::after, .site-footer::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05; mix-blend-mode: overlay;
}
.hero::after, .quote-band::after { z-index: 1; }
.ansatz::after, .site-footer::after { z-index: 0; }

/* ----------  REVEAL ANIMATION  ---------- */
[data-reveal] { opacity: 0; transform: translateY(16px); filter: blur(5px); transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux), filter 0.9s var(--ease-lux); will-change: opacity, transform, filter; }
[data-reveal].is-visible { opacity: 1; transform: none; filter: none; }

/* Zeilenweise Masken-Enthüllung für Headlines (handcrafted) */
[data-reveal-lines] { opacity: 1; }
.reveal-line { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.reveal-line__i { display: block; transform: translateY(112%); transition: transform 1.05s var(--ease-lux); }
[data-reveal-lines].is-visible .reveal-line__i { transform: none; }
.reveal-line:nth-child(2) .reveal-line__i { transition-delay: 0.09s; }
.reveal-line:nth-child(3) .reveal-line__i { transition-delay: 0.18s; }
.reveal-line:nth-child(4) .reveal-line__i { transition-delay: 0.27s; }

/* Eyebrow-Strich zeichnet sich beim Reveal (dezent) */
.eyebrow__tick { transform: scaleX(0); transform-origin: left; transition: transform 0.8s var(--ease-lux) 0.12s; }
[data-reveal].is-visible .eyebrow__tick { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; filter: none; transition: none; }
  .reveal-line__i { transform: none; transition: none; }
  .eyebrow__tick { transform: scaleX(1); transition: none; }
  .hero__scroll-line::after { animation: none; }
}

/* ----------  RESPONSIVE  ---------- */
@media (min-width: 640px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .footer__bar { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1fr auto; gap: 3rem; }
  .section-head--split .section-intro { text-align: right; padding-bottom: 0.4rem; }
  .about__grid { grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 4vw, 3.4rem); }
  .about__body { border-left: 1px solid var(--silver-200); padding-left: clamp(2rem, 3.5vw, 3.4rem); }
  .value-grid { grid-template-columns: repeat(4, 1fr); }
  .pillar { grid-template-columns: minmax(240px, 0.8fr) 1.5fr; align-items: start; column-gap: clamp(2rem, 4vw, 4rem); }
  .pillar__desc { padding-top: 0.5rem; }
  .steps { grid-template-columns: repeat(3, 1fr); column-gap: clamp(1.5rem, 3vw, 2.5rem); }
  .kontakt__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; }
}
@media (max-width: 1023px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  body.menu-open { overflow: hidden; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
}
@media (min-width: 900px) {
  .brand-logo { height: 64px; }
  .header-inner { height: 104px; }
}

/* ----------  MOBILE-FEINSCHLIFF (fürs Handy gestaltet, nicht geschrumpft)  ---------- */
@media (max-width: 640px) {
  :root { --section-y: 3.9rem; }
  html { scroll-padding-top: 84px; }

  /* Header etwas kompakter */
  .header-inner { height: 76px; }
  .brand-logo { height: 46px; }

  /* Hero: eigene Handy-Dramaturgie */
  .hero { min-height: 100svh; padding: 6.5rem 0 2.75rem; }
  .hero__inner { display: flex; flex-direction: column; }
  .hero__title { font-size: clamp(2.1rem, 8.4vw, 2.9rem); line-height: 1.06; letter-spacing: -0.01em; margin-bottom: 1.3rem; }
  .hero__lead { font-size: 1.02rem; margin-bottom: 1.9rem; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero__actions .btn { width: 100%; }
  .hero__scroll { display: none; }

  /* Sektions-Kopf: Intro unter den Titel, linksbündig */
  .section-intro { font-size: 1.02rem; }

  /* Werte: mehr Ruhe pro Karte */
  .value-card { padding: 1.6rem 1.4rem; }

  /* Kontakt: kompaktere Formularfläche, komfortable Felder */
  .kontakt__form-wrap { padding: 1.6rem 1.3rem; }
  .field input[type="text"], .field input[type="email"], .field textarea { font-size: 1rem; }

  /* Footer: klarere Trennung der Blöcke */
  .footer__inner { gap: 2rem; }
  .footer__brand img { height: 50px; }
}

/* ----------  UNTERSEITEN (Impressum / Datenschutz)  ---------- */
body.subpage { background: var(--white); }
body.subpage .site-header {
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--silver-200);
  box-shadow: 0 1px 30px rgba(14, 32, 56, 0.06);
}
body.subpage .brand-logo--light { opacity: 0; }
body.subpage .brand-logo--dark { opacity: 1; }
body.subpage .nav-list a,
body.subpage .lang-switch a.is-active { color: var(--ink); }
body.subpage .lang-switch a,
body.subpage .lang-sep { color: var(--ink-mute); }
body.subpage .lang-switch a:hover,
body.subpage .lang-switch a.is-active { color: var(--ink); }
body.subpage .header-cta { border-color: var(--silver-200); color: var(--ink); }
body.subpage .nav-toggle span { background: var(--ink); }
body.subpage .lang-switch a.is-active::after { background: var(--brass); }

.legal { padding-top: clamp(7.5rem, 12vw, 10.5rem); padding-bottom: var(--section-y); }
.legal__head { margin-bottom: clamp(2rem, 5vw, 3.4rem); }
.legal h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.04; letter-spacing: -0.01em; color: var(--ink); margin: 0.6rem 0 0; }
.legal__lead { color: var(--ink-soft); max-width: 42rem; margin-top: 1.1rem; font-size: 1.08rem; }
.legal__body { max-width: 46rem; color: var(--ink-soft); }
.legal__body h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.8vw, 2rem); color: var(--ink); margin: 2.6rem 0 0.7rem; letter-spacing: -0.005em; }
.legal__body h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin: 1.5rem 0 0.3rem; }
.legal__body p { margin: 0 0 1rem; }
.legal__body ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.legal__body li { margin-bottom: 0.4rem; }
.legal__body a { color: var(--navy-600); text-decoration: underline; text-underline-offset: 2px; }
.legal__body a:hover { color: var(--navy-500); }
.legal__body address { font-style: normal; }
.legal__body hr { border: 0; border-top: 1px solid var(--silver-200); margin: 2.4rem 0; }
.ph { background: #fbf1cf; border: 1px dashed #cdaa4b; color: #6b5410; padding: 0.05em 0.4em; border-radius: 3px; font-size: 0.95em; }

/* ----------  COOKIE-CONSENT  ---------- */
.consent {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 1.25rem; z-index: 200;
  width: min(700px, calc(100% - 2rem)); background: var(--navy-800); color: var(--on-dark);
  border: 1px solid var(--hairline-dark); border-radius: 6px; box-shadow: 0 24px 60px rgba(6, 14, 26, 0.45);
  padding: 1.15rem 1.35rem; display: flex; flex-direction: column; gap: 1rem;
  animation: consent-in 0.6s var(--ease-lux) both;
}
@keyframes consent-in { from { opacity: 0; transform: translate(-50%, 14px); } to { opacity: 1; transform: translate(-50%, 0); } }
.consent__text { font-size: 0.9rem; line-height: 1.55; color: var(--on-dark-soft); margin: 0; }
.consent__text a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { display: flex; gap: 0.6rem; flex: none; }
.consent .btn { min-height: 44px; padding: 0 1.2rem; font-size: 0.88rem; }
.consent__decline { border-color: var(--hairline-dark); color: var(--on-dark); background: transparent; }
.consent__decline:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.07); }
.consent__accept { background: #fff; color: var(--navy-800); border-color: #fff; }
.consent__accept:hover { background: var(--silver-100); }
@media (min-width: 600px) {
  .consent { flex-direction: row; align-items: center; justify-content: space-between; gap: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) { .consent { animation: none; } }
