/* =========================================================================
   Niche Brand Studio — Designsystem
   Farben, Typografie und Strukturen nach "Brand Guidelines - Niche.pdf"
   Layout nach "Website - Mockup - Niche.pdf"
   ========================================================================= */

/* ------------------------------------------------------------------ Tokens */
:root {
  /* Markenfarben laut Brand Guidelines */
  --orange:      #CF5527;   /* Call-to-Action */
  --orange-dark: #B4461C;
  --brown:       #493A35;   /* Überschriften | Fließtext | Hintergrund */
  --black:       #000000;
  --gold:        #998731;   /* Akzentfarbe */
  --olive:       #262B12;   /* Akzentfarbe */
  --cream:       #F1ECE3;   /* Hintergrund */

  /* Abgeleitete Flächen */
  --paper:       #F7F6F4;
  --ink:         #241D20;
  --ink-deep:    #1B1417;
  --line-light:  rgba(73, 58, 53, .18);
  --line-dark:   rgba(241, 236, 227, .22);

  --text-light:  rgba(241, 236, 227, .78);
  --text-light-strong: #F1ECE3;

  /* Typografie */
  --serif:  "Source Serif 4", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --tenor:  "Tenor Sans", "Optima", "Avenir Next", sans-serif;
  --sans:   "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Maße */
  --wrap:    1240px;
  --wrap-nar: 900px;
  --gut:     clamp(1.25rem, 4vw, 3.5rem);
  --sec:     clamp(4.5rem, 10vw, 9rem);
  --radius:  2px;
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(.875rem, .4vw + .78rem, .95rem);
  line-height: 1.85;
  color: var(--brown);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, video { max-width: 100%; display: block; }
figure, blockquote { margin: 0; }
address { font-style: normal; }
a { color: inherit; }

/* --------------------------------------------------------------- Strukturen
   Leinen-, Papier- und Lichtkegel-Struktur laut Brand Guidelines,
   als Inline-SVG erzeugt — keine externen Assets, kein zusätzlicher Request. */
.tex-linen::before,
.tex-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* Original-Leinenstruktur aus dem Mockup, nahtlos gekachelt */
.tex-linen::before {
  background-image: image-set(url("../img/leinen.webp") type("image/webp"),
                              url("../img/leinen.jpg") type("image/jpeg"));
  background-size: 512px 512px;
  background-repeat: repeat;
  opacity: .75;
  mix-blend-mode: multiply;
}
.tex-paper::before {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23p)' opacity='.4'/%3E%3C/svg%3E");
  opacity: .35;
  mix-blend-mode: multiply;
}

/* Dunkle Flächen: Papierkorn + Lichtkegel-Verlauf */
.dark {
  position: relative;
  background: var(--ink);
  color: var(--text-light);
  isolation: isolate;
}
.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='d'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23d)' opacity='.55'/%3E%3C/svg%3E");
  opacity: .22;
  mix-blend-mode: overlay;
}
.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 78% 0%, rgba(241,236,227,.10) 0%, rgba(241,236,227,0) 58%),
    radial-gradient(70% 60% at 8% 100%, rgba(153,135,49,.10) 0%, rgba(153,135,49,0) 60%);
}
.dark > * { position: relative; z-index: 1; }

.light { position: relative; background: var(--paper); color: var(--brown); isolation: isolate; overflow: clip; }
.light > * { position: relative; z-index: 1; }
.light--cream { background: var(--cream); }

/* Grosse, sehr schwache Bogenformen - das Halbkreis-Motiv aus dem Logo */
.arcs { position: relative; }
.arcs::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(73,58,53,.05) 0 26%, transparent 26.4%),
    radial-gradient(circle at 88% 46%, rgba(73,58,53,.045) 0 30%, transparent 30.4%),
    radial-gradient(circle at 22% 82%, rgba(73,58,53,.04) 0 24%, transparent 24.4%),
    radial-gradient(circle at 74% 96%, rgba(73,58,53,.035) 0 20%, transparent 20.4%);
}
.arcs > * { position: relative; z-index: 1; }

