/* ===========================
   Sales.Bayern — Premium UI
   No frameworks. Mobile-first.
   =========================== */

/* ===========================
   DSGVO: local fonts only
   Place files in /fonts (woff2).
   =========================== */

@font-face {
  font-family: "Inter";
  src: url("fonts/Inter-VariableFont_slnt,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("fonts/CormorantGaramond-VariableFont_wght.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand (Armani Blue / White / Gold) */
  --navy: #061729;
  --navy-2: #0a2238;
  --gold: #c9a25d;
  --offwhite: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --hairline: rgba(255, 255, 255, 0.10);

  /* Surfaces */
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(0, 0, 0, 0.18);
  --glass: rgba(8, 23, 43, 0.42);
  --glass-strong: rgba(8, 23, 43, 0.66);

  /* Lighting */
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.58);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, 0.38);
  --shadow-sm: 0 10px 22px rgba(0, 0, 0, 0.30);
  --gold-glow: rgba(201, 154, 63, 0.22);

  /* Radii + layout */
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;
  --container: 1160px;

  /* Type */
  --serif: "Cormorant Garamond", ui-serif, Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in: cubic-bezier(0.6, 0, 0.2, 1);
  --dur-1: 160ms;
  --dur-2: 260ms;
  --dur-3: 520ms;

  /* Hero atmosphere controls */
  --hero-fog: 0.22;
  /* Globaler Filmgrain: auf OLED etwas zurückgenommen für ruhigeren Look */
  --hero-noise: 0.025;
  --hero-vignette: 0.60;
  --hero-light: 0.24;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Armani-grade motion */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(4px);
  transition: opacity 780ms var(--ease-out), transform 780ms var(--ease-out),
    filter 780ms var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--offwhite);
  background: radial-gradient(1100px 760px at 20% -10%, rgba(201, 162, 93, 0.14), transparent 62%),
    radial-gradient(980px 720px at 85% 5%, rgba(255, 255, 255, 0.06), transparent 58%),
    linear-gradient(180deg, var(--navy), #030812 72%, #02040a);
  overflow-x: hidden;
}

/* Subtle, premium noise layer (CSS-only) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: var(--hero-noise);
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035), rgba(255,255,255,0.035) 1px, transparent 1px, transparent 2px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.020), rgba(255,255,255,0.020) 1px, transparent 1px, transparent 3px);
  filter: contrast(120%) brightness(110%);
}

@media (max-width: 520px) {
  body::before {
    display: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--hairline);
  color: var(--offwhite);
  transform: translateY(-150%);
  transition: transform var(--dur-2) var(--ease-out);
  z-index: 9999;
}
.skip-link:focus {
  transform: translateY(0);
}

/* ===========================
   Session intro (first visit / tab session only)
   =========================== */

html.intro-overlay-skip .intro-overlay {
  display: none !important;
}

body.intro-active {
  overflow: hidden;
}

.intro-overlay {
  --intro-navy: #061426;
  --intro-gold: #d6b36a;
  --intro-white: #f4f1ea;

  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--intro-navy);
  pointer-events: auto;
  opacity: 1;
  transition:
    opacity 0.85s var(--ease-out),
    visibility 0s linear 0s;
  visibility: visible;
}

.intro-overlay.is-exiting {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.78s var(--ease-out),
    visibility 0s linear 0.78s;
}

/* Morph: Intro-Logo fliegt zur Header-Marke — Backdrop etwas schneller weg */
.intro-overlay.is-morphing.is-exiting {
  transition:
    opacity 0.42s var(--ease-out),
    visibility 0s linear 0.42s;
}

.intro-overlay.is-morphing .intro-overlay__inner {
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: none;
}

.intro-overlay.is-morphing.is-exiting .intro-overlay__inner {
  opacity: 0;
  transform: none;
}

/* Während Intro: echte Header-Marke ausblenden, Ziel für Morph */
body.intro-active .brand-mark {
  opacity: 0;
}

.intro-overlay__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      closest-side at 50% 42%,
      rgba(7, 26, 47, 0) 0%,
      rgba(0, 0, 0, 0.45) 100%
    ),
    radial-gradient(900px 520px at 50% 0%, rgba(214, 179, 106, 0.07), transparent 62%);
}

.intro-overlay__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(244, 241, 234, 0.06),
      rgba(244, 241, 234, 0.06) 1px,
      transparent 1px,
      transparent 2px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(244, 241, 234, 0.04),
      rgba(244, 241, 234, 0.04) 1px,
      transparent 1px,
      transparent 3px
    );
}

