/* ==========================================================================
   Statementbody – Design System
   ========================================================================== */

:root {
  --bg: #f3f2ee;
  --bg-raised: #ffffff;
  --ink: #1c1b19;
  --ink-soft: #55524b;
  --ink-faint: #8a8579;
  --line: #ddd9d0;
  --accent: #c8631f;
  --accent-ink: #7a3d10;
  --accent-soft: #f3e2d1;
  --ok: #3f6b4f;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-mono: "IBM Plex Mono", "SF Mono", Consolas, monospace;

  --wrap: 1140px;
  --wrap-narrow: 760px;
  --r: 4px;
  --shadow: 0 1px 2px rgba(28, 27, 25, .04), 0 8px 28px rgba(28, 27, 25, .06);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #171512;
    --bg-raised: #211e1a;
    --ink: #efece5;
    --ink-soft: #b7b1a4;
    --ink-faint: #766f62;
    --line: #38342c;
    --accent: #e08a3e;
    --accent-ink: #f4c396;
    --accent-soft: #362317;
    --ok: #7fb595;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 28px rgba(0, 0, 0, .35);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.3rem); text-transform: uppercase; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); text-transform: uppercase; }
h3 { font-size: 1.28rem; text-transform: uppercase; letter-spacing: .01em; }
h4 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: .02em; }
p { margin: 0 0 1.1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }
strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: .55;
  flex: none;
}
.eyebrow--center { justify-content: center; }

.lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 62ch; }
.small { font-size: .92rem; color: var(--ink-faint); }
.mono { font-family: var(--font-mono); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tight { padding: clamp(48px, 6vw, 76px) 0; }
.section--raised { background: var(--bg-raised); border-block: 1px solid var(--line); }
.section--ink { background: var(--ink); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: var(--bg); }
.section--ink p, .section--ink li { color: rgba(243, 242, 238, .74); }
.section--ink .eyebrow { color: var(--accent); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .section--ink { background: #100e0c; }
  :root:not([data-theme="light"]) .section--ink h2,
  :root:not([data-theme="light"]) .section--ink h3,
  :root:not([data-theme="light"]) .section--ink h4 { color: var(--ink); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-size: .96rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
  text-align: center;
  line-height: 1.2;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-ink); color: #fff; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(200, 99, 31, .25); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn--primary { color: #171512; }
  :root:not([data-theme="light"]) .btn--primary:hover { background: var(--accent-ink); color: #171512; }
}
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--bg-raised); }
.section--ink .btn--ghost { color: var(--bg); border-color: rgba(243, 242, 238, .28); }
.section--ink .btn--ghost:hover { background: rgba(243, 242, 238, .08); color: var(--bg); border-color: rgba(243, 242, 238, .5); }
.btn--lg { padding: 1.15rem 2.3rem; font-size: 1.02rem; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------- Logo ---------- */
.logo {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--ink);
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
}
.logo em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
}
.logo b { color: var(--accent); font-weight: 700; position: relative; top: -.04em; }
.logo:hover { color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 74px; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav a:hover { color: var(--accent-ink); }
/* CTA im Nav nur auf Mobile – auf Desktop steht er separat rechts */
.nav .btn { display: none; }
.header-cta { display: inline-flex; white-space: nowrap; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: .55rem .7rem;
  cursor: pointer;
  color: var(--ink);
  line-height: 0;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* Enger gestaffelte Navigation, damit nichts umbricht */
@media (max-width: 1180px) {
  .nav { gap: 1.35rem; }
  .nav a { font-size: .71rem; letter-spacing: .09em; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav .btn { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 74px 0 auto;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 24px 1.6rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: .85rem; }
  .nav .btn { margin-top: 1.1rem; }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 7vw, 92px) 0 clamp(56px, 8vw, 104px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: .38em; }
.hero h1 .accent { color: var(--accent); }
.hero .lead { font-size: 1.2rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero-proof span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-proof span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ok); flex: none; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.hero-tag {
  position: absolute;
  left: -14px;
  bottom: 26px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: .85rem 1.15rem;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  max-width: 260px;
}
.hero-tag b {
  display: block;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: .25rem;
  font-weight: 500;
}
.hero-tag span { font-size: .92rem; color: var(--ink-soft); line-height: 1.45; display: block; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; }
  .hero-media img { aspect-ratio: 16 / 11; object-position: center 20%; }
  .hero-tag { left: auto; right: 12px; bottom: -18px; }
  .hero .lead { font-size: 1.08rem; }
}

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 2rem 1.2rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.5rem); font-weight: 600; color: var(--ink); line-height: 1; margin-bottom: .5rem; }
.stat span { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Split (Text + Bild) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--narrow-media { grid-template-columns: 1.1fr .9fr; }
.split img { border-radius: var(--r); box-shadow: var(--shadow); }
@media (max-width: 860px) { .split, .split--narrow-media { grid-template-columns: 1fr; } }

.figure-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.figure-pair figure { margin: 0; }
.figure-pair img { aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); }
.figure-pair figcaption {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: .7rem;
}

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem 1.8rem;
}
.card .num {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: .55em; }
.card p { font-size: .98rem; margin: 0; }
@media (max-width: 860px) { .cards, .cards--2 { grid-template-columns: 1fr; } }

