/* ============================================================
   WerkzeugWicht. Cinematic Scrub + Tiles + Reveal.
   Palette: durchgehend sanftes Gruen, niemals weiss.
   ============================================================ */

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

:root {
  --bg-a:       #F4F6F5;
  --bg-b:       #EAF3ED;
  --primary:    #1F4D3A;
  --primary-d:  #163A2C;
  --primary-12: rgba(31, 77, 58, 0.12);
  --ink:        #1A211E;
  --ink-mute:   #5C665F;
  --line:       #E2E6E3;
  --wood:       #B07A4A;

  --shadow-card: 0 1px 2px rgba(26,33,30,0.04), 0 10px 28px -12px rgba(31,77,58,0.14);
  --shadow-card-hover: 0 2px 4px rgba(26,33,30,0.05), 0 22px 48px -16px rgba(31,77,58,0.22);
  --ease-enter: cubic-bezier(0.22, 1, 0.36, 1);

  --serif: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans:  "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1080px;
  --pad:  clamp(24px, 5vw, 56px);
}

html, body {
  background: #DCEAE0;
  margin: 0;
  overflow-x: clip;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video, svg, canvas { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--primary); }

::selection { background: var(--primary-12); color: var(--primary-d); }

:where(section[id], main[id]) { scroll-margin-top: 24px; }

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.bg-a { background: var(--bg-a); }
.bg-b { background: var(--bg-b); }


/* ============================================================
   Wortmarke
   ============================================================ */
.brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  font-size: 1.05rem;
}
.brand-werk  { color: var(--ink); }
.brand-wicht { color: var(--primary); }


/* ============================================================
   Scroll-Cinematic Pin-Sektionen (Hero + Streichen)
   ============================================================ */
.hero {
  position: relative;
  height: 330vh;
  min-height: 0;
}
.pin-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #DCEAE0;
}
.pin-stage canvas,
.pin-stage video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pin-stage > :not(canvas):not(video) {
  position: relative;
  z-index: 2;
}


/* ============================================================
   Hero-Overlay (auf Canvas, above the fold)
   ============================================================ */
