/* HofLabor — base styles
   Brand blue + ochre, Montserrat. Mobile-first. */

:root {
  --blue-900: #143a4d;   /* deep teal-navy — headings, dark sections */
  --blue-700: #1d5e79;   /* teal-blue — links, accents */
  --blue-500: #2f7d9a;   /* mid blue — eyebrows */
  --blue-300: #9cc3d2;
  --ochre: #9a6212;      /* primary buttons (matches original) */
  --ochre-dark: #7a4d0e;
  --sand-100: #f4efe6;
  --sand-200: #e8e1d3;
  --ink: #20303a;
  --ink-soft: #4a565e;
  --white: #ffffff;
  --maxw: 980px;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(20, 58, 77, 0.12);
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--sand-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; color: var(--blue-900); }
h1 { font-size: clamp(2rem, 4.6vw, 3.3rem); font-weight: 800; letter-spacing: -0.01em; margin: 0 0 .4em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 .5em; }
h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 .4em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: var(--blue-700); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(2.5rem, 6vw, 5rem) 0; }
.section--alt { background: var(--sand-200); }
.section--dark { background: var(--blue-900); color: rgba(255,255,255,.9); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; font-weight: 700; color: var(--blue-500); margin: 0 0 .4em; }
.lead { font-size: 1.15rem; max-width: 62ch; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 230, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-200);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .65rem 1.25rem; max-width: var(--maxw); margin: 0 auto; }
.nav__logo img { height: 44px; width: auto; display: block; }
.nav__links { display: flex; flex-wrap: wrap; gap: 1.1rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__links a { text-decoration: none; color: var(--blue-900); font-weight: 600; font-size: .95rem; border-radius: 999px; padding: .35rem .7rem; transition: color .15s ease, background .15s ease, box-shadow .15s ease; }
.nav__links a:hover { color: var(--blue-700); background: rgba(29, 94, 121, 0.08); }
.nav__links a[aria-current="page"] { color: var(--white); background: var(--blue-700); box-shadow: 0 2px 10px rgba(20, 58, 77, 0.22); }
.nav__dropdown--active > summary { color: var(--blue-700); background: rgba(29, 94, 121, 0.1); border-radius: 999px; padding: .35rem .7rem; }
.dropdown a[aria-current="page"] { color: var(--white); background: var(--blue-700); }
.nav details { position: relative; }
.nav summary { cursor: pointer; list-style: none; font-weight: 600; font-size: .95rem; color: var(--blue-900); }
.nav summary::-webkit-details-marker { display: none; }
.nav details[open] > .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: 130%; left: 0; min-width: 230px;
  background: var(--white); border: 1px solid var(--sand-200); border-radius: 10px;
  box-shadow: var(--shadow); padding: .4rem; list-style: none; margin: 0;
}
.dropdown li a { display: block; padding: .5rem .65rem; border-radius: 7px; }
.dropdown li a:hover { background: var(--sand-100); }

