/* =====================================================
   MENTARISMA – Design System
   Professionell · Klar · Vertrauenswürdig
   ===================================================== */

/* ---- Design Tokens ---- */
:root {
  /* Forest / Tannengrün (CLAUDE.md: #1F3A36, #162926) */
  --forest-950: #060f0b;
  --forest-900: #162926;
  --forest-800: #1F3A36;
  --forest-700: #2C5248;

  /* Kupfer (CLAUDE.md: #B46E4D, #D08B68) */
  --copper-700: #8F5438;
  --copper-600: #B46E4D;
  --copper-500: #C27B5B;
  --copper-400: #D08B68;
  --copper-300: #DDA285;
  --copper-200: #EBB99D;
  --copper-100: #F5E4D8;

  /* Cream / Offwhite (CLAUDE.md: #F7F5F2) */
  --cream-50:  #FDFBF9;
  --cream-100: #F7F5F2;
  --cream-200: #EDE8DF;
  --cream-300: #E1D9CE;

  /* Stone / Text (CLAUDE.md: #1A1A1A, #555555) */
  --stone-700: #1A1A1A;
  --stone-600: #555555;
  --stone-400: #888888;
  --white: #ffffff;

  /* Typografie — Fraunces (Display, elegant-modern) + Inter (Text, beste Lesbarkeit) */
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --text:    "Inter", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container:  1200px;
  --header-h:   176px;
  --section-v:  clamp(64px, 8vw, 108px);

  --r-sm:  10px;
  --r-md:  22px;
  --r-lg:  38px;

  --shadow-sm: 0 2px 18px rgba(6, 15, 11, 0.07);
  --shadow-md: 0 12px 44px rgba(6, 15, 11, 0.11);
  --shadow-lg: 0 28px 90px rgba(6, 15, 11, 0.20);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  background: var(--cream-100);
}
body {
  background: var(--cream-100);
  color: var(--stone-700);
  font-family: var(--text);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* ---- Typografie ---- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  text-wrap: balance; /* ausgewogene Headline-Zeilen, keine Schusterjungen */
}
h1 { font-size: clamp(4rem, 7.8vw, 8.4rem); line-height: 0.90; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.6rem, 4.8vw, 4.8rem); line-height: 0.98; margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.9rem, 2.8vw, 3.2rem); line-height: 1.04; margin-bottom: 0.9rem; }
h4 { font-size: 1.05rem; line-height: 1.4; letter-spacing: 0.01em; }
p  { color: var(--stone-600); line-height: 1.80; margin-bottom: 1.2rem; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}
.narrow      { max-width: 800px; }
.text-center { text-align: center; }
.section     { padding-block: var(--section-v); }

/* ---- Hintergründe ---- */
.section-light {
  background: linear-gradient(180deg, var(--cream-100), var(--cream-200));
}
.section-cream {
  background:
    radial-gradient(circle at top right, rgba(180, 110, 77, 0.06), transparent 30%),
    linear-gradient(180deg, var(--cream-200), #e4ddd2);
}
.section-dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(180, 110, 77, 0.14), transparent 38%),
    linear-gradient(135deg, var(--forest-950), var(--forest-900));
}
.section-dark h2,
.section-dark h3  { color: var(--white); }
.section-dark p   { color: rgba(255, 255, 255, 0.78); }
.section-dark .eyebrow { color: var(--copper-200); }

/* ---- Eyebrow (harmonisiert mit .home-section-tag) ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--text);
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-700);
  margin-bottom: 1.3rem;
}
.eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
/* Zentrierte Eyebrows (text-center Container) */
.text-center .eyebrow,
.section-heading.text-center .eyebrow { justify-content: center; }
.eyebrow-light { color: var(--copper-200); }

/* ---- Lead / Abschnittstext ---- */
.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.40rem);
  line-height: 1.74;
}
.section-intro       { line-height: 1.80; margin-bottom: 1.2rem; }
.section-intro-light { color: rgba(255, 255, 255, 0.82); }

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 4.5vw, 60px);
}
.section-heading.text-center { margin-inline: auto; }
.section-heading h2  { margin-bottom: 1.2rem; }

/* ---- Fokus ---- */
:focus-visible {
  outline: 2.5px solid var(--copper-600);
  outline-offset: 4px;
  border-radius: 6px;
}


/* =====================================================
   HEADER
   ===================================================== */

.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(251, 248, 242, 0.92);
  border-bottom: 1px solid rgba(22, 41, 38, 0.06);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  transition:
    height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.5s ease;
}
.site-header.scrolled {
  height: 104px;
  background: rgba(251, 248, 242, 0.96);
  border-bottom-color: rgba(22, 41, 38, 0.10);
  box-shadow: 0 10px 40px rgba(6, 15, 11, 0.08);
}
.site-header.hidden { transform: translateY(-100%); }

.header-inner {
  height: 100%;
  max-width: min(1280px, 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* Navigation */
.nav-group,
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 40px);
}
.nav-group.nav-left, .nav-left { justify-content: flex-end; }
.nav-group.nav-right, .nav-right { justify-content: flex-start; }

/* Gleitender Hover-Indikator (per JS injiziert) – ruhig, markengerecht */
.nav-group { position: relative; }
.nav-group > a,
.nav-group > .nav-dropdown { position: relative; z-index: 1; }
.nav-indicator {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 2.5rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(180, 110, 77, 0.10);
  border: 1px solid rgba(180, 110, 77, 0.20);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    left 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.scrolled .nav-indicator { height: 2.1rem; }

.nav-group a,
.nav-left a,
.nav-right a {
  position: relative;
  font-size: 1.32rem;
  font-weight: 700;
  color: rgba(22, 41, 38, 0.78);
  white-space: nowrap;
  letter-spacing: -0.005em;
  transition: color 0.4s ease;
}
.nav-group a:hover,
.nav-left a:hover,
.nav-right a:hover,
.nav-group a.active,
.nav-left a.active,
.nav-right a.active { color: var(--copper-600); }

.nav-group a.active::after,
.nav-left a.active::after,
.nav-right a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--copper-600);
}

/* Kontakt-Button in Nav */
.nav-contact, .nav-cta {
  padding: 0.82rem 1.65rem !important;
  border-radius: 999px !important;
  border: 1.5px solid rgba(180, 110, 77, 0.42) !important;
  color: var(--forest-800) !important;
  font-weight: 700;
  font-size: 1.18rem !important;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, color 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.nav-contact:hover, .nav-cta:hover {
  background: var(--copper-600) !important;
  border-color: var(--copper-600) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}
.nav-contact::after, .nav-cta::after { display: none !important; }

/* Logo — souveräner Markenanker: Größe + Weissraum, keine laute Bühne */
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand:hover { transform: translateY(-1px); }
.brand-logo {
  height: 152px;
  width: auto;
  object-fit: contain;
  display: block;
  /* dezente Tiefe direkt am Logo statt Container-Kasten */
  filter: drop-shadow(0 4px 14px rgba(6, 15, 11, 0.10));
  transition:
    height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
}
.brand:hover .brand-logo {
  filter: drop-shadow(0 7px 20px rgba(6, 15, 11, 0.16));
}
.site-header.scrolled .brand-logo { height: 84px; }

/* Header scroll – nav text + button shrink elegant mit */
.nav-group a,
.nav-left a,
.nav-right a,
.nav-contact,
.nav-cta {
  transition: font-size 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.45s ease,
              background 0.45s ease,
              border-color 0.45s ease,
              transform 0.45s ease,
              padding 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.site-header.scrolled .nav-group a,
.site-header.scrolled .nav-left a,
.site-header.scrolled .nav-right a {
  font-size: 1.15rem;
}
.site-header.scrolled .nav-contact,
.site-header.scrolled .nav-cta {
  font-size: 1.04rem !important;
  padding: 0.66rem 1.35rem !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  position: absolute;
  right: 0;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.menu-toggle:hover { background: rgba(180, 110, 77, 0.08); }
/* Premium Hamburger: 3 Linien → elegantes X (mittlere Linie blendet weg) */
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest-900);
  border-radius: 2px;
  transition:
    transform 0.45s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.3s ease,
    width 0.4s var(--ease),
    background 0.3s ease;
  transform-origin: center;
}
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--copper-600);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--copper-600);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset-inline: 14px;
  top: calc(var(--header-h) + 8px);
  z-index: 899;
  flex-direction: column;
  padding: 12px 0 20px;
  border-radius: var(--r-lg);
  background: rgba(251, 248, 242, 0.97);
  border: 1px solid rgba(22, 41, 38, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  /* Bei vielen Einträgen / kleinem Screen scrollbar — nichts wird abgeschnitten */
  max-height: calc(100svh - var(--header-h) - 24px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
/* dezente Scrollleiste, markengerecht */
.mobile-nav::-webkit-scrollbar { width: 6px; }
.mobile-nav::-webkit-scrollbar-thumb { background: rgba(180, 110, 77, 0.3); border-radius: 999px; }
.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.mobile-nav {
  padding: 12px 12px 16px;
  gap: 6px;
}
/* Flex-Kinder dürfen NICHT geschrumpft werden — sonst quetscht der
   scrollbare Container das aufgeklappte Untermenü zusammen (Bug). */
.mobile-nav > * { flex-shrink: 0; }
/* Top-Level-Einträge als ruhige Panels (Karten-Anmutung, markengerecht) */
.mobile-nav > a,
.mobile-acc-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 60px;
  padding: 0.8rem 1.2rem 0.8rem 1.4rem;
  border: 0;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.5);
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--forest-900);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.55s var(--ease),
    background 0.35s ease,
    color 0.25s ease;
}
/* Chevron im Accordion-Trigger */
.mobile-acc-trigger { justify-content: space-between; gap: 12px; }
.mobile-acc-chevron {
  width: 16px; height: 11px; flex-shrink: 0;
  color: var(--copper-600);
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.mobile-acc-trigger[aria-expanded="true"] .mobile-acc-chevron { transform: rotate(180deg); }
/* Kupfer-Akzentlinie links, wächst beim Tippen/Hover */
.mobile-nav > a::before,
.mobile-acc-trigger::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--copper-600), var(--copper-400));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s var(--ease);
}
.mobile-nav > a:hover,
.mobile-nav > a:focus-visible,
.mobile-acc-trigger:hover,
.mobile-acc-trigger:focus-visible {
  background: rgba(180, 110, 77, 0.07);
  color: var(--copper-700);
}
.mobile-nav > a:hover::before,
.mobile-nav > a:focus-visible::before,
.mobile-nav > a.active::before,
.mobile-acc-trigger:hover::before,
.mobile-acc-trigger[aria-expanded="true"]::before { transform: scaleY(1); }
.mobile-nav.is-open > a,
.mobile-nav.is-open > .mobile-acc-trigger { opacity: 1; transform: translateX(0); }
/* Sanfter, seitlicher Stagger (gilt für alle direkten Kinder inkl. Sub-Block) */
.mobile-nav.is-open > *:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.is-open > *:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.is-open > *:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.is-open > *:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.is-open > *:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.is-open > *:nth-child(6) { transition-delay: 0.30s; }
.mobile-nav.is-open > *:nth-child(7) { transition-delay: 0.35s; }
.mobile-nav:not(.is-open) > * { transition-delay: 0s; }


/* =====================================================
   STARTSEITE – HERO
   ===================================================== */

/* =====================================================
   HERO – Editorial Split (Premium, Swiss restraint)
   ===================================================== */

.hero-home {
  position: relative;
  min-height: clamp(680px, 90svh, 960px);
  padding-top: calc(var(--header-h) + clamp(56px, 7vw, 104px));
  padding-bottom: clamp(96px, 10vw, 144px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 92% 18%, rgba(180, 110, 77, 0.07), transparent 65%),
    radial-gradient(ellipse 50% 40% at 8% 88%, rgba(44, 82, 72, 0.05), transparent 65%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 70%, var(--cream-100) 100%);
  overflow: hidden;
}

.hero-overlay { display: none; }

/* Schmälere, ruhigere Hero-Komposition mit echtem Atem */
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  column-gap: clamp(64px, 9vw, 144px);
  align-items: center;
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
}

.hero-content {
  max-width: 540px;
  position: relative;
  padding-right: clamp(0px, 1vw, 16px);
}

/* ---- Kicker — editorial, präsent ---- */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  color: var(--copper-700);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.2s forwards;
}
.hero-kicker::before {
  content: "";
  width: 60px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* ---- H1 — gross, ruhig, schwarz auf Cream ---- */
.hero-content h1 {
  color: var(--forest-900);
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: clamp(1.6rem, 2.6vw, 2.2rem);
  text-shadow: none;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.38s forwards;
}

.hero-sub {
  max-width: 520px;
  color: var(--stone-700);
  font-size: clamp(1.18rem, 1.5vw, 1.32rem);
  line-height: 1.72;
  margin-bottom: clamp(2.4rem, 3.6vw, 3rem);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.56s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.74s forwards;
}
.hero-actions .btn { min-width: 200px; }

/* (Hero-Pills wurden entfernt — Zielgruppen erscheinen jetzt nur in Sektion 02) */

/* ---- Visual — refined editorial frame ---- */
.hero-visual {
  position: relative;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: clamp(8px, 1vw, 14px);
  overflow: hidden;
  background: var(--forest-950);
  box-shadow:
    0 50px 90px -20px rgba(6, 15, 11, 0.28),
    0 22px 44px -10px rgba(6, 15, 11, 0.16),
    0 0 0 1px rgba(6, 15, 11, 0.05);
  opacity: 0;
  transform: scale(1.02) translateY(20px);
  animation: heroImageReveal 1.6s var(--ease) 0.4s forwards;
}

.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.96);
  transform: scale(1);
  transition: transform 12s ease-out;
}

.hero-visual:hover .hero-visual-frame img {
  transform: scale(1.04);
}

/* Premium-Detail: feiner Innenring */
.hero-visual-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: max(2px, calc(clamp(8px, 1vw, 14px) - 6px));
  pointer-events: none;
  z-index: 2;
}

@keyframes heroImageReveal {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ---- Caption — editorial unter dem Bild ---- */
.hero-visual-caption {
  display: flex;
  align-items: baseline;
  gap: clamp(14px, 1.6vw, 22px);
  margin: clamp(1.4rem, 2vw, 1.9rem) 0 0 clamp(4px, 1vw, 12px);
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.2s forwards;
}
.hero-visual-caption::before {
  content: "";
  flex-shrink: 0;
  width: 36px;
  height: 1.5px;
  background: var(--copper-600);
  align-self: center;
}
.hero-visual-caption-text {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 1.85vw, 1.85rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--forest-900);
}
.hero-visual-caption-text em {
  font-style: italic;
  color: var(--copper-700);
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero-home {
    min-height: 0;
    padding-top: calc(var(--header-h) + clamp(28px, 4vw, 48px));
    padding-bottom: clamp(64px, 8vw, 96px);
    padding-inline: clamp(20px, 4vw, 32px);
  }
  .hero-content { padding-right: 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
  }
  .hero-visual-frame {
    aspect-ratio: 16 / 11;
  }
  .hero-content { max-width: 100%; }
  .hero-content h1 { font-size: clamp(2.8rem, 8.6vw, 4.6rem); }
}

@media (max-width: 640px) {
  .hero-actions .btn {
    min-width: 0;
    width: 100%;
  }
  .hero-actions { flex-direction: column; }
  .hero-visual-frame { aspect-ratio: 4 / 3; }
  .hero-visual-caption {
    font-size: clamp(1.08rem, 4.6vw, 1.36rem);
    gap: 14px;
  }
  .hero-visual-caption::before {
    width: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-kicker,
  .hero-content h1,
  .hero-sub,
  .hero-actions,
  .hero-visual-caption {
    opacity: 1;
    animation: none;
  }
  .hero-visual-frame {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero-visual:hover .hero-visual-frame img {
    transform: none;
  }
}



/* =====================================================
   BUTTONS
   ===================================================== */

/* Premium Button System – konsistent, cinematic, mit Shine-Sweep + Arrow */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 2.1rem;
  border-radius: 999px;
  font-family: var(--text);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease,
    border-color 0.45s ease,
    color 0.45s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%
  );
  transform: translateX(-110%);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before { transform: translateX(110%); }
.btn:hover { transform: translateY(-2px); }
.btn::after {
  content: "→";
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 2;
}
.btn:hover::after { transform: translateX(5px); }
.btn > * { position: relative; z-index: 2; }

.btn-primary {
  background: var(--copper-600);
  color: var(--white);
  border-color: var(--copper-600);
  box-shadow:
    0 10px 30px -8px rgba(180, 110, 77, 0.40),
    0 2px 6px rgba(180, 110, 77, 0.18);
}
.btn-primary:hover {
  background: var(--copper-700);
  border-color: var(--copper-700);
  box-shadow:
    0 18px 50px -10px rgba(180, 110, 77, 0.55),
    0 4px 12px rgba(180, 110, 77, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--copper-700);
  border-color: rgba(180, 110, 77, 0.45);
}
.btn-ghost:hover {
  background: var(--copper-600);
  color: var(--white);
  border-color: var(--copper-600);
}

/* Ghost-Light für dunkle Sektionen */
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(208, 139, 104, 0.42);
}
.btn-ghost-light:hover {
  background: rgba(208, 139, 104, 0.14);
  border-color: var(--copper-400);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--forest-800);
  border-color: rgba(22, 41, 38, 0.18);
}
.btn-outline:hover {
  border-color: var(--copper-600);
  background: rgba(180, 110, 77, 0.05);
  color: var(--copper-700);
}

/* Primary auf dunklem Hintergrund: Shine-Sweep heller */
.btn-on-dark.btn-primary {
  box-shadow:
    0 14px 44px -10px rgba(180, 110, 77, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest-800);
  transition: color 0.25s ease;
}
.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper-600);
  transition: width 0.3s var(--ease);
}
.text-link:hover { color: var(--copper-700); }
.text-link:hover::after { width: 46px; }


/* =====================================================
   STARTSEITE – SEKTIONEN
   ===================================================== */

/* Angebots-Karten */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.offer-card {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--r-md);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.4s ease;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180, 110, 77, 0.26);
}
.offer-num {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: rgba(180, 110, 77, 0.58);
  text-transform: uppercase;
}
.offer-card h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}
.offer-card p {
  flex: 1;
  font-size: 1rem;
  line-height: 1.70;
  margin-bottom: 1.8rem;
}
.offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--copper-600);
  margin-top: auto;
}
.offer-link::after {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.offer-card:hover .offer-link::after { width: 34px; }

/* Über-mich Abschnitt (Homepage) */
.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 68% 18%, rgba(208, 139, 104, 0.18), transparent 42%),
    linear-gradient(148deg, var(--forest-800), var(--forest-950));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--r-lg) - 10px);
  border: 1px solid rgba(208, 139, 104, 0.14);
}
.portrait-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.portrait-mark {
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  color: rgba(208, 139, 104, 0.55);
  line-height: 1;
  letter-spacing: -0.04em;
}
.portrait-caption {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(208, 139, 104, 0.42);
}
.about-portrait.has-photo .portrait-inner { display: none; }
.about-portrait.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content > p {
  font-size: 1.02rem;
  line-height: 1.80;
  margin-bottom: 1.6rem;
}
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2.2rem;
}
.credentials span {
  padding: 0.52rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 41, 38, 0.12);
  background: var(--cream-200);
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--forest-800);
}