.hero-overlay {
  position: relative;
  z-index: 10;
  max-width: 640px;
  width: 100%;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 22px;
  text-align: center;
  color: #FFFFFF;
  background:
    radial-gradient(ellipse at center,
      rgba(20, 30, 25, 0.78) 0%,
      rgba(20, 30, 25, 0.55) 60%,
      rgba(20, 30, 25, 0.20) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: heroIn .9s ease both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero-overlay .brand {
  color: #FFFFFF;
  margin-bottom: 18px;
}
.hero-overlay .brand-werk  { color: #FFFFFF; }
.hero-overlay .brand-wicht { color: #6FB18C; }

.hero-h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.hero-claim {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #E6EFE9;
  line-height: 1.55;
  margin: 0 0 26px;
}


/* ============================================================
   Cine-Overlay (Streichen) — Text als Overlay ueber Canvas
   ============================================================ */
.cine-overlay {
  position: relative;
  z-index: 10;
  max-width: 720px;
  width: calc(100% - 2 * var(--pad));
  padding: clamp(28px, 4vw, 48px);
  border-radius: 22px;
  text-align: center;
  color: #FFFFFF;
  background:
    radial-gradient(ellipse at center,
      rgba(20, 30, 25, 0.78) 0%,
      rgba(20, 30, 25, 0.50) 60%,
      rgba(20, 30, 25, 0.18) 100%);
}
.cine-overlay h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 22px;
}
.cine-overlay p {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.65;
  color: #E6EFE9;
  margin: 0;
}


/* ============================================================
   Finder (Input + Button) — Hero UND Bottom
   ============================================================ */
.finder {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}
.finder input {
  flex: 1 1 220px;
  min-width: 0;
  font: inherit;
  font-size: 1rem;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.finder input::placeholder { color: var(--ink-mute); }
.finder input:focus {
  outline: none;
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px var(--primary-12);
}

.btn-primary {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  background: var(--primary);
  border: 1px solid var(--primary-d);
  border-radius: 11px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn-primary:hover  { background: var(--primary-d); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

@media (max-width: 600px) {
  .finder { flex-direction: column; }
  .finder input,
  .btn-primary { width: 100%; }
  /* In Spaltenrichtung wirkt flex-basis als Hoehe — zuruecksetzen */
  .finder input { flex: 0 0 auto; }
}


/* ============================================================
   Story-Stack (Laminat, Streichen, Regal) — sticky Panels,
   die sich beim Scrollen wie Blaetter uebereinanderschichten
   ============================================================ */
.stack-section {
  padding: clamp(64px, 8vw, 120px) var(--pad) clamp(88px, 10vw, 150px);
}

.stack-panel {
  position: sticky;
  max-width: var(--maxw);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: 0 2px 4px rgba(26,33,30,0.05), 0 28px 64px -28px rgba(31,77,58,0.30);
}
.stack-panel:nth-of-type(1) { top: clamp(56px, 8vh, 88px); }
.stack-panel:nth-of-type(2) { top: calc(clamp(56px, 8vh, 88px) + 24px); }
.stack-panel:nth-of-type(3) { top: calc(clamp(56px, 8vh, 88px) + 48px); }
.stack-panel + .stack-panel { margin-top: clamp(56px, 10vh, 110px); }

.stack-grid {
  display: grid;
  grid-template-columns: minmax(300px, 44%) 1fr;
  min-height: min(70vh, 600px);
}
.stack-panel:nth-of-type(even) .stack-media { order: 2; }

.stack-media {
  margin: 0;
  position: relative;
}
.stack-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-body {
  padding: clamp(36px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.stack-num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary-12);
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.stack-body h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 22px;
}
.stack-body h2::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: var(--wood);
  margin-top: 18px;
  transition: width .7s var(--ease-enter) .4s;
}
.stack-panel.visible .stack-body h2::after { width: 52px; }
.stack-body p {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  color: var(--ink-mute);
  margin: 0;
  max-width: 46ch;
}

@media (max-width: 900px) {
  /* Panels koennen hoeher als der Viewport sein — sticky abschalten */
  .stack-panel,
  .stack-panel:nth-of-type(1),
  .stack-panel:nth-of-type(2),
  .stack-panel:nth-of-type(3) {
    position: relative;
    top: 0;
  }
  .stack-panel + .stack-panel { margin-top: clamp(32px, 6vw, 48px); }
  .stack-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .stack-panel:nth-of-type(even) .stack-media { order: 0; }
  .stack-media { aspect-ratio: 4 / 3; }
  .stack-body { padding: 28px 24px 36px; }
}


/* ============================================================
   So funktioniert's — 3 Schritte
   ============================================================ */
.how-section {
  padding: clamp(88px, 12vw, 150px) var(--pad);
}
.how-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.how-h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 clamp(44px, 6vw, 68px);
  text-align: center;
}
/* Schritte als offener Pfad statt Karten-Boxen: gruene Nummern-Kreise,
   dazwischen eine gestrichelte Linie, die sich beim Scrollen einzeichnet */
.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  --hgap: clamp(32px, 4.5vw, 56px);
  gap: var(--hgap);
}
.how-step {
  position: relative;
}
.how-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 12px 26px -10px rgba(31, 77, 58, 0.5);
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.how-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 74px;
  width: calc(100% - 74px + var(--hgap) - 18px);
  height: 2px;
  background-image: repeating-linear-gradient(90deg,
    rgba(31, 77, 58, 0.35) 0 8px, transparent 8px 16px);
  clip-path: inset(0 100% 0 0);
  transition: clip-path .9s var(--ease-enter);
}
.how-section.visible .how-step::before { clip-path: inset(0 0 0 0); }
.how-section.visible .how-step:nth-child(1)::before { transition-delay: 450ms; }
.how-section.visible .how-step:nth-child(2)::before { transition-delay: 700ms; }
.how-step-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.how-step-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-mute);
  margin: 0;
  max-width: 34ch;
}

