/* =========================================================================
   INVESTMENTADLER — Design System
   Selbst gehostete Schriften (kein Google-Fonts-CDN → DSGVO-konform)
   ========================================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/sourceserif-latin-normal.woff2') format('woff2');
  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: 'Source Serif 4';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/sourceserif-latin-ext-normal.woff2') format('woff2');
  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;
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/sourceserif-latin-italic.woff2') format('woff2');
  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: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin-normal.woff2') format('woff2');
  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: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext-normal.woff2') format('woff2');
  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;
}

/* ---------- Tokens ---------- */
:root {
  /* Farben */
  --ink:        #0c1d2b;   /* Tiefes Nachtpetrol – Hauptfläche dunkel */
  --ink-2:      #12293c;
  --ink-3:      #1c3b52;
  --paper:      #fbf9f6;   /* Warmes Creme statt Reinweiß = wertiger */
  --paper-2:    #f3eee7;
  --paper-3:    #eae3d9;
  --brass:      #8d6c2b;   /* Messing – 4,9:1 gegen Weiß, 4,6:1 auf Creme (WCAG AA) */
  --brass-mid:  #b08d3f;
  --brass-lite: #d8b463;   /* nur auf dunklem Grund */
  --text:       #14212c;
  --muted:      #55677a;
  --muted-dark: rgba(255, 255, 255, 0.68);
  --line:       #ddd4c7;
  --line-dark:  rgba(216, 180, 99, 0.22);
  --white:      #ffffff;

  /* Typografie */
  --serif: 'Source Serif 4', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Maße */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(20px, 5vw, 40px);
  --section: clamp(72px, 11vw, 132px);
  --radius: 3px;

  /* Bewegung */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }

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

::selection { background: var(--brass-lite); color: var(--ink); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.15rem); }
h2 { font-size: clamp(1.95rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.08rem; }

p { text-wrap: pretty; }
strong { font-weight: 600; color: var(--text); }

.lede {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--muted);
}

/* Kleines Kapitälchen-Label über Überschriften */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.on-dark .eyebrow { color: var(--brass-lite); }

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(56px, 8vw, 88px); }

.section-head { max-width: 620px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head.is-center .eyebrow::before { display: none; }
.section-head p { margin-top: 1.1rem; color: var(--muted); font-size: 1.06rem; }

.on-dark { background: var(--ink); color: var(--white); }
.on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }
.on-dark p { color: var(--muted-dark); }