.intro-overlay__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  /* Skalenmodul (3× Basis): proportional zur Viewport-Kante */
  font-size: clamp(6.45rem, 33vmin, 15.75rem);
  max-width: min(98vw, 52rem);
  margin-inline: auto;
  transform: translateZ(0) scale(1);
  transition: transform 0.78s var(--ease-out), opacity 0.78s var(--ease-out);
}

.intro-overlay.is-exiting .intro-overlay__inner {
  transform: translate3d(0, -10px, 0) scale(0.94);
  opacity: 0.92;
}

.intro-overlay__sales {
  margin: 0 0 0.28em;
  font-family: var(--sans);
  /* Proportional zur bayern-Zeile (Eltern-font-size), mit Mindestgröße für Lesbarkeit */
  font-size: clamp(1.875rem, 0.185em, 2.625rem);
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: lowercase;
  color: var(--intro-white);
  line-height: 1.2;
}

.intro-overlay__dot {
  color: var(--intro-gold);
  letter-spacing: 0;
}

.intro-overlay__bayern {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1em;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: lowercase;
  color: var(--intro-gold);
}

@media (max-width: 520px) {
  .intro-overlay__inner {
    font-size: clamp(5.85rem, 37.5vmin, 13.5rem);
  }
  .intro-overlay__sales {
    letter-spacing: 0.34em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-overlay {
    display: none !important;
    pointer-events: none !important;
  }
}

/* Klon während Intro→Header-Morph (liegt außerhalb .intro-overlay) */
.intro-flight.intro-overlay__inner {
  --intro-white: #f4f1ea;
  --intro-gold: #d6b36a;
  box-sizing: border-box;
  text-align: center;
}

/* ===========================
   Header / Navigation (Glass)
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  background:
    linear-gradient(180deg, rgba(6, 23, 41, 0.80), rgba(6, 23, 41, 0.22)),
    radial-gradient(700px 160px at 30% 0%, rgba(201, 162, 93, 0.11), transparent 60%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 10px 44px rgba(0, 0, 0, 0.18);
}

/* Header: etwas luftiger — Editorial-Brand wirkt leiser, nicht „Header-laut" */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 22px;
}

/* Navbar-Marke: gleiche Sprache wie Intro (Ivory / Gold, lowercase, Understatement) */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  line-height: 1;
}

.brand-mark__line--sales {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.44em;
  text-transform: lowercase;
  color: rgba(244, 241, 234, 0.84);
}

.brand-mark__dot {
  color: #d6b36a;
  letter-spacing: 0;
}

.brand-mark__line--region {
  font-family: var(--serif);
  font-size: clamp(13px, 1.85vw, 16px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: rgba(214, 179, 106, 0.88);
  line-height: 1.02;
}

@media (max-width: 520px) {
  .header-inner {
    padding: 12px 0;
    gap: 16px;
  }
  .brand-mark__line--sales {
    font-size: 7.5px;
    letter-spacing: 0.36em;
  }
  .brand-mark__line--region {
    font-size: clamp(12.5px, 3.8vw, 15px);
  }
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--offwhite);
}

.nav-toggle__lines {
  width: 18px;
  height: 12px;
  display: block;
  position: relative;
}
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform var(--dur-2) var(--ease-out), top var(--dur-2) var(--ease-out),
    opacity var(--dur-2) var(--ease-out);
}
.nav-toggle__lines::before {
  top: 1px;
}
.nav-toggle__lines::after {
  top: 9px;
}

.nav {
  position: fixed;
  inset: 66px 16px auto 16px;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(8, 23, 43, 0.78);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
  transform-origin: top right;
  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
}

body.nav-open .nav {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

body.nav-open .nav-toggle__lines::before {
  top: 5px;
  transform: rotate(45deg);
}
body.nav-open .nav-toggle__lines::after {
  top: 5px;
  transform: rotate(-45deg);
}

.nav-link {
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 0.22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--dur-1) var(--ease-out), border-color var(--dur-1) var(--ease-out),
    background var(--dur-1) var(--ease-out), color var(--dur-1) var(--ease-out),
    filter var(--dur-1) var(--ease-out);
}
.nav-link:hover {
  color: var(--offwhite);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 154, 63, 0.24);
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.nav-link.is-active {
  border-color: rgba(201, 154, 63, 0.35);
  box-shadow: 0 0 0 8px rgba(201, 154, 63, 0.05);
  color: rgba(255, 255, 255, 0.92);
}