/* ---------- Ablauf / Flow ---------- */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 3.2rem; }
.flow::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,99,31,.15), rgba(200,99,31,.6), rgba(200,99,31,.15));
}
.flow-step { position: relative; padding: 0 1.1rem; text-align: center; }
.flow-step .dot {
  position: relative;
  z-index: 2;
  width: 54px; height: 54px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid rgba(200, 99, 31, .5);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .flow-step .dot { background: #100e0c; }
}
.flow-step h4 { color: var(--bg); margin-bottom: .6em; }
.flow-step p { font-size: .95rem; margin: 0; }
.flow-step .when {
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .55rem;
}
@media (max-width: 900px) {
  .flow { grid-template-columns: 1fr; margin-top: 2.2rem; }
  .flow::before { display: none; }
  .flow-step { text-align: left; padding: 1.4rem 0 1.4rem 4.6rem; border-bottom: 1px solid rgba(243,242,238,.13); }
  .flow-step:last-child { border-bottom: none; }
  .flow-step .dot { position: absolute; left: 0; top: 1.25rem; margin: 0; }
}

/* ---------- Accordion ---------- */
.acc { border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 3rem 1.4rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--ink);
  transition: color .15s ease;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "";
  position: absolute;
  right: .35rem;
  top: 50%;
  width: 9px; height: 9px;
  border-right: 1.6px solid var(--accent);
  border-bottom: 1.6px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .22s ease;
}
.acc details[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.acc summary:hover { color: var(--accent-ink); }
.acc .acc-body { padding: 0 2.5rem 1.6rem 0; }
.acc .acc-body p { font-size: 1rem; }
.acc .acc-body p:last-child { margin-bottom: 0; }
.section--ink .acc { border-top-color: rgba(243,242,238,.16); }
.section--ink .acc details { border-bottom-color: rgba(243,242,238,.16); }
.section--ink .acc summary { color: var(--bg); }
.section--ink .acc summary:hover { color: var(--accent); }

/* ---------- Preis ---------- */
.price-band {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}
.price-band .amount { text-align: left; }
.price-band .amount b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.price-band .amount .from {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: block;
  margin-bottom: .6rem;
}
.price-band .amount .per { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-faint); display: block; margin-top: .5rem; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { position: relative; padding: 0 0 .7rem 1.7rem; font-size: 1rem; color: var(--ink-soft); }
.price-list li:last-child { padding-bottom: 0; }
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .5rem;
  width: 10px; height: 6px;
  border-left: 1.8px solid var(--ok);
  border-bottom: 1.8px solid var(--ok);
  transform: rotate(-45deg);
}
@media (max-width: 720px) { .price-band { grid-template-columns: 1fr; } }

