/* ==========================================================================
   creutzmann.eu — Design System v2.0
   Stand: 20260819
   Cinematic dark premium. No framework. Mobile-first.
   ========================================================================== */


/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */

:root {

  /* Core palette */
  --bg-deep:    #0A0D14;
  --bg-dark:    #0E1219;
  --bg-mid:     #141820;
  --bg-light:   #F5F5F7;
  --bg-white:   #ffffff;

  --ink:        #1d1d1f;
  --ink-muted:  #6e6e73;
  --ink-faint:  #a1a1a6;

  --white:      #ffffff;
  --white-80:   rgba(255,255,255,0.80);
  --white-60:   rgba(255,255,255,0.60);
  --white-40:   rgba(255,255,255,0.40);
  --white-10:   rgba(255,255,255,0.10);
  --white-06:   rgba(255,255,255,0.06);

  --accent:     #1c63b7;
  --accent-hover: #1a59a8;

  /* Typography */
  --font: 'Satoshi', Arial, Helvetica, "Helvetica Neue", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Scale */
  --text-xs:   0.6875rem;   /* 11px */
  --text-sm:   0.8125rem;   /* 13px */
  --text-base: 1.0625rem;   /* 17px */
  --text-lead: 1.25rem;     /* 20px */

  /* Spacing */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4rem;
  --s7: 5.5rem;
  --s8: 8.75rem;   /* 140px */

  /* Layout */
  --max: 75rem;          /* 1200px */
  --pad: clamp(1.25rem, 5vw, 3rem);

  /* Easing */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ==========================================================================
   1b. FONTS (self-hosted, DSGVO-konform)
   ========================================================================== */

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/satoshi-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/satoshi-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/satoshi-700.woff2') format('woff2');
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-latin-var.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-latin-ext-var.woff2') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-white);
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -1;
}
.skip-link:focus {
  position: fixed;
  top: var(--s2);
  left: var(--s2);
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 4px;
  font-weight: 700;
  z-index: 9999;
}


/* ==========================================================================
   3. LAYOUT HELPERS
   ========================================================================== */

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.narrow {
  max-width: 44rem;
  margin-inline: auto;
}

.section-pad {
  padding-block: var(--s8);
}

@media (max-width: 47.99rem) {
  .section-pad {
    padding-block: clamp(3.5rem, 12vw, 5.5rem);
  }
}


/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: transparent;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: var(--s3);
  max-width: none;
  padding-inline: clamp(var(--pad), 3vw, 3rem);
}

/* Logo / name */
.site-logo {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.3s;
  flex-shrink: 0;
}

.site-header.scrolled .site-logo {
  color: var(--ink);
}

/* Desktop nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(var(--s2), 2.5vw, var(--s4));
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(var(--s2), 2.5vw, var(--s4));
}

.site-nav__list a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--white-80);
  transition: color 0.2s;
}

.site-nav__list a:hover {
  color: var(--white);
}

.site-header.scrolled .site-nav__list a {
  color: var(--ink-muted);
}

.site-header.scrolled .site-nav__list a:hover {
  color: var(--ink);
}

/* Dropdown "Person" */
.nav-item--dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white-80);
  transition: color 0.2s;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.2s var(--ease);
}

.nav-item--dropdown:hover .nav-dropdown-toggle,
.nav-item--dropdown:focus-within .nav-dropdown-toggle {
  color: var(--white);
}

.site-header.scrolled .nav-dropdown-toggle {
  color: var(--ink-muted);
}

.site-header.scrolled .nav-item--dropdown:hover .nav-dropdown-toggle,
.site-header.scrolled .nav-item--dropdown:focus-within .nav-dropdown-toggle {
  color: var(--ink);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.875rem);
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 13.5rem;
  background: rgba(255,255,255,0.98);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(6,8,16,0.18), 0 0 0 1px rgba(0,0,0,0.05);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
}

/* unsichtbare Hover-Brücke zwischen Toggle und Panel */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -0.875rem;
  left: 0;
  right: 0;
  height: 0.875rem;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav__list .nav-dropdown a {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}

.site-nav__list .nav-dropdown a:hover {
  background: var(--bg-light);
  color: var(--ink);
}

/* Lang switch */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white-60);
}

.site-header.scrolled .lang-switch {
  color: var(--ink-faint);
}