/* ------------------------------------------------------------------ Layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: var(--wrap-nar); }
.section { padding-block: var(--sec); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

/* -------------------------------------------------------------- Typografie */
.eyebrow {
  font-family: var(--tenor);
  font-size: clamp(.62rem, .25vw + .58rem, .72rem);
  letter-spacing: .38em;   /* Subline: erweiterte Laufweite 30–50 % */
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0 0 1.6rem;
  color: var(--brown);
}
.dark .eyebrow { color: var(--text-light-strong); opacity: .85; }

/* Eyebrow mit Linie, die aus dem Viewport heraus nach links läuft (Mockup) */
.eyebrow--rule { position: relative; }
.eyebrow--rule::before {
  content: "";
  position: absolute;
  right: calc(100% + 1.75rem);
  top: .65em;
  width: 60vw;
  height: 1px;
  background: var(--line-dark);
}
.light .eyebrow--rule::before { background: var(--line-light); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.005em;
  margin: 0 0 1.25rem;
  color: var(--brown);
}
.dark h1, .dark h2, .dark h3, .dark h4 { color: var(--text-light-strong); }

h1 { font-size: clamp(2.5rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.5rem); line-height: 1.24; }
h4 { font-size: 1.05rem; line-height: 1.3; }

/* Markenzeichen: kursives Wort + orangener Punkt in den Überschriften */
em, .it { font-style: italic; }
.dot { color: var(--orange); font-style: normal; }

p { margin: 0 0 1.35rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(.95rem, .5vw + .82rem, 1.05rem); line-height: 1.9; }
.justify { hyphens: auto; }
@media (min-width: 700px) { .justify { text-align: justify; } }
.muted { opacity: .8; }

/* ----------------------------------------------------------------- Buttons */
.btn {
  --btn-bg: var(--orange);
  --btn-fg: #FFF;
  --btn-bd: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.btn:hover { --btn-bg: var(--orange-dark); --btn-bd: var(--orange-dark); transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--brown); --btn-bd: var(--line-light); }
.btn--ghost:hover { --btn-bg: var(--brown); --btn-fg: var(--cream); --btn-bd: var(--brown); }
.dark .btn--ghost { --btn-fg: var(--text-light-strong); --btn-bd: var(--line-dark); }
.dark .btn--ghost:hover { --btn-bg: var(--cream); --btn-fg: var(--brown); --btn-bd: var(--cream); }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.btn-row--center { justify-content: center; }
@media (max-width: 560px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

/* -------------------------------------------------------------------- Logo
   Original-SVGs aus dem Brandkit. */
.logo { display: inline-block; line-height: 0; text-decoration: none; }
.logo img { height: clamp(34px, 3.2vw, 46px); width: auto; }
.dark .logo img, .logo--hell img { }

/* Abstrahiertes Signet n|c */
.mark { display: inline-block; line-height: 0; }
.mark img { height: clamp(30px, 3vw, 40px); width: auto; }

/* Großes Wasserzeichen in hellen Sektionen */
.watermark {
  position: absolute;
  z-index: 0;
  width: clamp(180px, 26vw, 380px);
  aspect-ratio: 4 / 3;
  background: url("../img/logo-praegung.svg") center / contain no-repeat;
  opacity: .55;
  user-select: none;
  pointer-events: none;
}
@media (max-width: 700px) { .watermark { display: none; } }

/* ------------------------------------------------------------------ Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 246, 244, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line-light); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 88px;
  padding-block: 1rem;
}
.nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3rem); }
.nav a {
  font-family: var(--tenor);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown);
  padding-block: .35rem;
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.nav a:hover { border-bottom-color: var(--orange); }
.nav a[aria-current="page"] { border-bottom-color: var(--brown); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--brown);
}
.nav-toggle span { display: block; width: 24px; height: 1px; background: currentColor; margin: 6px auto; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 88px 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1.5rem var(--gut) 2.5rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line-light);
    transform: translateY(-140%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { width: 100%; padding-block: 1rem; border-bottom: 1px solid var(--line-light); }
  .nav a:last-child { border-bottom: 0; }
}

/* -------------------------------------------------------------------- Hero
   Der Hero sitzt als eigener dunkler Block in einer hellen Leinen-Fläche
   (siehe Bildschirmaufnahme der Canva-Vorschau), nicht randlos. */
.hero-shell { position: relative; z-index: 2; padding-inline: clamp(0rem, 3.5vw, 3rem); isolation: isolate; }
.hero-shell.light { overflow: visible; }   /* das eingesetzte Bild ragt bewusst heraus */
.hero-shell > * { position: relative; z-index: 1; }

.hero {
  position: relative;
  min-height: clamp(600px, 88vh, 880px);
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 12vh, 9rem) clamp(9rem, 18vh, 13rem);
  background: var(--ink-deep);
}
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__media video,
.hero__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(27,20,23,.94) 0%, rgba(27,20,23,.80) 45%, rgba(27,20,23,.62) 100%),
    radial-gradient(110% 80% at 70% 10%, rgba(241,236,227,.10) 0%, rgba(241,236,227,0) 60%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .2; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='h'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23h)' opacity='.6'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero, .hero h1, .hero h2 { color: var(--text-light-strong); }