/* Arbeitsweise – 3 Schritte (Homepage) */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(14px, 2.5vw, 30px);
  align-items: start;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.step {
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(208, 139, 104, 0.18);
}
.step-num {
  display: block;
  margin-bottom: 1.1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--copper-400);
  text-transform: uppercase;
}
.step strong {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.step p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.68;
}
.step-divider {
  width: 1px;
  height: 38px;
  align-self: center;
  background: linear-gradient(to bottom, transparent, rgba(208, 139, 104, 0.44), transparent);
}
.steps-action { text-align: center; }

/* Final CTA */
.final-cta {
  position: relative;
  background:
    radial-gradient(circle at 55% 0%, rgba(180, 110, 77, 0.22), transparent 42%),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
}
/* Feine Zäsur am oberen Rand – klare Abgrenzung, auch wenn eine dunkle
   Sektion vorausgeht (ruhige Dramaturgie statt Doppel-Dunkel). */
.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(280px, 60%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208, 139, 104, 0.55), transparent);
}
.final-cta h2 {
  color: var(--white);
  margin-bottom: 2.4rem;
  max-width: 740px;
  margin-inline: auto;
}
.final-cta .eyebrow { justify-content: center; }


/* =====================================================
   UNTERSEITEN – SEITEN-INTRO
   ===================================================== */

.page-intro {
  padding-top: calc(var(--header-h) + clamp(72px, 9vw, 108px));
  padding-bottom: clamp(72px, 9vw, 108px);
  background: linear-gradient(180deg, var(--cream-100), var(--cream-200));
  min-height: auto !important;
  background-image: none !important;
}
.page-intro .eyebrow { justify-content: center; }
.page-intro h1 { color: var(--forest-900); }
.page-intro .lead {
  max-width: 660px;
  margin-inline: auto;
  margin-top: 1.4rem;
}
.page-intro .tag-list { justify-content: center; }
/* Eintritts-Animation: jetzt über das einheitliche .hero-enter-System
   (siehe premium.css) — keine seitenspezifische fadeUp-Animation mehr,
   damit alle Seiten denselben Effekt haben. */


/* =====================================================
   SPLIT-LAYOUT (Zweispaltig)
   ===================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}
.split.split-balanced { align-items: start; }


/* =====================================================
   KARTEN
   ===================================================== */

.card-grid       { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }

.soft-card {
  position: relative;
  padding: clamp(32px, 4vw, 50px);
  border-radius: var(--r-md);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.07);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.4s ease;
}
.soft-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180, 110, 77, 0.20);
}
.soft-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--copper-400), var(--copper-700));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.soft-card:hover::before { opacity: 1; }
.soft-card > span {
  display: block;
  margin-bottom: 1.1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: rgba(180, 110, 77, 0.62);
  text-transform: uppercase;
}
.soft-card h3 { margin-bottom: 0.9rem; }
.soft-card p  { margin: 0; }

/* Orientierungs-Karten */
.orientation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.orientation-card {
  padding: clamp(30px, 4vw, 48px);
  border-radius: var(--r-md);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.orientation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.orientation-card span {
  display: block;
  margin-bottom: 1.2rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: rgba(180, 110, 77, 0.62);
  text-transform: uppercase;
}
.orientation-card h3 { margin-bottom: 0.9rem; }
.orientation-card p  { margin: 0; font-size: 1rem; }

/* Methoden-Karten */
.method-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.method-card {
  padding: clamp(32px, 4vw, 50px);
  border-radius: var(--r-md);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.07);
  box-shadow: var(--shadow-sm);
}
.method-card > span {
  display: block;
  margin-bottom: 1.1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: rgba(180, 110, 77, 0.62);
  text-transform: uppercase;
}
.method-card h3 { margin-bottom: 0.9rem; }
.method-card p  { margin: 0; }


/* =====================================================
   TARIFE
   ===================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.price-card {
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--r-md);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card > span {
  display: block;
  margin-bottom: 1.3rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-600);
}
.price-card h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.3rem, 1.55vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  overflow-wrap: break-word;
  hyphens: manual;
}
.price-card > p { color: var(--stone-400); font-size: 0.94rem; }
.price {
  margin: 1.6rem 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.2vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--forest-900);
}
.price.small { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.price-note  { font-size: 0.96rem; margin-top: 1.1rem; line-height: 1.65; }

.clean-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(22, 41, 38, 0.10);
  color: var(--stone-600);
  font-weight: 600;
  font-size: 1rem;
}
.clean-list li:last-child { border-bottom: 0; }


/* =====================================================
   LISTEN & TAGS
   ===================================================== */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.8rem;
}
.tag-list span {
  padding: 0.50rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 41, 38, 0.12);
  background: rgba(255, 255, 255, 0.70);
  color: var(--forest-800);
  font-size: 0.92rem;
  font-weight: 700;
}

.info-list {
  display: grid;
  gap: 10px;
  margin-top: 1.8rem;
}
.info-list span {
  padding: 0.95rem 1.1rem;
  border-left: 2.5px solid var(--copper-600);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.60);
  color: var(--forest-800);
  font-weight: 700;
  font-size: 1rem;
}



/* FAQ Akkordeon */
.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(22, 41, 38, 0.10);
}
.faq-item {
  border-bottom: 1px solid rgba(22, 41, 38, 0.10);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1.6rem 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.9vw, 2rem);
  font-weight: 500;
  color: var(--forest-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  transition: color 0.25s ease;
}
.faq-question:hover { color: var(--copper-700); }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(180, 110, 77, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--copper-600);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s ease;
}
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after  { width: 1.5px; height: 12px; }
.faq-item.is-open .faq-icon { background: var(--copper-600); border-color: var(--copper-600); transform: rotate(45deg); }
.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after { background: var(--white); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}
.faq-answer-inner {
  padding-bottom: 1.6rem;
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--stone-600);
  max-width: 760px;
}
.faq-item.is-open .faq-answer { max-height: 600px; }


/* =====================================================
   ANGEBOTE – TEASER-LISTE (Homepage-Startseite)
   ===================================================== */

.offer-teaser-list {
  border-top: 1px solid rgba(22, 41, 38, 0.10);
}
.offer-teaser {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(20px, 3.5vw, 48px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(22, 41, 38, 0.10);
  overflow: hidden;
  transition: padding-left 0.4s var(--ease), border-color 0.4s ease;
}
.offer-teaser::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(to bottom, rgba(180, 110, 77, 0.08), rgba(180, 110, 77, 0.02));
  transition: width 0.4s var(--ease);
}
.offer-teaser:hover::before { width: 100%; }
.offer-teaser:hover { padding-left: 14px; border-color: rgba(180, 110, 77, 0.26); }
.offer-teaser span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: rgba(180, 110, 77, 0.62);
  text-transform: uppercase;
}
.offer-teaser h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.6rem, 2.4vw, 2.6rem);
  letter-spacing: -0.03em;
}
.offer-teaser p { margin: 0; font-size: 1rem; }


/* =====================================================
   FEATURE-LISTE (strukturierte Auflistung)
   ===================================================== */

.feature-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.6rem 0;
  list-style: none;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.62;
}
.feature-list li::before {
  content: "—";
  flex-shrink: 0;
  color: var(--copper-600);
  font-weight: 700;
  min-width: 16px;
}
.section-dark .feature-list li {
  color: rgba(255, 255, 255, 0.75);
}
.section-dark .feature-list li::before {
  color: var(--copper-400);
}


/* =====================================================
   ZITAT-BLOCK
   ===================================================== */

.quote-block {
  margin: 2.4rem 0;
  padding: 2rem 2.4rem;
  border-left: 3px solid var(--copper-600);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: rgba(255, 255, 255, 0.62);
}
.quote-block p {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2.3rem);
  font-style: italic;
  font-weight: 400;
  color: var(--forest-900);
  line-height: 1.44;
  letter-spacing: -0.025em;
  margin: 0;
}
.quote-block cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--copper-600);
  text-transform: uppercase;
}


/* =====================================================
   ZIELGRUPPEN-STREIFEN (Area Strip)
   ===================================================== */

.area-strip {
  background: var(--forest-950);
  border-bottom: 1px solid rgba(208, 139, 104, 0.14);
}
.area-strip-inner {
  display: flex;
  align-items: stretch;
}
.area-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 2.8rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.area-item:last-child { border-right: 0; }
.area-item:hover {
  background: rgba(180, 110, 77, 0.10);
}
.area-item:hover .area-icon {
  color: var(--copper-200);
  transform: translateY(-2px);
}
.area-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--copper-400);
  transition: color 0.3s ease, transform 0.3s ease;
  margin-bottom: 4px;
}
.area-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.area-num {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-400);
}
.area-label {
  font-size: 1.18rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.38;
  letter-spacing: -0.005em;
}


/* =====================================================
   ANGEBOT-META (Wann / Was / Ziel)
   ===================================================== */

.angebot-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(22, 41, 38, 0.10);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: 2rem 0 1.8rem;
}
.angebot-meta-item {
  padding: 1.1rem 1.3rem;
  background: var(--cream-50);
  border-right: 1px solid rgba(22, 41, 38, 0.10);
}
.angebot-meta-item:last-child { border-right: 0; }
.angebot-meta-label {
  display: block;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-600);
  margin-bottom: 0.45rem;
}
.angebot-meta-value {
  font-size: 0.93rem;
  color: var(--forest-800);
  font-weight: 600;
  line-height: 1.52;
}


/* =====================================================
   KONTAKT
   ===================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 108px);
  align-items: start;
}
.contact-box {
  margin-top: 2.2rem;
  display: grid;
  gap: 14px;
}
.contact-box p {
  padding: 1.1rem 1.2rem;
  border-left: 2.5px solid var(--copper-600);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.62);
  margin: 0;
  font-size: 1rem;
  color: var(--stone-700);
  line-height: 1.65;
}
.contact-form {
  display: grid;
  gap: 15px;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--r-md);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  box-shadow: var(--shadow-md);
}
.contact-form label {
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--forest-800);
  letter-spacing: 0.02em;
  margin-bottom: -4px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid rgba(22, 41, 38, 0.12);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--forest-900);
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--copper-600);
  box-shadow: 0 0 0 3px rgba(180, 110, 77, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-hint {
  font-size: 0.88rem !important;
  color: var(--stone-400) !important;
  text-align: center;
  margin: 0 !important;
}

/* =====================================================
   ÜBER MICH – PORTRAIT (Unterseite)
   ===================================================== */

.portrait-card {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 68% 18%, rgba(208, 139, 104, 0.20), transparent 42%),
    linear-gradient(148deg, var(--forest-800), var(--forest-950));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.portrait-card-inner { text-align: center; }
.portrait-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(208, 139, 104, 0.52);
  margin-bottom: 0.8rem;
}
.portrait-card-inner p {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.60);
  max-width: 200px;
  line-height: 1.4;
  margin: 0;
}


/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(180, 110, 77, 0.05), transparent 60%),
    var(--cream-200);
  border-top: 1px solid rgba(22, 41, 38, 0.08);
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(24px, 2.5vw, 36px);
}

/* ---- Hauptbereich: 2-Zeilen-Grid.
   Zeile 1: Tagline+Mail (über alle Spalten, zentriert)
   Zeile 2: Angebote | Logo | Orientierung — Spalten exakt auf Logo-Mitte ---- */
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  column-gap: clamp(28px, 4vw, 64px);
  align-items: center;
  justify-items: center;
}
.footer-tagline-block {
  grid-column: 1 / -1;
  grid-row: 1;
  text-align: center;
  margin-bottom: clamp(20px, 2.4vw, 32px);
}
.footer-tagline {
  max-width: 46ch;
  margin: 0 auto 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.45vw, 1.4rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--forest-900);
}
.footer-mail {
  display: inline-block;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--copper-600);
  transition: color 0.3s ease;
}
.footer-mail:hover { color: var(--copper-700); }

/* Logo zentral in Zeile 2 — Bezugspunkt für die Seitenspalten */
.footer-center { grid-row: 2; grid-column: 2; display: flex; justify-content: center; }
.footer-logo { display: flex; justify-content: center; }
.footer-logo img {
  height: clamp(170px, 17vw, 240px);
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(6, 15, 11, 0.10));
}

/* Seitliche Navigations-Spalten — Zeile 2, auf Logo-Mitte zentriert */
.footer-nav {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.footer-nav-left  { grid-column: 1; text-align: right; align-items: flex-end; }
.footer-nav-right { grid-column: 3; text-align: left;  align-items: flex-start; }

/* ---- Vom Logo ausgehende, animierte Verbindungslinien ---- */
.footer-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(24px, 4vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, rgba(180,110,77,0.5), rgba(180,110,77,0));
  transform: scaleX(0);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.footer-nav-left::after  { right: calc(-1 * clamp(28px, 4vw, 64px)); transform-origin: left;
  background: linear-gradient(90deg, rgba(180,110,77,0), rgba(180,110,77,0.5)); transform: scaleX(0); }
.footer-nav-right::after { left: calc(-1 * clamp(28px, 4vw, 64px)); transform-origin: right; }
/* Reveal-Trigger: Tagline-Block bekommt .is-visible vom Observer */
.footer-tagline-block.is-visible ~ .footer-nav-left::after,
.footer-tagline-block.is-visible ~ .footer-nav-right::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) {
  .footer-nav::after { transition: none; transform: scaleX(1); }
}
.footer-nav h4 {
  font-family: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-600);
  margin-bottom: 6px;
}
.footer-nav a {
  font-size: 1.02rem;
  color: var(--stone-600);
  transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--forest-800); }

/* ---- 4 · Unterer Bereich: © | Rechtliches | Tagline ---- */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: var(--container);
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding-top: clamp(24px, 3vw, 32px);
  border-top: 1px solid rgba(22, 41, 38, 0.08);
  font-size: 0.9rem;
  color: var(--stone-400);
}
.footer-copy { justify-self: start; letter-spacing: 0.02em; }
.footer-legal {
  justify-self: center;
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.9rem;
  color: var(--stone-600);
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: var(--forest-800); }
.footer-meta {
  justify-self: end;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--stone-400);
}


/* =====================================================
   ANIMATIONEN
   ===================================================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Cinematic Scroll-Reveal – Blur-to-Clear */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(4px);
  transition:
    opacity 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.15s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
/* Fallback-Stagger via Position (greift, wenn kein --reveal-delay gesetzt) */
.reveal:nth-child(2) { transition-delay: var(--reveal-delay, 0.08s); }
.reveal:nth-child(3) { transition-delay: var(--reveal-delay, 0.16s); }
.reveal:nth-child(4) { transition-delay: var(--reveal-delay, 0.24s); }
.reveal:nth-child(5) { transition-delay: var(--reveal-delay, 0.32s); }


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .about-grid,
  .contact-grid     { grid-template-columns: 1fr; gap: 52px; }
  .offers-grid,
  .orientation-grid,
  .method-overview-grid { grid-template-columns: 1fr; }
  .card-grid.three  { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step-divider {
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(208, 139, 104, 0.44), transparent);
  }
  .split            { grid-template-columns: 1fr; gap: 44px; }
  .principle-row    { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 900px) {
  :root { --header-h: 156px; }
  .nav-group, .nav-left, .nav-right { display: none; }
  .menu-toggle   { display: block; }
  .mobile-nav    { display: flex; }
  .brand { padding: 4px 10px; }
  .brand-logo    { height: 144px; }
  .site-header.scrolled { height: 104px; }
  .site-header.scrolled .brand-logo { height: 88px !important; }

  /* Footer: ab hier gestapelt, Reihenfolge Tagline→Mail→Logo→Angebote→Orientierung */
  .footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 7vw, 48px);
    text-align: center;
  }
  .footer-tagline-block { order: 1; margin-bottom: 0; }
  .footer-center        { order: 2; }
  .footer-nav-left      { order: 3; }
  .footer-nav-right     { order: 4; }
  .footer-nav-left,
  .footer-nav-right { text-align: center; align-items: center; }
  /* Verbindungslinien auf Mobile ausblenden (kein Logo daneben) */
  .footer-nav::after { display: none; }
}

@media (max-width: 640px) {
  :root { --header-h: 140px; }
  .brand { padding: 4px 8px; }
  .brand-logo     { height: 128px; }
  .site-header.scrolled { height: 96px; }
  .site-header.scrolled .brand-logo { height: 80px !important; }
  .hero-body      { padding-block: 52px; }
  .hero-actions   { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .offer-teaser   { grid-template-columns: 1fr; gap: 8px; }
  .pricing-grid   { grid-template-columns: 1fr; }
  /* Footer Mobile: Bottom-Bar gestapelt zentriert (Haupt-Stack ab 900px) */
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    text-align: center;
  }
  .footer-copy, .footer-meta, .footer-legal { justify-self: center; }

  /* Neue Komponenten responsive */
  .area-strip-inner { flex-direction: column; }
  .area-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 1.4rem 1.2rem;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    text-align: left;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 2px;
  }
  .area-item:last-child { border-bottom: 0; }
  .area-icon {
    grid-row: 1 / span 2;
    margin-bottom: 0;
    width: 40px;
    height: 40px;
  }
  .area-num   { grid-column: 2; align-self: end; }
  .area-label { grid-column: 2; align-self: start; font-size: 1.05rem; }

  .angebot-meta { grid-template-columns: 1fr; }
  .angebot-meta-item {
    border-right: 0;
    border-bottom: 1px solid rgba(22, 41, 38, 0.10);
  }
  .angebot-meta-item:last-child { border-bottom: 0; }

  .quote-block { padding: 1.4rem 1.6rem; }
  .quote-block p { font-size: clamp(1.2rem, 5.5vw, 1.6rem); }
}

/* Reduzierbewegung */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .btn::before { display: none; }
}

/* =====================================================
   ARBEITSWEISE – Neue, klare Komponenten (Prefix .aw-)
   ===================================================== */

/* ---- HERO ---- */
.aw-hero {
  padding-top: calc(var(--header-h) + clamp(60px, 9vw, 120px));
  padding-bottom: clamp(70px, 9vw, 120px);
  background:
    radial-gradient(circle at 22% 22%, rgba(180, 110, 77, 0.07), transparent 38%),
    linear-gradient(180deg, var(--cream-100), var(--cream-200));
}
.aw-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: end;
}
.aw-hero h1 {
  font-size: clamp(3.2rem, 6.6vw, 6.8rem);
  line-height: 0.94;
  margin-bottom: 0;
}
.aw-hero-intro p {
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.72;
  color: var(--stone-700);
  max-width: 46ch;
}
/* Seiten-Index: ruhiges, nummeriertes Inhaltsverzeichnis statt Pills */
.aw-hero-meta {
  counter-reset: awtoc;
  display: grid;
  margin-top: 2.2rem;
  max-width: 380px;
  border-top: 1px solid rgba(22, 41, 38, 0.14);
}
.aw-hero-meta-label {
  order: -1;
  margin-bottom: 0.7rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-700);
}
.aw-hero-meta a {
  counter-increment: awtoc;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0.85rem 2px;
  border-bottom: 1px solid rgba(22, 41, 38, 0.12);
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--forest-800);
  transition: color 0.3s ease, padding-left 0.35s var(--ease);
}
.aw-hero-meta a::before {
  content: "0" counter(awtoc);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--copper-600);
  font-variant-numeric: tabular-nums;
}
.aw-hero-meta a::after {
  content: "→";
  margin-left: auto;
  color: var(--copper-600);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}