.lang-switch a {
  color: inherit;
  transition: color 0.2s;
}

.lang-switch a:hover,
.lang-switch a.active {
  color: var(--white);
}

.site-header.scrolled .lang-switch a:hover,
.site-header.scrolled .lang-switch a.active {
  color: var(--ink);
}

.lang-switch span {
  opacity: 0.4;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.site-header.scrolled .nav-toggle__bar {
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s8) var(--pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay__list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.nav-overlay__list a {
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
  transition: color 0.2s;
}

.nav-overlay__list a:hover {
  color: var(--white-60);
}

.nav-overlay__group-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 0.875rem;
}

.nav-overlay__group ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-overlay__group a {
  font-size: clamp(1.25rem, 5.5vw, 1.625rem);
  font-weight: 500;
}

.nav-overlay__footer {
  margin-top: auto;
  padding-top: var(--s4);
}

.nav-overlay__footer .lang-switch {
  color: var(--white-60);
  font-size: var(--text-sm);
}

.nav-overlay__footer .lang-switch a:hover,
.nav-overlay__footer .lang-switch a.active {
  color: var(--white);
}

@media (max-width: 59.99rem) {
  .site-nav__list,
  .lang-switch {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (min-width: 60rem) {
  .nav-overlay {
    display: none;
  }
}


/* ==========================================================================
   5. HERO
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg picture,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) brightness(1.12) contrast(1.06);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(10,13,20,0.94) 0%,
      rgba(10,13,20,0.80) 25%,
      rgba(10,13,20,0.45) 42%,
      rgba(10,13,20,0.10) 58%,
      rgba(10,13,20,0.30) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(10,13,20,0.30) 0%,
      rgba(10,13,20,0.12) 45%,
      rgba(10,13,20,0.60) 80%,
      rgba(10,13,20,0.92) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  padding-top: 80px;
  max-width: none;
  width: 100%;
  margin-inline: 0;
  padding-inline: clamp(var(--pad), 3vw, 3rem);
}

.hero__panel {
  display: inline-block;
  max-width: 46rem;
  background: rgba(8,10,16,0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.75rem);
}

.hero__eyebrow {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: var(--s3);
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 42rem;
  text-shadow: 0 2px 32px rgba(6,8,16,0.65);
}

.hero__subline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: var(--white-80);
  letter-spacing: -0.01em;
  line-height: 1.4;
  max-width: 40rem;
  margin-bottom: var(--s5);
  text-shadow: 0 1px 16px rgba(6,8,16,0.75);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s5);
}


/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, #2d76cb 0%, var(--accent) 100%);
  color: var(--white);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 8px 28px rgba(28,99,183,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #3a83d8 0%, #2d76cb 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(28,99,183,0.5), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  border-bottom: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color 0.25s var(--ease);
}

.link-cta:hover {
  border-color: var(--white);
}

.link-cta--gold {
  color: #d8bd8a;
  border-bottom-color: rgba(216,189,138,0.45);
}

.link-cta--gold:hover {
  border-color: #d8bd8a;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

.btn-dark {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-dark:hover {
  background: rgba(255,255,255,0.88);
}


/* ==========================================================================
   8. BEWERTUNG SECTION
   ========================================================================== */

.bewertung-section {
  background: var(--bg-white);
}

/* --- Hero-Zitat --- */
.hero__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.1875rem);
  color: var(--white-60);
  line-height: 1.55;
  max-width: 34rem;
  margin-top: calc(-1 * var(--s3));
  margin-bottom: var(--s5);
  text-shadow: 0 1px 16px rgba(6,8,16,0.75);
}

/* --- Vier Aussagen --- */
.facts-section {
  background: var(--bg-deep);
}

.facts-section .wrap {
  max-width: 87.5rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.fact {
  position: relative;
  border-top: 1px solid rgba(195, 166, 104, 0.45);
  padding-top: 2rem;
  transition: border-color 0.4s var(--ease);
}

.fact:hover {
  border-top-color: #c3a668;
}

.fact__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 4.5vw, 4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: rgba(195, 166, 104, 0.3);
  margin-bottom: 1.5rem;
  transition: color 0.4s var(--ease);
}

.fact:hover .fact__num {
  color: rgba(195, 166, 104, 0.55);
}

.fact__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #c3a668;
}

.fact__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white-60);
}