/* Desktop nav */
@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }
  .nav {
    position: static;
    inset: auto;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-link {
    background: transparent;
    border: 1px solid transparent;
    padding: 10px 12px;
    border-radius: 999px;
  }
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(0);
  }
  .nav-link.is-active {
    box-shadow: none;
    background: rgba(201, 154, 63, 0.10);
  }

  .btn-contact {
    border-radius: 999px;
    padding: 11px 18px;
  }
}

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  letter-spacing: 0.18px;
  border: 1px solid transparent;
  transition: transform var(--dur-1) var(--ease-out), box-shadow var(--dur-2) var(--ease-out),
    background var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  background:
    radial-gradient(160px 120px at 22% 0%, rgba(255, 255, 255, 0.42), transparent 60%),
    linear-gradient(180deg, rgba(214, 180, 104, 1), rgba(166, 128, 60, 1));
  color: #0a1220;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0 0 12px var(--gold-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.90);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px) saturate(1.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.20);
}
.btn-ghost:hover {
  border-color: rgba(201, 154, 63, 0.34);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.30), 0 0 0 12px rgba(201, 154, 63, 0.06);
}

/* Premium focus (keyboard): dezent wie Hover, nicht „Neon-Ring" */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgba(8, 23, 43, 0.55), 0 0 0 3px rgba(201, 154, 63, 0.22);
}

.btn-contact {
  padding: 10px 16px;
  font-size: 14px;
}

/* ===========================
   Typography helpers
   =========================== */

.kicker {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.34px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.06;
}

.subcopy {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  max-width: 66ch;
}

/* Editorial-Zwischenstufe: zwischen H2 und Fließtext, ruhig magazinartig */
.prose-lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: 0.03em;
  color: rgba(244, 241, 234, 0.84);
  max-width: 62ch;
}

.about-left .lead .prose-lede {
  margin: 0 0 16px;
}

.subcopy.prose-lede {
  margin-top: 2px;
  color: rgba(244, 241, 234, 0.78);
  line-height: 1.62;
}

.muted {
  color: var(--muted);
}

.gold {
  color: rgba(201, 154, 63, 0.96);
}

/* ===========================
   Hero (Cinematic)
   =========================== */

.hero {
  position: relative;
  padding: 22px 0 46px;
  border-bottom: 1px solid var(--hairline);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 23, 43, 0.94), rgba(8, 23, 43, 0.56) 55%, rgba(8, 23, 43, 0.90)),
    radial-gradient(900px 700px at 15% 18%, rgba(255, 255, 255, 0.10), transparent 62%),
    radial-gradient(980px 760px at 85% 15%, rgba(201, 154, 63, 0.14), transparent 60%),
    url("assets/munich-night.png");
  background-size: cover;
  background-position: 50% 50%;
  filter: saturate(1.06) contrast(1.04);
  transform: translateZ(0);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Subtle "city lights" bokeh — ultra restrained */
  background:
    radial-gradient(12px 12px at 18% 72%, rgba(255, 214, 140, 0.26), transparent 62%),
    radial-gradient(10px 10px at 22% 78%, rgba(255, 255, 255, 0.12), transparent 60%),
    radial-gradient(14px 14px at 28% 74%, rgba(201, 154, 63, 0.18), transparent 62%),
    radial-gradient(9px 9px at 35% 80%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(12px 12px at 44% 76%, rgba(255, 214, 140, 0.18), transparent 62%),
    radial-gradient(8px 8px at 52% 82%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(14px 14px at 60% 78%, rgba(201, 154, 63, 0.16), transparent 62%),
    radial-gradient(10px 10px at 68% 84%, rgba(255, 255, 255, 0.10), transparent 60%),
    radial-gradient(12px 12px at 76% 79%, rgba(255, 214, 140, 0.18), transparent 62%),
    radial-gradient(8px 8px at 84% 86%, rgba(255, 255, 255, 0.09), transparent 60%),
    radial-gradient(16px 16px at 88% 74%, rgba(201, 154, 63, 0.14), transparent 62%),
    radial-gradient(10px 10px at 92% 82%, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0.55;
  filter: blur(0.6px);
  mix-blend-mode: screen;
  animation: hero-bokeh 22s var(--ease-out) infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* cinematic fog */
    radial-gradient(800px 540px at 25% 20%, rgba(255, 255, 255, var(--hero-fog)), transparent 62%),
    radial-gradient(900px 600px at 70% 35%, rgba(255, 255, 255, calc(var(--hero-fog) * 0.65)), transparent 64%),
    /* volumetric light cones */
    conic-gradient(from 210deg at 72% 20%, rgba(201, 154, 63, var(--hero-light)) 0deg, transparent 34deg, transparent 360deg),
    conic-gradient(from 195deg at 58% 10%, rgba(255, 255, 255, 0.08) 0deg, transparent 30deg, transparent 360deg),
    /* elegant vignette */
    radial-gradient(closest-side at 50% 50%, transparent 55%, rgba(0, 0, 0, var(--hero-vignette)) 100%),
    /* base shading */
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.70));
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: hero-ambient 18s var(--ease-out) infinite alternate;
}