.aw-hero-meta a:hover {
  color: var(--copper-700);
  padding-left: 8px;
}
.aw-hero-meta a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .aw-hero-meta a, .aw-hero-meta a::after { transition: none; }
}

/* ---- WAS MEINE ARBEIT PRÄGT — editoriale, nummerierte Reihen (keine Karten) ---- */
.aw-principles {
  list-style: none;
  margin: clamp(44px, 6vw, 72px) auto 0;
  padding: 0;
  max-width: 920px;
}
.aw-principle-row {
  display: grid;
  grid-template-columns: clamp(64px, 8vw, 110px) 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: baseline;
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-top: 1px solid rgba(22, 41, 38, 0.12);
}
.aw-principle-row:last-child {
  border-bottom: 1px solid rgba(22, 41, 38, 0.12);
}
.aw-principle-index {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1;
  color: rgba(180, 110, 77, 0.55);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}
.aw-principle-body { max-width: 60ch; }
.aw-principle-body h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--forest-900);
  margin-bottom: clamp(0.5rem, 0.9vw, 0.8rem);
}
.aw-principle-body p {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.72;
  color: var(--stone-700);
  margin-bottom: 0;
}

/* ---- TIMELINE ---- */
.aw-timeline-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(180, 110, 77, 0.05), transparent 40%),
    linear-gradient(180deg, var(--cream-200), #e4ddd2);
}
.aw-timeline {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  margin-top: clamp(40px, 5vw, 56px);
  padding-left: 22px;
  list-style: none;
}
.aw-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(180, 110, 77, 0.35) 8%,
    rgba(180, 110, 77, 0.45) 50%,
    rgba(180, 110, 77, 0.35) 92%,
    transparent 100%
  );
}
.aw-phase {
  position: relative;
  padding: 0 0 clamp(36px, 4vw, 52px) clamp(34px, 4vw, 50px);
}
.aw-phase:last-child { padding-bottom: 0; }
.aw-phase::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 8px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--cream-50);
  border: 2px solid var(--copper-600);
  box-shadow: 0 0 0 4px rgba(246, 241, 232, 0.9);
  transition: background 0.4s ease, transform 0.4s ease;
}
.aw-phase.is-visible::before {
  background: var(--copper-600);
}
.aw-phase-num {
  display: inline-block;
  font-family: var(--text);

  font-size: 1rem;
  font-weight: 800;

  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: var(--copper-600);

  margin-bottom: 0.7rem;
}.aw-phase h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 0.7rem;
  letter-spacing: -0.025em;
  color: var(--forest-900);
}
.aw-phase-text {
  font-size: 1.08rem;
  line-height: 1.74;
  color: var(--stone-700);
  margin-bottom: 1.1rem;
  max-width: 56ch;
}
.aw-phase-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(22, 41, 38, 0.10);
  background: rgba(255, 255, 255, 0.62);
  border-radius: var(--r-sm);
}
.aw-phase-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aw-phase-meta-label {
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-600);
}
.aw-phase-meta-value {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--forest-800);
  line-height: 1.45;
}

/* ---- OUTCOMES (helle, sanft grün getönte Sektion) ---- */
.aw-outcomes-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(180, 110, 77, 0.06), transparent 42%),
    linear-gradient(180deg, #EDEFEA, #E4E8E2);
}
.aw-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.5vw, 20px);
  margin-top: clamp(40px, 5vw, 56px);
}
.aw-outcome {
  padding: clamp(1.6rem, 2.2vw, 2.1rem);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 41, 38, 0.10);
  border-radius: var(--r-md);
  box-shadow: 0 14px 34px -26px rgba(22, 41, 38, 0.28);
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}
.aw-outcome:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 110, 77, 0.34);
  box-shadow: 0 20px 44px -26px rgba(22, 41, 38, 0.34);
}
.aw-outcome-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(180, 110, 77, 0.13);
  color: var(--copper-600);
  margin-bottom: 1.2rem;
}
.aw-outcome-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.aw-outcome h3 {
  font-family: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--forest-900);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.aw-outcome p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--stone-600);
  margin-bottom: 0;
}

/* ---- ABGRENZUNG (kompakt) ---- */
.aw-scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: clamp(36px, 4.5vw, 52px);
}
.aw-scope-col {
  position: relative;
  padding: clamp(1.8rem, 2.6vw, 2.4rem) clamp(1.8rem, 2.6vw, 2.4rem) clamp(1.8rem, 2.6vw, 2.4rem) clamp(2rem, 2.8vw, 2.6rem);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  border-radius: var(--r-md);
}
/* Editorialer Kontrast: links Kupfer-Akzent (begleitet), rechts ruhig (übernimmt nicht) */
.aw-scope-col::before {
  content: "";
  position: absolute;
  left: 0; top: clamp(1.8rem, 2.6vw, 2.4rem); bottom: clamp(1.8rem, 2.6vw, 2.4rem);
  width: 3px;
  border-radius: 999px;
}
.aw-scope-col--yes::before { background: linear-gradient(180deg, var(--copper-600), var(--copper-400)); }
.aw-scope-col--no::before  { background: rgba(22, 41, 38, 0.16); }
.aw-scope-col--no { background: rgba(22, 41, 38, 0.015); }
.aw-scope-col h3 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--forest-900);
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(22, 41, 38, 0.10);
}
.aw-scope-col--no h3 { color: var(--stone-600); }
.aw-scope-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aw-scope-col li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.9rem;
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--stone-700);
}
.aw-scope-col li:last-child { margin-bottom: 0; }
.aw-scope-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  line-height: inherit;
}
.aw-scope-positive li::before { content: "✓"; color: var(--copper-600); }
.aw-scope-negative li::before { content: "—"; color: rgba(22, 41, 38, 0.35); }
/* Weiterverweisungs-Hinweis: ruhig hervorgehoben */
.aw-scope-note {
  margin: clamp(28px, 3.4vw, 44px) auto 0;
  max-width: 720px;
  padding: clamp(1rem, 1.6vw, 1.3rem) clamp(1.3rem, 2vw, 1.9rem);
  background: rgba(180, 110, 77, 0.07);
  border: 1px solid rgba(180, 110, 77, 0.25);
  border-radius: var(--r-sm);
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--forest-800);
  text-align: center;
  line-height: 1.7;
}

/* ---- FAQ (Größeres, lesbareres Tuning) ---- */
.aw-faq-list {
  margin-top: clamp(40px, 5vw, 56px);
  max-width: 880px;
  margin-inline: auto;
}
.aw-faq-list .faq-item {
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.aw-faq-list .faq-item.is-open {
  border-color: rgba(180, 110, 77, 0.32);
  box-shadow: var(--shadow-sm);
}
.aw-faq-list .faq-question {
  width: 100%;
  padding: 1.4rem 1.6rem;
  font-family: var(--text);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-900);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  line-height: 1.4;
}
.aw-faq-list .faq-question:hover { color: var(--copper-700); }
.aw-faq-list .faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid var(--copper-600);
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.aw-faq-list .faq-icon::before,
.aw-faq-list .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--copper-600);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.aw-faq-list .faq-icon::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.aw-faq-list .faq-icon::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
}
.aw-faq-list .faq-item.is-open .faq-icon {
  background: rgba(180, 110, 77, 0.08);
  transform: rotate(180deg);
}
.aw-faq-list .faq-item.is-open .faq-icon::after { opacity: 0; }
.aw-faq-list .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease);
}
.aw-faq-list .faq-item.is-open .faq-answer { max-height: 600px; }
.aw-faq-list .faq-answer-inner {
  padding: 0 1.6rem 1.6rem;
  font-size: 1.06rem;
  line-height: 1.78;
  color: var(--stone-700);
  max-width: 72ch;
}

/* ---- SECTION-HEADER für Arbeitsweise (zentriert, etwas grösser) ---- */
.aw-section-head {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.aw-section-head h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 1rem;
}
.aw-section-head p {
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.74;
  color: var(--stone-700);
  max-width: 60ch;
  margin-inline: auto;
}
/* Eyebrow behält Kupfer — die generische p-Regel oben würde sie sonst schwarz färben */
.aw-section-head .eyebrow { color: var(--copper-700); }
.section-dark .aw-section-head p { color: rgba(255, 255, 255, 0.80); }
.section-dark .aw-section-head .eyebrow { color: var(--copper-200); }

/* ---- Sanftes Linien-Reveal (linear, ruhig) ---- */
.aw-line-in {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.aw-line-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.aw-line-in:nth-child(2) { transition-delay: 0.08s; }
.aw-line-in:nth-child(3) { transition-delay: 0.16s; }
.aw-line-in:nth-child(4) { transition-delay: 0.24s; }
.aw-line-in:nth-child(5) { transition-delay: 0.32s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .aw-hero-grid       { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .aw-outcomes-grid   { grid-template-columns: repeat(2, 1fr); }
  .aw-scope-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .aw-outcomes-grid    { grid-template-columns: 1fr; }
  .aw-phase-meta       { grid-template-columns: 1fr; gap: 10px; }
  .aw-faq-list .faq-question { font-size: 1.05rem; padding: 1.15rem 1.25rem; }
  .aw-faq-list .faq-answer-inner { padding: 0 1.25rem 1.3rem; font-size: 1.02rem; }
  .aw-timeline         { padding-left: 18px; }
  .aw-phase            { padding-left: 28px; }
  .aw-phase::before    { width: 22px; height: 22px; left: -3px; }
  /* Prinzip-Reihen: Nummer über Text stapeln, ruhig & lesbar */
  .aw-principle-row    { grid-template-columns: 1fr; gap: 8px; padding: clamp(22px, 6vw, 30px) 0; }
}

/* ---- Reduzierte Bewegung respektieren ---- */
@media (prefers-reduced-motion: reduce) {
  .aw-line-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .aw-phase::before {
    background: var(--copper-600);
  }
}

/* =====================================================
   STARTSEITE – Editorial Redesign (Prefix .home-)
   ===================================================== */

/* Tighter section rhythm — scoped to homepage only */
body[data-active="start"] {
  --section-v: clamp(52px, 6vw, 84px);
}

/* Mobile: zusätzliche Atmung für Homepage-Sektionen */
@media (max-width: 768px) {
  body[data-active="start"] main .container {
    width: min(var(--container), 100% - 56px);
  }
}
@media (max-width: 420px) {
  body[data-active="start"] main .container {
    width: min(var(--container), 100% - 40px);
  }
}

/* (Hero-Feinjustierung jetzt im Hero-CSS-Block oben verankert) */

/* ---- HOMEPAGE-SECTION mit elegantem Section-Divider ---- */
.home-section {
  position: relative;
  overflow: hidden;
}
.home-section > .container {
  position: relative;
  z-index: 1;
}

/* Editorial Section-Divider: vertikale Kupferlinie + Punkt am Sektionsanfang */
.home-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 72px;
  background: linear-gradient(to bottom, transparent 0%, var(--copper-400) 50%, transparent 100%);
  opacity: 0.65;
  z-index: 2;
  pointer-events: none;
}
.home-section::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--copper-500, var(--copper-600));
  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
}
.home-section.final-cta::before {
  background: linear-gradient(to bottom, transparent 0%, var(--copper-300, var(--copper-200)) 50%, transparent 100%);
  opacity: 0.5;
}
.home-section.final-cta::after {
  background: var(--copper-300, var(--copper-200));
  opacity: 0.7;
}

/* ---- PREMIUM SECTION HEAD ---- */
.home-section-head {
  max-width: 820px;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.home-section-head-center {
  margin-inline: auto;
  text-align: center;
}
.home-section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(1.2rem, 2vw, 1.6rem);
}
.home-section-label::before {
  content: "";
  width: 56px;
  height: 2px;
  background: var(--copper-600);
}
.home-section-head-center .home-section-label {
  margin-inline: auto;
}
.home-section-tag {
  font-family: var(--text);
  font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper-700);
}
.home-section-title {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin-bottom: 0;
}
.home-section-title-light { color: var(--white); }

/* ---- FINAL CTA – Anpassung ---- */
.final-cta .home-section-title { margin-bottom: clamp(2rem, 3vw, 2.6rem); }
.home-final-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.final-cta .home-final-meta {
  margin-top: 1.2rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

/* =====================================================
   ANGEBOTE – Minimal Editorial (Prefix .ang-)
   Radikal reduziert · cinematic · konsistent mit Homepage
   ===================================================== */

/* ---- Scope: Spacing + Container ---- */
body[data-active="angebote"] {
  --section-v: clamp(56px, 6vw, 84px);
}
@media (max-width: 768px) {
  body[data-active="angebote"] main .container {
    width: min(var(--container), 100% - 56px);
  }
}
@media (max-width: 420px) {
  body[data-active="angebote"] main .container {
    width: min(var(--container), 100% - 40px);
  }
}

/* Cinematic Initial States — wenn GSAP/Lenis bereit ist */
body[data-active="angebote"].cinematic .ang-hero h1,
body[data-active="angebote"].cinematic .ang-paths-title,
body[data-active="angebote"].cinematic .ang-fields h2,
body[data-active="angebote"].cinematic .ang-collab h2,
body[data-active="angebote"].cinematic .ang-scope h2,
body[data-active="angebote"].cinematic .final-cta h2 { visibility: hidden; }
body[data-active="angebote"].cinematic .is-split { visibility: visible; }
body[data-active="angebote"].cinematic .is-split .word {
  display: inline-block;
  will-change: transform, opacity;
}

/* ---- HERO – Minimal Cinematic ---- */
.ang-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(72px, 10vw, 144px));
  padding-bottom: clamp(80px, 10vw, 144px);
  background:
    radial-gradient(ellipse 80% 70% at 88% 22%, rgba(180, 110, 77, 0.08), transparent 60%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  overflow: hidden;
}
/* Hero-Backdrop-Text wurde entfernt — durch sanfte animierte Lichtflüsse ersetzt */
.ang-hero-deco { display: none; }

/* Animierte Lichtflüsse im Hintergrund */
.ang-hero::before,
.ang-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.ang-hero::before {
  top: 14%;
  left: -8%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(180, 110, 77, 0.14), transparent 60%);
  animation: angOrbDriftA 24s ease-in-out infinite alternate;
}
.ang-hero::after {
  bottom: -10%;
  right: -10%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(44, 82, 72, 0.08), transparent 60%);
  animation: angOrbDriftB 28s ease-in-out infinite alternate-reverse;
}
@keyframes angOrbDriftA {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate3d(90px, 70px, 0) scale(1.12); opacity: 1; }
}
@keyframes angOrbDriftB {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate3d(-80px, -60px, 0) scale(1.15); opacity: 0.95; }
}
@media (prefers-reduced-motion: reduce) {
  .ang-hero::before,
  .ang-hero::after { animation: none; }
}
.ang-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.ang-hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--copper-700);
  font-size: clamp(0.96rem, 1.08vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: clamp(1.4rem, 2.2vw, 2.2rem);
}
.ang-hero-mark::before {
  content: "";
  width: 56px;
  height: 2px;
  background: currentColor;
}
.ang-hero h1 {
  color: var(--forest-900);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 0 0 clamp(1.4rem, 2.4vw, 2.2rem);
  max-width: 14ch;
}
.ang-hero-lead {
  font-family: var(--text);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.72;
  color: var(--stone-700);
  max-width: 48ch;
  margin: 0;
}

/* ---- DREI WEGE – Editorial List ---- */
.ang-paths {
  position: relative;
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
}
.ang-paths-head {
  max-width: 720px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.ang-paths-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--copper-700);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.ang-paths-tag::before {
  content: "";
  width: 44px;
  height: 2px;
  background: currentColor;
}
.ang-paths-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin: 0;
}

.ang-paths-list {
  border-top: 1px solid rgba(22, 41, 38, 0.12);
}
.ang-path {
  display: grid;
  grid-template-columns: clamp(56px, 6vw, 92px) 1fr clamp(40px, 4vw, 56px) clamp(36px, 4vw, 52px);
  gap: clamp(20px, 3vw, 52px);
  align-items: center;
  padding: clamp(1.9rem, 3vw, 2.8rem) 0;
  border-bottom: 1px solid rgba(22, 41, 38, 0.12);
  text-decoration: none;
  color: inherit;
  transition:
    padding-left 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.55s ease;
}
.ang-path:hover {
  padding-left: 14px;
  background: linear-gradient(to right, rgba(180, 110, 77, 0.05), transparent 75%);
}
.ang-path-roman {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--copper-600);
  transition: color 0.5s ease;
}
.ang-path:hover .ang-path-roman { color: var(--copper-700); }
.ang-path-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}
.ang-path-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--forest-900);
  transition: color 0.5s ease;
}
.ang-path:hover .ang-path-title { color: var(--copper-700); }
.ang-path-lead {
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.55;
  color: var(--stone-600);
  margin: 0;
  max-width: 56ch;
}
.ang-path-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--copper-600);
  opacity: 0.85;
  transition: opacity 0.5s ease;
}
.ang-path:hover .ang-path-icon { opacity: 1; }
.ang-path-icon svg {
  width: 100%;
  max-width: 48px;
  height: auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ang-path-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-600);
  font-size: 1.25rem;
  font-weight: 700;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-path:hover .ang-path-arrow { transform: translateX(10px); }

/* ---- SITUATIONEN – nur Chips ---- */
.ang-fields {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(180, 110, 77, 0.05), transparent 60%),
    linear-gradient(180deg, var(--cream-100), var(--cream-50));
}
.ang-fields-head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ang-fields-head .ang-paths-tag { justify-content: center; }
.ang-fields-head .ang-paths-tag::before { display: none; }
.ang-fields h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin: 0;
}
.ang-fields-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin-inline: auto;
}

/* ---- CHIPS – einheitlich, minimal ---- */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(180, 110, 77, 0.28);
  background: rgba(255, 255, 255, 0.6);
  font-family: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--forest-800);
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background 0.45s ease, border-color 0.45s ease, color 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.chip:hover {
  background: rgba(180, 110, 77, 0.10);
  border-color: var(--copper-600);
  color: var(--copper-700);
}

/* ---- ZUSAMMENARBEIT – 3 Steps, minimal ---- */
.ang-collab {
  background: linear-gradient(180deg, var(--cream-200), #e4ddd2);
}
.ang-collab-head {
  max-width: 720px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.ang-collab-head .ang-paths-tag { color: var(--copper-700); }
.ang-collab h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin: 0;
}
.ang-collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 60px);
  position: relative;
}
.ang-collab-grid::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(180, 110, 77, 0.45) 20%, rgba(180, 110, 77, 0.45) 80%, transparent);
  z-index: 0;
}
.ang-collab-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 0;
  background: transparent;
  z-index: 1;
}
.ang-collab-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cream-100);
  border: 1.5px solid var(--copper-600);
  color: var(--copper-600);
}
.ang-collab-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ang-collab-num {
  font-family: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-700);
  margin-top: 6px;
}
.ang-collab-step h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: -0.025em;
  color: var(--forest-900);
  margin: 0;
  line-height: 1.15;
}
.ang-collab-step p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone-700);
  margin: 0;
  max-width: 36ch;
}