/* ---------- Hero (wide band) ---------- */
.hero {
  position: relative;
  height: clamp(360px, 56vh, 560px);
  display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
/* soft bottom-only scrim — keeps the footage bright, only enough for legibility */
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(10,30,42,.45) 0%, rgba(10,30,42,.12) 45%, rgba(10,30,42,0) 70%); }
.hero__inner { max-width: 720px; }
.hero h1 { color: var(--white); text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.hero p { color: #fff; max-width: 60ch; text-shadow: 0 1px 10px rgba(0,0,0,.45); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; background: var(--ochre); color: var(--white); padding: .8rem 1.5rem; border-radius: 999px; text-decoration: none; font-weight: 700; border: none; cursor: pointer; transition: background .15s ease; }
.btn:hover { background: var(--ochre-dark); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }
.card { background: var(--white); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.card__icon { width: 56px; height: 56px; margin: 0 auto .8rem; display: block; }
.work-card { text-align: center; }
.work-card h3 { font-size: 1.05rem; }
.work-card p { text-align: justify; font-size: .9rem; }
.work-card .card__icon { fill: var(--blue-900); color: var(--blue-900); }
.work-cta { text-align: center; margin: 1.25rem 0 0; }
.work-cta a { font-weight: 700; }

.method { display: flex; gap: 1rem; align-items: flex-start; }
.method img { width: 52px; height: 52px; flex: 0 0 auto; }

/* ---------- Event box ---------- */
.event { background: var(--white); color: var(--ink); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); max-width: 440px; }
.event h3 { color: var(--blue-700); }
.field { display: flex; flex-direction: column; gap: .25rem; margin-bottom: .7rem; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea { padding: .6rem .7rem; border: 1px solid var(--sand-200); border-radius: 8px; font: inherit; }

/* ---------- Machine cards ---------- */
.machine-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.machine-card__img { aspect-ratio: 4/3; width: 100%; object-fit: cover; background: var(--sand-200); }
.machine-card__body { padding: 1.1rem 1.2rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.machine-card__body h3 { margin: 0; }
.machine-card__meta { font-size: .82rem; color: var(--blue-500); font-weight: 600; }
.machine-card__body p { font-size: .92rem; margin: 0; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: auto; padding-top: .6rem; }
.tag { font-size: .72rem; background: var(--sand-100); color: var(--blue-700); padding: .2rem .6rem; border-radius: 999px; border: 1px solid var(--sand-200); }

/* ---------- Media / layout ---------- */
.figure-wide img { width: 100%; height: auto; border-radius: var(--radius); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: center; }
.feature img { width: 100%; border-radius: var(--radius); }
@media (max-width: 760px) { .feature { grid-template-columns: 1fr; } }

/* ---------- Supporters (tiered) ---------- */
.supporter-tier-head { margin: 2.6rem 0 1.2rem; }
.supporter-row { display: grid; grid-template-columns: 240px 1fr; gap: 1.6rem 2rem; align-items: start; padding: 1.1rem 0; border-top: 1px solid var(--sand-200); }
.supporter-row:first-of-type { border-top: none; }
.supporter-logo { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
.supporter-logo img,
.supporter-logo svg { width: auto; max-width: 100%; height: auto; max-height: 130px; object-fit: contain; display: block; }
.supporter-logo--wide { max-width: 220px; }
.supporter-logo__fourfold { width: 200px; max-width: 100%; height: auto; }
.migros-brand { font-size: .78rem; line-height: 1.45; color: var(--ink-soft); }
.migros-brand__prefix { margin: 0 0 .35rem; font-size: .75rem; }
.migros-brand img { max-width: 200px; max-height: none; }
.supporter-name { font-weight: 800; font-size: 1.1rem; color: var(--blue-900); text-decoration: none; }
.supporter-row p { margin: 0; font-size: .92rem; }
@media (max-width: 680px) { .supporter-row { grid-template-columns: 1fr; gap: .8rem; } }

.logos { display: flex; flex-wrap: wrap; gap: 2.2rem 2.6rem; align-items: center; }
.logos a { display: inline-flex; align-items: center; }
.logos img { height: auto; display: block; }
.logos--muted img { filter: grayscale(1); opacity: .7; }
.supporter-former-head { margin: 2.6rem 0 1.2rem; text-align: center; }

.video-embed { position: relative; width: 100%; max-width: 860px; margin: 2rem auto 0; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.awards { max-width: 860px; margin: 0 auto; }
.awards__title { text-align: center; margin: 0 0 1.5rem; }
.awards__viewport { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.awards__track { display: flex; transition: transform .45s ease; }
.awards__slide { flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: center; padding: 1.25rem; min-height: 240px; }
.awards__slide img { width: 100%; height: auto; border-radius: 10px; }
.awards__slide h3 { margin: 0 0 .35em; font-size: 1.15rem; }
.awards__slide p { margin: 0; font-size: .92rem; }
.awards__nav { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.awards__btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--sand-200); background: var(--white); color: var(--blue-900); font-size: 1.2rem; cursor: pointer; }
.awards__btn:hover { background: var(--sand-100); }
.awards__dots { display: flex; justify-content: center; gap: .45rem; margin-top: .75rem; }
.awards__dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--blue-500); background: var(--blue-300); cursor: pointer; padding: 0; }
.awards__dot[aria-current="true"] { background: var(--blue-700); border-color: var(--blue-700); }
@media (max-width: 760px) { .awards__slide { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.85); padding: 2.5rem 0; }
.site-footer a { color: var(--blue-300); }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: center; }
.social { display: flex; gap: 1rem; }
.social a { color: var(--blue-700); font-weight: 600; text-decoration: none; }
.site-footer .social a { color: var(--blue-300); }

.note { font-size: .85rem; color: var(--ink-soft); background: #fffbe6; border: 1px solid #f0e4a8; border-radius: 8px; padding: .5rem .75rem; }

/* ---------- Inner pages ---------- */
.page-hero { padding: 2.5rem 0 1.5rem; background: var(--sand-100); border-bottom: 1px solid var(--sand-200); }
.page-hero h1 { margin: 0; }
.page-hero .lead { margin-bottom: .6rem; }
.about-hero { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; }
.about-hero__slowgrow { text-align: center; padding-top: .25rem; }
.about-hero__slowgrow img { display: block; width: 151px; height: auto; margin: 0 auto; }
.about-hero__slowgrow-link { display: inline-block; margin-top: .65rem; font-weight: 700; font-size: .95rem; }
@media (max-width: 760px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero__slowgrow { justify-self: center; }
}
.nav__lang a { font-weight: 700; font-size: .85rem; padding: .25rem .5rem; border: 1px solid var(--sand-200); border-radius: 6px; }
.machine-highlight { display: grid; grid-template-columns: 280px 1fr; gap: 1.5rem; padding: 1.25rem 0; border-top: 1px solid var(--sand-200); align-items: start; }
.machine-highlight:first-of-type { border-top: none; }
.machine-highlight img { width: 100%; border-radius: 10px; }
.dev-area { margin: 2rem 0; padding: 1.5rem; background: var(--white); border-radius: 12px; border: 1px solid var(--sand-200); }
.dev-area h3 { margin-top: 0; }
.dev-area__row { display: grid; grid-template-columns: 62px 1fr; gap: 1rem; margin: 1rem 0; align-items: start; }
.dev-area__row img { width: 62px; height: auto; }
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.doc-card { background: var(--white); border: 1px solid var(--sand-200); border-radius: 12px; padding: 1.25rem; }
.doc-card h3 { margin-top: 0; font-size: 1.05rem; }
.faq-item { border-top: 1px solid var(--sand-200); padding: 1rem 0; }
.faq-item summary { font-weight: 700; cursor: pointer; color: var(--blue-900); }
.faq-item p { margin: .75rem 0 0; }
.faq-item ul { margin: .75rem 0 0; padding-left: 1.2rem; }
.faq-item li p { margin: .25rem 0; }
.faq-ask h2 { margin-top: 0; }

.page-carousel { max-width: 920px; margin: 0 auto; }
.page-carousel__viewport { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.page-carousel__track { display: flex; transition: transform .45s ease; }
.page-carousel__slide { flex: 0 0 100%; padding: 0; }
.page-carousel__slide img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.page-carousel__caption { padding: 1rem 1.25rem 1.25rem; }
.page-carousel__caption h3 { margin: 0 0 .35em; font-size: 1.1rem; }
.page-carousel__caption p { margin: 0; font-size: .92rem; }
.page-carousel__nav { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.page-carousel__btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--sand-200); background: var(--white); color: var(--blue-900); font-size: 1.2rem; cursor: pointer; }
.page-carousel__dots { display: flex; justify-content: center; gap: .45rem; margin-top: .75rem; }
.page-carousel__dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--blue-500); background: var(--blue-300); cursor: pointer; padding: 0; }
.page-carousel__dot[aria-current="true"] { background: var(--blue-700); border-color: var(--blue-700); }

.milestone-grid { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; align-items: start; }
.milestone-grid ul { margin: 1rem 0 0; padding-left: 1.2rem; }
.milestone-grid li { margin-bottom: .5rem; }
@media (max-width: 760px) { .milestone-grid { grid-template-columns: 1fr; } }

.doc-search { max-width: 420px; margin: 0 0 2rem; }
.doc-search input { width: 100%; padding: .65rem .75rem; border: 1px solid var(--sand-200); border-radius: 8px; font: inherit; }
.doc-library { display: flex; flex-direction: column; gap: 2.5rem; }
.doc-section { display: grid; grid-template-columns: minmax(200px, 320px) 1fr; gap: 1.5rem; align-items: start; padding-bottom: 2rem; border-bottom: 1px solid var(--sand-200); }
.doc-section:last-child { border-bottom: none; }
.doc-section[hidden] { display: none !important; }
.doc-preview { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.doc-preview img { width: 100%; height: auto; display: block; }
.doc-section h3 { margin: 0 0 .5rem; }
.doc-section ul { margin: .5rem 0 1rem; padding-left: 1.2rem; font-size: .95rem; }
@media (max-width: 760px) { .doc-section { grid-template-columns: 1fr; } }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.board-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1.5rem; max-width: 640px; }
@media (max-width: 780px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid, .board-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.6rem 1.4rem; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(20, 58, 77, 0.18); }
.team-card__photo {
  width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
  margin-bottom: 1rem; background: var(--sand-200);
}
.team-card h3 { margin: 0 0 .25rem; }
.team-card p { margin: 0 0 .9rem; font-size: .92rem; }
.team-card__social { margin-top: auto; }
.team-card__social a {
  display: inline-block; font-size: .85rem; font-weight: 600; text-decoration: none;
  padding: .35rem .9rem; border-radius: 999px;
  background: rgba(29, 94, 121, 0.08); color: var(--blue-700);
  transition: background .15s ease;
}
.team-card__social a:hover { background: rgba(29, 94, 121, 0.16); }

/* ---------- Timeline (About — Woher wir kommen) ---------- */
.timeline {
  --timeline-rail: 120px;
  --timeline-node: 100px;
  --timeline-connector: 1.75rem;
  --timeline-spine: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  padding: 0;
}

/* Continuous vertical spine — centered in the rail column */
.timeline::before {
  content: "";
  position: absolute;
  left: calc(var(--timeline-rail) / 2);
  top: calc(var(--timeline-node) / 2);
  bottom: calc(var(--timeline-node) / 2);
  width: var(--timeline-spine);
  background: var(--blue-300);
  transform: translateX(-50%);
  z-index: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: var(--timeline-rail) minmax(0, 1fr);
  gap: var(--timeline-connector);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  position: relative;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__marker {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

/* Horizontal connector from node to text */
.timeline__marker::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  width: var(--timeline-connector);
  height: var(--timeline-spine);
  background: var(--blue-300);
  transform: translateY(-50%);
}

.timeline__badge {
  width: var(--timeline-node);
  height: var(--timeline-node);
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--sand-100);
  border: 3px solid var(--sand-200);
  box-shadow: 0 0 0 2px var(--blue-300);
}

.timeline__content {
  min-width: 0;
  padding-top: 0.15rem;
}

.timeline__year {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue-500);
}

.timeline__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-900);
}