@media (max-width: 61.99rem) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 47.99rem) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
}

.section-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s5);
}

.bewertung-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: clamp(3rem, 8vw, 5rem);
  max-width: 28rem;
}

.bewertung-list {
  display: flex;
  flex-direction: column;
}

.bewertung-item {
  display: grid;
  grid-template-columns: 4rem 1fr 1.5fr;
  gap: var(--s5);
  align-items: start;
  padding-block: var(--s5);
  padding-inline: var(--s3);
  border-top: 1px solid #e4e2e3;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.3s var(--ease);
}

.bewertung-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: calc(100% + 1px);
  width: 3px;
  background: #c3a668;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.bewertung-item:last-child {
  border-bottom: 1px solid #e4e2e3;
}

.bewertung-item:hover {
  background: #f7f5f1;
}

.bewertung-item:hover::after {
  transform: scaleY(1);
}

.bewertung-item__num {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c3a668;
  line-height: 1.4;
  padding-top: 0.25em;
}

.bewertung-item__title {
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.bewertung-item__text {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-muted);
}

.bewertung-item__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}

.bewertung-item__arrow .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.bewertung-item:hover .bewertung-item__arrow {
  opacity: 1;
}

.bewertung-item:hover .bewertung-item__arrow .arrow {
  transform: translateX(4px);
}

@media (max-width: 47.99rem) {
  .bewertung-item {
    grid-template-columns: 1fr;
    gap: var(--s2);
    padding-inline: 0;
  }
}

/* Court quotes inside Bewertung */
.court-proof {
  margin-top: clamp(4rem, 9vw, 6.5rem);
}

.court-proof__heading {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.625rem;
}

.court-proof__intro {
  font-size: var(--text-base);
  color: var(--ink-muted);
  margin-bottom: var(--s4);
}

.court-proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.court-quote {
  background: #f7f5f1;
  border-left: 3px solid #c3a668;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.court-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink);
  flex: 1;
}

.court-quote__source {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.court-quote__court {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.court-quote__ref {
  font-size: var(--text-xs);
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

.court-proof__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--s4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid rgba(195,166,104,0.5);
  padding-bottom: 0.25rem;
  transition: border-color 0.25s var(--ease);
}

.court-proof__link:hover {
  border-color: #c3a668;
}

@media (max-width: 47.99rem) {
  .court-proof__grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   10. COMPANIES SECTION
   ========================================================================== */

.companies-section {
  background: var(--bg-light);
}

.companies-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.companies-list {
  display: flex;
  flex-direction: column;
}

.companies-list li {
  border-top: 1px solid #dcdcdc;
}

.companies-list li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.company-item {
  display: grid;
  grid-template-columns: 4rem 1fr 1.5fr;
  gap: var(--s5);
  align-items: center;
  padding-block: var(--s4);
  padding-inline: var(--s3);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.3s var(--ease);
}

.company-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: calc(100% + 1px);
  width: 3px;
  background: #c3a668;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.company-item:hover {
  background: #fff;
}

.company-item:hover::after {
  transform: scaleY(1);
}

.company-item__year {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c3a668;
  line-height: 1.4;
}

.company-item__logo img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.company-item__logo--tall img {
  height: 72px;
}

.company-item__logo--wide img {
  height: 44px;
}

.company-item:hover .company-item__logo img {
  filter: grayscale(0%);
  opacity: 1;
}

.company-item__desc {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-muted);
}

@media (max-width: 47.99rem) {
  .company-item {
    grid-template-columns: 1fr;
    gap: var(--s2);
    padding-inline: 0;
  }
}


/* ==========================================================================
   11. BOOKS
   ========================================================================== */

.books-section {
  background: var(--bg-white);
}

.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(3rem, 8vw, 5rem);
  align-items: start;
}

.book-item {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.book-cover {
  position: relative;
  max-width: 20rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 4px 16px rgba(0,0,0,0.08),
    0 20px 60px rgba(0,0,0,0.12);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  transform: translateY(0);
}

.book-cover:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.10),
    0 32px 80px rgba(0,0,0,0.16);
}

.book-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 11;
  object-fit: cover;
  display: block;
}

.book-meta__title {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
}

.book-meta__publisher {
  font-size: var(--text-sm);
  color: var(--ink-faint);
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.book-meta__desc {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-muted);
  margin-top: 0.75rem;
}