/* ---------- Qualifizierungs-Gate ---------- */
.gate { background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--r); padding: clamp(1.7rem, 4vw, 2.8rem); }
.gate-progress {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.gate-progress .bar { flex: 1; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.gate-progress .bar i { display: block; height: 100%; background: var(--accent); width: 0; transition: width .3s ease; }
.q { display: none; border: 0; padding: 0; margin: 0; min-width: 0; }
.q.is-active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.q legend, .q .q-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 .4em;
  display: block;
  font-weight: 600;
  line-height: 1.15;
  padding: 0;
  float: left;
  width: 100%;
}
/* Nach dem gefloateten legend den Fluss wiederherstellen */
.q legend + * { clear: both; }
.q .q-help { font-size: .95rem; color: var(--ink-faint); margin-bottom: 1.4rem; }
.opts { display: grid; gap: .6rem; margin: 0 0 1.6rem; padding: 0; border: 0; }
.opt {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  background: var(--bg);
  transition: border-color .15s ease, background .15s ease;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.45;
}
.opt:hover { border-color: var(--accent); }
.opt input { margin: .32rem 0 0; accent-color: var(--accent); flex: none; }
.opt.is-selected { border-color: var(--accent); background: var(--accent-soft); }
.gate-nav { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
.gate-field { margin-bottom: 1.1rem; }
.gate-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: .5rem;
}
.gate-field input {
  width: 100%;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
}
.gate-field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.gate-error { color: #b3341c; font-size: .9rem; margin-top: .6rem; display: none; }
.gate-error.is-visible { display: block; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .gate-error { color: #ef8b73; } }

.calendly-shell { display: none; }
.calendly-shell.is-visible { display: block; animation: fade .3s ease; }
.calendly-inline-widget { min-width: 320px; height: 720px; }
@media (max-width: 640px) { .calendly-inline-widget { height: 940px; } }
.gate-done {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ok);
  margin-bottom: 1.4rem;
}
.gate-done::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--ok);
  background: no-repeat center/9px 6px;
  flex: none;
  position: relative;
}
.gate-done span { color: var(--ink-faint); }

/* ---------- GAIN ---------- */
.gain-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.gain-mark {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 1.4rem;
  display: inline-block;
}
.gain-mark i { color: var(--accent); font-style: normal; }
.gain-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .85rem; }
.gain-list li { position: relative; padding-left: 1.7rem; font-size: 1rem; }
.gain-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .55rem;
  width: 10px; height: 6px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
@media (max-width: 860px) { .gain-band { grid-template-columns: 1fr; } }

/* ---------- Qualifikation / Nachweise ---------- */
.creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 2rem; }
.cred {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem 1.35rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cred:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.cred .ic {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
}
.cred .ic svg { width: 19px; height: 19px; }
.cred b { display: block; font-family: var(--font-display); font-size: .98rem; text-transform: uppercase; color: var(--ink); font-weight: 500; line-height: 1.25; }
.cred span { display: block; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; color: var(--ink-faint); margin-top: .3rem; text-transform: uppercase; }
@media (max-width: 720px) { .creds { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: .5em; }
.cta-band .lead { margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); padding: clamp(48px, 6vw, 72px) 0 2.2rem; }
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) .site-footer { background: #100e0c; } }
.site-footer .logo { color: var(--bg); font-size: 1.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.4rem; margin-bottom: 3rem; }
.site-footer p, .site-footer a { color: rgba(243, 242, 238, .62); font-size: .95rem; }
.site-footer a:hover { color: var(--accent); }
.footer-title {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(243, 242, 238, .42);
  margin: 0 0 1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer-bottom {
  border-top: 1px solid rgba(243, 242, 238, .13);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  color: rgba(243, 242, 238, .42);
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Legal pages ---------- */
.legal { padding: clamp(48px, 7vw, 88px) 0; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .6em; }
.legal h2 { font-size: 1.35rem; margin-top: 2.6em; }
.legal h3 { font-size: 1.05rem; margin-top: 1.9em; }
.legal p, .legal li { font-size: 1rem; color: var(--ink-soft); }
.legal ul, .legal ol { padding-left: 1.3rem; margin-bottom: 1.2em; }
.legal li { margin-bottom: .45em; }
.legal address { font-style: normal; }
.note {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 1.15rem 1.4rem;
  border-radius: var(--r);
  font-size: .95rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.note p:last-child { margin-bottom: 0; }
.toc { list-style: none; padding: 0; margin: 0 0 2.4rem; display: grid; gap: .5rem; }
.toc a { font-family: var(--font-mono); font-size: .82rem; color: var(--ink-soft); }
.toc a:hover { color: var(--accent-ink); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 12px 44px rgba(28, 27, 25, .18);
  padding: 1.4rem 1.6rem;
  max-width: 560px;
  margin-inline: auto;
  display: none;
}
.cookie.is-visible { display: block; animation: fade .3s ease; }
.cookie h4 { margin-bottom: .5em; font-size: .95rem; }
.cookie p { font-size: .92rem; margin-bottom: 1.2rem; }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: .8rem 1.4rem; font-size: .85rem; }
.cookie a { text-decoration: underline; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.1rem; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: .8rem 1.2rem;
  z-index: 999;
  border-radius: var(--r);
}
.skip-link:focus { left: 16px; top: 12px; color: #fff; }
.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;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