.timeline__content > p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.timeline__cta {
  margin-top: 1rem;
}

/* Present chapter — larger node + highlight panel */
.timeline__item--current {
  --timeline-node: 120px;
}

.timeline__item--current .timeline__badge {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 3px var(--blue-500);
}

.timeline__item--current .timeline__marker::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-500);
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 3px var(--sand-200);
}

.timeline__item--current .timeline__content {
  background: var(--sand-100);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  margin-top: -0.1rem;
}

@media (max-width: 620px) {
  .timeline {
    --timeline-rail: 108px;
    --timeline-node: 96px;
    --timeline-connector: 1.15rem;
  }

  .timeline__item--current {
    --timeline-node: 108px;
  }
}

.timeline-embed iframe { width: 100%; min-height: 70vh; border: 0; border-radius: 12px; display: block; }

/* ---------- Methoden page ---------- */
.method-nav { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; margin-top: 1.75rem; justify-content: center; }
.method-nav a { display: flex; flex-direction: column; align-items: center; gap: .55rem; text-decoration: none; color: var(--blue-900); font-weight: 600; font-size: .82rem; text-align: center; max-width: 150px; line-height: 1.25; }
.method-nav a:hover { color: var(--blue-700); }
.method-nav img { width: 72px; height: 72px; object-fit: contain; }