.hero .eyebrow { color: var(--text-light-strong); opacity: .85; }
.hero .eyebrow--rule::before { background: var(--line-dark); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}
.hero h1 { margin-bottom: 0; }
.hero__text { color: var(--text-light); padding-bottom: .5rem; }
.hero__cta { margin-top: 2.25rem; }

/* Bild, das in die nächste Sektion hineinragt */
.hero__inset {
  position: absolute;
  z-index: 4;
  left: 14%;                     /* wie im Mockup: nicht am Rand, sondern eingerueckt */
  bottom: -9%;                   /* rund ein Drittel ragt in die helle Flaeche */
  width: min(36%, 460px);
  aspect-ratio: 8 / 5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}
.hero__inset img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }

@media (max-width: 860px) {
  /* .hero ist ein Flex-Container - als Flex-Item wuerde das Bild zusammen-
     schrumpfen. Deshalb hier auf normalen Fluss umstellen. */
  .hero { display: block; padding-bottom: clamp(3.5rem, 8vh, 5rem); }
  .hero__grid { grid-template-columns: 1fr; align-items: start; }
  .hero__text { padding-bottom: 0; }
  .hero__inset {
    position: static;
    width: auto;
    margin: 2.5rem var(--gut) 0;
    aspect-ratio: 3 / 2;
    box-shadow: none;
  }
}

/* --------------------------------------------------------- Editorial Split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.split--offset > :last-child { padding-top: clamp(0rem, 10vw, 9rem); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--offset > :last-child { padding-top: 0; } }

.figure-frame { position: relative; overflow: hidden; }
.figure-frame img { width: 100%; height: 100%; object-fit: cover; }
.figure-frame--bw img { filter: grayscale(1); }

/* Bild, das rechts aus dem Raster herausläuft (Mockup) */
.bleed-right { margin-right: calc(-1 * max(var(--gut), (100vw - var(--wrap)) / 2 + var(--gut))); }
.bleed-left  { margin-left:  calc(-1 * max(var(--gut), (100vw - var(--wrap)) / 2 + var(--gut))); }
@media (max-width: 860px) { .bleed-right, .bleed-left { margin-inline: 0; } }