.book-meta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  margin-top: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1.5px solid rgba(195,166,104,0.5);
  transition: border-color 0.25s var(--ease);
}

.book-meta__link:hover {
  border-color: #c3a668;
}

@media (max-width: 47.99rem) {
  .books-grid {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }
}


/* ==========================================================================
   12. SPEAKER / STAGE SECTION
   ========================================================================== */

.stage-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.stage-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stage-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) brightness(1.12) contrast(1.06);
}

.stage-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(10,13,20,0.15) 0%,
    rgba(10,13,20,0.62) 45%,
    rgba(10,13,20,0.90) 100%
  );
}

@media (max-width: 47.99rem) {
  .stage-section__overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,13,20,0.30) 0%,
      rgba(10,13,20,0.90) 60%,
      rgba(10,13,20,0.97) 100%
    );
  }
}

.stage-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 12vw, 8rem);
  max-width: 44rem;
  margin-left: auto;
  margin-right: max(0px, calc((100% - var(--max)) / 2));
}

/* linksbündige Variante (Redner-Unterseite) */
.stage-section .wrap {
  width: 100%;
}

.stage-content--left {
  margin-left: 0;
  margin-right: auto;
}

.stage-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--s4);
}

.stage-text {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.65;
  color: var(--white-80);
  margin-bottom: var(--s5);
}

.stage-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  align-items: center;
}


/* ==========================================================================
   13. CONTACT / CTA SECTION
   ========================================================================== */

.contact-section {
  background: var(--bg-light);
}

.contact-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: var(--s3);
}

.contact-subline {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 34rem;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 5.5rem);
  font-style: normal;
  padding-block: var(--s4);
  border-top: 1px solid rgba(29,29,31,0.10);
  border-bottom: 1px solid rgba(29,29,31,0.10);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact-link__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c3a668;
}

.contact-link__value {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.25s var(--ease);
  align-self: flex-start;
  padding-bottom: 0.2em;
}

.contact-link:hover .contact-link__value {
  border-color: #c3a668;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  border-bottom: 1.5px solid rgba(195,166,104,0.5);
  transition: border-color 0.25s var(--ease);
}

.contact-cta:hover {
  border-color: #c3a668;
}

.contact-cta:hover .btn__arrow {
  transform: translateX(4px);
}


/* ==========================================================================
   14. FOOTER
   ========================================================================== */

.site-footer {
  background: #060810;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}

.site-footer .wrap {
  max-width: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--s5);
}

@media (max-width: 47.99rem) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white-80);
  margin-bottom: var(--s3);
  display: block;
}

.footer-address {
  font-size: var(--text-sm);
  line-height: 1.9;
  color: var(--white-40);
}

.footer-address a {
  color: var(--white-60);
  transition: color 0.2s;
}

.footer-address a:hover {
  color: var(--white);
}

.footer-logos-label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: var(--s3);
}

.footer-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.footer-logo-link img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.25;
  transition: opacity 0.2s;
}

.footer-logo-link--tall img {
  height: 42px;
}

.footer-logo-link--wide img {
  height: 22px;
}

.footer-logo-link:hover img {
  opacity: 0.55;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
  padding-top: var(--s4);
  border-top: 1px solid var(--white-06);
}

.footer-legal p {
  font-size: var(--text-xs);
  color: var(--white-40);
  letter-spacing: 0.02em;
}

.footer-legal-nav {
  display: flex;
  gap: var(--s3);
}

.footer-legal-nav a {
  font-size: var(--text-xs);
  color: var(--white-40);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-legal-nav a:hover {
  color: var(--white-80);
}


/* ==========================================================================
   15. SCROLL REVEAL
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ==========================================================================
   16. UTILITIES
   ========================================================================== */

.text-center { text-align: center; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}


/* ==========================================================================
   16b. DISPLAY TYPE (Playfair Display für große Headlines)
   ========================================================================== */

.buecher-headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  max-width: 32rem;
}