.tint { background: var(--paper-2); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 15px 30px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.94rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(12, 29, 43, 0.55);
}
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--brass { --btn-bg: var(--brass); --btn-fg: #fff; }
.btn--brass:hover { --btn-bg: #7a5d25; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); background: transparent; }

.on-dark .btn--ghost,
.hero .btn--ghost {
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.on-dark .btn--ghost:hover,
.hero .btn--ghost:hover {
  border-color: var(--brass-lite);
  background: rgba(216, 180, 99, 0.08);
}

.on-dark .btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }

/* Textlink mit Unterstrich-Animation */
.link {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--brass);
  text-decoration: none;
  padding-bottom: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.3s var(--ease);
}
.link:hover { background-size: 0% 1px; }
.on-dark .link { color: var(--brass-lite); }

/* =========================================================================
   HEADER
   ========================================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.header.is-stuck {
  background: rgba(251, 249, 246, 0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #fff;
  transition: color 0.35s var(--ease);
}
/* Bildmarke: wird aus assets/img/logo-mark.png geladen.
   Die Datei ist einfarbig schwarz; auf dunklem Grund wird sie per Filter
   invertiert, sodass eine einzige Datei für beide Hintergründe genügt. */
.logo__mark {
  height: 38px;
  width: auto;
  flex: none;
  filter: brightness(0) invert(1);          /* hell – Header über dem dunklen Hero */
  transition: filter 0.35s var(--ease);
}
.header.is-stuck .logo__mark,
.page-header .logo__mark {
  filter: brightness(0) saturate(100%) invert(9%) sepia(23%)
          saturate(1900%) hue-rotate(175deg) brightness(95%) contrast(94%); /* Ink-Navy */
}
.mobile-nav .logo__mark,
.footer .logo__mark { filter: brightness(0) invert(1); }
.logo__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo__sub {
  font-size: 0.575rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.62;
  margin-top: 4px;
}
.header.is-stuck .logo,
.page-header .logo { color: var(--ink); }

/* Navigation */
.nav { display: flex; align-items: center; gap: 34px; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
}
.nav__list a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--brass-lite);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav__list a:hover::after,
.nav__list a[aria-current='true']::after { transform: scaleX(1); transform-origin: left; }
.nav__list a:hover { color: #fff; }

.header.is-stuck .nav__list a,
.page-header .nav__list a { color: var(--muted); }
.header.is-stuck .nav__list a:hover,
.page-header .nav__list a:hover { color: var(--ink); }
.header.is-stuck .nav__list a::after,
.page-header .nav__list a::after { background: var(--brass); }

.nav__cta { padding: 11px 22px; font-size: 0.88rem; }
.header .nav__cta { --btn-bg: var(--brass); --btn-fg: #fff; border-color: var(--brass); }

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  cursor: pointer;
}
.header.is-stuck .burger,
.page-header .burger { border-color: var(--line); }
.burger__box { position: relative; width: 18px; height: 12px; }
.burger__box span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.header.is-stuck .burger__box span,
.page-header .burger__box span { background: var(--ink); }
.burger__box span:nth-child(1) { top: 0; }
.burger__box span:nth-child(2) { top: 50%; margin-top: -0.75px; }
.burger__box span:nth-child(3) { bottom: 0; }
.burger[aria-expanded='true'] .burger__box span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.burger[aria-expanded='true'] .burger__box span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] .burger__box span:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

/* Mobile-Menü */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: 110px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  overflow-y: auto;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav ul { list-style: none; padding: 0; }
.mobile-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
/* Nur die Menüpunkte – nicht der Button und nicht die Fußzeile */
.mobile-nav ul a {
  display: block;
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: #fff;
  text-decoration: none;
}
.mobile-nav .btn { margin-top: 34px; width: 100%; }
.mobile-nav__foot {
  margin-top: auto;
  padding-top: 34px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}
.mobile-nav__foot a { color: var(--brass-lite); text-decoration: none; }

body.is-locked { overflow: hidden; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding-top: clamp(140px, 19vw, 190px);
  padding-bottom: clamp(90px, 13vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
/* Weicher Lichtkegel */
.hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  top: -35%;
  right: -12%;
  width: 900px;
  height: 900px;
  max-width: 110vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 59, 82, 0.85) 0%, rgba(12, 29, 43, 0) 62%);
}
/* Feines Linienraster */
.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero h1 { color: #fff; }
.hero h1 em {
  font-style: normal;
  color: var(--brass-lite);
  position: relative;
}
.hero__lede {
  margin-top: 1.5rem;
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.74);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 2.4rem;
}
.hero .btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); }

.hero__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2.2rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
}
.hero__note svg { flex: none; color: var(--brass-lite); }

/* Karte im Hero */
.hero__card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: clamp(28px, 3.4vw, 40px);
  backdrop-filter: blur(6px);
}
.hero__card h2 {
  font-size: 1.02rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-lite);
  margin-bottom: 26px;
}
.checklist { list-style: none; padding: 0; display: grid; gap: 20px; }
.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}
.checklist svg { margin-top: 4px; color: var(--brass-lite); }
.checklist strong { display: block; color: #fff; font-weight: 550; }
.checklist span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* =========================================================================
   KENNZAHLEN
   ========================================================================= */
.metrics { border-bottom: 1px solid var(--line); }
.metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-inline: 1px solid var(--line);
}
.metric {
  background: var(--paper);
  padding: clamp(30px, 4vw, 46px) clamp(20px, 3vw, 36px);
  text-align: center;
}
.metric__num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.metric__num sup { font-size: 0.45em; color: var(--brass); top: -0.75em; }
.metric__label {
  margin-top: 12px;
  font-size: 0.87rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* =========================================================================
   ANSATZ / SPLIT-LAYOUT
   ========================================================================= */
.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.split--flip .split__media { order: -1; }

.principles { list-style: none; padding: 0; display: grid; gap: 4px; margin-top: 8px; }
.principles li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.principles li:first-child { border-top: 1px solid var(--line); }
.principles__num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--brass);
  padding-top: 3px;
  font-variant-numeric: tabular-nums;
}
.principles h3 { font-size: 1.2rem; margin-bottom: 6px; }
.principles p { font-size: 0.97rem; color: var(--muted); }

