:root {
  /* Basis */
  --color-paper: #F6F1E7;
  --color-paper-alt: #EFE7D8;

  /* Text & Grounding */
  --color-erdbraun: #3B2F26;
  --color-erdbraun-70: rgba(59, 47, 38, 0.7);

  /* Primär: Waldgrün */
  --color-waldgruen: #2C3D2F;
  --color-waldgruen-dark: #1E2B21;

  /* Akzent: warmes Gold */
  --color-gold: #B98B4E;
  --color-gold-dark: #9C7440;

  /* Sekundärer Akzent: gedeckte Erde */
  --color-terrakotta: #A9694A;

  /* Linien */
  --color-hairline: rgba(59, 47, 38, 0.15);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  --fs-h1: clamp(2.5rem, 5vw, 4rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.5rem);
  --fs-body: 1.125rem;
  --lh-body: 1.6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-erdbraun);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ---------- Background texture: full-bleed marble + wood grain ---------- */

body {
  background-color: var(--color-paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='520' height='520'><filter id='m'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='4' seed='7' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.23  0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23m)'/></svg>");
  background-size: 520px 520px;
}

.nav, footer {
  position: relative;
  background-color: var(--color-paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='520' height='520'><filter id='m2'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='4' seed='7' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.23  0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23m2)'/></svg>");
  background-size: 520px 520px;
}

.nav {
  background-color: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(6px);
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 980px;
}

section {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='520' height='520'><filter id='m3'><feTurbulence type='fractalNoise' baseFrequency='0.012' numOctaves='4' seed='7' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.23  0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23m3)'/></svg>");
  background-size: 520px 520px;
}

section.section--alt {
  background-color: var(--color-paper-alt);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='560' height='560'><filter id='w'><feTurbulence type='fractalNoise' baseFrequency='0.010' numOctaves='3' seed='11' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.23  0 0 0 0 0.18  0 0 0 0 0.15  0 0 0 0.09 0'/></filter><rect width='100%25' height='100%25' filter='url(%23w)'/></svg>");
  background-size: 560px 560px;
}

/* ---------- Dark wood-ring section (rings + grain around an off-center knot) ---------- */

.cta-section, .pull-band {
  position: relative;
  background-color: var(--color-waldgruen);
  background-image:
    radial-gradient(circle at 30% 50%, rgba(20, 30, 23, 0.95) 0, rgba(20, 30, 23, 0.55) 45px, transparent 100px),
    repeating-radial-gradient(circle at 30% 50%, transparent 0, transparent 13px, rgba(185, 139, 78, 0.22) 14px, rgba(185, 139, 78, 0.22) 16px),
    repeating-radial-gradient(circle at 27% 47%, transparent 0, transparent 8px, rgba(217, 178, 122, 0.16) 9px, rgba(217, 178, 122, 0.16) 10px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='460' height='460'><filter id='d'><feTurbulence type='turbulence' baseFrequency='0.004 0.12' numOctaves='4' seed='9' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.73  0 0 0 0 0.55  0 0 0 0 0.31  0 0 0 0.16 0'/></filter><rect width='100%25' height='100%25' filter='url(%23d)'/></svg>");
  background-size: 900px 900px, 900px 900px, 900px 900px, 460px 460px;
  background-repeat: repeat;
}

@media (max-width: 640px) {
  section { padding: 72px 0; }
}

/* Eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-waldgruen);
  margin: 0 0 20px;
}

/* Headlines */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--color-waldgruen);
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.01em;
  color: var(--color-waldgruen);
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 0;
}

.section-title::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 16px;
  background: var(--color-waldgruen);
  border-radius: 1px;
}

.section-title--center::after {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  font-size: 1.3rem;
  font-weight: 500;
}

p {
  margin: 0 0 20px;
}

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

.lede {
  font-size: 1.25rem;
  color: var(--color-erdbraun-70);
  max-width: 620px;
}

.prose p {
  max-width: 640px;
}

.prose p + p {
  margin-top: 20px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-paper);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 3px;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-gold-dark);
}

/* Hero */
.hero {
  padding: 160px 0 120px;
}

.gold-wave {
  position: absolute;
  top: 4%;
  left: 0;
  width: 100%;
  max-width: 900px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.hero.hero--split > .container {
  position: relative;
  z-index: 1;
}

.hero .eyebrow { margin-bottom: 24px; }

.hero h1 {
  margin-bottom: 28px;
}

.hero .lede {
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .hero { padding: 96px 0 64px; }
}

/* Für wen */
.criteria-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  max-width: 640px;
}

.criteria-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: var(--color-erdbraun);
}

.criteria-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

/* Ebenen (Womit du hier arbeitest) */
.ebenen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

@media (max-width: 760px) {
  .ebenen { grid-template-columns: 1fr; gap: 40px; }
}

.ebene .ebene-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--color-gold-dark);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

.ebene h3 {
  margin-bottom: 12px;
}