.section-headline {
  font-size: clamp(1.75rem, 3.8vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.linkedin-icon {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  fill: #0A66C2;
  vertical-align: -0.08em;
  margin-right: 0.35em;
}

.hero h1,
.bewertung-headline,
.companies-headline,
.buecher-headline,
.stage-headline,
.contact-headline,
.court-proof__heading,
.section-headline {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}


/* ==========================================================================
   18. SUBPAGES
   ========================================================================== */

/* Page hero (dark, compact) */
.page-hero {
  background: var(--bg-deep);
  padding-top: clamp(9rem, 20vh, 13rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.page-hero .section-label {
  color: var(--white-40);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: var(--s4);
  max-width: 50rem;
}

.page-hero__lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--white-80);
  max-width: 44rem;
}

/* Long-form content */
.prose {
  max-width: 44rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: clamp(3rem, 7vw, 4.5rem);
  margin-bottom: var(--s3);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: var(--s3);
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1.5px solid rgba(195,166,104,0.5);
  transition: border-color 0.25s var(--ease);
}

.prose a:hover {
  border-color: #c3a668;
}

/* Quote block */
.quote-block {
  background: #f7f5f1;
  border-left: 3px solid #c3a668;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-block: var(--s4);
}

.quote-block p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

/* Link rows (Übersichten) */
.link-rows {
  display: flex;
  flex-direction: column;
  margin-top: clamp(3rem, 7vw, 4.5rem);
}

.link-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s5);
  align-items: start;
  padding-block: var(--s4);
  padding-inline: var(--s3);
  border-top: 1px solid #e4e2e3;
  color: inherit;
  position: relative;
  transition: background 0.3s var(--ease);
}

.link-row::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: calc(100% + 1px);
  width: 3px;
  background: #c3a668;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.link-row:last-child {
  border-bottom: 1px solid #e4e2e3;
}

.link-row:hover {
  background: #f7f5f1;
}

.link-row:hover::after {
  transform: scaleY(1);
}

.link-row__title {
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.link-row__text {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-muted);
}

.link-row__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: var(--ink);
  font-weight: 600;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease);
}

.link-row__arrow .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.link-row:hover .link-row__arrow {
  opacity: 1;
}

.link-row:hover .link-row__arrow .arrow {
  transform: translateX(4px);
}

@media (max-width: 47.99rem) {
  .link-row {
    grid-template-columns: 1fr;
    gap: var(--s2);
    padding-inline: 0;
  }
}

/* Vita / CV lists */
.cv-group {
  max-width: 56rem;
  margin-top: clamp(3rem, 7vw, 4.5rem);
}

.cv-group:first-of-type {
  margin-top: 0;
}

.cv-group + .prose {
  margin-top: clamp(3rem, 7vw, 4.5rem);
}

.cv-group h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--s3);
}

.cv-list {
  border-top: 1px solid #e4e2e3;
}

.cv-list li {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: var(--s4);
  padding-block: 1.125rem;
  border-bottom: 1px solid #e4e2e3;
}

.cv-list__year {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c3a668;
  padding-top: 0.2em;
}

.cv-list__text {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
}

@media (max-width: 47.99rem) {
  .cv-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Vorträge / Talk catalog */
.talk-group {
  max-width: 56rem;
  margin-top: clamp(3rem, 7vw, 4.5rem);
}

.talk-group:first-of-type {
  margin-top: 0;
}

.talk-group h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--s3);
}

.talk {
  padding-block: var(--s4);
  border-top: 1px solid #e4e2e3;
}

.talk:last-child {
  border-bottom: 1px solid #e4e2e3;
}

.talk__title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.talk__text {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 44rem;
}

.talk__text + .talk__text {
  margin-top: 0.75rem;
}

.talk__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid rgba(195,166,104,0.5);
  padding-bottom: 0.25rem;
  transition: border-color 0.25s var(--ease);
}

/* --- Veröffentlichungen --- */
.pubs {
  max-width: 56rem;
}

.pubs .intro {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 44rem;
}

.pubs h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s3);
}

.pubs h2:not(:first-of-type) {
  margin-top: clamp(3rem, 7vw, 4.5rem);
}

.publications {
  list-style: none;
  margin: 0;
  padding: 0;
}

.publications li {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-muted);
  padding-block: 1rem;
  border-top: 1px solid #e4e2e3;
}

.publications li:last-child {
  border-bottom: 1px solid #e4e2e3;
}