/* Reveal: H2 zuerst, Schritte gestaffelt entlang des Pfads */
.how-section[data-reveal] { opacity: 1; transform: none; }
.how-h2 {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-enter), transform .7s var(--ease-enter);
}
.how-step {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-enter), transform .7s var(--ease-enter);
}
.how-section.visible .how-h2,
.how-section.visible .how-step { opacity: 1; transform: none; }
.how-steps .how-step:nth-child(1) { transition-delay: 100ms; }
.how-steps .how-step:nth-child(2) { transition-delay: 190ms; }
.how-steps .how-step:nth-child(3) { transition-delay: 280ms; }
@media (max-width: 720px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* Kreis links, Text rechts — Linie laeuft vertikal am Kreis entlang */
  .how-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 18px;
    align-items: start;
  }
  .how-num {
    grid-row: span 2;
    margin-bottom: 0;
  }
  .how-step-title { margin-top: 4px; }
  .how-step:not(:last-child)::before {
    top: 64px;
    left: 27px;
    width: 2px;
    height: calc(100% - 64px + 28px);
    background-image: repeating-linear-gradient(180deg,
      rgba(31, 77, 58, 0.35) 0 8px, transparent 8px 16px);
    clip-path: inset(0 0 100% 0);
  }
}


/* ============================================================
   Ergebnis-Liste — Karten gestaffelt
   ============================================================ */
.list-section {
  padding: clamp(88px, 12vw, 150px) var(--pad);
}
.list-section[data-reveal] {
  opacity: 1;
  transform: none;
}
.list-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.list-h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 clamp(44px, 6vw, 68px);
  text-align: center;
}
/* Beispiel-Kennzeichnung unter der H2 (rueckt in deren Abstand hinein) */
.list-example {
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C8762E;
  margin: clamp(-52px, -4.5vw, -30px) 0 clamp(36px, 5vw, 56px);
}
.list-example strong { font-weight: 700; }

.list-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
/* Karten: leicht gedreht wie ausgelegte Werkstatt-Zettel (Bohnenfinder-Stil).
   Reveal laeuft als Animation auf opacity/translate, damit die Rotation
   und der Hover auf transform frei bleiben (kein Stagger-Delay am Hover). */
.list-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #CFDDD5;
  border-radius: 22px;
  padding: clamp(30px, 3.2vw, 38px);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: rotate(var(--tilt, 0deg));
  transition: transform .35s var(--ease-enter), box-shadow .35s ease, border-color .3s ease;
}
/* Gestrichelter Innenrahmen in Tannengruen — wirkt wie ein Werkstatt-Etikett */
.list-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px dashed rgba(31, 77, 58, 0.55);
  border-radius: 14px;
  pointer-events: none;
}
.list-cards .list-card:nth-child(1) { --tilt: -1.3deg; --d: 0ms; }
.list-cards .list-card:nth-child(2) { --tilt:  1.1deg; --d: 90ms; }
.list-cards .list-card:nth-child(3) { --tilt:  0.9deg; --d: 180ms; }
.list-cards .list-card:nth-child(4) { --tilt: -1.1deg; --d: 270ms; }

/* Top-Pick: erste Karte mit gruener Aura und staerkerem Rahmen
   (Pendant zur Ceramic-Karte beim Bohnenfinder; Glow als Schatten-
   Schicht, weil die Rotation einen Stacking-Context erzeugt) */