.method-heading { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.method-heading img { width: 80px; height: 80px; flex-shrink: 0; object-fit: contain; }
.method-heading h2 { margin: 0; }

.method-block { border-top: 1px solid var(--sand-200); padding: 1rem 0; }
.method-block__label { margin: 0 0 .6rem; font-size: 1rem; font-weight: 700; color: var(--blue-900); text-transform: none; letter-spacing: 0; }
.method-block__body ul { margin: 0; padding-left: 1.2rem; }
.method-block__body li { margin-bottom: .35rem; }
.method-block__body p { margin: 0 0 .75rem; }

.method-subhead { font-size: 1.05rem; font-weight: 700; color: var(--blue-900); margin: 1.75rem 0 .75rem; }

.effect-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 1.5rem 0; }
.effect-box { text-align: center; font-size: .82rem; line-height: 1.35; }
.effect-box img { width: 56px; height: 56px; margin: 0 auto .5rem; display: block; object-fit: contain; }

.ctf-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; margin: 2rem 0; text-align: center; }
.ctf-compare img { max-width: 280px; width: 100%; margin: 0 auto; display: block; }
.ctf-compare p { font-size: .9rem; margin-top: .5rem; }

.callout { background: var(--white); border-left: 4px solid var(--blue-700); padding: 1.25rem 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); margin: 1.5rem 0; }
.callout h3 { margin-top: 0; font-size: 1.05rem; }
.callout ul { margin: .5rem 0 0; padding-left: 1.2rem; }