@keyframes hero-ambient {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 10px, 0);
    opacity: 0.96;
  }
}

@keyframes hero-bokeh {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-8px, 6px, 0); }
}

.hero-inner {
  display: grid;
  gap: 30px;
  padding: 18px 0 0;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.26px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 58ch;
}

.hero-divider {
  width: 92px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 154, 63, 0), rgba(201, 154, 63, 1), rgba(201, 154, 63, 0));
  margin: 10px 0 14px;
  opacity: 0.85;
}

.hero-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0.06px;
  text-shadow: 0 30px 110px rgba(0, 0, 0, 0.65);
  max-width: 20ch;
}

.hero-subtitle {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  max-width: 52ch;
  padding-left: 14px;
  border-left: 1px solid rgba(201, 154, 63, 0.38);
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.60);
}

/* Klärender Orientierungssatz: kleiner, zurückhaltend, kein Marketing-Ton */
.hero-orientation {
  margin: 0 0 26px;
  max-width: 46ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(14px, 1.22vw, 16.5px);
  line-height: 1.68;
  letter-spacing: 0.03em;
  color: rgba(244, 241, 234, 0.68);
  text-shadow: 0 14px 48px rgba(0, 0, 0, 0.45);
}

.hero-subclaim {
  margin: 6px 0 14px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.22;
  letter-spacing: 0.06px;
  color: rgba(201, 154, 63, 0.88);
  text-shadow: 0 18px 80px rgba(0, 0, 0, 0.50);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-proof {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
  letter-spacing: 0.14px;
  backdrop-filter: blur(11px) saturate(1.05);
  -webkit-backdrop-filter: blur(11px) saturate(1.05);
}

.portrait-card {
  position: relative;
  margin: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  background: transparent;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.58), inset -1px 0 0 rgba(201, 154, 63, 0.16);
  transform: translateZ(0);
}

/* Integrate portrait into composition (less "floating card") */
.hero-right {
  align-self: stretch;
  display: grid;
  align-items: center;
}

@media (min-width: 980px) {
  .hero-right {
    margin-top: 6px;
    transform: translateY(6px);
  }
  .portrait-card {
    border-radius: 30px;
  }
}

/* Reflection + premium edge */
.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(420px 260px at 22% 6%, rgba(255, 255, 255, 0.22), transparent 60%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.14), transparent 32%, transparent 68%, rgba(201, 154, 63, 0.10));
  opacity: 0.38;
  pointer-events: none;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  /* subtle "luxury grade": slightly warmer/brighter, eyes more present */
  filter: saturate(1.06) contrast(1.16) brightness(1.02);
  transform: scale(1.03);
  position: relative;
  z-index: 0;
}

/* Soft edge integration (slight blur at edges) */
.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 70% 25%, transparent 35%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.65)),
    radial-gradient(closest-side at 50% 50%, transparent 58%, rgba(8, 23, 43, 0.54) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Portrait-Overlay: horizontale Editorial-Signatur, kein schmaler Textblock */
.portrait-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 15px 13px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(6, 14, 28, 0.16), rgba(6, 14, 28, 0.62));
  backdrop-filter: blur(11px) saturate(1.04);
  -webkit-backdrop-filter: blur(11px) saturate(1.04);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: stretch;
}

.portrait-meta__identity {
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(15px, 2.4vw, 17.5px);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.95);
  text-wrap: balance;
  text-shadow: 0 12px 48px rgba(0, 0, 0, 0.45), 0 0 1px rgba(0, 0, 0, 0.5);
}

.portrait-meta__name {
  display: inline;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: inherit;
  color: rgba(255, 255, 255, 0.97);
}

.portrait-meta__sep {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
}

.portrait-meta__role {
  display: inline;
  margin: 0;
  font-family: inherit;
  font-weight: 500;
  letter-spacing: 0.035em;
  font-size: 0.94em;
  color: rgba(255, 255, 255, 0.68);
}

.portrait-meta__copy {
  margin: 0;
  max-width: none;
  width: 100%;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.56);
  text-wrap: balance;
}

.portrait-meta__copy + .portrait-meta__copy {
  margin-top: 0.35em;
}

.portrait-meta__link {
  margin-top: 1px;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: none;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.38);
  border-bottom: 1px solid rgba(201, 154, 63, 0.14);
  padding-bottom: 1px;
  transition: color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}

.portrait-meta__link:hover {
  color: rgba(244, 241, 234, 0.62);
  border-color: rgba(201, 154, 63, 0.28);
}

/* Redaktionelle Bildzeile — keine zweite Infokarte */
.portrait-credit {
  margin: 14px 0 0;
  padding: 0 4px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.38);
  font-weight: 500;
}