.list-cards .list-card:nth-child(1) {
  border-color: rgba(31, 77, 58, 0.32);
  box-shadow: var(--shadow-card), 0 0 56px -8px rgba(111, 177, 140, 0.55);
}
.list-section.visible .list-card {
  animation: cardIn .7s var(--ease-enter) both;
  animation-delay: var(--d, 0ms);
}
@keyframes cardIn {
  from { opacity: 0; translate: 0 34px; }
  to   { opacity: 1; translate: 0 0; }
}
.list-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.list-card-cat {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wood);
}
.list-tag {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  color: #FFFFFF;
  white-space: nowrap;
}
.list-tag-req { background: #C8762E; box-shadow: 0 6px 14px -8px rgba(200,118,46,0.55); }
.list-tag-rec { background: #2E7D52; box-shadow: 0 6px 14px -8px rgba(46,125,82,0.55); }
.list-card-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.015em;
}
.list-card-sub {
  font-size: .95rem;
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0 0 20px;
}
.list-card-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0 0 18px;
}
.list-card-tags {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.list-card-tags li {
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary-d);
  background: var(--primary-12);
  border-radius: 999px;
  padding: 7px 14px;
  line-height: 1;
}
.list-card-text {
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0;
}
@media (max-width: 720px) {
  .list-cards { grid-template-columns: 1fr; }
  /* Volle Breite + Rotation kippt Textzeilen sichtbar — mobil halbieren */
  .list-cards .list-card:nth-child(1) { --tilt: -0.5deg; }
  .list-cards .list-card:nth-child(2) { --tilt:  0.45deg; }
  .list-cards .list-card:nth-child(3) { --tilt:  0.4deg; }
  .list-cards .list-card:nth-child(4) { --tilt: -0.45deg; }
}


/* ============================================================
   Bottom-CTA — dunkles Panel, kontrastreichster Punkt der Seite
   ============================================================ */
.cta-bottom {
  padding: clamp(48px, 6vw, 96px) var(--pad) clamp(88px, 11vw, 150px);
}
.cta-panel {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  padding: clamp(56px, 8vw, 110px) clamp(24px, 6vw, 88px);
  background:
    radial-gradient(110% 130% at 85% -20%,
      rgba(111, 177, 140, 0.38) 0%, rgba(111, 177, 140, 0) 55%),
    linear-gradient(160deg, var(--primary) 0%, var(--primary-d) 100%);
  box-shadow: 0 32px 72px -32px rgba(22, 58, 44, 0.6);
}
.cta-h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: #FFFFFF;
  margin: 0 0 18px;
}
.cta-claim {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  color: #D5E5DC;
  max-width: 54ch;
  margin: 0 auto 40px;
}
.cta-panel .finder {
  max-width: 620px;
  margin: 0 auto;
}
.cta-panel .finder input {
  background: #FFFFFF;
  border-color: transparent;
}
.cta-panel .finder input:focus {
  border-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}
.cta-panel .btn-primary {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--primary-d);
  box-shadow: 0 14px 30px -14px rgba(10, 30, 22, 0.5);
}
.cta-panel .btn-primary:hover { background: #EAF3ED; }
.cta-panel :focus-visible {
  outline-color: #FFFFFF;
}


/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #DCEAE0;
  border-top: 1px solid var(--line);
  padding: clamp(40px, 5vw, 56px) var(--pad);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
}
.foot-brand { font-size: 1.05rem; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: .95rem;
  font-weight: 500;
}
.foot-links a {
  color: var(--ink-mute);
  transition: color .2s ease;
}
.foot-links a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
/* Hervorgehobener Link (Inspirieren lassen) */
.foot-links .foot-highlight {
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  transition: background .15s ease;
}
.foot-links .foot-highlight:hover {
  color: #FFFFFF;
  background: var(--primary-d);
  text-decoration: none;
}
.foot-copy {
  margin: 0;
  font-size: .85rem;
  color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}


/* ============================================================
   Inspirieren-Seite (inspirieren.html)
   ============================================================ */
.insp-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad);
  background: rgba(244, 246, 245, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-cta {
  font-weight: 600;
  font-size: .95rem;
  color: #FFFFFF;
  background: var(--primary);
  border: 1px solid var(--primary-d);
  border-radius: 999px;
  padding: 9px 18px;
  white-space: nowrap;
  transition: background .15s ease;
}
.topbar-cta:hover { background: var(--primary-d); color: #FFFFFF; }

.insp-hero {
  padding: clamp(64px, 9vw, 120px) var(--pad) clamp(48px, 6vw, 80px);
  text-align: center;
}
.insp-hero-inner { max-width: 780px; margin: 0 auto; }
.insp-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.5vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--ink);
  margin: 0 0 20px;
}
.insp-lede {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-mute);
  max-width: 58ch;
  margin: 0 auto 36px;
}
.insp-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.insp-nav a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary-d);
  background: var(--primary-12);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 9px 18px;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.insp-nav a:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.insp-section {
  padding: clamp(56px, 8vw, 104px) var(--pad);
  /* Anker-Ziele nicht unter der sticky Topbar verstecken */
  scroll-margin-top: 90px;
}
.insp-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.insp-section h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 14px;
}
.insp-section h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  border-radius: 2px;
  background: var(--wood);
  margin-top: 16px;
}
.insp-section-lede {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 60ch;
  margin: 0 0 clamp(28px, 4vw, 44px);
}