.ebene p {
  color: var(--color-erdbraun-70);
  font-size: 1rem;
}

/* Ergebnis-Liste */
.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-top: 48px;
}

@media (max-width: 640px) {
  .result-grid { grid-template-columns: 1fr; }
}

.result-item {
  padding: 20px 0;
  border-top: 1px solid var(--color-hairline);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-waldgruen);
}

/* Prozess */
.process {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--color-hairline);
}

.process-step:last-child {
  border-bottom: 1px solid var(--color-hairline);
}

.process-step .step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-gold);
  line-height: 1;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  color: var(--color-erdbraun-70);
  max-width: 560px;
}

@media (max-width: 560px) {
  .process-step { grid-template-columns: 56px 1fr; }
  .process-step .step-num { font-size: 1.6rem; }
}

/* Angebot / Pilotpaket card */
.offer-card {
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  border-radius: 4px;
  padding: 48px;
  margin-top: 48px;
}

@media (max-width: 640px) {
  .offer-card { padding: 32px 24px; }
}

.offer-card .offer-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
}

.offer-meta div {
  min-width: 140px;
}

.offer-meta .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-erdbraun-70);
  margin-bottom: 6px;
}

.offer-meta .value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-waldgruen);
}

.offer-card ul {
  padding-left: 20px;
  margin: 0;
}

.offer-card li {
  margin-bottom: 10px;
}

/* Quote / Pain point moment */
.quote-block {
  border-left: 3px solid var(--color-terrakotta);
  padding-left: 28px;
  margin: 40px 0;
}

.quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-erdbraun);
  line-height: 1.4;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

@media (max-width: 640px) {
  .about { grid-template-columns: 1fr; }
}

.about__image {
  width: 200px;
  height: 240px;
  background: var(--color-paper-alt);
  border: 1px solid var(--color-hairline);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-erdbraun-70);
  font-size: 0.85rem;
  text-align: center;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA final */
.cta-section {
  color: var(--color-paper);
  text-align: center;
}

.cta-section .section-title,
.cta-section h2 {
  color: var(--color-paper);
}

.cta-section .section-title::after {
  background: var(--color-gold);
  margin-left: auto;
  margin-right: auto;
}

.cta-section .lede {
  color: rgba(246, 241, 231, 0.75);
  margin-left: auto;
  margin-right: auto;
}

.cta-section .final-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 40px;
  color: rgba(246, 241, 231, 0.9);
}

/* Footer */
.footer {
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-erdbraun-70);
}

.footer a {
  color: var(--color-erdbraun-70);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--color-hairline);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  max-width: 1080px;
}

.nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-waldgruen);
  text-decoration: none;
}

.nav .logo img {
  width: 30px;
  height: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--color-erdbraun);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--color-waldgruen);
  font-weight: 500;
}

.nav .btn-primary {
  padding: 10px 22px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .nav-links { gap: 20px; }
  .nav-links a:not(.btn-primary) { display: none; }
}

/* ---------- Visual life: organic placeholder ---------- */

/* ---------- Card stack (layered, tilted depth) ---------- */

.card-stack {
  position: relative;
}

.card-stack__layer {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
}

.card-stack__layer--back {
  background: var(--color-gold);
  opacity: 0.16;
  transform: rotate(-6deg) translate(4%, 5%);
}

.card-stack__layer--mid {
  background: var(--color-waldgruen);
  opacity: 0.09;
  transform: rotate(4deg) translate(-3%, 4%);
}

.card-stack .visual-placeholder {
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 48px rgba(59, 47, 38, 0.14);
}

[data-reveal].reveal-tilt {
  transform: translateY(28px) rotate(-2.5deg);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].reveal-tilt.is-visible {
  transform: translateY(0) rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal].reveal-tilt { transform: none; }
}

.visual-placeholder {
  position: relative;
  background: var(--color-paper-alt);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-placeholder svg {
  width: 60%;
  height: 60%;
}

.visual-placeholder .ph-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-erdbraun-70);
}

/* ---------- Split hero (visual + text) ---------- */

.hero--split .container {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero--split .visual-placeholder {
  aspect-ratio: 4 / 5;
}

@media (max-width: 860px) {
  .hero--split .container { grid-template-columns: 1fr; }
  .hero--split .visual-placeholder { order: -1; aspect-ratio: 16 / 10; }
}

/* ---------- Image + text split section ---------- */

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: center;
  margin-top: 8px;
}

.split.split--reverse {
  grid-template-columns: 1.2fr 0.8fr;
}

.split.split--reverse .visual-placeholder { order: 2; }

.split .visual-placeholder {
  aspect-ratio: 3 / 4;
}

@media (max-width: 760px) {
  .split, .split.split--reverse {
    grid-template-columns: 1fr;
  }
  .split .visual-placeholder,
  .split.split--reverse .visual-placeholder { order: -1; aspect-ratio: 16 / 10; }
}

/* ---------- Pull quote band (full-bleed rhythm break) ---------- */