.vielfalt-chart { position: relative; margin: 1.5rem 0; border-radius: var(--radius); overflow: hidden; background: #61674d; }
.vielfalt-chart img { display: block; width: 100%; height: auto; }
.vielfalt-chart__hotspot {
  position: absolute; left: var(--left); top: var(--top); width: var(--w); height: var(--h);
  border: none; padding: 0; margin: 0; background: transparent; cursor: pointer; border-radius: 4px;
}
.vielfalt-chart__hotspot::after {
  content: "+"; position: absolute; right: 2px; bottom: 2px; width: 1.6rem; height: 1.6rem;
  display: grid; place-items: center; border-radius: 50%; background: rgba(97, 103, 77, 0.92);
  color: var(--white); font-weight: 800; font-size: 1.1rem; line-height: 1; pointer-events: none;
}
.vielfalt-chart__hotspot:hover::after, .vielfalt-chart__hotspot.is-active::after { background: var(--blue-900); }
.vielfalt-chart__hotspot:focus-visible { outline: 2px solid var(--ochre); outline-offset: 2px; }
.vielfalt-chart__panel {
  margin-top: .75rem; padding: 1rem 1.25rem; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); min-height: 4.5rem;
}
.vielfalt-chart__panel h3 { margin: 0 0 .5rem; font-size: 1.05rem; }
.vielfalt-chart__panel p { margin: 0; font-size: .95rem; }

.method-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 760px) {
  .effect-row { grid-template-columns: repeat(2, 1fr); }
  .ctf-compare { grid-template-columns: 1fr; }
}
.timeline-embed { width: 100%; min-height: 70vh; border: 1px solid var(--sand-200); border-radius: 12px; background: var(--sand-100); }
@media (max-width: 680px) { .machine-highlight { grid-template-columns: 1fr; } }

.machine-carousel { max-width: 920px; margin: 0 auto; }
.machine-carousel__title { text-align: center; margin: 0 0 1.5rem; }
.machine-carousel__viewport { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.machine-carousel__track { display: flex; transition: transform .45s ease; }
.machine-carousel__slide { flex: 0 0 100%; display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.25rem; align-items: center; padding: 1.25rem; min-height: 260px; }
.machine-carousel__slide img { width: 100%; height: auto; border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; }
.machine-carousel__slide h3 { margin: 0 0 .35em; font-size: 1.35rem; }
.machine-carousel__slide p { margin: 0; font-size: .92rem; }
.machine-carousel__nav { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.machine-carousel__btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--sand-200); background: var(--white); color: var(--blue-900); font-size: 1.2rem; cursor: pointer; }
.machine-carousel__btn:hover { background: var(--sand-100); }
.machine-carousel__dots { display: flex; justify-content: center; gap: .45rem; margin-top: .75rem; flex-wrap: wrap; }
.machine-carousel__dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--blue-500); background: var(--blue-300); cursor: pointer; padding: 0; }
.machine-carousel__dot[aria-current="true"] { background: var(--blue-700); border-color: var(--blue-700); }
@media (max-width: 760px) { .machine-carousel__slide { grid-template-columns: 1fr; } }

.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.partner-card { background: var(--white); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); }
.partner-card img { max-width: 168px; height: auto; display: block; margin-bottom: 1rem; }
.partner-card .partner-logo { display: inline-block; margin-bottom: 1rem; text-decoration: none; }
.partner-card .partner-logo svg { display: block; }
@media (max-width: 620px) { .partner-grid { grid-template-columns: 1fr; } }

.park-toolbar { margin: 1.5rem 0 2rem; }
.park-back { font-weight: 700; margin-bottom: 1.25rem; display: inline-block; }
.park-search { display: flex; flex-wrap: wrap; gap: .75rem; align-items: flex-end; margin-bottom: 1.25rem; }
.park-search label { font-size: .85rem; font-weight: 600; width: 100%; }
.park-search input { flex: 1; min-width: 200px; padding: .65rem .75rem; border: 1px solid var(--sand-200); border-radius: 8px; font: inherit; }
.park-filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.park-filter { font-size: .82rem; font-weight: 600; padding: .45rem .85rem; border-radius: 999px; border: 1px solid var(--sand-200); background: var(--white); color: var(--blue-900); cursor: pointer; }
.park-filter:hover { background: var(--sand-100); }
.park-filter.is-active { background: var(--blue-700); color: var(--white); border-color: var(--blue-700); }
.park-empty { display: none; text-align: center; padding: 2rem; color: var(--ink-soft); }
.park-empty.is-visible { display: block; }
.machine-card[hidden] { display: none !important; }