/* --------------------------------------------------------------- Slider */
.slider { position: relative; }
.slider__track {
  --slider-gap: 1.75rem;
  display: flex;
  align-items: stretch;
  gap: var(--slider-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block: .5rem 1.5rem;
  scrollbar-width: none;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track > * { flex: 0 0 min(86%, 340px); }
@media (min-width: 861px) {
  /* 3 Spalten: 3 x (33.3333% - 1.1667rem) + 2 x 1.75rem Abstand = 100 % */
  .slider__track > * { flex: 0 0 calc(33.3333% - 1.1667rem); }
}

.quote {
  scroll-snap-align: start;
  background: #FFF;
  border: 1px solid var(--line-light);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.quote__who {
  font-family: var(--tenor);
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: .6rem;
}
.quote__firm { font-family: var(--serif); font-style: italic; font-size: 1.28rem; line-height: 1.2; margin-bottom: 1rem; }
.quote__body { font-size: .78rem; line-height: 1.85; text-align: justify; hyphens: auto; margin: 0 0 1.25rem; }
.quote__stars { margin-top: auto; align-self: flex-end; color: var(--brown); letter-spacing: .18em; font-size: .8rem; }

.slider__dots { display: flex; justify-content: center; gap: .55rem; margin-top: .5rem; }
.slider__dots button {
  width: 7px; height: 7px; padding: 0;
  border: 0; border-radius: 50%;
  background: var(--line-light);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.slider__dots button[aria-selected="true"] { background: var(--brown); transform: scale(1.25); }

/* ------------------------------------------------------ Nummerierte Liste */
.steps { display: flex; flex-direction: column; }
.steps__item { padding-block: clamp(1.5rem, 3vw, 2.25rem); border-top: 1px solid var(--line-dark); }
.steps__item:first-child { border-top: 0; padding-top: 0; }
.light .steps__item { border-top-color: var(--line-light); }
.steps__num { font-family: var(--serif); font-size: 1.1rem; color: var(--orange); display: block; margin-bottom: .3rem; }
.steps__item h3 { font-style: italic; margin-bottom: .55rem; }
.steps__item p { font-size: .78rem; line-height: 1.8; margin: 0; }
/* versetzte Einrückung wie im Mockup */
.steps__item:nth-child(2) { padding-left: clamp(0rem, 6vw, 4.5rem); }
.steps__item:nth-child(3) { padding-left: 0; }

/* ------------------------------------------------------------ Bilder-Band */
.band {
  display: grid;
  grid-template-columns: 68fr 32fr;   /* Verhaeltnis aus dem Mockup */
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
  position: relative;
}
.band__a { aspect-ratio: 12 / 5; }
.band__b { aspect-ratio: 9 / 10; width: 100%; margin-top: clamp(1.5rem, 6vw, 5.5rem); }
.band img { filter: grayscale(1); width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .band { grid-template-columns: 1fr; }
  .band__a { aspect-ratio: 3 / 2; }          /* 12:5 waere hier ein Streifen */
  .band__b { aspect-ratio: 4 / 5; width: 72%; margin-top: -3rem; margin-left: auto; }
}

/* ------------------------------------------------ Versetzte Pfeiler-Spalten */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
}
.pillars > *:nth-child(even) { padding-top: clamp(1.5rem, 4vw, 3.5rem); }
.pillar h3 { font-style: italic; margin-bottom: 1rem; }
@media (max-width: 560px) { .pillar h3 br, .card h3 br { display: none; } }
.pillar p { font-size: .76rem; line-height: 1.85; text-align: justify; hyphens: auto; margin: 0; }
@media (max-width: 1040px) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .pillars { grid-template-columns: 1fr; } .pillars > *:nth-child(even) { padding-top: 0; } }

/* ---------------------------------------------------- Spalten mit Kopflinie
   Ruhiges Rasterlayout ohne Kaesten: jede Spalte traegt oben eine feine Linie. */
.rule-cols {
  display: grid;
  grid-template-columns: var(--tpl, repeat(var(--cols, 3), minmax(0, 1fr)));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
.rule-cols > * { border-top: 1px solid var(--line-light); padding-top: clamp(1.5rem, 2.5vw, 2.25rem); }
.dark .rule-cols > * { border-top-color: var(--line-dark); }

.rule-col__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.rule-col h2, .rule-col h3 {
  font-size: clamp(1.05rem, .55vw + .92rem, 1.3rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1.1rem;
}
.rule-col p { font-size: .82rem; line-height: 1.85; margin: 0 0 1rem; }
.rule-col p:last-child { margin-bottom: 0; }

/* Spaltenaufteilungen als Klasse - nicht inline, sonst schlaegt der
   Inline-Wert die Media-Query und das Raster bricht auf Mobil nicht um. */
.rule-cols--kopf4 { --tpl: 1.6fr 1fr 1fr 1fr; }
.rule-cols--2 { --tpl: repeat(2, minmax(0, 1fr)); }
.rule-cols--3 { --tpl: repeat(3, minmax(0, 1fr)); }

/* kleine Ziffer rechts neben der Ueberschrift */
.rule-col__nr { font-family: var(--serif); font-size: .8rem; opacity: .45; flex: none; }
/* grosse, sehr helle Ziffer ueber der Ueberschrift */
.rule-col__nr--gross {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1;
  color: var(--brown);
  opacity: .25;
  margin-bottom: 1.25rem;
}
.rule-col__ergebnis { opacity: .85; }

/* Kopfspalte traegt Eyebrow und die grosse Ueberschrift */
.rule-col--kopf .eyebrow { letter-spacing: .26em; }
.rule-col--kopf h1, .rule-col--kopf h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.rule-col--kopf p { font-size: .88rem; }

@media (max-width: 1040px) { .rule-cols { --tpl: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .rule-cols { --tpl: 1fr; } }

/* ------------------------------------------------------------ Karten-Raster */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.card {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .55);
  padding: clamp(1.6rem, 2.6vw, 2.4rem);
}
.dark .card { border-color: var(--line-dark); background: rgba(241, 236, 227, .04); }
.card__num { font-family: var(--serif); font-size: 1.05rem; color: var(--orange); display: block; margin-bottom: .6rem; }
.card h3 { font-style: italic; margin-bottom: .85rem; }
.card p { font-size: .8rem; line-height: 1.85; margin: 0; }
.card__result { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line-light); font-size: .74rem; }
.dark .card__result { border-top-color: var(--line-dark); }
.card__result strong { font-weight: 600; color: var(--orange); }

/* ------------------------------------------------------------ Gruenderinnen
   Bild laeuft zum Viewport-Rand, der Name ueberlappt die Bildkante. */
.founder {
  position: relative;
  display: grid;
  grid-template-columns: 38fr 62fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  margin-block: clamp(3rem, 8vw, 6rem);
}
.founder__img { aspect-ratio: 4 / 5; overflow: hidden; }
.founder__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; filter: grayscale(1); }

/* Bild bis an den Viewport-Rand ziehen */
.founder--links .founder__img  { margin-left:  calc(-1 * max(var(--gut), (100vw - var(--wrap)) / 2 + var(--gut))); }
.founder--rechts .founder__img { margin-right: calc(-1 * max(var(--gut), (100vw - var(--wrap)) / 2 + var(--gut))); }
.founder--rechts { grid-template-columns: 62fr 38fr; }
.founder__body { max-width: 520px; }
.founder--links  .founder__body { margin-right: auto; }
.founder--rechts .founder__body { margin-left: auto; }
.founder--rechts .founder__img { order: 2; }
.founder--rechts .founder__body { order: 1; }

.founder__name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.02;
  margin: 0 0 1.75rem;
  position: relative;
  z-index: 2;
  margin-left: clamp(-6rem, -8vw, -2rem);   /* ragt ueber die Bildkante */
  text-align: right;
  max-width: 8ch;
}
.founder--rechts .founder__name {
  margin-left: 0;
  margin-right: clamp(-6rem, -8vw, -2rem);
  text-align: left;
  margin-left: auto;
}
.founder__name span { display: block; }

.founder__role {
  font-family: var(--tenor);
  font-size: clamp(.72rem, .35vw + .64rem, .92rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0 0 1.6rem;
}
.founder__text { font-size: .85rem; line-height: 1.95; }
@media (min-width: 700px) { .founder__text { text-align: justify; hyphens: auto; } }

.founder__more { margin-top: 1.5rem; }
.founder__more summary {
  font-family: var(--tenor);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding-block: .4rem;
}
.founder__more summary::-webkit-details-marker { display: none; }
.founder__more summary::before {
  content: "";
  width: 14px; height: 8px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
  transition: transform .3s ease;
}
.founder__more[open] summary::before { transform: rotate(135deg) translate(-2px, 2px); }
.founder__more p { font-size: .8rem; line-height: 1.9; margin: 1rem 0 0; }
.founder--rechts .founder__more { display: flex; justify-content: flex-end; }

@media (max-width: 860px) {
  .founder, .founder--rechts { grid-template-columns: 1fr; }
  .founder--rechts .founder__img { order: 0; }
  .founder--rechts .founder__body { order: 1; }
  .founder--links .founder__img, .founder--rechts .founder__img { margin-inline: calc(-1 * var(--gut)); }
  .founder__name { margin-inline: 0; text-align: left; max-width: none; }
  .founder--rechts .founder__name { text-align: left; margin-left: 0; }
  .founder--rechts .founder__more { justify-content: flex-start; }
}

/* ------------------------------------------------------- CTA-Bilder-Collage */
.collage { position: relative; padding-bottom: 22%; }
.collage__a { aspect-ratio: 3 / 2; width: 100%; }
.collage__b {
  position: absolute;
  right: -28%;
  bottom: 0;
  width: 75%;
  aspect-ratio: 3 / 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}
.collage img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  /* Ueberlappung nur noch andeuten - sonst verdeckt das zweite Bild das erste */
  .collage { padding-bottom: 0; }
  .collage__b {
    position: static;
    width: 72%;
    margin: -2.5rem 0 0 auto;
  }
}

/* ---------------------------------------------------------------- Formular */
.form { max-width: 560px; margin-inline: auto; }
.field { margin-bottom: 1.4rem; }
.field > label {
  display: block;
  font-size: .68rem;
  letter-spacing: .06em;
  margin-bottom: .5rem;
  color: var(--text-light);
}
.light .field > label { color: var(--brown); }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--text-light-strong);
  background: rgba(241, 236, 227, .03);
  border: 1px solid rgba(241, 236, 227, .3);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  transition: border-color .25s ease, background .25s ease;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--orange); background: rgba(241, 236, 227, .07); }