.publications a.pdf {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.55rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  border: 1px solid rgba(195,166,104,0.6);
  border-radius: 2px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

.publications a.pdf:hover {
  background: rgba(195,166,104,0.14);
  border-color: #c3a668;
}

/* --- Kontaktformular --- */
.contact-form {
  max-width: 44rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: var(--s3);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c3a668;
}

.form-field input,
.form-field textarea {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--bg-white);
  border: 1px solid #d6d4d5;
  border-radius: 2px;
  padding: 0.875rem 1rem;
  transition: border-color 0.25s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #c3a668;
}

.form-field textarea {
  min-height: 10rem;
  resize: vertical;
}

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

.form-submit {
  justify-self: start;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--white);
  background: var(--bg-deep);
  border: none;
  border-radius: 2px;
  padding: 1rem 2.25rem;
  cursor: pointer;
  transition: opacity 0.25s var(--ease);
}

.form-submit:hover {
  opacity: 0.85;
}

.form-note {
  font-size: var(--text-sm);
  color: var(--ink-faint);
}

@media (max-width: 47.99rem) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Page hero: split (Text + Porträt) --- */
.page-hero--split {
  padding-bottom: 0;
}

.page-hero--split .wrap {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.page-hero--split .page-hero__text {
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.page-hero__media {
  align-self: end;
}

.page-hero__media img {
  display: block;
  width: 100%;
  max-height: 33rem;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1) brightness(1.05) contrast(1.05);
}

/* Kompakte Variante (Vita): Kopfporträt, unten an der Sektionskante, Fade von oben */
.page-hero--split-compact {
  position: relative;
  overflow: hidden;
  padding-top: clamp(7.5rem, 14vh, 9.5rem);
  padding-bottom: 0;
}

.page-hero--split-compact .wrap {
  align-items: end;
}

.page-hero--split-compact .page-hero__text {
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.page-hero--split-compact .page-hero__media {
  position: absolute;
  top: 0;
  left: calc(50% + 7rem);
  height: 100%;
  margin-top: 0;
  align-self: auto;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 28%, #000 58%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 28%, #000 58%);
}

/* Bild ist bereits auf Kopf/Brust zugeschnitten (portrait-kopf) und füllt die volle Höhe */
.page-hero--split-compact .page-hero__media img {
  width: auto;
  height: 100%;
  max-height: none;
  filter: grayscale(1) sepia(0.28) saturate(1.25) brightness(0.82) contrast(1.1);
}

@media (max-width: 61.99rem) {
  .page-hero--split .wrap {
    grid-template-columns: 1fr;
  }
  .page-hero--split .page-hero__text {
    padding-bottom: 0;
  }
  .page-hero__media {
    margin-top: var(--s5);
  }
  .page-hero__media img {
    max-height: 26rem;
  }
  .page-hero--split-compact .page-hero__media {
    justify-self: start;
  }
}

/* --- Page hero: visual (Vollbild-Foto) --- */
.page-hero--visual {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(1) brightness(0.9) contrast(1.06);
}

.page-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,13,20,0.72) 0%,
    rgba(10,13,20,0.68) 45%,
    rgba(10,13,20,0.97) 100%
  );
}

.page-hero--visual .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* --- Dunkles Zitat-Band --- */
.quote-band {
  background: var(--bg-deep);
  padding-block: clamp(4rem, 10vw, 7rem);
}

.quote-band blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.375rem, 2.8vw, 2rem);
  line-height: 1.55;
  color: var(--white);
  max-width: 52rem;
}

.quote-band__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: var(--s3);
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c3a668;
}

.quote-band__author::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: #c3a668;
}

/* hellere Variante, um sich vom dunklen Footer abzusetzen */
.quote-band--elevated {
  background: #141926;
  border-bottom: 1px solid rgba(195, 166, 104, 0.25);
}

.quote-band__note {
  margin-top: var(--s4);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--white-60);
  max-width: 44rem;
}

/* --- Nummerierte Abschnitte (Bewertungsexperte) --- */
.num-sections {
  display: flex;
  flex-direction: column;
}

.num-section {
  display: grid;
  grid-template-columns: 4rem 1fr 1.5fr;
  gap: var(--s5);
  align-items: start;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid #e4e2e3;
}

.num-section:last-child {
  border-bottom: 1px solid #e4e2e3;
}

.num-section__num {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c3a668;
  line-height: 1.4;
  padding-top: 0.3em;
}

.num-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
}

.num-section__body p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: var(--s3);
}

.num-section__body p:last-child {
  margin-bottom: 0;
}