/* ---- ABGRENZUNG – zentrales editorial Manifest auf dunkel ---- */
.ang-scope {
  background:
    radial-gradient(ellipse 50% 40% at 75% 10%, rgba(180, 110, 77, 0.16), transparent 50%),
    radial-gradient(ellipse 30% 35% at 15% 90%, rgba(180, 110, 77, 0.08), transparent 55%),
    linear-gradient(135deg, var(--forest-950), var(--forest-900));
  color: rgba(255, 255, 255, 0.92);
}
.ang-scope-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.ang-scope-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--copper-200);
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.ang-scope-tag::before,
.ang-scope-tag::after {
  content: "";
  width: 40px;
  height: 1.5px;
  background: var(--copper-300, var(--copper-200));
  opacity: 0.6;
}
.ang-scope h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 0 0 clamp(2.4rem, 3vw, 3.4rem);
}
.ang-scope-statement {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.4;
  letter-spacing: -0.018em;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 auto;
  max-width: 38ch;
}
.ang-scope-statement em {
  font-style: italic;
  color: var(--copper-200);
}
.ang-scope-divider {
  display: block;
  width: 56px;
  height: 1px;
  margin: clamp(2rem, 3vw, 2.8rem) auto;
  background: rgba(180, 110, 77, 0.45);
}
.ang-scope-counter {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 42ch;
}
.ang-scope-note {
  margin: clamp(2.4rem, 3vw, 3.2rem) auto 0;
  max-width: 50ch;
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Layout-Stabilität: keine Overflows ---- */
.ang-hero h1,
.ang-paths-title,
.ang-path-title,
.ang-fields h2,
.ang-collab h2,
.ang-scope h2,
.ang-scope-statement,
.ang-scope-counter {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  .ang-path {
    grid-template-columns: clamp(48px, 8vw, 70px) 1fr clamp(34px, 4vw, 44px);
    gap: clamp(16px, 3vw, 32px);
  }
  .ang-path-icon { display: none; }
  .ang-collab-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ang-collab-grid::before { display: none; }
  .ang-collab-step {
    padding-left: 60px;
    position: relative;
  }
  .ang-collab-icon {
    position: absolute;
    top: 4px;
    left: 0;
  }
}

@media (max-width: 768px) {
  .ang-hero-deco { font-size: clamp(8rem, 38vw, 14rem); right: -40px; top: -10px; }
  .ang-path-lead {
    font-size: 0.94rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .ang-hero h1 { font-size: clamp(2.5rem, 11vw, 3.8rem); }
  .ang-hero-lead { font-size: clamp(1.1rem, 4.6vw, 1.32rem); }
  .ang-paths-title,
  .ang-fields h2,
  .ang-collab h2,
  .ang-scope h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .ang-path { padding: 1.6rem 0; }
  .ang-path-roman { font-size: clamp(2rem, 10vw, 2.6rem); }
  .ang-path-title { font-size: 1.2rem; }
  .ang-path-lead {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }
  .chip { font-size: 0.88rem; padding: 0.5rem 0.95rem; }
  .ang-scope-statement { font-size: clamp(1.2rem, 5.4vw, 1.6rem); }
  .ang-scope-counter { font-size: clamp(1.05rem, 4.4vw, 1.3rem); }
}

@media (prefers-reduced-motion: reduce) {
  .chip,
  .ang-path,
  .ang-path-arrow,
  .ang-path-icon,
  .ang-path-title,
  .ang-path-roman { transition: none; }
}


/* =====================================================
   ANGEBOTE – Detailed Offer Sections (Erweiterung)
   Pro Angebot: Problemfelder · Vorgehen · Ziel · CTA
   ===================================================== */

.ang-offer {
  position: relative;
  padding-block: clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.ang-offer-light  { background: linear-gradient(180deg, var(--cream-100), var(--cream-50)); }
.ang-offer-warm   {
  background:
    radial-gradient(ellipse 60% 50% at 90% 18%, rgba(180, 110, 77, 0.05), transparent 55%),
    linear-gradient(180deg, var(--cream-200), #e4ddd2);
}

/* Backdrop Roman als subtile Editorial-Tiefe */
.ang-offer-backdrop {
  position: absolute;
  top: clamp(40px, 6vw, 100px);
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(12rem, 26vw, 26rem);
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: rgba(180, 110, 77, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.ang-offer-backdrop.bd-right { right: clamp(-50px, -2vw, 0px); }
.ang-offer-backdrop.bd-left  { left:  clamp(-50px, -2vw, 0px); }

.ang-offer > .container {
  position: relative;
  z-index: 1;
}

/* ---- Header pro Offer ---- */
.ang-offer-head {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.ang-offer-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: clamp(1.2rem, 2vw, 1.7rem);
}
.ang-offer-mark::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--copper-600);
  position: relative;
  top: -0.25em;
}
.ang-offer-roman {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.96rem, 1.1vw, 1.12rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-700);
}
.ang-offer-tag {
  font-family: var(--text);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-800);
}
.ang-offer h2 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--forest-900);
  font-size: clamp(2.4rem, 5.2vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0 0 clamp(1.2rem, 1.8vw, 1.6rem);
  max-width: 18ch;
}
.ang-offer-lead {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.46;
  letter-spacing: -0.015em;
  color: var(--stone-700);
  max-width: 56ch;
  margin: 0;
}

/* ---- Sub-Section-Marker (Problemfelder / Vorgehen / Ziel) ---- */
.ang-sub {
  margin-bottom: clamp(36px, 4vw, 56px);
}
.ang-sub-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--text);
  font-size: clamp(0.78rem, 0.92vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-700);
  margin-bottom: clamp(1.6rem, 2.2vw, 2.2rem);
}
.ang-sub-tag::before {
  content: "";
  width: 36px;
  height: 1.5px;
  background: currentColor;
}

/* ---- Problemfelder Grid ---- */
.ang-problems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.ang-problem {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(1.4rem, 2vw, 1.9rem);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(180, 110, 77, 0.16);
  border-radius: 14px;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-problem:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--copper-600);
  box-shadow: 0 18px 40px -16px rgba(6, 15, 11, 0.12);
}
.ang-problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(180, 110, 77, 0.08);
  border: 1px solid rgba(180, 110, 77, 0.30);
  color: var(--copper-600);
  margin-bottom: 4px;
}
.ang-problem-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ang-problem-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.4vw, 1.32rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--forest-900);
}
.ang-problem-detail {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--stone-600);
  margin: 0;
}

/* ---- Vorgehen + Ziel Layout ---- */
.ang-offer-body {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
  margin-top: clamp(56px, 7vw, 88px);
}

/* Vorgehen Liste */
.ang-method-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(0.7rem, 1.2vw, 1.1rem);
}
.ang-method-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: clamp(0.65rem, 1vw, 0.95rem) 0;
  border-bottom: 1px solid rgba(22, 41, 38, 0.10);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--forest-900);
}
.ang-method-list li:last-child { border-bottom: none; }
.ang-method-list li::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--copper-600);
  flex-shrink: 0;
  position: relative;
  top: -0.4em;
}

/* Ziel + CTA */
.ang-goal-block {
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 2px solid var(--copper-600);
}
.ang-goal-tag {
  font-family: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-700);
  margin-bottom: 1.2rem;
  display: block;
}
.ang-goal-statement {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--forest-900);
  margin: 0 0 clamp(2rem, 3vw, 2.4rem);
  max-width: 22ch;
}
.ang-offer-action {
  display: inline-flex;
}

/* ---- Layout-Stabilität ---- */
.ang-offer h2,
.ang-offer-lead,
.ang-problem-title,
.ang-method-list li,
.ang-goal-statement {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

/* ---- Cinematic Initial States für GSAP ---- */
body[data-active="angebote"].cinematic .ang-offer h2,
body[data-active="angebote"].cinematic .ang-offer-lead { visibility: hidden; }
body[data-active="angebote"].cinematic .ang-offer h2.is-split,
body[data-active="angebote"].cinematic .ang-offer-lead.is-revealed { visibility: visible; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .ang-problems { grid-template-columns: repeat(2, 1fr); }
  .ang-offer-body {
    grid-template-columns: 1fr;
    gap: clamp(36px, 5vw, 56px);
  }
  .ang-offer-backdrop { font-size: clamp(10rem, 30vw, 16rem); }
}

@media (max-width: 600px) {
  .ang-problems {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ang-problem { padding: 1.2rem 1.25rem; }
  .ang-offer h2 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .ang-offer-lead { font-size: clamp(1.05rem, 4.6vw, 1.25rem); }
  .ang-method-list li { font-size: 1.02rem; }
  .ang-goal-statement { font-size: clamp(1.3rem, 5.4vw, 1.7rem); }
  .ang-offer-backdrop { font-size: clamp(8rem, 36vw, 12rem); }
}

@media (prefers-reduced-motion: reduce) {
  .ang-problem { transition: none; }
}


/* =====================================================
   ANGEBOTE – Sub-Pages Navigation + Subpage Hero
   ===================================================== */

/* Breadcrumb-Link "Zurück zur Übersicht" */
.ang-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(1.6rem, 2.6vw, 2.4rem);
  font-family: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--copper-700);
  text-decoration: none;
  transition: color 0.4s ease, gap 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-back::before {
  content: "←";
  font-size: 1.1em;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-back:hover {
  color: var(--copper-600);
  gap: 14px;
}
.ang-back:hover::before { transform: translateX(-4px); }

/* Sub-Nav als Tab-Bar oben im Subpage-Hero */
.ang-sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(2rem, 3vw, 2.8rem);
  padding-top: clamp(1.8rem, 2.6vw, 2.4rem);
  border-top: 1px solid rgba(22, 41, 38, 0.10);
}
.ang-sub-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(180, 110, 77, 0.30);
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest-800);
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.45s ease, border-color 0.45s ease, color 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-sub-nav-link:hover {
  background: rgba(180, 110, 77, 0.10);
  border-color: var(--copper-600);
  color: var(--copper-700);
  transform: translateY(-1px);
}
.ang-sub-nav-link.is-current {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: var(--white);
}
.ang-sub-nav-link.is-current:hover {
  background: var(--copper-700);
  border-color: var(--copper-700);
  color: var(--white);
}
.ang-sub-nav-roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05em;
  line-height: 1;
  opacity: 0.85;
}

/* Subpage-Hero (kompakter als die Overview-Hero) */
.ang-subhero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(56px, 7vw, 100px));
  padding-bottom: clamp(56px, 7vw, 96px);
  background:
    radial-gradient(ellipse 80% 70% at 88% 22%, rgba(180, 110, 77, 0.08), transparent 60%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  overflow: hidden;
}
.ang-subhero-deco { display: none; }
.ang-subhero::before,
.ang-subhero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.ang-subhero::before {
  top: 10%;
  left: -6%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(180, 110, 77, 0.12), transparent 60%);
  animation: angOrbDriftA 22s ease-in-out infinite alternate;
}
.ang-subhero::after {
  bottom: -15%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(44, 82, 72, 0.07), transparent 60%);
  animation: angOrbDriftB 26s ease-in-out infinite alternate-reverse;
}
@media (prefers-reduced-motion: reduce) {
  .ang-subhero::before,
  .ang-subhero::after { animation: none; }
}
.ang-subhero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.ang-subhero-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: clamp(1.2rem, 2vw, 1.6rem);
}
.ang-subhero-mark::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--copper-600);
  position: relative;
  top: -0.25em;
}
.ang-subhero-roman {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-700);
}
.ang-subhero-tag {
  font-family: var(--text);
  font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest-800);
}
.ang-subhero h1 {
  color: var(--forest-900);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.8vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 clamp(1.2rem, 2vw, 1.7rem);
  max-width: 18ch;
}
.ang-subhero-lead {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.46;
  letter-spacing: -0.015em;
  color: var(--stone-700);
  max-width: 56ch;
  margin: 0;
}

/* Subpage Sections – etwas kompaktere Spacings für single-purpose pages */
body[data-active="angebote"] {
  --section-v: clamp(56px, 6vw, 84px);
}
@media (max-width: 768px) {
  body[data-active="angebote"] main .container {
    width: min(var(--container), 100% - 56px);
  }
}
@media (max-width: 420px) {
  body[data-active="angebote"] main .container {
    width: min(var(--container), 100% - 40px);
  }
}

/* Cinematic Initial States – auch für Subpages */
body[data-active="angebote"].cinematic .ang-subhero h1,
body[data-active="angebote"].cinematic .ang-offer h2,
body[data-active="angebote"].cinematic .ang-collab h2,
body[data-active="angebote"].cinematic .ang-scope h2,
body[data-active="angebote"].cinematic .final-cta h2 { visibility: hidden; }
body[data-active="angebote"].cinematic .is-split { visibility: visible; }
body[data-active="angebote"].cinematic .is-split .word {
  display: inline-block;
  will-change: transform, opacity;
}

/* Responsive Subpage */
@media (max-width: 768px) {
  .ang-subhero-deco { font-size: clamp(7rem, 32vw, 12rem); right: -40px; top: -10px; }
  .ang-sub-nav { gap: 6px; }
  .ang-sub-nav-link { font-size: 0.86rem; padding: 0.5rem 0.95rem; }
}
@media (max-width: 640px) {
  .ang-subhero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .ang-subhero-lead { font-size: clamp(1.05rem, 4.5vw, 1.25rem); }
}


/* =====================================================
   NAV DROPDOWN (Header) – Angebote-Untermenü
   ===================================================== */

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.nav-dropdown-chevron {
  width: 11px;
  height: 7px;
  flex-shrink: 0;
  color: var(--copper-600);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
  transform: rotate(180deg);
}

/* Bridge: unsichtbare Hover-Brücke zwischen Trigger und Menu */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 24px;
  pointer-events: none;
}
.nav-dropdown:hover::before { pointer-events: auto; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 320px;
  padding: 14px;
  background: rgba(251, 248, 242, 0.98);
  border: 1px solid rgba(22, 41, 38, 0.08);
  border-radius: 18px;
  box-shadow:
    0 26px 60px -16px rgba(6, 15, 11, 0.18),
    0 8px 20px -8px rgba(6, 15, 11, 0.08);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.4s,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 950;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Items im Dropdown */
.nav-dropdown-menu a {
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  padding: 0.78rem 0.95rem;
  border-radius: 10px;
  font-family: var(--text) !important;
  font-size: 1.02rem !important;
  font-weight: 600 !important;
  color: var(--forest-800) !important;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
  background: rgba(180, 110, 77, 0.08);
  color: var(--copper-700) !important;
  padding-left: 1.15rem;
}
.nav-dropdown-roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15em;
  color: var(--copper-600);
  text-align: center;
  line-height: 1;
}
.nav-dropdown-overview {
  font-family: var(--display) !important;
  font-style: italic;
  font-weight: 500 !important;
  font-size: 1.05rem !important;
  color: var(--copper-700) !important;
  border-bottom: 1px solid rgba(22, 41, 38, 0.08);
  margin-bottom: 6px;
  padding-bottom: 0.85rem !important;
}
.nav-dropdown-overview::before {
  content: "→";
  font-style: normal;
  color: var(--copper-600);
  text-align: center;
  font-size: 1em;
  line-height: 1;
}

/* Wenn Header geschrumpft (.scrolled): Menu rückt höher */
.site-header.scrolled .nav-dropdown-menu {
  top: calc(100% + 12px);
}

/* ---- MOBILE: Accordion-Untermenü unter „Angebote" (eingeklappt by default) ---- */
.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  max-height: 0;
  opacity: 0;
  margin: 0 6px;
  padding: 0 8px;
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(180, 110, 77, 0.07), rgba(180, 110, 77, 0.03));
  border: 1px solid transparent;
  overflow: hidden;
  transition:
    max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    padding 0.5s var(--ease),
    margin 0.5s var(--ease),
    border-color 0.4s ease;
}
.mobile-nav-sub.is-expanded {
  max-height: 420px;
  opacity: 1;
  margin: 6px 6px 8px;
  padding: 8px;
  border-color: rgba(180, 110, 77, 0.12);
}
.mobile-nav-sub a {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px;
  min-height: 52px !important;
  padding: 0.6rem 1rem !important;
  border-radius: var(--r-sm);
  font-family: var(--text) !important;
  font-size: 1.02rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em;
  color: var(--forest-900) !important;
  border-bottom: 0 !important;
  transition: background 0.3s ease, color 0.25s ease, transform 0.3s ease;
}
/* Index-Marker: Übersicht = Pfeil, Zielgruppen = römisch I/II/III — markengerecht */
.mobile-nav-sub a::before {
  flex-shrink: 0;
  width: 1.6em;
  font-family: var(--display);
  font-size: 1.05em;
  font-weight: 600;
  color: var(--copper-600);
  text-align: center;
}
.mobile-nav-sub a:nth-of-type(1)::before { content: "→"; font-family: var(--text); }
.mobile-nav-sub a:nth-of-type(2)::before { content: "I"; }
.mobile-nav-sub a:nth-of-type(3)::before { content: "II"; }
.mobile-nav-sub a:nth-of-type(4)::before { content: "III"; }
.mobile-nav-sub a:nth-of-type(1) {
  font-family: var(--display) !important;
  font-style: italic;
  color: var(--copper-700) !important;
}
.mobile-nav-sub a:hover,
.mobile-nav-sub a:active,
.mobile-nav-sub a:focus {
  background: rgba(255, 255, 255, 0.6);
  color: var(--copper-700) !important;
}

/* ---- Wenn das Hauptmenü-Item (data-page=angebote) aktiv ist, schöner Indikator ---- */
.nav-dropdown-trigger.active::after {
  bottom: -4px;
}


/* =====================================================
   ANGEBOTE V2 – Premium Path-Cards Grid + neue Abgrenzung
   ===================================================== */

/* ---- 3 Path-Cards statt Editorial-List ---- */
.ang-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  margin-top: clamp(48px, 5vw, 72px);
}

.ang-path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 3vw, 2.8rem);
  background: linear-gradient(165deg, var(--cream-50), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(180, 110, 77, 0.18);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s ease,
    background 0.55s ease,
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Kupferner Top-Strich animiert beim Hover */
.ang-path-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--copper-600), var(--copper-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}
/* Subtiler radial-gradient innen für Tiefe beim Hover */
.ang-path-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(180, 110, 77, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  z-index: 0;
}
.ang-path-card:hover {
  transform: translateY(-8px);
  border-color: var(--copper-600);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), var(--cream-50));
  box-shadow:
    0 30px 60px -20px rgba(180, 110, 77, 0.28),
    0 10px 24px -10px rgba(6, 15, 11, 0.10);
}
.ang-path-card:hover::before { transform: scaleX(1); }
.ang-path-card:hover::after { opacity: 1; }

.ang-path-card > * {
  position: relative;
  z-index: 2;
}

.ang-path-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: clamp(1.2rem, 1.8vw, 1.6rem);
}
.ang-path-card-roman {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--copper-600);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s ease;
}
.ang-path-card:hover .ang-path-card-roman {
  transform: scale(1.08) rotate(-2deg);
  color: var(--copper-700);
}

.ang-path-card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(180, 110, 77, 0.10);
  border: 1px solid rgba(180, 110, 77, 0.30);
  color: var(--copper-600);
  transition: background 0.5s ease, border-color 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-path-card:hover .ang-path-card-icon {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: var(--white);
  transform: rotate(8deg);
}
.ang-path-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ang-path-card-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--forest-900);
  margin: 0 0 1rem;
  transition: color 0.5s ease;
}
.ang-path-card:hover .ang-path-card-title {
  color: var(--copper-700);
}