@media (min-width: 980px) {
  .hero {
    padding: 34px 0 58px;
  }
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    padding-top: 46px;
  }
  .hero-subtitle {
    margin-top: 6px;
    margin-bottom: 18px;
  }
  .hero-orientation {
    margin-bottom: 28px;
  }
}

/* ===========================
   Sections
   =========================== */

.section {
  padding: 80px 0;
  border-top: 1px solid var(--hairline);
}

section[id] {
  scroll-margin-top: 96px;
}

@media (min-width: 980px) {
  .section {
    padding: 104px 0;
  }
}

.section-head {
  margin-bottom: 42px;
}

@media (min-width: 980px) {
  .section-head {
    margin-bottom: 50px;
  }
}

/* ===========================
   Mobile Hero tuning (modern phones)
   =========================== */

@media (max-width: 520px) {
  .hero {
    padding: 10px 0 22px;
  }
  .hero-inner {
    gap: 20px;
    padding-top: 6px;
  }
  .eyebrow {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
  }
  .hero-divider {
    margin: 10px 0 14px;
  }
  .hero-title {
    margin-bottom: 10px;
    line-height: 1.05;
    letter-spacing: 0.02px;
  }
  .hero-subclaim {
    margin: 8px 0 12px;
    font-size: 17px;
    color: rgba(201, 154, 63, 0.90);
  }
  .hero-subtitle {
    margin-bottom: 14px;
    padding-left: 12px;
    font-size: 17px;
    line-height: 1.42;
  }
  .hero-orientation {
    margin-bottom: 16px;
    font-size: 13.5px;
    line-height: 1.66;
    max-width: 44ch;
  }
  .hero-actions {
    gap: 11px;
    margin-top: 2px;
  }
  .hero-actions .btn {
    padding: 10px 14px;
    font-size: 14px;
  }
  .hero-right {
    max-width: 91%;
    margin-inline: auto;
  }
  .portrait-card {
    border-radius: 22px;
    box-shadow: 0 28px 88px rgba(0, 0, 0, 0.50), inset -1px 0 0 rgba(201, 154, 63, 0.14);
  }
  .hero-image {
    aspect-ratio: 4 / 5;
    transform: scale(0.95);
    transform-origin: center center;
  }
  .portrait-meta {
    left: 11px;
    right: 11px;
    bottom: 11px;
    padding: 11px 12px 10px;
    border-radius: 15px;
    gap: 6px;
  }
  .portrait-meta__identity {
    font-size: 14.5px;
    line-height: 1.36;
  }
  .portrait-meta__role {
    font-size: 0.9em;
  }
  .portrait-meta__copy {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
  .portrait-meta__link {
    margin-top: 0;
    font-size: 10px;
    letter-spacing: 0.045em;
  }
  .portrait-credit {
    margin-top: 10px;
    font-size: 9px;
    letter-spacing: 0.14em;
    color: rgba(244, 241, 234, 0.32);
  }
}

/* Sehr schmale Viewports: kompakter, Text darf umbrechen — kein Ausblenden */
@media (max-width: 390px) {
  .portrait-meta {
    padding: 10px 11px 9px;
  }
  .portrait-meta__identity {
    font-size: 14px;
  }
  .portrait-meta__copy {
    font-size: 10.5px;
    line-height: 1.48;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg::before,
  .hero-bg::after {
    animation: none !important;
  }
}
/* ===========================
   About (Editorial)
   =========================== */

.section--about {
  background: radial-gradient(900px 700px at 70% 20%, rgba(201, 154, 63, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
}

.about-grid {
  display: grid;
  gap: 32px;
}

.about-left {
  max-width: 86ch;
}

.about-credentials {
  margin: 28px 0 8px;
  max-width: 42rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.credential {
  margin: 0;
  padding: 22px 18px 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.credential:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.credential:nth-child(even) {
  padding-left: 18px;
}

.credential dt {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 34px);
  letter-spacing: 0.01em;
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.94);
}

.credential dd {
  margin: 10px 0 0;
  max-width: 20ch;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.56);
}

.lead p {
  margin: 0 0 15px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
  max-width: 70ch;
}
.lead p + p {
  margin-top: 2px;
}

.subhead {
  margin: 22px 0 10px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.12px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.90);
}

.perspective-note {
  margin: 18px 0 18px;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-sm);
  max-width: 74ch;
  position: relative;
}

.perspective-note::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(201, 154, 63, 0.42);
}

.perspective-note p {
  margin: 0 0 10px;
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}
.perspective-note p:last-child {
  margin-bottom: 0;
}

.editorial-card {
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.editorial-card__top {
  padding: 18px 18px 8px;
}

.gold-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 154, 63, 0), rgba(201, 154, 63, 1), rgba(201, 154, 63, 0));
  opacity: 0.95;
  margin-bottom: 14px;
}