.num-section__body a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1.5px solid rgba(195,166,104,0.5);
  transition: border-color 0.25s var(--ease);
}

.num-section__body a:hover {
  border-color: #c3a668;
}

@media (max-width: 47.99rem) {
  .num-section {
    grid-template-columns: 1fr;
    gap: var(--s2);
  }
}

/* --- Chronik (Unternehmer) --- */
.chrono {
  display: flex;
  flex-direction: column;
}

.chrono-item {
  display: grid;
  grid-template-columns: 6rem 11rem 1fr;
  gap: var(--s5);
  align-items: start;
  padding-block: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid #e4e2e3;
}

.chrono-item:last-child {
  border-bottom: 1px solid #e4e2e3;
}

.chrono-item__year {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #c3a668;
  line-height: 1.4;
  padding-top: 0.2em;
}

.chrono-item__logo img {
  height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
}

.chrono-item__logo--tall img {
  height: 60px;
}

.chrono-item__logo--wide img {
  height: 30px;
}

.chrono-item__title {
  font-size: clamp(1.25rem, 2.4vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.chrono-item__body p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: var(--s2);
}

.chrono-item__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 47.99rem) {
  .chrono-item {
    grid-template-columns: 1fr;
    gap: var(--s2);
  }
}

/* --- Vortragskarten --- */
.talks-section {
  background: var(--bg-light);
}

.talks-group-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s4);
}

.talk-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-bottom: clamp(3.5rem, 8vw, 5.5rem);
}

.talk-cards:last-child {
  margin-bottom: 0;
}

.talk-card {
  background: var(--bg-white);
  border-top: 3px solid #c3a668;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.talk-card__title {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.talk-card__sub {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.talk-card__text {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-muted);
}

.talk-card .talk__link {
  margin-top: auto;
}

@media (max-width: 47.99rem) {
  .talk-cards {
    grid-template-columns: 1fr;
  }
}

.talk__link:hover {
  border-color: #c3a668;
}


/* ==========================================================================
   17. PRINT
   ========================================================================== */

@media print {
  .site-header,
  .nav-overlay,
  .hero__overlay { display: none; }

  body { color: #000; background: #fff; }
}

/* --- Bücher: grosse Buch-Panels --- */
.book-feature {
  padding-block: clamp(4rem, 10vw, 7.5rem);
  background: var(--bg-white);
}

.book-feature--grey {
  background: var(--bg-light);
}

.book-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 24rem) 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.book-feature--flip .book-feature__grid {
  grid-template-columns: 1fr minmax(0, 24rem);
}

.book-feature--flip .book-feature__cover {
  order: 2;
}

.book-feature__cover img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.book-feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin: var(--s3) 0 var(--s1);
  max-width: 32rem;
}

.book-feature__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: var(--ink-60, rgba(0, 0, 0, 0.6));
  margin-bottom: var(--s3);
  max-width: 32rem;
}

.book-feature__desc {
  max-width: 34rem;
  line-height: 1.65;
  margin-bottom: var(--s4);
}

/* --- Hero-Variante: abstrakte SVG-Grafik (Bewertungsexperte, Unternehmer) --- */
.page-hero--art .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.page-hero__art svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 61.99rem) {
  .page-hero--art .wrap {
    grid-template-columns: 1fr;
  }
  .page-hero__art {
    max-width: 26rem;
    margin-top: var(--s3);
  }
}

/* --- Hero-Variante: Gerichtszitat im Lichtkegel (Bewertungsexperte) --- */
.page-hero--quote {
  position: relative;
  overflow: hidden;
}

/* weicher goldener Lichtschein hinter dem Zitat */
.page-hero--quote::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -18%;
  width: 60rem;
  height: 60rem;
  background: radial-gradient(circle, rgba(195, 166, 104, 0.18) 0%, rgba(195, 166, 104, 0.06) 38%, transparent 68%);
  pointer-events: none;
}

/* schmaler Lichtstrahl von oben */
.page-hero--quote::after {
  content: "";
  position: absolute;
  top: -25%;
  right: 16%;
  width: 11rem;
  height: 160%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 55%, transparent 80%);
  transform: rotate(20deg);
  pointer-events: none;
}

.page-hero--quote .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.page-hero__quote {
  margin: 0;
  position: relative;
  justify-self: end;
  max-width: 26rem;
  text-align: left;
  padding-top: 3.25rem;
}