.pull-band {
  color: var(--color-paper);
  text-align: center;
  padding: 96px 0;
}

.pull-band p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto;
  color: var(--color-paper);
}

@media (max-width: 640px) {
  .pull-band { padding: 64px 0; }
}

/* ---------- Angebotsstufen (tier cards) ---------- */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 860px) {
  .tier-grid { grid-template-columns: 1fr; }
}

.tier-card {
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  border-radius: 6px;
  padding: 32px 28px;
}

.tier-card .tier-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  margin-bottom: 12px;
}

.tier-card h3 {
  margin-bottom: 12px;
}

.tier-card p {
  color: var(--color-erdbraun-70);
  font-size: 0.98rem;
}

.tier-card--highlight {
  border: 2px solid var(--color-waldgruen);
}

/* ---------- Page header (for inner pages) ---------- */

.page-header {
  padding: 140px 0 80px;
}

.page-header .eyebrow { margin-bottom: 20px; }

@media (max-width: 640px) {
  .page-header { padding: 96px 0 48px; }
}

/* ---------- Simple contact form ---------- */

.contact-form {
  margin-top: 40px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-erdbraun-70);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-erdbraun);
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  border-radius: 3px;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-waldgruen);
}

.contact-info {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--color-hairline);
}

.contact-info .label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-erdbraun-70);
  margin-bottom: 6px;
}

.contact-info a {
  color: var(--color-waldgruen);
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-decoration: none;
}

/* ---------- Scroll motion: reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.stagger > [data-reveal]:nth-child(1) { transition-delay: 0s; }
.stagger > [data-reveal]:nth-child(2) { transition-delay: 0.09s; }
.stagger > [data-reveal]:nth-child(3) { transition-delay: 0.18s; }
.stagger > [data-reveal]:nth-child(4) { transition-delay: 0.27s; }
.stagger > [data-reveal]:nth-child(5) { transition-delay: 0.36s; }
.stagger > [data-reveal]:nth-child(6) { transition-delay: 0.45s; }

/* ---------- Scroll motion: parallax visual ---------- */

.parallax {
  transition: transform 0.1s linear;
}

/* ---------- Scroll motion: SVG line draw-in ---------- */

.svg-draw path {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.svg-draw circle {
  opacity: 0;
  transform-origin: center;
  transform: scale(0.4);
  transition: opacity 0.6s ease 1.1s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s;
}

.is-visible .svg-draw path {
  stroke-dashoffset: 0;
}

.is-visible .svg-draw circle {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Nav scrolled state ---------- */

.nav.is-scrolled {
  box-shadow: 0 1px 0 var(--color-hairline), 0 4px 16px rgba(59, 47, 38, 0.06);
}

/* ---------- Quiz funnel: minimal header ---------- */

.nav--minimal .nav-links { display: none; }

/* ---------- Quiz: bullet list (reuses criteria-list dot style) ---------- */

.quiz-bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  max-width: 560px;
}

.quiz-bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--color-erdbraun);
}

.quiz-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
}

.quiz-hint {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-erdbraun-70);
}

/* ---------- Quiz: shell + progress ---------- */

.quiz-shell {
  padding: 96px 0 120px;
  min-height: 60vh;
}

@media (max-width: 640px) {
  .quiz-shell { padding: 64px 0 80px; }
}

.quiz-progress {
  margin-bottom: 40px;
}

.quiz-progress__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-erdbraun-70);
  margin-bottom: 12px;
}

.quiz-progress__track {
  height: 4px;
  background: var(--color-hairline);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width 0.35s ease;
}

/* ---------- Quiz: question + options ---------- */

.quiz-question {
  max-width: 640px;
  margin: 0 0 32px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.quiz-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--color-paper-alt);
  border: 1px solid var(--color-hairline);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.quiz-option:hover {
  border-color: var(--color-gold);
}

.quiz-option__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.quiz-option__input:checked ~ .quiz-option__letter {
  background: var(--color-waldgruen);
  color: var(--color-paper);
}

.quiz-option__input:focus-visible ~ .quiz-option__letter {
  outline: 2px solid var(--color-waldgruen);
  outline-offset: 2px;
}

.quiz-option:has(.quiz-option__input:checked) {
  border-color: var(--color-waldgruen);
  background: var(--color-paper);
}

.quiz-option__letter {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-paper);
  border: 1px solid var(--color-hairline);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-erdbraun);
  transition: background 0.15s ease, color 0.15s ease;
}

.quiz-option__text {
  color: var(--color-erdbraun);
}

.quiz-back[hidden] {
  display: none;
}

.quiz-back {
  display: inline-block;
  margin-top: 28px;
  color: var(--color-erdbraun-70);
  text-decoration: underline;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
}

.quiz-back:hover {
  color: var(--color-waldgruen);
}

/* ---------- Quiz: result page ---------- */

.result-block + .result-block {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-hairline);
}

.result-block h3 {
  margin-bottom: 12px;
}