.editorial-quote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0.14px;
}

.editorial-card__bottom {
  padding: 0 18px 18px;
}

.image-frame {
  margin-top: 14px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-lg);
}
.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

@media (min-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .about-credentials {
    margin: 34px 0 14px;
    max-width: 38rem;
  }

  .credential {
    padding-top: 26px;
    padding-bottom: 30px;
  }

  .credential dt {
    font-size: clamp(28px, 2.1vw, 36px);
  }

  .credential dd {
    max-width: 22ch;
  }

  .image-frame img {
    aspect-ratio: 4 / 3;
  }
}

/* ===========================
   Services (Cards)
   =========================== */

.cards {
  display: grid;
  gap: 18px;
}

.card {
  position: relative;
  padding: 22px 22px 18px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out),
    border-color var(--dur-2) var(--ease-out);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(450px 220px at 18% 0%, rgba(201, 154, 63, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-2) var(--ease-out);
  pointer-events: none;
}

.card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  letter-spacing: 0.12px;
  font-weight: 600;
  font-size: 20px;
}

.card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.card__meta {
  font-size: 12px;
  letter-spacing: 0.34px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 154, 63, 0.28);
  box-shadow: var(--shadow-md);
}
.card:hover::before {
  opacity: 1;
}

@media (min-width: 760px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (min-width: 1100px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* ===========================
   Process (Timeline)
   =========================== */

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 26px;
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  align-items: start;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.step__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.18px;
  color: rgba(201, 154, 63, 0.96);
  line-height: 1;
  padding-top: 2px;
  position: relative;
}

.step__num::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 32px;
  bottom: -26px;
  width: 1px;
  background: rgba(255, 255, 255, 0.10);
}
.step:last-child .step__num::after {
  display: none;
}

.step__body h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.12px;
  font-size: 20px;
}
.step__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  max-width: 66ch;
}

@media (min-width: 980px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 34px;
  }
  .step__num::after {
    bottom: -32px;
  }
}

/* ===========================
   Differenzierung (Statements)
   =========================== */

.section--diff {
  background: radial-gradient(900px 700px at 25% 10%, rgba(201, 154, 63, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%);
}

.h2--statement {
  max-width: 22ch;
}

.diff-grid {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.statement {
  padding: 14px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  letter-spacing: 0.14px;
}

.quote {
  margin: 22px 0 0;
  padding: 18px 18px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(201, 154, 63, 0.24);
  background: rgba(201, 154, 63, 0.08);
  box-shadow: var(--shadow-sm);
}
.quote p {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.06;
  letter-spacing: 0.14px;
}

@media (min-width: 980px) {
  .diff-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .h2--statement {
    max-width: 30ch;
  }
}

/* ===========================
   Editorial (Magazine)
   =========================== */

.editorial-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.editorial-post {
  padding: 18px 18px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out),
    box-shadow var(--dur-2) var(--ease-out);
}

.editorial-post:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 63, 0.22);
  box-shadow: var(--shadow-md);
}

.editorial-post__meta {
  font-size: 12px;
  letter-spacing: 0.34px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: 10px;
}

.editorial-post h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.12px;
}
.editorial-post p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

@media (min-width: 980px) {
  .editorial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ===========================
   Accordion — Vertriebsrealität (editorial)
   =========================== */

.editorial-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.acc-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2.1rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  color: inherit;
  transition: opacity 0.2s ease;
}

.acc-trigger:hover {
  opacity: 0.8;
}

.acc-trigger:focus {
  outline: none;
}

.acc-trigger:focus-visible {
  outline: 2px solid rgba(201, 162, 93, 0.55);
  outline-offset: 6px;
  border-radius: 4px;
}

.acc-trigger__inner {
  flex: 1;
}

.acc-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.acc-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.acc-read {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.45;
}

.acc-title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.6rem;
  color: var(--offwhite);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.acc-trigger[aria-expanded="true"] .acc-title {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 162, 93, 0.06);
}

@media (min-width: 721px) {
  .editorial-accordion .acc-item:first-child .acc-trigger[aria-expanded="true"] .acc-title {
    text-shadow: none;
    color: rgba(244, 241, 234, 0.88);
  }
}

.acc-teaser {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.65;
  margin: 0 0 0.75rem;
}

.acc-byline {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  opacity: 0.4;
  text-transform: uppercase;
}

.acc-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.3s;
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.acc-icon::before {
  width: 14px;
  height: 2px;
}

.acc-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%) scaleY(1);
  transform-origin: center;
}

.acc-trigger[aria-expanded="true"] .acc-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0.08;
}