.ang-path-card-lead {
  font-family: var(--text);
  font-size: clamp(0.98rem, 1.05vw, 1.05rem);
  line-height: 1.62;
  color: var(--stone-700);
  margin: 0 0 clamp(1.8rem, 2.4vw, 2.2rem);
  flex-grow: 1;
}

.ang-path-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--copper-700);
  letter-spacing: -0.005em;
}
.ang-path-card-cta::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--copper-600);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-path-card:hover .ang-path-card-cta::after { width: 40px; }

/* Mobile cards */
@media (max-width: 980px) {
  .ang-paths-grid { grid-template-columns: 1fr; gap: 18px; }
  .ang-path-card-head { margin-bottom: 1.2rem; }
}

/* ---- NEUE ABGRENZUNG – klare Wofür-da / Wofür-nicht ---- */
.ang-scope-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1000px;
  margin-inline: auto;
  margin-top: clamp(40px, 5vw, 64px);
}

.ang-scope-col-card {
  position: relative;
  padding: clamp(2rem, 3vw, 2.6rem);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.5s ease,
    border-color 0.5s ease;
}
.ang-scope-col-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}
.ang-scope-col-card-pos:hover { border-color: rgba(180, 110, 77, 0.55); }
.ang-scope-col-card-neg:hover { border-color: rgba(255, 255, 255, 0.30); }

.ang-scope-col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(1.6rem, 2.2vw, 2rem);
  padding-bottom: clamp(1.2rem, 1.8vw, 1.6rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.ang-scope-col-card-pos .ang-scope-col-head { border-bottom-color: rgba(180, 110, 77, 0.32); }

.ang-scope-col-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  font-family: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
}
.ang-scope-col-card-pos .ang-scope-col-mark {
  background: rgba(180, 110, 77, 0.20);
  border: 1.5px solid rgba(180, 110, 77, 0.55);
  color: var(--copper-200);
}
.ang-scope-col-card-neg .ang-scope-col-mark {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.78);
}
.ang-scope-col-label {
  font-family: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ang-scope-col-card-pos .ang-scope-col-label { color: var(--copper-200); }
.ang-scope-col-card-neg .ang-scope-col-label { color: rgba(255, 255, 255, 0.72); }

.ang-scope-list-v2 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.ang-scope-list-v2 li {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--text);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.005em;
}
.ang-scope-list-v2 li:last-child { border-bottom: none; }
.ang-scope-list-v2 li::before {
  content: "";
  width: 14px;
  height: 1.5px;
  align-self: center;
  position: relative;
  top: -0.18em;
}
.ang-scope-col-card-pos .ang-scope-list-v2 li::before { background: var(--copper-400); }
.ang-scope-col-card-neg .ang-scope-list-v2 li::before { background: rgba(255, 255, 255, 0.34); }

@media (max-width: 768px) {
  .ang-scope-cols { grid-template-columns: 1fr; }
}

/* ---- Lesbarkeits-Upgrade in Subpages ---- */
.ang-problem-detail {
  color: var(--stone-700);
}
.ang-method-list li {
  color: var(--forest-900);
}
.ang-subhero-lead {
  color: var(--stone-700);
}

/* Header Scrolled state über animierter Hero — keine Konflikte */
.site-header.scrolled { background: rgba(251, 248, 242, 0.96); }


/* =====================================================
   ANGEBOTE V3 – Subpage Premium Refinement
   Bigger fonts · numbered cards · cinematic flow
   ===================================================== */

/* ---- Subhero – grössere Typografie ---- */
.ang-subhero h1 {
  font-size: clamp(2.8rem, 6.2vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 17ch;
}
.ang-subhero-lead {
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  line-height: 1.42;
  max-width: 54ch;
}
.ang-subhero-tag {
  font-size: clamp(0.96rem, 1.08vw, 1.1rem);
}
.ang-subhero-roman {
  font-size: clamp(1.05rem, 1.2vw, 1.22rem);
}

/* ---- Section-Heads für Subpages (eigene Sub-Section-Marker pro Block) ---- */
.ang-section-head {
  max-width: 760px;
  margin-bottom: clamp(44px, 5vw, 68px);
}
.ang-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--text);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-700);
  margin-bottom: 1.2rem;
}
.ang-section-eyebrow::before {
  content: "";
  width: 48px;
  height: 2px;
  background: currentColor;
}
.ang-section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--forest-900);
  margin: 0;
}
.ang-section-intro {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.45vw, 1.35rem);
  line-height: 1.5;
  color: var(--stone-700);
  margin: 1.2rem 0 0;
  max-width: 56ch;
}

/* Cinematic Initial-State für neue Section-Titles */
body[data-active="angebote"].cinematic .ang-section-title { visibility: hidden; }
body[data-active="angebote"].cinematic .ang-section-title.is-split { visibility: visible; }

/* ---- Problemfelder V3 ---- */
.ang-problems {
  gap: clamp(16px, 2vw, 24px);
}
.ang-problem {
  position: relative;
  padding: clamp(1.8rem, 2.5vw, 2.4rem);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.65), var(--cream-50));
  border: 1px solid rgba(180, 110, 77, 0.20);
  border-radius: 20px;
  gap: 16px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.55s ease,
    background 0.55s ease,
    box-shadow 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-problem[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: -14px;
  right: 14px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(180, 110, 77, 0.08);
  pointer-events: none;
  transition: color 0.55s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.ang-problem > * { position: relative; z-index: 1; }
.ang-problem:hover {
  transform: translateY(-8px);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.95), var(--cream-50));
  border-color: var(--copper-600);
  box-shadow:
    0 26px 56px -20px rgba(180, 110, 77, 0.32),
    0 8px 18px -8px rgba(6, 15, 11, 0.10);
}
.ang-problem:hover::before {
  color: rgba(180, 110, 77, 0.16);
  transform: scale(1.06) translateY(-2px);
}
.ang-problem-icon {
  width: 54px;
  height: 54px;
  background: rgba(180, 110, 77, 0.12);
  border: 1.5px solid rgba(180, 110, 77, 0.38);
  transition:
    background 0.5s ease,
    border-color 0.5s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.5s ease;
}
.ang-problem:hover .ang-problem-icon {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: var(--white);
  transform: rotate(6deg) scale(1.06);
}
.ang-problem-icon svg {
  width: 26px;
  height: 26px;
}
.ang-problem-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
  color: var(--forest-900);
  transition: color 0.5s ease;
}
.ang-problem:hover .ang-problem-title { color: var(--copper-700); }
.ang-problem-detail {
  font-size: clamp(1rem, 1.12vw, 1.13rem);
  line-height: 1.6;
  color: var(--stone-700);
  margin: 0;
}

/* ---- Vorgehen V3 – numerierte Liste, gross ---- */
.ang-method {
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
}
.ang-method-warm {
  background:
    radial-gradient(ellipse 60% 50% at 90% 18%, rgba(180, 110, 77, 0.05), transparent 55%),
    linear-gradient(180deg, var(--cream-200), #e4ddd2);
}
.ang-method-wrap {
  max-width: 880px;
}
.ang-method-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: method-counter;
}
.ang-method-list li {
  display: grid;
  grid-template-columns: clamp(58px, 6vw, 88px) 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: baseline;
  padding: clamp(1.3rem, 1.8vw, 1.7rem) 0;
  border-bottom: 1px solid rgba(22, 41, 38, 0.10);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.55vw, 1.5rem);
  line-height: 1.36;
  letter-spacing: -0.018em;
  color: var(--forest-900);
  transition: padding-left 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.4s ease;
}
.ang-method-list li:last-child { border-bottom: none; }
.ang-method-list li:hover {
  padding-left: 12px;
  color: var(--copper-700);
}
.ang-method-list li::before {
  content: counter(method-counter, decimal-leading-zero);
  counter-increment: method-counter;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1;
  color: var(--copper-600);
  letter-spacing: 0.02em;
  width: auto;
  height: auto;
  background: none;
  position: static;
  top: auto;
  transform: none;
  display: inline-block;
  margin: 0;
}

/* ---- Goal-Block V3 (eigene Sektion) ---- */
.ang-goal-section {
  background:
    radial-gradient(ellipse 50% 50% at 50% 0%, rgba(180, 110, 77, 0.08), transparent 55%),
    linear-gradient(180deg, var(--cream-100), var(--cream-50));
}
.ang-goal-card {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(2.4rem, 3.5vw, 3.4rem);
  background: linear-gradient(135deg, rgba(180, 110, 77, 0.08), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(180, 110, 77, 0.30);
  border-radius: 26px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 24px 60px -28px rgba(180, 110, 77, 0.30),
    0 6px 16px -8px rgba(6, 15, 11, 0.06);
}
.ang-goal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--copper-600);
}
.ang-goal-card-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--text);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper-700);
  margin-bottom: clamp(1.4rem, 2vw, 1.8rem);
}
.ang-goal-card-statement {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--forest-900);
  margin: 0 0 clamp(2rem, 2.8vw, 2.6rem);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.ang-goal-card-action {
  display: inline-flex;
}

/* ---- Layout-Stabilität ---- */
.ang-problem-title,
.ang-method-list li,
.ang-goal-card-statement,
.ang-section-title {
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .ang-problems { grid-template-columns: repeat(2, 1fr); }
  .ang-method-list li {
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .ang-problems { grid-template-columns: 1fr; }
  .ang-problem-detail { font-size: 1.02rem; }
  .ang-method-list li {
    font-size: 1.1rem;
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }
  .ang-method-list li::before { font-size: 1.4rem; }
  .ang-goal-card { padding: 2rem 1.5rem; border-radius: 20px; }
  .ang-goal-card-statement { font-size: clamp(1.35rem, 5.5vw, 1.8rem); }
}

@media (prefers-reduced-motion: reduce) {
  .ang-problem,
  .ang-problem-icon,
  .ang-method-list li { transition: none; }
}


/* =====================================================
   ANGEBOTE – Themenfelder Premium Cards (v3)
   ===================================================== */

/* Section header: left-aligned, editorial */
.ang-fields-v2 .ang-fields-head-v2 {
  text-align: left;
  margin-inline: 0;
  max-width: 820px;
  margin-bottom: clamp(40px, 5.5vw, 72px);
}
.ang-fields-v2 .ang-fields-head-v2 .ang-paths-tag {
  justify-content: flex-start;
}
.ang-fields-v2 .ang-fields-head-v2 h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin: 0;
}

/* 2×2 card grid — tighter gap, cards provide own separation */
.ang-fields-clusters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

/* Staggered reveal for cards */
.ang-fields-clusters .ang-fields-cluster:nth-child(1) { transition-delay: 0.04s; }
.ang-fields-clusters .ang-fields-cluster:nth-child(2) { transition-delay: 0.16s; }
.ang-fields-clusters .ang-fields-cluster:nth-child(3) { transition-delay: 0.28s; }
.ang-fields-clusters .ang-fields-cluster:nth-child(4) { transition-delay: 0.40s; }

/* Premium card */
.ang-cluster-card {
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.2vw, 28px);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  border-radius: var(--r-md);
  box-shadow:
    0 2px 12px rgba(6, 15, 11, 0.05),
    0 1px 3px rgba(6, 15, 11, 0.04);
  height: 100%;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease;
  position: relative;
  overflow: hidden;
}

/* Subtle copper top-accent on hover */
.ang-cluster-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--copper-600), var(--copper-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-cluster-card:hover::before {
  transform: scaleX(1);
}
.ang-cluster-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 56px rgba(6, 15, 11, 0.11),
    0 6px 20px rgba(6, 15, 11, 0.07);
  border-color: rgba(180, 110, 77, 0.20);
}

/* Icon container */
.ang-cluster-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(180, 110, 77, 0.10);
  color: var(--copper-600);
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition:
    background 0.45s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.ang-cluster-card:hover .ang-cluster-icon {
  background: rgba(180, 110, 77, 0.18);
  transform: scale(1.08);
}
.ang-cluster-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Category label */
.ang-cluster-title {
  font-family: var(--text);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-700);
  margin: 0 0 0.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(180, 110, 77, 0.18);
  line-height: 1.4;
}

/* Editorial item list — grössere Schrift, bessere Lesbarkeit */
.ang-cluster-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.ang-cluster-list li {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.18rem, 1.5vw, 1.38rem);
  line-height: 1.55;
  letter-spacing: -0.012em;
  color: var(--stone-700);
  padding: clamp(0.48rem, 0.6vw, 0.58rem) 0;
  border-bottom: 1px solid rgba(22, 41, 38, 0.07);
  transition: color 0.3s ease;
}
.ang-cluster-list li:last-child {
  border-bottom: none;
}
.ang-cluster-card:hover .ang-cluster-list li {
  color: var(--forest-900);
}

/* =====================================================
   ANGEBOTE – Abgrenzung: concise limits on dark
   ===================================================== */

.ang-scope .ang-scope-inner {
  max-width: 920px;
}

.ang-scope-limits {
  list-style: none;
  padding: 0;
  margin: clamp(2rem, 3vw, 3rem) auto 0;
  max-width: 840px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.ang-scope-limits li {
  font-family: var(--text);
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.64rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  line-height: 1.4;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.ang-scope-limits li:hover {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

/* =====================================================
   ANGEBOTE – Responsive overrides (v2)
   ===================================================== */

@media (max-width: 860px) {
  .ang-fields-clusters {
    grid-template-columns: 1fr;
    gap: clamp(14px, 2vw, 18px);
  }
}

@media (max-width: 640px) {
  .ang-fields-v2 .ang-fields-head-v2 h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.8rem);
  }
  .ang-cluster-card { padding: clamp(16px, 4.5vw, 22px); }
  .ang-cluster-icon { width: 40px; height: 40px; }
  .ang-cluster-list li { font-size: clamp(1.1rem, 4.8vw, 1.28rem); }
  .ang-scope-limits li {
    font-size: 0.88rem;
    padding: 0.55rem 0.95rem;
  }
}

@media (max-width: 480px) {
  .ang-scope-limits {
    gap: 8px;
  }
  .ang-scope-limits li {
    font-size: 0.84rem;
    padding: 0.50rem 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ang-cluster-card,
  .ang-cluster-card::before,
  .ang-cluster-icon { transition: none; }
  .ang-scope-limits li { transition: none; }
}


/* =====================================================
   SUBPAGES – Themenfelder Premium (v3)
   Large-type 2-col grid · Copper bar hover · Staggered reveal
   ===================================================== */

/* ---- THEMES SECTION ---- */
.sub-themes {
  background:
    radial-gradient(ellipse 55% 40% at 96% 8%, rgba(180, 110, 77, 0.06), transparent 52%),
    linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
}

.sub-themes-head {
  max-width: 820px;
  margin-bottom: clamp(40px, 5.5vw, 64px);
}

.sub-themes-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin: 0 0 clamp(0.85rem, 1.3vw, 1.2rem);
}

.sub-themes-head p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  line-height: 1.52;
  color: var(--stone-600);
  margin: 0;
  max-width: 58ch;
}

/* 2-column grid — items flow left-to-right, top-to-bottom */
.sub-themes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(28px, 4.5vw, 60px);
  border-top: 1px solid rgba(22, 41, 38, 0.12);
}

/* Reveal element — stagger delay only affects the reveal transition */
.sub-themes-item {
  position: relative;
  border-bottom: 1px solid rgba(22, 41, 38, 0.08);
}

/* Copper vertical bar — animates independently of the reveal */
.sub-themes-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--copper-600), var(--copper-400));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.sub-themes-item:hover::after {
  transform: scaleY(1);
}

/* Text — all hover transitions live HERE, not on the reveal parent */
.sub-themes-text {
  display: block;
  padding: clamp(1.2rem, 1.9vw, 1.8rem) 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--stone-700);
  transition:
    color 0.38s ease,
    padding-left 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}
.sub-themes-item:hover .sub-themes-text {
  color: var(--forest-900);
  padding-left: clamp(10px, 1.2vw, 16px);
}

/* Staggered row-by-row reveal (delay only affects opacity/transform/filter) */
.sub-themes-list .sub-themes-item:nth-child(1)  { transition-delay: 0.05s; }
.sub-themes-list .sub-themes-item:nth-child(2)  { transition-delay: 0.11s; }
.sub-themes-list .sub-themes-item:nth-child(3)  { transition-delay: 0.17s; }
.sub-themes-list .sub-themes-item:nth-child(4)  { transition-delay: 0.23s; }
.sub-themes-list .sub-themes-item:nth-child(5)  { transition-delay: 0.29s; }
.sub-themes-list .sub-themes-item:nth-child(6)  { transition-delay: 0.35s; }
.sub-themes-list .sub-themes-item:nth-child(7)  { transition-delay: 0.41s; }
.sub-themes-list .sub-themes-item:nth-child(8)  { transition-delay: 0.47s; }
.sub-themes-list .sub-themes-item:nth-child(9)  { transition-delay: 0.53s; }


/* ---- SUPPORT SECTION ---- */
.sub-support {
  background: linear-gradient(180deg, var(--cream-200), var(--cream-100));
}

.sub-support-inner {
  /* full container width */
}

.sub-support-inner h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin: 0 0 clamp(28px, 4vw, 44px);
}

/* 3-column card row */
.sub-support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}

.sub-support-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: clamp(1.4rem, 2.2vw, 2rem) clamp(1.2rem, 1.8vw, 1.6rem);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.45s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Subtle copper accent on hover */
.sub-support-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--copper-600), var(--copper-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.sub-support-card:hover::before {
  transform: scaleX(1);
}

.sub-support-card:hover {
  border-color: rgba(180, 110, 77, 0.22);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(6, 15, 11, 0.08);
}

.sub-support-card strong {
  font-family: var(--text);
  font-weight: 700;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  color: var(--forest-800);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.sub-support-card span {
  font-family: var(--text);
  font-weight: 400;
  font-size: clamp(0.88rem, 0.95vw, 0.96rem);
  color: var(--stone-600);
  line-height: 1.45;
}


/* ---- RESPONSIVE ---- */
@media (max-width: 760px) {
  .sub-themes-list {
    grid-template-columns: 1fr;
  }
  .sub-support-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .sub-support-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
  .sub-support-card::before { display: none; }
}

@media (max-width: 640px) {
  .sub-themes-text {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sub-themes-item::after,
  .sub-themes-text,
  .sub-support-card,
  .sub-support-card::before { transition: none; }
  .sub-themes-list .sub-themes-item { transition-delay: 0s !important; }
}


/* =====================================================
   THEMENFELDER – Split Sticky Layout (st-) v2
   Large items · @keyframes stagger · Clean hover
   ===================================================== */

.st-section {
  background:
    radial-gradient(ellipse 50% 40% at 96% 6%, rgba(180, 110, 77, 0.07), transparent 50%),
    linear-gradient(180deg, var(--cream-100), var(--cream-50));
}

/* ---- Split: sticky heading + editorial grid ---- */
.st-layout {
  display: grid;
  grid-template-columns: clamp(200px, 24vw, 280px) 1fr;
  gap: clamp(52px, 7.5vw, 104px);
  align-items: start;
}

/* ---- Sticky anchor ---- */
.st-anchor {
  position: sticky;
  top: calc(var(--header-h) + clamp(24px, 3vw, 44px));
}

.st-eyebrow {
  display: block;
  font-family: var(--text);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-600);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 1.6vw, 1.5rem);
}

.st-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin: 0;
}