/* Zitat-Block */
.pullquote {
  position: relative;
  padding: clamp(34px, 4vw, 52px);
  background: var(--ink);
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.pullquote::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 180, 99, 0.18), transparent 65%);
}
.pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  position: relative;
  z-index: 1;
}
.pullquote figcaption {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}
.pullquote figcaption strong { color: var(--brass-lite); font-weight: 550; }

/* =========================================================================
   LEISTUNGEN
   ========================================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  overflow: hidden;
}
.service {
  background: var(--ink);
  padding: clamp(30px, 3.6vw, 46px);
  display: flex;
  flex-direction: column;
  transition: background 0.35s var(--ease);
}
.service:hover { background: var(--ink-2); }
.service__icon {
  width: 46px;
  height: 46px;
  color: var(--brass-lite);
  margin-bottom: 26px;
}
.service h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service p { font-size: 0.97rem; color: rgba(255, 255, 255, 0.62); }
.service__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}
.service__list li { display: grid; grid-template-columns: 14px 1fr; gap: 12px; align-items: baseline; }
.service__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--brass-lite);
  border-radius: 50%;
  transform: translateY(-2px);
}

/* =========================================================================
   ABLAUF / TIMELINE
   ========================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
  counter-reset: step;
}
.step { position: relative; padding-top: 34px; counter-increment: step; }
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.step::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brass);
}
.step__num {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}
.step h3 { font-size: 1.24rem; margin: 10px 0 10px; }
.step p { font-size: 0.95rem; color: var(--muted); }

/* =========================================================================
   ÜBER MICH
   ========================================================================= */
.about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-3);
  border-radius: 4px;
  overflow: hidden;
}
.about__portrait img { width: 100%; height: 100%; object-fit: cover; }

.credentials { list-style: none; padding: 0; margin-top: 34px; display: grid; gap: 14px; }
.credentials li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 0.97rem;
  color: var(--muted);
}
.credentials svg { margin-top: 4px; color: var(--brass); flex: none; }
.credentials strong { color: var(--text); }

/* Signatur */
.signature {
  margin-top: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  opacity: 0.85;
}

/* =========================================================================
   VORTRÄGE / EVENTS
   ========================================================================= */
.events { display: grid; gap: 1px; background: rgba(255, 255, 255, 0.12); }
.event {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  padding: clamp(26px, 3vw, 34px) 0;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.event:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.event__date {
  font-family: var(--serif);
  line-height: 1.1;
}
.event__day { display: block; font-size: 2.2rem; color: var(--brass-lite); }
.event__mon {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}
.event h3 { font-size: 1.35rem; margin-bottom: 7px; }
.event p { font-size: 0.94rem; margin-bottom: 0; }
.event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
}
.event__meta span { display: inline-flex; align-items: center; gap: 7px; }
.event__meta svg { color: var(--brass-lite); flex: none; }

.badge {
  display: inline-block;
  padding: 4px 11px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-lite);
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  margin-bottom: 12px;
}