.acc-trigger[aria-expanded="true"] .acc-icon {
  opacity: 1;
}

.acc-body {
  overflow: hidden;
  height: 0;
  transition: height 0.58s cubic-bezier(0.22, 0.12, 0.18, 1);
}

.acc-content {
  padding: 0 0 2.65rem;
  max-width: 68ch;
}

.acc-content p {
  font-size: 0.95rem;
  line-height: 1.84;
  opacity: 0.82;
  margin: 0 0 1.15rem;
}

.acc-lead {
  font-size: 1.05rem !important;
  opacity: 1 !important;
  font-weight: 400;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
  margin-bottom: 1.75rem !important;
}

.acc-content h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}

.acc-quote {
  margin: 2rem 0 1.5rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 93, 0.06);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.acc-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0.55;
  margin-top: 0.6rem;
}

.acc-share {
  margin-top: 0.5rem;
}

.acc-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 93, 0.35);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.acc-share__btn:hover {
  background: rgba(201, 162, 93, 0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.acc-share__btn svg {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .acc-trigger {
    padding: 1.5rem 0 1.55rem;
    gap: 1rem;
  }

  .acc-teaser {
    font-size: 0.92rem;
  }

  .acc-content {
    padding-bottom: 2rem;
    max-width: 62ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .acc-body,
  .acc-title,
  .acc-icon::before,
  .acc-icon::after,
  .acc-trigger {
    transition: none !important;
  }
}

/* ===========================
   Contact (Boutique Hotel vibe)
   =========================== */

.section--contact {
  background: radial-gradient(900px 700px at 70% 10%, rgba(201, 154, 63, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
}

.section--stance {
  background: radial-gradient(900px 700px at 70% 20%, rgba(201, 154, 63, 0.10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 40%);
}

.stance {
  margin-top: 20px;
  padding: 26px 26px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-sm);
  max-width: 86ch;
}

.stance p {
  margin: 0 0 14px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.78);
}

.stance-lead {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.28;
  letter-spacing: 0.12px;
  color: rgba(255, 255, 255, 0.88);
}

.stance-rule {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.stance-split {
  margin: 10px 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.76);
}
.stance-split li {
  margin: 6px 0;
}

.stance-fine {
  margin: 0;
  color: rgba(201, 154, 63, 0.74);
  font-size: 13px;
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.contact-hint {
  margin: 14px 0 0;
  max-width: 52ch;
  font-size: 13px;
  line-height: 1.62;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.58);
}

.contact-hint--soft {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.48);
}

.contact-cards {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.contact-card {
  padding: 16px 16px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out),
    box-shadow var(--dur-2) var(--ease-out);
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 63, 0.28);
  box-shadow: var(--shadow-md);
}

.contact-card__label {
  font-size: 12px;
  letter-spacing: 0.34px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.contact-card__value {
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.18px;
}
.contact-card__meta {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

/* Dual audience: Unternehmen / Kandidaten */
.contact-audience {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-audience__card {
  display: grid;
  gap: 8px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 16px 16px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out),
    box-shadow var(--dur-2) var(--ease-out), background var(--dur-2) var(--ease-out);
}

.contact-audience__card:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 154, 63, 0.24);
}

.contact-audience__card.is-active {
  border-color: rgba(201, 154, 63, 0.42);
  background:
    radial-gradient(420px 160px at 12% 0%, rgba(201, 154, 63, 0.14), transparent 60%),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201, 154, 63, 0.12);
}

.contact-audience__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.12px;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
}

.contact-audience__copy {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}

.contact-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.contact-panel.is-active {
  display: block;
  animation: contact-panel-in 420ms var(--ease-out) both;
}

@keyframes contact-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-panel.is-active {
    animation: none;
  }
}

.contact-panel__intro {
  margin: 0 0 16px;
}

.contact-panel__title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: 0.12px;
  color: rgba(255, 255, 255, 0.92);
}

.contact-panel__lede {
  margin: 0;
  max-width: 54ch;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.contact-assurance {
  margin: 12px 0 0;
  max-width: 54ch;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1px solid rgba(201, 154, 63, 0.22);
  background: rgba(201, 154, 63, 0.07);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(244, 241, 234, 0.82);
}

.field-optional {
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.42);
}

.field--check {
  margin-bottom: 14px;
}

.field-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}

.field-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  padding: 0;
  border-radius: 4px;
  accent-color: #c9a25d;
  background: rgba(255, 255, 255, 0.04);
}

.field-check a {
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(214, 179, 106, 0.28);
  text-decoration: none;
}

.field-check a:hover {
  color: rgba(244, 241, 234, 0.92);
  border-color: rgba(214, 179, 106, 0.45);
}

.field--invalid .field-check {
  color: rgba(244, 228, 198, 0.88);
}