/* ---- Journey: vertical path with milestones ---- */

/* Container is observed by IntersectionObserver but doesn't animate itself */
.st-journey.reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* ---- Themen-Raster: kompakt, scanbar, füllt die Breite ---- */
.st-journey {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
}

@keyframes stMilestone {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.st-journey .st-milestone { opacity: 0; }
.st-journey.is-visible .st-milestone {
  animation: stMilestone 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.st-journey.is-visible .st-milestone:nth-child(1) { animation-delay: 0.06s; }
.st-journey.is-visible .st-milestone:nth-child(2) { animation-delay: 0.12s; }
.st-journey.is-visible .st-milestone:nth-child(3) { animation-delay: 0.18s; }
.st-journey.is-visible .st-milestone:nth-child(4) { animation-delay: 0.24s; }
.st-journey.is-visible .st-milestone:nth-child(5) { animation-delay: 0.30s; }
.st-journey.is-visible .st-milestone:nth-child(6) { animation-delay: 0.36s; }
.st-journey.is-visible .st-milestone:nth-child(7) { animation-delay: 0.42s; }

/* ---- Themen-Kachel ---- */
.st-milestone {
  position: relative;
  display: block;
  padding: clamp(18px, 1.7vw, 24px) clamp(18px, 1.8vw, 26px);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.10);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
/* Kupfer-Akzent links, wächst beim Hover */
.st-milestone::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--copper-600), var(--copper-400));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.st-milestone:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(180, 110, 77, 0.28);
}
.st-milestone:hover::before { transform: scaleY(1); }

/* Punkt entfällt im Raster */
.st-m-dot { display: none; }

.st-item-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--forest-900);
  margin: 0 0 0.4rem;
  transition: color 0.35s ease;
}
.st-item-keys {
  font-family: var(--text);
  font-size: clamp(0.84rem, 0.95vw, 0.95rem);
  font-weight: 500;
  color: var(--stone-600);
  line-height: 1.5;
  margin: 0;
  letter-spacing: 0.005em;
}
.st-milestone:hover .st-item-title { color: var(--copper-700); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .st-layout {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
  }
  .st-anchor { position: static; }
  .st-headline { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}

@media (max-width: 600px) {
  .st-journey { grid-template-columns: 1fr; }
  .st-item-title { font-size: clamp(1.3rem, 5.5vw, 1.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  .st-journey .st-milestone { opacity: 1; animation: none !important; }
  .st-milestone, .st-milestone::before, .st-item-title { transition: none; }
}


/* =====================================================
   ANGEBOTE – Showroom & Gateway (ag-)
   Editorial panels · Topic wall · Arbeitsweise strip
   ===================================================== */

/* ---- Hero CTA row ---- */
.ang-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(1.8rem, 3vw, 2.8rem);
}
.ang-hero-ctas .btn { min-width: 196px; }

/* ---- DREI WEGE – Editorial panels ---- */
.ag-paths {
  background: var(--cream-100);
  padding-block: 0;
}

.ag-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1440px;
  margin-inline: auto;
  border-top: 1px solid rgba(22, 41, 38, 0.08);
}

/* Panel base */
.ag-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(44px, 6vw, 76px) clamp(32px, 4.5vw, 56px);
  min-height: clamp(460px, 52vh, 600px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition:
    background 0.55s ease,
    filter 0.5s ease;
}

/* Warm hover glow on light panels via ::before */
.ag-panel-a::before,
.ag-panel-c::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 90% 100%, rgba(180, 110, 77, 0.10), transparent 65%);
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}
.ag-panel-b::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 20% 10%, rgba(180, 110, 77, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}
.ag-panel:hover::before { opacity: 1; }

/* Sibling dimming on hover (progressive enhancement) */
.ag-paths-grid:has(.ag-panel:hover) .ag-panel:not(:hover) {
  filter: brightness(0.95);
}

/* Light panel A */
.ag-panel-a {
  background: var(--cream-50);
  border-right: 1px solid rgba(22, 41, 38, 0.07);
}

/* Dark panel B — visual anchor */
.ag-panel-b {
  background: var(--forest-900);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.ag-panel-b:hover { background: var(--forest-800); }

/* Panel C */
.ag-panel-c {
  background: var(--cream-100);
}

/* Roman numeral */
.ag-panel-roman {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.6rem, 2.8vw, 2.6rem);
}
.ag-panel-a .ag-panel-roman,
.ag-panel-c .ag-panel-roman { color: var(--copper-600); }
.ag-panel-b .ag-panel-roman { color: rgba(208, 139, 104, 0.65); }

/* Audience tag */
.ag-panel-tag {
  display: block;
  font-family: var(--text);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: clamp(0.55rem, 0.9vw, 0.85rem);
}
.ag-panel-a .ag-panel-tag,
.ag-panel-c .ag-panel-tag { color: var(--forest-800); opacity: 0.60; }
.ag-panel-b .ag-panel-tag { color: rgba(255, 255, 255, 0.50); }

/* Headline */
.ag-panel-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0;
  flex: 1;
}
.ag-panel-a .ag-panel-headline,
.ag-panel-c .ag-panel-headline { color: var(--forest-900); }
.ag-panel-b .ag-panel-headline { color: var(--white); }

/* Decorative large icon — background element */
.ag-panel-deco {
  position: absolute;
  bottom: clamp(60px, 8vw, 96px);
  right: clamp(24px, 3.5vw, 44px);
  pointer-events: none;
  user-select: none;
}
.ag-panel-deco svg {
  width: clamp(64px, 8vw, 96px);
  height: clamp(64px, 8vw, 96px);
  stroke-width: 1.0;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ag-panel-a .ag-panel-deco svg,
.ag-panel-c .ag-panel-deco svg { stroke: rgba(22, 41, 38, 0.10); }
.ag-panel-b .ag-panel-deco svg { stroke: rgba(255, 255, 255, 0.10); }

/* Panel footer */
.ag-panel-footer {
  margin-top: clamp(2.2rem, 3.5vw, 3.8rem);
  padding-top: clamp(1.1rem, 1.8vw, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.ag-panel-a .ag-panel-footer,
.ag-panel-c .ag-panel-footer { border-top: 1px solid rgba(22, 41, 38, 0.10); }
.ag-panel-b .ag-panel-footer { border-top: 1px solid rgba(255, 255, 255, 0.10); }

.ag-panel-cta {
  font-family: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ag-panel-cta::after {
  content: "→";
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ag-panel:hover .ag-panel-cta { gap: 14px; }
.ag-panel:hover .ag-panel-cta::after { transform: translateX(4px); }
.ag-panel-a .ag-panel-cta,
.ag-panel-c .ag-panel-cta { color: var(--copper-600); }
.ag-panel-b .ag-panel-cta { color: var(--copper-400); }

/* ---- TOPIC WALL ---- */
.ag-topics {
  background:
    radial-gradient(ellipse 55% 40% at 85% 15%, rgba(180, 110, 77, 0.06), transparent 55%),
    linear-gradient(180deg, var(--cream-50), var(--cream-100));
}

.ag-topics-head {
  max-width: 700px;
  margin-bottom: clamp(40px, 5.5vw, 64px);
}

.ag-topics-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin: 0;
}

/* Word wall */
.ag-wall.reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

.ag-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(4px, 0.8vw, 10px) clamp(20px, 3.5vw, 48px);
}

.ag-word {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--forest-900);
  line-height: 1.1;
  opacity: 0;
  cursor: default;
  transition: color 0.35s ease;
}
.ag-word:hover { color: var(--copper-600); }

.ag-word-xl { font-size: clamp(2.8rem, 5.5vw, 5.2rem); }
.ag-word-lg { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.ag-word-md { font-size: clamp(1.5rem, 2.4vw, 2.4rem); color: var(--stone-700); }
.ag-word-sm { font-size: clamp(1.05rem, 1.6vw, 1.6rem); color: var(--stone-600); }

@keyframes agWordReveal {
  from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0);  }
}

.ag-wall.is-visible .ag-word {
  animation: agWordReveal 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ag-wall.is-visible .ag-word:nth-child(1)  { animation-delay: 0.04s; }
.ag-wall.is-visible .ag-word:nth-child(2)  { animation-delay: 0.11s; }
.ag-wall.is-visible .ag-word:nth-child(3)  { animation-delay: 0.18s; }
.ag-wall.is-visible .ag-word:nth-child(4)  { animation-delay: 0.25s; }
.ag-wall.is-visible .ag-word:nth-child(5)  { animation-delay: 0.32s; }
.ag-wall.is-visible .ag-word:nth-child(6)  { animation-delay: 0.39s; }
.ag-wall.is-visible .ag-word:nth-child(7)  { animation-delay: 0.46s; }
.ag-wall.is-visible .ag-word:nth-child(8)  { animation-delay: 0.53s; }
.ag-wall.is-visible .ag-word:nth-child(9)  { animation-delay: 0.60s; }
.ag-wall.is-visible .ag-word:nth-child(10) { animation-delay: 0.67s; }

/* ---- ARBEITSWEISE – 4 concepts strip ---- */
.ag-arbeitsweise {
  background: linear-gradient(180deg, var(--cream-200), var(--cream-100));
}

.ag-aw-head {
  max-width: 700px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.ag-aw-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  margin: 0;
}

.ag-aw-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(180, 110, 77, 0.24);
}

.ag-aw-concept {
  padding: clamp(1.6rem, 2.5vw, 2.8rem) 0;
  border-right: 1px solid rgba(22, 41, 38, 0.07);
}
.ag-aw-concept:last-child { border-right: none; }

.ag-aw-num {
  display: block;
  font-family: var(--text);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-600);
  margin-bottom: clamp(0.5rem, 0.8vw, 0.7rem);
}

.ag-aw-word {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--forest-900);
  margin: 0;
}

/* Stagger for concepts */
.ag-aw-strip.reveal {
  opacity: 1 !important; transform: none !important;
  filter: none !important; transition: none !important;
}
.ag-aw-strip .ag-aw-concept { opacity: 0; }
.ag-aw-strip.is-visible .ag-aw-concept {
  animation: stItemReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.ag-aw-strip.is-visible .ag-aw-concept:nth-child(1) { animation-delay: 0.05s; }
.ag-aw-strip.is-visible .ag-aw-concept:nth-child(2) { animation-delay: 0.14s; }
.ag-aw-strip.is-visible .ag-aw-concept:nth-child(3) { animation-delay: 0.23s; }
.ag-aw-strip.is-visible .ag-aw-concept:nth-child(4) { animation-delay: 0.32s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .ag-paths-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ag-panel-c { grid-column: 1 / -1; min-height: clamp(320px, 45vw, 440px); }
  .ag-aw-strip { grid-template-columns: repeat(2, 1fr); }
  .ag-aw-concept:nth-child(2) { border-right: none; }
  .ag-aw-concept:nth-child(3) { border-top: 1px solid rgba(22, 41, 38, 0.07); }
}

@media (max-width: 640px) {
  .ag-paths-grid { grid-template-columns: 1fr; }
  .ag-panel-c { grid-column: auto; }
  .ag-panel { min-height: clamp(300px, 65vw, 400px); }
  .ang-hero-ctas .btn { min-width: 0; width: 100%; }
  .ang-hero-ctas { flex-direction: column; }
  .ag-word-xl { font-size: clamp(2.2rem, 9.5vw, 3.2rem); }
  .ag-word-lg { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .ag-word-md { font-size: clamp(1.2rem, 5.2vw, 1.7rem); }
  .ag-aw-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .ag-aw-strip { grid-template-columns: 1fr; }
  .ag-aw-concept { border-right: none !important; border-bottom: 1px solid rgba(22, 41, 38, 0.07); }
  .ag-aw-concept:nth-child(3) { border-top: none; }
  .ag-aw-concept:last-child { border-bottom: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ag-panel, .ag-panel::before, .ag-panel-cta, .ag-panel-cta::after { transition: none; }
  .ag-paths-grid:has(.ag-panel:hover) .ag-panel:not(:hover) { filter: none; }
  .ag-wall .ag-word { opacity: 1; animation: none !important; }
  .ag-aw-strip .ag-aw-concept { opacity: 1; animation: none !important; }
  .ag-word { transition: none; }
}

/* =====================================================
   ANGEBOTE – Übersicht / Showroom (ov-*)
   Gateway & Orientierung · cinematic · editorial
   ===================================================== */

/* ---- Hero-Aktionen ---- */
.ov-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(2rem, 3.2vw, 2.8rem);
}

/* ---- 02 · Die drei Wege ---- */
.ov-paths {
  position: relative;
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
}
.ov-paths-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.ov-paths-list {
  border-top: 1px solid rgba(22, 41, 38, 0.12);
}
.ov-path {
  position: relative;
  display: grid;
  grid-template-columns: clamp(72px, 8vw, 124px) 1fr clamp(52px, 5vw, 68px);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(2.2rem, 4vw, 3.6rem) clamp(0.4rem, 1.6vw, 1.6rem);
  border-bottom: 1px solid rgba(22, 41, 38, 0.12);
  color: var(--forest-900);
  transition: background 0.55s var(--ease);
  overflow: hidden;
}
.ov-path::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16%;
  bottom: 16%;
  width: 3px;
  background: var(--copper-600);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.55s var(--ease);
}
.ov-path:hover { background: rgba(180, 110, 77, 0.05); }
.ov-path:hover::before { transform: scaleY(1); }

.ov-path-index {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.ov-path-roman {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--copper-600);
  transition: color 0.4s ease;
}
.ov-path-icon svg {
  width: clamp(28px, 2.6vw, 34px);
  height: clamp(28px, 2.6vw, 34px);
  fill: none;
  stroke: var(--forest-700);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.4s ease;
}

.ov-path-main { min-width: 0; }
.ov-path-label {
  display: block;
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-600);
  margin-bottom: clamp(0.7rem, 1vw, 1rem);
}
.ov-path-title {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--forest-900);
  transition: color 0.4s ease;
}
.ov-path-line {
  display: block;
  margin-top: clamp(0.7rem, 1vw, 1rem);
  max-width: 46ch;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.6;
  color: var(--stone-600);
}

.ov-path-go {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(52px, 5vw, 64px);
  height: clamp(52px, 5vw, 64px);
  border-radius: 999px;
  border: 1.5px solid rgba(22, 41, 38, 0.18);
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.55s var(--ease);
}
.ov-path-go svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--forest-800);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.45s ease;
}
.ov-path:hover .ov-path-title { color: var(--copper-700); }
.ov-path:hover .ov-path-roman { color: var(--copper-700); }
.ov-path:hover .ov-path-icon svg { stroke: var(--copper-600); }
.ov-path:hover .ov-path-go {
  background: var(--copper-600);
  border-color: var(--copper-600);
  transform: translateX(6px);
}
.ov-path:hover .ov-path-go svg { stroke: var(--white); }

/* ---- 03 · Themenfelder (Topic Wall, dunkel) ---- */
.ov-themes {
  position: relative;
  padding-block: var(--section-v);
  background:
    radial-gradient(circle at 82% 18%, rgba(180, 110, 77, 0.16), transparent 42%),
    linear-gradient(135deg, var(--forest-950), var(--forest-900));
  overflow: hidden;
}
.ov-themes-head {
  margin-bottom: clamp(44px, 5.5vw, 76px);
}
.ov-tag-light { color: var(--copper-300); }
.ov-themes-head h2 {
  color: var(--white);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
}
.ov-themes-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(0.5rem, 1.4vw, 1.1rem) clamp(1.4rem, 3vw, 2.6rem);
  max-width: 1040px;
}
.ov-theme {
  position: relative;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.2vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: rgba(247, 245, 242, 0.82);
  transition: color 0.4s ease;
}
.ov-theme:not(:last-child)::after {
  content: "·";
  margin-left: clamp(1.4rem, 3vw, 2.6rem);
  color: var(--copper-500);
  opacity: 0.55;
}
.ov-theme:hover { color: var(--copper-300); }

/* ---- 04 · Arbeitsweise (Sequenz) ---- */
.ov-method {
  background: linear-gradient(180deg, var(--cream-50), var(--cream-100));
}
.ov-method-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.ov-method-head .ang-paths-tag { justify-content: center; }
.ov-method-head .ang-paths-tag::before { display: none; }
.ov-method-head h2 { margin-inline: auto; }

.ov-method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 980px;
  margin-inline: auto;
}
.ov-method-flow::before {
  content: "";
  position: absolute;
  top: clamp(58px, 6vw, 74px);
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 110, 77, 0.4), transparent);
  z-index: 0;
}
.ov-method-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ov-method-num {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--copper-600);
  margin-bottom: clamp(1rem, 1.6vw, 1.4rem);
}
.ov-method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 6vw, 80px);
  height: clamp(64px, 6vw, 80px);
  border-radius: 999px;
  background: var(--cream-50);
  border: 1px solid rgba(180, 110, 77, 0.28);
  box-shadow: var(--shadow-sm);
  margin-bottom: clamp(1.1rem, 1.8vw, 1.6rem);
}
.ov-method-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--copper-700);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ov-method-label {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--forest-900);
}
.ov-method-action {
  text-align: center;
  margin-top: clamp(48px, 6vw, 72px);
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .ov-hero-actions { flex-direction: column; }
  .ov-hero-actions .btn { width: 100%; }

  .ov-path {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "index go"
      "main  main";
    gap: 16px clamp(16px, 4vw, 28px);
    align-items: center;
    padding: clamp(1.8rem, 6vw, 2.4rem) clamp(0.4rem, 2vw, 1rem);
  }
  .ov-path-index {
    grid-area: index;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .ov-path-main { grid-area: main; }
  .ov-path-go { grid-area: go; align-self: center; }
  .ov-path-line { margin-top: 0.8rem; }
  /* Auf Touch keine Hover-Verschiebung */
  .ov-path:hover .ov-path-go { transform: none; }

  .ov-method-flow {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 380px;
  }
  .ov-method-flow::before {
    top: 0;
    bottom: 0;
    left: clamp(32px, 10vw, 40px);
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(180, 110, 77, 0.4), transparent);
  }
  .ov-method-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon label"
      "icon desc";
    column-gap: 20px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    padding-block: clamp(1rem, 4vw, 1.4rem);
  }
  .ov-method-num { display: none; }
  .ov-method-icon { grid-area: icon; margin-bottom: 0; align-self: center; }
  .ov-method-label { grid-area: label; align-self: end; }
  .ov-method-desc { grid-area: desc; align-self: start; margin-top: 0.2rem; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ov-path, .ov-path::before, .ov-path-go,
  .ov-path-title, .ov-path-roman, .ov-path-icon svg, .ov-path-go svg,
  .ov-theme { transition: none; }
  .ov-path:hover .ov-path-go { transform: none; }
}

/* =====================================================
   STARTSEITE – Redesign 2026
   Cinematic · ruhig · editorial · additiv (überschreibt nichts)
   ===================================================== */

/* ---- HERO: Tiefe, Inszenierung, Einstieg ---- */
.hero-title { display: block; }
.hero-line  { display: block; }

.hero-visual-frame {
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 44px 100px -34px rgba(6, 15, 11, 0.50),
    0 14px 40px -16px rgba(6, 15, 11, 0.28);
  transition: box-shadow 0.6s var(--ease);
  will-change: transform;
}
/* weicher Kupfer-Schimmer hinter dem Bild – Tiefe ohne Lautstärke */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 4% -8% -10% 6%;
  z-index: -1;
  border-radius: var(--r-lg);
  background: radial-gradient(ellipse at 65% 45%, rgba(180, 110, 77, 0.16), transparent 62%);
  filter: blur(34px);
  pointer-events: none;
}