/* =========================================================================
   REFERENZEN
   ========================================================================= */
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(28px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
}
.quote__stars { display: flex; gap: 3px; color: var(--brass-mid); margin-bottom: 20px; }
.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 auto;
}
.quote__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--brass-lite);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.quote__author cite { font-style: normal; font-weight: 600; font-size: 0.96rem; display: block; }
.quote__author span { font-size: 0.85rem; color: var(--muted); }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass); }
.faq summary .plus {
  flex: none;
  width: 18px;
  height: 18px;
  position: relative;
  color: var(--brass);
}
.faq summary .plus::before,
.faq summary .plus::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq summary .plus::before { top: 50%; left: 0; width: 100%; height: 1.5px; margin-top: -0.75px; }
.faq summary .plus::after { left: 50%; top: 0; height: 100%; width: 1.5px; margin-left: -0.75px; }
.faq details[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.faq details > div { padding-bottom: 28px; max-width: 68ch; }
.faq details p + p { margin-top: 0.9rem; }
.faq details p { color: var(--muted); }

/* =========================================================================
   KONTAKT
   ========================================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 76px);
}
.contact-lines { list-style: none; padding: 0; margin-top: 34px; display: grid; gap: 26px; }
.contact-lines li { display: grid; grid-template-columns: 22px 1fr; gap: 16px; align-items: start; }
.contact-lines svg { margin-top: 4px; color: var(--brass-lite); flex: none; }
.contact-lines .c-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 4px;
}
.contact-lines .c-value { display: block; font-size: 1.02rem; }
.contact-lines a { color: #fff; text-decoration: none; border-bottom: 1px solid var(--line-dark); }
.contact-lines a:hover { border-bottom-color: var(--brass-lite); }

/* Direktbuchung (Microsoft Bookings, lädt erst nach Klick) */
.booking-card {
  max-width: 720px;
  margin: 0 auto clamp(44px, 6vw, 64px);
  padding: clamp(28px, 3.6vw, 44px);
  text-align: center;
  background: rgba(216, 180, 99, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}
.booking-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(216, 180, 99, 0.12);
  color: var(--brass-lite);
}
.booking-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.booking-card p { max-width: 46ch; margin-inline: auto; }
.booking-card .btn { margin-top: 22px; }

.booking-card__hint {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}
.booking-card__hint a { color: var(--brass-lite); text-decoration: none; border-bottom: 1px solid var(--line-dark); }
.booking-card__hint a:hover { border-bottom-color: var(--brass-lite); }

/* Formular */
.form {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  padding: clamp(28px, 3.6vw, 44px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 9px;
}
.field .req { color: var(--brass-lite); }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.97rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field select { appearance: none; background-image: none; cursor: pointer; }
.field select option { background: var(--ink); color: #fff; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.field input:hover,
.field textarea:hover,
.field select:hover { border-color: rgba(255, 255, 255, 0.26); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brass-lite);
  background: rgba(255, 255, 255, 0.08);
}
.field textarea { resize: vertical; min-height: 120px; }

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 13px;
  align-items: start;
  margin: 26px 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--brass-mid); cursor: pointer; }
.consent a { color: var(--brass-lite); }

.form .btn { width: 100%; }
.form__hint {
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}
.hp { position: absolute; left: -9999px; opacity: 0; }

/* Risikohinweis */
.disclaimer {
  border-top: 1px solid var(--line);
  padding-block: 34px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}
.disclaimer strong { display: block; margin-bottom: 6px; color: var(--text); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: #081521; color: rgba(255, 255, 255, 0.62); padding-top: clamp(56px, 8vw, 84px); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 50px);
  padding-bottom: 50px;
}
.footer .logo { color: #fff; margin-bottom: 20px; }
.footer p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.5); max-width: 34ch; }
.footer h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer a { font-size: 0.92rem; color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--brass-lite); }
.footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: space-between;
  align-items: center;
  padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.38);
}

/* =========================================================================
   RECHTSTEXT-SEITEN
   ========================================================================= */
.page-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero { padding-top: clamp(130px, 16vw, 160px); padding-bottom: clamp(40px, 6vw, 60px); }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
.page-hero p { margin-top: 1rem; color: var(--muted); }