/* Kategorie-Kopf: Text links, Wicht-Bild rechts */
.insp-head {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.insp-head .insp-section-lede { margin-bottom: 0; }
.insp-head-img {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.insp-head-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  .insp-head {
    grid-template-columns: 1fr 108px;
    gap: 18px;
    align-items: start;
  }
  .insp-head-img { border-radius: 14px; margin-top: 6px; }
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}
.idea-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid #CFDDD5;
  border-radius: 22px;
  padding: clamp(24px, 2.5vw, 30px);
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease-enter), box-shadow .35s ease, border-color .3s ease;
}
.idea-card::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1.5px dashed rgba(31, 77, 58, 0.55);
  border-radius: 14px;
  pointer-events: none;
}
.idea-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.idea-chips span {
  font-size: .78rem;
  font-weight: 600;
  color: var(--primary-d);
  background: var(--primary-12);
  border-radius: 999px;
  padding: 6px 12px;
  line-height: 1;
}
.idea-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 10px;
}
.idea-card p {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 20px;
}
.idea-link {
  margin-top: auto;
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary);
}
.idea-link span {
  display: inline-block;
  transition: transform .25s var(--ease-enter);
}
.idea-link:hover { color: var(--primary-d); }
.idea-link:hover span { transform: translateX(4px); }

@media (max-width: 980px) {
  .idea-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .idea-grid { grid-template-columns: 1fr; }
}

@media (hover: hover) and (pointer: fine) {
  .idea-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(31, 77, 58, 0.28);
  }
}


/* ============================================================
   Rechtsseiten (Impressum, Datenschutz)
   ============================================================ */
.legal-section {
  padding: clamp(56px, 8vw, 104px) var(--pad) clamp(72px, 9vw, 120px);
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-inner h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 12px;
}
.legal-stand {
  font-size: .92rem;
  color: var(--ink-mute);
  margin: 0 0 8px;
}
.legal-inner h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 40px 0 12px;
  scroll-margin-top: 90px;
}
.legal-inner h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0 0 10px;
}
.legal-inner p,
.legal-inner li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-mute);
}
.legal-inner p { margin: 0 0 14px; }
.legal-inner ul { margin: 0 0 14px; padding-left: 22px; }
.legal-inner a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-inner a:hover { color: var(--primary-d); }
.legal-callout {
  background: #FFFFFF;
  border: 1px solid #CFDDD5;
  border-left: 4px solid var(--primary);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 20px 0;
}
.legal-callout p:last-child { margin-bottom: 0; }


/* ============================================================
   Reveal + Hover
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease-enter), transform .75s var(--ease-enter);
}
[data-reveal].visible { opacity: 1; transform: none; }

@media (hover: hover) and (pointer: fine) {
  .list-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(31, 77, 58, 0.22);
  }
  .list-cards .list-card:nth-child(1):hover {
    box-shadow: var(--shadow-card-hover), 0 0 56px -8px rgba(111, 177, 140, 0.55);
    border-color: rgba(31, 77, 58, 0.38);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .how-h2, .how-step {
    transform: none;
    transition-duration: .12s;
    transition-delay: 0s !important;
  }
  .list-card {
    transform: none;
    animation-duration: .12s !important;
    animation-delay: 0s !important;
  }
  .list-card:hover { transform: none; }
  .how-step:not(:last-child)::before {
    transition-duration: .12s;
    transition-delay: 0s !important;
  }
  .stack-body h2::after {
    transition-duration: .12s;
    transition-delay: 0s !important;
  }
  @keyframes cardIn {
    from { opacity: 0; translate: 0 0; }
    to   { opacity: 1; translate: 0 0; }
  }
}