/* Cinematic-Einstieg (nur ohne Reduced-Motion) */
@media (prefers-reduced-motion: no-preference) {
  .hero-kicker,
  .hero-title .hero-line,
  .hero-sub,
  .hero-actions {
    opacity: 0;
    animation: heroIn 1s var(--ease) forwards;
  }
  .hero-kicker                    { animation-delay: 0.10s; }
  .hero-title .hero-line:nth-child(1) { animation-delay: 0.24s; }
  .hero-title .hero-line:nth-child(2) { animation-delay: 0.36s; }
  .hero-title .hero-line:nth-child(3) { animation-delay: 0.48s; }
  .hero-sub                       { animation-delay: 0.64s; }
  .hero-actions                   { animation-delay: 0.76s; }
  .hero-visual {
    opacity: 0;
    animation: heroVisualIn 1.5s var(--ease) 0.18s forwards;
  }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to   { opacity: 1; transform: none;             filter: none; }
}
@keyframes heroVisualIn {
  from { opacity: 0; transform: translateY(34px) scale(1.015); filter: blur(8px); }
  to   { opacity: 1; transform: none;                          filter: none; }
}

/* ---- 02 · LEBENSSITUATIONEN ---- */
.home-situations {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(180, 110, 77, 0.05), transparent 60%),
    var(--cream-50);
  /* overflow:hidden von .home-section überschreiben — sonst greift das
     position:sticky der Intro-Spalte nicht (Sektion würde Scroll-Container) */
  overflow: visible;
}
/* Zweispaltig: links Sticky-Intro, rechts Situationskarten – füllt die Breite */
.home-situations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.home-situations-intro {
  position: sticky;
  top: calc(var(--header-h) + clamp(20px, 4vw, 48px));
}
.home-situations-intro .home-section-title {
  margin: 0 0 clamp(1.4rem, 2.4vw, 2rem);
}
.home-situations-lead {
  color: var(--stone-600);
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.75;
  margin: 0 0 clamp(1.6rem, 2.4vw, 2.2rem);
  max-width: 42ch;
}

/* Situationskarten */
.home-situations-list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 22px);
}
.home-situation {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: clamp(18px, 2vw, 30px);
  align-items: center;
  padding: clamp(24px, 2.6vw, 34px) clamp(26px, 2.8vw, 40px);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.10);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    border-color 0.55s var(--ease);
}
/* Kupfer-Akzent links, wächst beim Hover */
.home-situation::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--copper-600), var(--copper-400));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s var(--ease);
}
.home-situation:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180, 110, 77, 0.28);
}
.home-situation:hover::before { transform: scaleY(1); }
.home-situation:focus-visible {
  outline: 2px solid var(--copper-600);
  outline-offset: 3px;
}
.home-situation-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-700);
}
.home-situation-body { display: flex; flex-direction: column; gap: 0.55rem; }
.home-situation-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--forest-900);
  margin: 0;
  transition: color 0.4s var(--ease);
}
.home-situation:hover .home-situation-text { color: var(--copper-700); }
.home-situation-sub {
  color: var(--stone-600);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  max-width: 50ch;
}
.home-situation-keys {
  margin-top: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--copper-600);
}
.home-situation-go {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(22, 41, 38, 0.16);
  color: var(--copper-700);
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    color 0.45s var(--ease),
    transform 0.45s var(--ease);
}
.home-situation-go svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.home-situation:hover .home-situation-go {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: #fff;
  transform: translateX(4px);
}

/* ---- 03 · ANGEBOTE / ZUGÄNGE (Premium-Schaufenster) ---- */
.home-access { background: linear-gradient(180deg, var(--cream-100), var(--cream-50)); }
.home-access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
.home-access-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 3vw, 44px) clamp(24px, 2.4vw, 36px);
  min-height: clamp(280px, 26vw, 340px);
  background: var(--white);
  border: 1px solid rgba(22, 41, 38, 0.08);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease),
    border-color 0.55s var(--ease);
}
.home-access-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--copper-600), var(--copper-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.home-access-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180, 110, 77, 0.30);
}
.home-access-card:hover::before { transform: scaleX(1); }
.home-access-card:focus-visible {
  outline: 2px solid var(--copper-600);
  outline-offset: 3px;
}
.home-access-roman {
  font-family: var(--display);
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  line-height: 1;
  color: rgba(180, 110, 77, 0.55);
}
.home-access-title {
  font-size: clamp(1.45rem, 1.9vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.home-access-line {
  color: var(--stone-600);
  font-size: 1rem;
  line-height: 1.62;
  margin: 0;
  max-width: 32ch;
}
.home-access-go {
  margin-top: auto;
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(22, 41, 38, 0.16);
  color: var(--copper-700);
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    color 0.45s var(--ease),
    transform 0.45s var(--ease);
}
.home-access-go svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.home-access-card:hover .home-access-go {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: #fff;
  transform: translateX(4px);
}

/* ---- 04 · HALTUNG & FACHLICHKEIT ---- */
/* =====================================================
   HALTUNG & FACHLICHE ERFAHRUNG – Elevated Split-Panel
   Ein zusammenhängendes, hervorstechendes Premium-Modul
   ===================================================== */
.home-foundation {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(180, 110, 77, 0.05), transparent 60%),
    linear-gradient(180deg, var(--cream-100), var(--cream-200));
}
/* Das Panel: erhöht, eine Einheit, hebt sich klar vom Umfeld ab */
.home-foundation-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.08);
  border-radius: var(--r-lg);
  box-shadow:
    0 40px 90px -40px rgba(6, 15, 11, 0.30),
    0 12px 30px -18px rgba(6, 15, 11, 0.14);
  overflow: hidden;
}

/* ---- Linke Hälfte: Haltung (hell, nummerierte Prinzipien) ---- */
.home-values {
  padding: clamp(34px, 4vw, 60px) clamp(30px, 3.4vw, 56px);
}
.home-values .home-section-title {
  margin-bottom: clamp(24px, 3vw, 38px);
  font-size: clamp(2.1rem, 3vw, 3rem);
}
.home-values-list { display: flex; flex-direction: column; }
.home-value {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 1.6vw, 24px);
  padding: clamp(16px, 1.9vw, 22px) 0;
  border-top: 1px solid rgba(22, 41, 38, 0.10);
  align-items: start;
}
.home-value:first-child { border-top: 0; padding-top: 0; }
.home-value-num {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--copper-600);
  font-feature-settings: "tnum";
  letter-spacing: 0.02em;
}
.home-value-body { display: flex; flex-direction: column; gap: 0.35rem; }
.home-value-label {
  font-family: var(--display);
  font-size: clamp(1.45rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--forest-900);
  letter-spacing: -0.015em;
}
.home-value-text {
  color: var(--stone-600);
  font-size: 1.02rem;
  line-height: 1.62;
}

/* ---- Rechte Hälfte: Fachliche Erfahrung (Tannengrün-Inset) ---- */
.home-expertise {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(34px, 4vw, 60px) clamp(30px, 3.4vw, 56px);
  background:
    radial-gradient(circle at 88% 6%, rgba(180, 110, 77, 0.16), transparent 48%),
    linear-gradient(165deg, var(--forest-800), var(--forest-950));
  color: #fff;
}
/* Feine Kupfer-Naht als Trennung zwischen den Hälften */
.home-expertise::before {
  content: "";
  position: absolute;
  left: 0; top: 14%; bottom: 14%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(208, 139, 104, 0.5), transparent);
}
.home-expertise .home-section-label { margin-bottom: clamp(1.4rem, 2vw, 1.8rem); }
.home-expertise .home-section-label::before { background: var(--copper-400); }
.home-expertise .home-section-tag { color: var(--copper-200); }
.home-expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 clamp(24px, 2.8vw, 32px);
}
.home-expertise-list li {
  font-family: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.home-expertise-list li:hover {
  background: rgba(208, 139, 104, 0.16);
  border-color: rgba(208, 139, 104, 0.45);
}
.home-expertise-note {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  line-height: 1.55;
  margin: 0 0 auto;
  padding-left: 1.2rem;
  border-left: 2px solid var(--copper-500);
}
.home-expertise .text-link {
  color: #fff;
  margin-top: clamp(1.8rem, 2.6vw, 2.4rem);
}
.home-expertise .text-link::after { background: var(--copper-300); }
.home-expertise .text-link:hover { color: var(--copper-200); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .home-access-grid { grid-template-columns: 1fr; }
  .home-foundation-grid { grid-template-columns: 1fr; }
  /* Trennung wird horizontal, wenn gestapelt */
  .home-expertise::before {
    left: 14%; right: 14%; top: 0; bottom: auto;
    width: auto; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(208, 139, 104, 0.5), transparent);
  }
  /* Lebenssituationen: Intro über den Karten, nicht mehr sticky */
  .home-situations-layout { grid-template-columns: 1fr; gap: clamp(32px, 6vw, 48px); }
  .home-situations-intro { position: static; }
  .home-situations-lead { max-width: 58ch; }
}
@media (max-width: 600px) {
  .home-situation {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding: clamp(22px, 5vw, 28px);
  }
  .home-situation-go { justify-self: start; }
  .home-value { gap: 12px; }
  .home-value-label { font-size: 1.3rem; }
}

/* =====================================================
   ANGEBOTE-WELT – Editorial Upgrade 2026-06
   Intros, Schritt-Beschreibungen, CTA-Lead (additiv)
   ===================================================== */

/* Section-Intros (Hub) – ruhige Brücke zwischen Headline und Inhalt */
.ov-paths-intro,
.ov-method-intro {
  max-width: 56ch;
  margin: clamp(1.1rem, 1.8vw, 1.5rem) 0 0;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: var(--stone-600);
}
.ov-method-intro { margin-inline: auto; text-align: center; }
.ov-themes-intro {
  max-width: 52ch;
  margin: clamp(1.1rem, 1.8vw, 1.5rem) 0 0;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

/* Arbeitsweise-Schritte: Beschreibung unter dem Label */
.ov-method-desc {
  display: block;
  margin-top: clamp(0.7rem, 1.1vw, 1rem);
  max-width: 22ch;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--stone-600);
}

/* CTA-Lead auf dunklem Abschluss */
.ov-cta-lead {
  max-width: 46ch;
  margin: clamp(1rem, 2vw, 1.4rem) auto clamp(1.8rem, 3vw, 2.4rem);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 720px) {
  /* Schritt-Beschreibung im Mobile-Stack linksbündig zur Linie */
  .ov-method-desc { max-width: none; }
}

/* Subseiten: einleitender Satz unter der Sticky-Headline */
.st-intro {
  margin: clamp(1.1rem, 1.8vw, 1.5rem) 0 0;
  max-width: 34ch;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
  color: var(--stone-600);
}

/* =====================================================
   ANGEBOTE – Fusionierte Seite (3 Zielgruppenblöcke)
   2026-06 · st-/sub-Komponenten wiederverwendet
   ===================================================== */
.ang-block { scroll-margin-top: calc(var(--header-h) + 20px); }
/* Alternierender Hintergrund für ruhigen Rhythmus zwischen den 3 Blöcken */
.ang-block-alt {
  background:
    radial-gradient(ellipse 50% 40% at 4% 6%, rgba(180, 110, 77, 0.06), transparent 50%),
    linear-gradient(180deg, var(--cream-200), var(--cream-100));
}
/* Bereichsmarke (römische Ziffer + Label) als klare Kapitel-Trennung */
.ang-block-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 60px);
  padding-bottom: clamp(18px, 2vw, 24px);
  border-bottom: 1px solid rgba(22, 41, 38, 0.12);
  font-family: var(--text);
  font-size: clamp(0.8rem, 1vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-700);
}
.ang-block-roman {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4em;
  height: 2.4em;
  border: 1px solid rgba(180, 110, 77, 0.35);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--copper-600);
}
/* Begleitung innerhalb jedes Blocks */
.ang-support {
  margin-top: clamp(48px, 6vw, 84px);
}
.ang-support-head {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  letter-spacing: -0.025em;
  color: var(--forest-900);
  margin-bottom: clamp(24px, 3vw, 36px);
}

/* =====================================================
   ANGEBOTE – Sprung-Chips + Arbeitsweise-Verweis (2026-06)
   Kompakte Navigation statt grosser Karten · keine Methode-Wiederholung
   ===================================================== */
.ang-jump {
  padding-block: clamp(20px, 2.4vw, 30px);
  border-bottom: 1px solid rgba(22, 41, 38, 0.10);
  background: var(--cream-50);
  scroll-margin-top: var(--header-h);
}
.ang-jump-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(14px, 1.8vw, 24px);
}
.ang-jump-label {
  font-family: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-700);
  flex-shrink: 0;
}
.ang-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 12px);
  margin: 0; padding: 0; list-style: none;
}
.ang-jump-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border: 1px solid rgba(22, 41, 38, 0.14);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--forest-800);
  white-space: nowrap;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.ang-jump-roman {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--copper-600);
  transition: color 0.4s var(--ease);
}
.ang-jump-chip:hover {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: #fff;
  transform: translateY(-2px);
}
.ang-jump-chip:hover .ang-jump-roman { color: rgba(255, 255, 255, 0.85); }
.ang-jump-chip:focus-visible { outline: 2px solid var(--copper-600); outline-offset: 3px; }

/* Arbeitsweise-Verweis (statt wiederholter Methode-Sektion) */
.ang-method-link { background: linear-gradient(180deg, var(--cream-100), var(--cream-50)); }
.ang-method-link-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(32px, 4vw, 52px) clamp(30px, 4vw, 60px);
  background: var(--cream-50);
  border: 1px solid rgba(22, 41, 38, 0.10);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.ang-method-link-text { max-width: 56ch; }
.ang-method-link-text .ang-paths-tag { margin-bottom: 0.8rem; display: inline-flex; }
.ang-method-link-text h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 0 0 0.9rem;
}
.ang-method-link-text p { margin: 0; }
.ang-method-link-inner .btn { flex-shrink: 0; }

@media (max-width: 760px) {
  .ang-method-link-inner { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* =====================================================
   STARTSEITE – Vertiefungs-Verweise (home-explore) 2026-06
   Ersetzt den ausgelagerten Haltung/Fachlichkeit-Block
   ===================================================== */
.home-explore { background: var(--cream-50); }
.home-explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}
.home-explore-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(30px, 3.2vw, 46px) clamp(28px, 3vw, 42px);
  min-height: clamp(180px, 16vw, 220px);
  background: var(--white);
  border: 1px solid rgba(22, 41, 38, 0.08);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}
.home-explore-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--copper-600), var(--copper-400));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.home-explore-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180, 110, 77, 0.28);
}
.home-explore-card:hover::before { transform: scaleX(1); }
.home-explore-card:focus-visible { outline: 2px solid var(--copper-600); outline-offset: 3px; }
.home-explore-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  letter-spacing: -0.025em;
  color: var(--forest-900);
  margin: 0;
  transition: color 0.4s var(--ease);
}
.home-explore-card:hover .home-explore-title { color: var(--copper-700); }
.home-explore-text {
  color: var(--stone-600);
  font-size: 1.02rem;
  line-height: 1.62;
  margin: 0;
  max-width: 40ch;
}
.home-explore-go {
  margin-top: auto;
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(22, 41, 38, 0.16);
  color: var(--copper-700);
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), color 0.45s var(--ease), transform 0.45s var(--ease);
}
.home-explore-go svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.home-explore-card:hover .home-explore-go {
  background: var(--copper-600); border-color: var(--copper-600); color: #fff; transform: translateX(4px);
}

/* home-expertise standalone (auf Über-mich): Rundung + Naht aus */
.section-light .home-expertise { border-radius: var(--r-lg); }
.section-light .home-expertise::before { display: none; }

@media (max-width: 700px) {
  .home-explore-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   SCHACH-PROGRESSION · Arbeitsweise-Timeline (2026-06)
   Figuren ziehen auf der Linie · Bauer → Dame · strategisch
   ===================================================== */
/* Etwas mehr Platz links für die Figuren auf der Linie */
.aw-timeline { padding-left: 30px; }
.aw-timeline::before { left: 14px; }
.aw-phase { padding-left: clamp(46px, 5vw, 66px); }

/* Alter Knoten-Punkt entfällt – die Figur ist der Knoten */
.aw-phase::before { display: none; }

.aw-chess {
  position: absolute;
  left: clamp(-44px, -4.6vw, -64px);
  top: 2px;
  width: clamp(40px, 4.4vw, 52px);
  height: clamp(40px, 4.4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-50);
  border: 1px solid rgba(180, 110, 77, 0.30);
  box-shadow: 0 0 0 5px var(--cream-50), 0 6px 18px -8px rgba(6, 15, 11, 0.25);
  color: var(--copper-600);
  z-index: 2;
  /* Startzustand: leicht versetzt + transparent (Scroll-Reveal animiert) */
  opacity: 0;
  transform: translateY(14px) scale(0.85);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    background 0.4s ease,
    border-color 0.4s ease,
    color 0.4s ease,
    box-shadow 0.4s ease;
}
.aw-chess svg {
  width: 60%;
  height: 60%;
  fill: currentColor;
  stroke: none;
  transition: transform 0.5s var(--ease);
}

/* „Zug": Figur erscheint, sobald ihre Phase sichtbar wird */
.aw-phase.is-visible .aw-chess,
.aw-phase.aw-line-in.is-visible .aw-chess {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hover: Figur hebt sich, deutet einen Zug nach oben an */
.aw-phase:hover .aw-chess {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: #fff;
  box-shadow: 0 0 0 5px var(--cream-50), 0 12px 26px -10px rgba(180, 110, 77, 0.55);
}
.aw-phase:hover .aw-chess svg { transform: translateY(-2px) scale(1.06); }

/* Die finale Figur (Dame, Phase 05) = König-Schutz-Gedanke: dezent betont */
.aw-chess[data-piece="05"] {
  border-color: rgba(180, 110, 77, 0.5);
  box-shadow: 0 0 0 5px var(--cream-50), 0 0 0 6px rgba(180,110,77,0.10), 0 6px 18px -8px rgba(6,15,11,0.25);
}

@media (max-width: 600px) {
  .aw-timeline { padding-left: 24px; }
  .aw-timeline::before { left: 11px; }
  .aw-phase { padding-left: clamp(40px, 12vw, 52px); }
  .aw-chess { width: 38px; height: 38px; left: clamp(-38px, -11vw, -44px); }
}

@media (prefers-reduced-motion: reduce) {
  .aw-chess { opacity: 1; transform: none; transition: none; }
  .aw-chess svg { transition: none; }
}


/* =====================================================
   TARIFE · REDESIGN (2026)
   Editorial · ruhig · transparent
   Baut auf bestehenden Tokens, .pricing-grid, .price-card,
   dem .reveal-System und der .section-Rhythmik auf.
   ===================================================== */

/* ---- Kompakter Section-Rhythmus (einheitlich mit ueber-mich) ---- */
body[data-active="tarife"] main > .section {
  padding-block: clamp(46px, 4.6vw, 70px);
}
body[data-active="tarife"] .section-heading {
  margin-bottom: clamp(26px, 3vw, 40px);
}

/* ---- Hero: ruhiger & erwachsener, kompakterer Abstand ---- */
body[data-active="tarife"] .page-intro.tarife-hero {
  padding-top: calc(var(--header-h) + clamp(28px, 4vw, 60px));
  padding-bottom: clamp(40px, 5vw, 66px);
}
.tarife-hero { text-align: center; }
.tarife-hero h1 {
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  line-height: 0.96;
  margin-inline: auto;
  max-width: 14ch;
}
.tarife-hero .lead { max-width: 640px; }

/* ---- Preiskarten: einheitliche vertikale Struktur → Trennlinien fluchten ---- */
.tarife-prices .price-card {
  padding: clamp(26px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
}
/* Label & Titel reservieren konstante Höhe (bis zu 2 Zeilen) → alles fluchtet */
.price-card > span {
  line-height: 1.35;
  min-height: 2.7em;
}
.price-card h3 {
  letter-spacing: -0.03em;
  min-height: 2.1em;
}

.price-figure {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: nowrap;
  margin: clamp(1rem, 1.6vw, 1.4rem) 0 0.4rem;
  min-height: 1.1em;
}
/* einheitliche Preisgröße → keine "verschobene" Optik mehr */
.price-figure .price,
.price-figure .price.price-word {
  margin: 0;
  font-size: clamp(1.85rem, 2.3vw, 2.5rem);
  line-height: 1;
  white-space: nowrap;
  transition: color 0.5s var(--ease);
}
.price-cur {
  font-family: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-700);
  transition: color 0.5s var(--ease);
}
/* Höhere Spezifität als .price-card > p (sonst bleibt 0.94rem aktiv) */
.price-card .price-unit {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--stone-600);
}
/* Leistungen als Stichpunkte; Trennlinie läuft beim Reveal ruhig von links ein */
.price-card .price-points {
  position: relative;
  list-style: none;
  margin: 1.3rem 0 0;
  padding-top: 1.4rem;
  display: grid;
  gap: 0.75rem;
}
.price-card .price-points::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(22, 41, 38, 0.14);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease) 0.25s;
}
.price-card.is-visible .price-points::before { transform: scaleX(1); }