/* schiebt das Zitat über die Content-Kante hinaus nach rechts */
@media (min-width: 80rem) {
  .page-hero__quote {
    margin-right: calc(-1 * (100vw - 75rem) / 2 + 5.5rem);
  }
  .page-hero__logos {
    margin-right: calc(-1 * (100vw - 75rem) / 2 + 8rem);
  }
}

.page-hero__quote::before {
  content: "\201E";
  position: absolute;
  top: -4.5rem;
  left: -2rem;
  font-family: var(--font-display);
  font-size: 13rem;
  line-height: 1;
  color: #c3a668;
  opacity: 0.22;
  pointer-events: none;
}

.page-hero__quote-text {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  line-height: 1.5;
  color: var(--white-80);
  margin: 0 0 var(--s3);
  text-shadow: 0 0 40px rgba(195, 166, 104, 0.25);
}

.page-hero__quote-source {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.page-hero__quote-source::before {
  content: "";
  align-self: center;
  width: 2rem;
  height: 1px;
  background: #c3a668;
}

.page-hero__quote-court {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c3a668;
}

.page-hero__quote-ref {
  width: 100%;
  font-size: 0.875rem;
  color: var(--white-40);
}

@media (max-width: 61.99rem) {
  .page-hero--quote .wrap {
    grid-template-columns: 1fr;
  }
  .page-hero__quote {
    max-width: 32rem;
    margin-top: var(--s3);
  }
}

/* --- Hero-Variante: Logo-Wand der Unternehmensgruppe (Unternehmer) --- */
.page-hero--logos {
  position: relative;
  overflow: hidden;
}

/* sanfte Aufhellung hinter der Logo-Wand */
.page-hero--logos::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.5rem;
  width: 48rem;
  height: 48rem;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, rgba(195, 166, 104, 0.05) 35%, transparent 65%);
  pointer-events: none;
}

/* konzentrische Goldringe hinter den Logos */
.page-hero--logos::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.5rem;
  width: 40rem;
  height: 40rem;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(195, 166, 104, 0.22);
  outline: 1px solid rgba(195, 166, 104, 0.1);
  outline-offset: 5rem;
  pointer-events: none;
}

.page-hero--logos .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.page-hero__logos {
  display: flex;
  gap: clamp(2.5rem, 4vw, 4rem);
  justify-self: end;
  align-self: center;
}

.page-hero__logo-col {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  row-gap: 2.5rem;
  justify-items: center;
  align-items: center;
}

.page-hero__logo-col img {
  width: 9.5rem;
  height: 3.5rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

/* Originalfarben beim Überfahren, aufgehellt für den dunklen Hintergrund */
.page-hero__logo-col img:hover {
  filter: brightness(2) saturate(1.15);
  opacity: 1;
}

.page-hero__logo-col--iva {
  justify-items: start;
}

/* IVA-Schriftzug in allen drei Logos exakt gleich groß:
   Glyphenhöhe = 48 SVG-Einheiten, Canvas 75.6 bzw. 85.04 hoch */
.page-hero__logo-col--iva img {
  width: auto;
  height: 3.5rem;
  object-fit: unset;
  object-position: left center;
}

.page-hero__logo-col--iva img:first-child {
  height: 3.94rem;
}

.page-hero__logo-col img.page-hero__logo--flat {
  filter: none;
}

.page-hero__logo-col img.page-hero__logo--flat:hover {
  filter: none;
  opacity: 1;
}

.footer-logo-link img.footer-logo--flat {
  filter: none;
}

@media (max-width: 61.99rem) {
  .page-hero--logos .wrap {
    grid-template-columns: 1fr;
  }
  .page-hero__logos {
    justify-self: start;
    margin-top: var(--s3);
    padding-right: 0;
  }
}

.book-feature .link-cta {
  color: var(--ink);
  border-bottom-color: rgba(10, 13, 20, 0.3);
}

.book-feature .link-cta:hover {
  border-color: var(--ink);
}

@media (max-width: 61.99rem) {
  .book-feature__grid,
  .book-feature--flip .book-feature__grid {
    grid-template-columns: 1fr;
  }
  .book-feature--flip .book-feature__cover {
    order: 0;
  }
  .book-feature__cover {
    max-width: 18rem;
  }
}