.legal { padding-block: clamp(48px, 7vw, 76px); }
.legal h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal h3 { font-size: 1.14rem; margin-top: 1.9rem; }
.legal p, .legal ul, .legal ol { margin-top: 0.95rem; color: var(--muted); font-size: 0.98rem; }
.legal ul, .legal ol { padding-left: 1.3rem; }
.legal li { margin-top: 0.5rem; }
.legal a { color: var(--brass); }
.legal address { font-style: normal; color: var(--muted); }
.legal dl { margin-top: 1rem; }
.legal dt { font-weight: 600; color: var(--text); margin-top: 1rem; font-size: 0.95rem; }
.legal dd { margin: 0.25rem 0 0; color: var(--muted); font-size: 0.98rem; }

/* Platzhalter-Markierung für noch fehlende Pflichtangaben */
.todo {
  background: #fff5d6;
  border-bottom: 2px solid var(--brass-mid);
  color: #6b4e00;
  padding: 1px 6px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.94em;
}
.notice {
  margin-top: 1.5rem;
  margin-bottom: 2.75rem;
  padding: 20px 24px;
  background: #fff8e4;
  border-left: 3px solid var(--brass-mid);
  border-radius: 2px;
  font-size: 0.92rem;
  color: #5c4614;
}
.notice strong { color: #4a3809; }

/* =========================================================================
   SCROLL-ANIMATION
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Skip-Link */
.skip {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -160%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.2s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

/* -------------------------------------------------------------------------
   Kleine Hilfsklassen
   Ersetzen die früheren style="..."-Attribute im Markup. Die
   Content-Security-Policy des Servers (style-src 'self') blockiert
   Inline-Styles, sie wurden im Browser also wirkungslos verworfen.
   ------------------------------------------------------------------------- */
.footer__bar--blank { border-top: none; }
.abstand-oben { margin-top: 2.5rem; }
.knopfreihe { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.2rem; }
.page-hero--tief { padding-bottom: clamp(70px, 10vw, 110px); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1000px) {
  .services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav__list, .nav__cta { display: none; }
  .burger { display: flex; }
  .hero__grid,
  .split,
  .contact__grid { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .about__portrait { max-width: 400px; }
  .quotes { grid-template-columns: 1fr; }
  .metrics__grid { grid-template-columns: 1fr; border-inline: none; }
  /* Datum als Zeile über dem Titel statt als mittig schwebende Spalte */
  .event { grid-template-columns: 1fr; align-items: start; row-gap: 16px; }
  .event__date { display: flex; align-items: baseline; gap: 12px; }
  .event__day { font-size: 1.7rem; }
  .event__mon { margin-top: 0; }
  .event__cta { justify-self: start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  /* Auf schmalen Schirmen bricht das Label sonst hinter dem Strich um */
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.14em; }
  .eyebrow::before { display: none; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .logo__sub { display: none; }
}

/* ---------- Druck ---------- */
@media print {
  .header, .mobile-nav, .hero__actions, .form, .footer__grid { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .on-dark, .hero { background: #fff !important; color: #000 !important; }
  .on-dark h2, .on-dark h3, .hero h1 { color: #000 !important; }
}

/* ---- Ersatz fuer die style="..."-Attribute in index.html --------------------
   Die Content-Security-Policy (siehe .htaccess) erlaubt bewusst kein
   'unsafe-inline'. Der Browser verwarf deshalb jedes style-Attribut im HTML,
   diese Abstands- und Farbangaben waren wirkungslos. Jetzt stehen sie hier. */
.mt-lede    { margin-top: 1.2rem; }
.mt-quote   { margin-top: 2.6rem; }
.mt-cta     { margin-top: 22px; }
.ml-inline  { margin-left: 8px; }
.mb-head    { margin-bottom: 2.4rem; }
.p-secondary{ margin-top: 1rem; color: var(--muted); }
.note-extra { margin-top: 2.4rem; text-align: center; font-size: 0.98rem; }