.price-card .price-points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--forest-800);
}
/* dezenter Kupfer-Marker (Rauten-Motiv der Marke) */
.price-card .price-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--copper-600);
  transform: rotate(45deg);
}

/* ruhige, gestaffelte Einblendung der Stichpunkte (nach der Trennlinie) */
.price-card .price-points li {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.price-card.is-visible .price-points li { opacity: 1; transform: none; }
.price-card.is-visible .price-points li:nth-child(1) { transition-delay: 0.40s; }
.price-card.is-visible .price-points li:nth-child(2) { transition-delay: 0.50s; }
.price-card.is-visible .price-points li:nth-child(3) { transition-delay: 0.60s; }

/* Ruhiger Hover: Preis nimmt Kupferton an (Lift + Akzentlinie via premium.css) */
.price-card:hover .price,
.price-card:hover .price-cur { color: var(--copper-700); }

@media (prefers-reduced-motion: reduce) {
  .price-card .price-points::before { transform: scaleX(1); transition: none; }
  .price-card .price-points li { opacity: 1; transform: none; transition: none; }
}

/* ---- Rahmenbedingungen: kompaktes 2×2-Raster mit Icons ---- */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.2vw, 30px) clamp(32px, 4vw, 64px);
}
.framework-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(18px, 1.8vw, 24px);
  padding-block: clamp(16px, 1.8vw, 22px);
  border-top: 1px solid rgba(22, 41, 38, 0.12);
}
.framework-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(180, 110, 77, 0.08);
  color: var(--copper-700);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.framework-icon svg { width: 22px; height: 22px; }
.framework-item:hover .framework-icon {
  background: rgba(180, 110, 77, 0.14);
}
.framework-item p {
  margin: 0;
  font-size: clamp(1.12rem, 1.3vw, 1.24rem);
  line-height: 1.56;
  color: var(--forest-800);
}

/* ---- Prozess: horizontale Journey-Timeline, ruhig von links nach rechts ---- */
/* Container wird beobachtet, animiert aber nicht als Block (wie .st-journey) */
.proc-timeline.reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}
.proc-timeline {
  --proc-gap: clamp(22px, 2.6vw, 44px);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--proc-gap);
}

/* Verbindungslinie: exakt von Knotenmitte (1) zu Knotenmitte (4).
   Knoten sind 64px breit und linksbündig → Mitte = 32px ab Spaltenanfang.
   right = Spaltenbreite − 32px = (100% − 3·gap)/4 − 32px */
.proc-line {
  position: absolute;
  top: 31px;
  left: 32px;
  right: calc((100% - 3 * var(--proc-gap)) / 4 - 32px);
  height: 2px;
  background: rgba(22, 41, 38, 0.13);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}
.proc-line-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--copper-600), var(--copper-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.7s var(--ease) 0.2s;
}
.proc-timeline.is-visible .proc-line-fill { transform: scaleX(1); }

.proc-step {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.proc-timeline.is-visible .proc-step { opacity: 1; transform: none; }

/* Knoten mit Icon */
.proc-node {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream-50);
  border: 1.5px solid rgba(22, 41, 38, 0.14);
  color: var(--stone-400);
  margin-bottom: clamp(22px, 2.4vw, 32px);
  transform: scale(0.92);
  transition:
    border-color 0.6s var(--ease),
    box-shadow 0.6s var(--ease),
    color 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.proc-node svg {
  width: 28px;
  height: 28px;
  transition: transform 0.6s var(--ease);
}
/* Aufleucht-Ring ("Ping") beim Aktivieren */
.proc-node::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--copper-500);
  opacity: 0;
  pointer-events: none;
}

/* Knoten leuchten der Linie folgend nacheinander auf (L → R) */
.proc-timeline.is-visible .proc-node {
  border-color: var(--copper-600);
  box-shadow: 0 6px 22px -10px rgba(180, 110, 77, 0.55);
  color: var(--copper-700);
  transform: scale(1);
}
.proc-timeline.is-visible .proc-node svg { transform: scale(1.04); }

@keyframes procPing {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.75); }
}
.proc-timeline.is-visible .proc-node::after {
  animation: procPing 0.95s var(--ease) forwards;
}

/* Synchronisation: Text, Knoten & Ping erscheinen, wenn die Linie sie erreicht */
.proc-timeline.is-visible .proc-step:nth-child(2),
.proc-timeline.is-visible .proc-step:nth-child(2) .proc-node,
.proc-timeline.is-visible .proc-step:nth-child(2) .proc-node::after { transition-delay: 0.20s; animation-delay: 0.20s; }
.proc-timeline.is-visible .proc-step:nth-child(3),
.proc-timeline.is-visible .proc-step:nth-child(3) .proc-node,
.proc-timeline.is-visible .proc-step:nth-child(3) .proc-node::after { transition-delay: 0.78s; animation-delay: 0.78s; }
.proc-timeline.is-visible .proc-step:nth-child(4),
.proc-timeline.is-visible .proc-step:nth-child(4) .proc-node,
.proc-timeline.is-visible .proc-step:nth-child(4) .proc-node::after { transition-delay: 1.35s; animation-delay: 1.35s; }
.proc-timeline.is-visible .proc-step:nth-child(5),
.proc-timeline.is-visible .proc-step:nth-child(5) .proc-node,
.proc-timeline.is-visible .proc-step:nth-child(5) .proc-node::after { transition-delay: 1.92s; animation-delay: 1.92s; }

.proc-step-body h3 {
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  margin-bottom: 0.6rem;
}
.proc-step-body p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--stone-600);
  max-width: 26ch;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .framework-grid { grid-template-columns: 1fr; gap: 0; }
  .framework-item:first-child { border-top: 0; }

  /* Timeline wird vertikal: Linie läuft ruhig von oben nach unten */
  .proc-timeline { grid-template-columns: 1fr; gap: 0; }
  .proc-line {
    top: 32px;
    bottom: 32px;
    left: 31px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .proc-line-fill {
    width: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.7s var(--ease) 0.2s;
  }
  .proc-timeline.is-visible .proc-line-fill { transform: scaleY(1); }
  .proc-step {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: clamp(18px, 4vw, 26px);
    padding-block: clamp(16px, 3vw, 24px);
  }
  .proc-node { margin-bottom: 0; }
  .proc-step-body { padding-top: 14px; }
  .proc-step-body p { max-width: 46ch; }
}

@media (prefers-reduced-motion: reduce) {
  .proc-step { opacity: 1; transform: none; transition: none; }
  .proc-line-fill { transform: none; transition: none; }
  .proc-node { transition: none; transform: scale(1); }
  .proc-node::after { animation: none; }
}

/* =====================================================
   ANGEBOTE – ERLEBNIS-PASS (2026-06)
   Wenn-Zeilen statt Stichwort-Kacheln · präzise Angebots-
   Karten · sticky Scrollspy-Chips · Einstiegs-Sequenz
   ===================================================== */

/* Sprung-Chips: sticky Kapitel-Navigation */
.ang-jump {
  position: sticky;
  top: 103px;
  z-index: 40;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  transition: top 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
body:has(.site-header.hidden) .ang-jump { top: -1px; }
.ang-jump-chip.is-active {
  background: var(--copper-600);
  border-color: var(--copper-600);
  color: #fff;
}
.ang-jump-chip.is-active .ang-jump-roman { color: rgba(255, 255, 255, 0.85); }
/* Tablet/Mobile: bleibt sticky, aber ALLE drei Zugänge gleichzeitig sichtbar
   (kein horizontales Wischen mehr) — Tablet als 3er-Reihe, Mobile untereinander. */
@media (max-width: 900px) {
  .ang-jump { padding-block: 12px; }
  .ang-jump-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    overflow: visible;
  }
  .ang-jump-label {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
  }
  .ang-jump-list {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 8px;
  }
  .ang-jump-list > li {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
  }
  .ang-jump-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    padding: 9px 12px;
    font-size: 0.86rem;
    line-height: 1.2;
  }
}
@media (max-width: 640px) {
  .ang-jump { top: 95px; }
}
@media (max-width: 600px) {
  .ang-jump-list { flex-direction: column; }
  .ang-jump-list > li { flex: 0 0 auto; width: 100%; }
  .ang-jump-chip {
    justify-content: flex-start;
    text-align: left;
    white-space: nowrap;
    padding: 11px 16px;
    font-size: 0.92rem;
  }
}

/* Wenn-Zeilen: ruhige Wiedererkennungs-Momente (nummeriert) */
.ang-when {
  display: flex;
  flex-direction: column;
}
.ang-when-line {
  display: grid;
  grid-template-columns: clamp(44px, 4.5vw, 64px) 1fr;
  align-items: baseline;
  font-family: var(--display);
  font-weight: 440;
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--forest-900);
  margin: 0;
  padding-block: clamp(22px, 2.6vw, 32px);
  border-bottom: 1px solid rgba(22, 41, 38, 0.12);
}
.ang-when-line:first-of-type { border-top: 1px solid rgba(22, 41, 38, 0.12); }
/* Grosses Begleitbild als Auftakt der breiten Spalte (rahmenlos, schwebend) */
.ang-feature { margin: 0 0 clamp(30px, 3.6vw, 48px); }
.ang-feature img { border-radius: 12px; }
.ang-when-num {
  font-family: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--copper-600);
  font-variant-numeric: tabular-nums;
}
/* Themen als editoriale Wortzeile — ruhig, serifenbetont, Schwerpunkte in Kupfer */
.ang-themes {
  padding-top: clamp(26px, 3.2vw, 38px);
}
.ang-themes-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-700);
  margin-bottom: 16px;
}
.ang-themes-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 110, 77, 0.30), rgba(22, 41, 38, 0.06));
}
.ang-themes-list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ang-themes-list li {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  letter-spacing: -0.01em;
  line-height: 1.5;
  color: var(--forest-800);
  white-space: nowrap;
}
.ang-themes-list li:not(:last-child)::after {
  content: "·";
  display: inline-block;
  margin-inline: 0.6em;
  color: rgba(180, 110, 77, 0.65);
  font-family: var(--text);
  font-weight: 400;
  text-decoration: none;
}
.ang-themes-list li.is-focus {
  color: var(--copper-700);
  text-decoration: underline;
  text-decoration-color: rgba(180, 110, 77, 0.40);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 7px;
}

/* Schwerpunkt-Panel: Delinquenz & Verhalten (Block I) */
.ang-focus {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  margin-top: clamp(44px, 5.5vw, 76px);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 4vw, 60px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 12% 0%, rgba(208, 139, 104, 0.16), transparent 52%),
    linear-gradient(148deg, var(--forest-800), var(--forest-950));
  border: 1px solid rgba(180, 110, 77, 0.22);
  box-shadow: var(--shadow-lg, 0 24px 70px rgba(6, 15, 11, 0.22));
  position: relative;
  overflow: hidden;
}
.ang-focus::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--copper-600), var(--copper-400), transparent 78%);
}
.ang-focus-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-400);
}
.ang-focus-label::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--copper-600);
}
.ang-focus-title {
  font-family: var(--text);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.05vw, 1.95rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--cream-100);
  margin: 0;
  text-wrap: balance;
}
.ang-focus-text {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(247, 245, 242, 0.92);
  border-left: 1px solid rgba(208, 139, 104, 0.30);
  padding-left: clamp(22px, 3vw, 44px);
}
@media (max-width: 900px) {
  .ang-focus-text { border-left: 0; padding-left: 0; }
}

/* Vier Karten (Block I): 2×2-Raster */
.ang-offers.ang-offers--four { grid-template-columns: repeat(2, 1fr); }
/* Schwerpunkt-Karte: dunkel wie das Panel darüber — hebt sich ruhig, aber klar ab */
.ang-offer.ang-offer--focus {
  background:
    radial-gradient(circle at 14% 0%, rgba(208, 139, 104, 0.18), transparent 55%),
    linear-gradient(148deg, var(--forest-800), var(--forest-950));
  border-color: rgba(180, 110, 77, 0.30);
}
.ang-offer--focus::before { transform: scaleX(1); }
.ang-offer--focus .ang-offer-title { color: var(--cream-100); }
.ang-offer--focus .ang-offer-text { color: rgba(247, 245, 242, 0.86); }
.ang-offer--focus .ang-offer-meta {
  color: var(--copper-400);
  border-top-color: rgba(208, 139, 104, 0.25);
}
.ang-offer.ang-offer--focus:hover { border-color: rgba(208, 139, 104, 0.5); }

/* Angebots-Karten: konkret, mit Rahmen-Zeile */
.ang-offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.ang-offer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(26px, 3vw, 40px) clamp(24px, 2.6vw, 36px);
  background: var(--white);
  border: 1px solid rgba(22, 41, 38, 0.09);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}
.ang-offer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--copper-600), var(--copper-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.ang-offer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md, 0 14px 44px rgba(6, 15, 11, 0.10));
  border-color: rgba(180, 110, 77, 0.28);
}
.ang-offer:hover::before { transform: scaleX(1); }
.ang-offer-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  letter-spacing: -0.02em;
  color: var(--forest-900);
  margin: 0;
}
.ang-offer-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.66;
  color: var(--stone-600);
}
.ang-offer-meta {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(22, 41, 38, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--copper-700);
}

/* Einordnungs-Notiz (Schulen): ehrliche Abgrenzung */
.ang-note {
  margin: clamp(28px, 3.4vw, 44px) 0 0;
  max-width: 76ch;
  padding-left: clamp(18px, 2vw, 26px);
  border-left: 2px solid rgba(180, 110, 77, 0.45);
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--stone-600);
}

/* Einstiegs-Sequenz: drei ruhige Schritte */
.ang-start { background: linear-gradient(180deg, var(--cream-50), var(--cream-100)); }
.ang-start-head { margin-bottom: clamp(36px, 5vw, 64px); }
.ang-start-head h2 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin: 0;
}
.ang-start-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.ang-start-steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 110, 77, 0.45), rgba(180, 110, 77, 0.12));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s var(--mp-ease, cubic-bezier(0.22, 1, 0.36, 1)) 0.1s;
}
/* Grid bleibt statisch sichtbar — nur Linie & Zahlen animieren beim Eintreten */
.ang-start-steps.reveal { opacity: 1; transform: none; }
.ang-start-steps.is-visible::before { transform: scaleX(1); }
.ang-start-step {
  position: relative;
  padding-top: clamp(46px, 5vw, 60px);
}
.ang-start-num {
  position: absolute;
  top: 18px;
  left: 0;
  transform: translateY(-50%) scale(0.5);
  transform-origin: center;
  opacity: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cream-50);
  border: 1px solid rgba(180, 110, 77, 0.4);
  box-shadow: 0 4px 14px rgba(6, 15, 11, 0.06);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--copper-600);
  font-variant-numeric: tabular-nums;
  transition:
    opacity 0.55s var(--mp-ease, ease),
    transform 0.6s var(--mp-ease, cubic-bezier(0.22, 1, 0.36, 1));
  transition-delay: var(--reveal-delay, 0s);
}
.ang-start-step.is-visible .ang-start-num {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.ang-start-step h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  letter-spacing: -0.02em;
  color: var(--forest-900);
  margin: 0 0 0.6rem;
}
.ang-start-step p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--stone-600);
}
.ang-start-note {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  max-width: 100%;
  margin: clamp(40px, 5vw, 60px) auto 0;
  padding: 14px 22px;
  background: rgba(180, 110, 77, 0.08);
  border: 1px solid rgba(180, 110, 77, 0.26);
  border-radius: 14px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--forest-900);
}
.ang-start-note-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--copper-600);
}
.ang-start-note a {
  color: var(--copper-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(180, 110, 77, 0.45);
  transition: text-decoration-color 0.35s var(--ease);
}
.ang-start-note a:hover { text-decoration-color: var(--copper-600); }

/* Responsive */
@media (max-width: 900px) {
  .ang-offers,
  .ang-offers.ang-offers--four { grid-template-columns: 1fr; }
  .ang-focus { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 760px) {
  .ang-start-steps { grid-template-columns: 1fr; gap: 40px; }
  .ang-start-steps::before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 17px;
    background: linear-gradient(180deg, rgba(180, 110, 77, 0.45), rgba(180, 110, 77, 0.10));
    transform: scaleY(0);
    transform-origin: top center;
  }
  .ang-start-steps.is-visible::before { transform: scaleY(1); }
  .ang-start-step { padding-top: 0; padding-left: 56px; }
  .ang-start-num { top: 0; transform: scale(0.5); }
  .ang-start-step.is-visible .ang-start-num { transform: scale(1); }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .ang-jump { transition: none; }
  .ang-offer, .ang-offer::before { transition: none; }
  .ang-start-steps::before, .ang-start-num { transition: none; }
}

/* Angebote: Einstiegs-Sektion als Anker erreichbar */
.ang-start { scroll-margin-top: calc(var(--header-h) + 20px); }

/* Arbeitsweise: dezenter Verweis auf den Einstieg (Angebote-Seite) */
.aw-prozess-note {
  margin-top: 0.9rem;
  font-size: 1rem;
  color: var(--stone-600);
}
.aw-prozess-note a {
  color: var(--copper-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(180, 110, 77, 0.4);
  transition: text-decoration-color 0.35s var(--ease);
}
.aw-prozess-note a:hover { text-decoration-color: var(--copper-600); }