.field input::placeholder, .field textarea::placeholder { color: rgba(241, 236, 227, .35); }
.field--invalid input, .field--invalid textarea { border-color: #E4785A; }
.field__error { display: none; font-size: .68rem; color: #E4785A; margin-top: .4rem; }
.field--invalid .field__error { display: block; }

.consent { display: flex; gap: .75rem; align-items: flex-start; font-size: .7rem; line-height: 1.7; margin-bottom: 1.75rem; }
.consent input { width: 16px; height: 16px; margin-top: .25rem; flex: none; accent-color: var(--orange); }
.consent a { color: var(--orange); }

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

.form__note {
  display: none;
  margin-top: 1.25rem;
  padding: .9rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-left: 2px solid var(--orange);
  font-size: .74rem;
  line-height: 1.7;
}
.form__note.is-visible { display: block; }

/* ------------------------------------------------------------------ Footer */
.site-footer { padding-block: clamp(2.5rem, 5vw, 3.5rem); border-top: 1px solid var(--line-dark); }
.site-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.75rem; }
.site-footer .mark img { height: clamp(28px, 3vw, 36px); }
.footer-nav { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.5rem); }
.footer-nav a {
  font-family: var(--tenor);
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-light);
  border-bottom: 1px solid transparent;
  padding-bottom: .2rem;
  transition: border-color .25s ease, color .25s ease;
}
.footer-nav a:hover { color: var(--text-light-strong); border-bottom-color: var(--orange); }
.site-footer__legal { width: 100%; font-size: .66rem; opacity: .55; margin: 0; }