.contact-cv {
  margin-top: 18px;
  padding: 18px 18px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-sm);
}

.contact-cv__title {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.12px;
  color: rgba(255, 255, 255, 0.90);
}

.contact-cv__copy {
  margin: 0 0 14px;
  max-width: 58ch;
  font-size: 13px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.64);
}

.contact-cv .form-privacy {
  margin: 0 0 12px;
}

.contact-cv .field--check {
  margin-bottom: 16px;
}

.contact-cv .btn {
  width: fit-content;
}

.contact-cv__hint {
  margin: 12px 0 0;
  max-width: 52ch;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48);
}

.form {
  padding: 22px 22px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(700px 240px at 30% 0%, rgba(201, 154, 63, 0.09), transparent 60%),
    rgba(8, 23, 43, 0.50);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

.form-row {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.field > span:not(.field-error) {
  font-size: 12px;
  letter-spacing: 0.22px;
  color: rgba(255, 255, 255, 0.70);
}

/* Pro-Feld-Fehlerhinweis (A11y: aria-describedby); optisch zurückhaltend */
.field-error {
  margin: 0;
  max-width: 52ch;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: rgba(244, 228, 198, 0.78);
}

.field-error[hidden] {
  display: none !important;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
  color: var(--offwhite);
  padding: 14px 14px;
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
  transition: border-color var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out),
    background var(--dur-2) var(--ease-out);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input:focus,
textarea:focus {
  border-color: rgba(201, 154, 63, 0.48);
  box-shadow: 0 0 0 8px rgba(201, 154, 63, 0.10);
  background: rgba(255, 255, 255, 0.05);
}

.form-actions {
  display: grid;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  font-size: 13px;
}

/* Kontakt: Datenschutzhinweis + Formular-Feedback (ruhig, kein Banner-Look) */
.form-privacy {
  margin: 1rem 0 0;
  max-width: 62ch;
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.48);
}

.form-privacy a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(214, 179, 106, 0.28);
  padding-bottom: 1px;
  transition: color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}

.form-privacy a:hover {
  color: rgba(244, 241, 234, 0.82);
  border-color: rgba(214, 179, 106, 0.45);
}

.form-status {
  margin-top: 0.75rem;
  padding: 0.65rem 0.85rem;
  max-width: 62ch;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.form-status[hidden] {
  display: none !important;
}

.form-status--success {
  border-color: rgba(214, 179, 106, 0.22);
}

.form-status--error {
  border-color: rgba(214, 179, 106, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

.field--invalid input,
.field--invalid textarea {
  border-color: rgba(220, 80, 60, 0.55);
  box-shadow: 0 0 0 6px rgba(220, 80, 60, 0.10);
}

@media (min-width: 980px) {
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: start;
  }
  .contact-audience {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   Footer
   =========================== */

.site-footer {
  padding: 44px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.68);
}

/* Emotionaler Abschluss: editorial, viel Luft, keine Claim-Lautstärke */
.footer-closing {
  margin: 0 0 2.25rem;
  padding: 0 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  max-width: 36ch;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.72;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.48);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 72ch;
  margin-top: 4px;
}

.footer-note {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.62;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 1px;
  transition: border-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 154, 63, 0.42);
}

/* Legal pages */
.nav--static {
  position: static;
  inset: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.legal {
  min-height: calc(100vh - 140px);
}

.article-page {
  min-height: calc(100vh - 140px);
}

.article-container {
  padding-top: 18px;
  max-width: 74ch;
}

.article-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.04px;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: balance;
}

.article-byline {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.52);
}

.article-lede {
  margin: 0 0 28px;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.article-body p {
  margin: 0 0 16px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.82);
}

.article-body h2 {
  margin: 28px 0 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.08px;
  color: rgba(255, 255, 255, 0.92);
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.legal-container {
  padding-top: 18px;
  max-width: 92ch;
}

.legal-title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.06px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.06;
}

.legal-lead {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  max-width: 78ch;
}

.legal-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.legal-flow {
  display: grid;
  gap: 14px;
}

.legal-block {
  padding: 16px 16px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-sm);
}

.legal-h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.06px;
  font-size: 20px;
  line-height: 1.15;
}

.legal-block p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}
.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block a {
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(201, 154, 63, 0.22);
  padding-bottom: 1px;
}

.legal-fine {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.7;
  font-size: 13px;
}

@media (min-width: 980px) {
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .legal-container {
    padding-top: 26px;
  }
}

/* ===========================
   Honeypot (Anti-Spam)
   Für echte Nutzer unsichtbar, nicht per display:none/visibility:hidden
   (manche Bots erkennen das und lassen das Feld dann bewusst leer).
   =========================== */

.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