/* --------------------------------------------------------------- Rechtstext */
.legal { max-width: 780px; }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-top: 3rem; }
.legal h3 { font-size: 1.05rem; margin-top: 2rem; font-style: italic; }
.legal h4 { font-size: .92rem; margin-top: 1.5rem; font-family: var(--sans); font-weight: 600; }
.legal p, .legal li { font-size: .82rem; line-height: 1.9; }
.legal ul { padding-left: 1.2rem; margin-bottom: 1.35rem; }
.legal li { margin-bottom: .4rem; }
.legal a { color: var(--orange); text-underline-offset: 3px; }
.legal address { font-style: normal; line-height: 1.9; font-size: .82rem; }

.notice {
  border: 1px solid var(--orange);
  border-left-width: 3px;
  padding: 1.1rem 1.35rem;
  font-size: .78rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  background: rgba(207, 85, 39, .05);
}
.notice strong { color: var(--orange); }

/* ---------------------------------------------------------- Seiten-Kopfzone */
.pagehead { padding-block: clamp(4rem, 9vw, 7.5rem) clamp(3rem, 6vw, 5rem); }
.pagehead h1 { max-width: 16ch; }
.pagehead .lead { max-width: 58ch; margin-top: 1.75rem; }

/* ------------------------------------------------------------ Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--orange); color: #FFF; padding: .75rem 1.25rem; font-size: .8rem;
}
.skip:focus { left: .5rem; top: .5rem; }
