/* =========================================================
 Tokens — single source of truth
 ========================================================= */
:root {
  /* Canvas */
  --canvas: #F4EFE6;
  /* warm paper, primary background */
  --canvas-soft: #EDE6D8;
  /* section alt background */
  --surface: #FFFFFF;
  /* cards, form */
  --surface-dim: #FBF8F2;
  /* nested surface */

  /* Ink */
  --ink: #1B1A17;
  /* off-black, headlines */
  --ink-2: #2A2924;
  --muted: #6B6A63;
  /* secondary text */
  --whisper: #D6CFC0;
  /* hairlines */
  --whisper-soft: rgba(214, 207, 192, 0.45);

  /* Accent — Persimmon, intentionally below 80% saturation */
  --accent: #D9521E;
  /* primary CTA, highlights */
  --accent-ink: #B23E12;
  /* pressed */
  --accent-soft: #F6D9C7;
  /* tinted backgrounds */
  --accent-glow: rgba(217, 82, 30, 0.18);

  /* Geo — soft secondary marks (charts, decoration) */
  --geo-blue: #2E5E5A;
  /* deep teal */
  --geo-amber: #E0A82E;
  --geo-rose: #B6536A;

  /* Type */
  --display: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Scale (fluid) */
  --fs-eyebrow: 0.78rem;
  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.1rem, 1.4vw, 1.25rem);
  --fs-h3: clamp(1.5rem, 2.2vw, 2rem);
  --fs-h2: clamp(2rem, 4.2vw, 3.25rem);
  --fs-h1: clamp(2.75rem, 7.5vw, 5.75rem);
  --fs-mega: clamp(3.5rem, 10vw, 8.5rem);

  /* Spacing */
  --gap-1: 0.5rem;
  --gap-2: 1rem;
  --gap-3: 1.5rem;
  --gap-4: 2.5rem;
  --gap-5: clamp(3rem, 7vw, 6rem);
  --gap-6: clamp(5rem, 10vw, 9rem);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --max: 1280px;

  /* Motion */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 640ms;
}

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

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

body {
  margin: 0;
  font-family: var(--display);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* =========================================================
 Reusable atoms
 ========================================================= */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.lede {
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 700;
}

h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.035em;
  line-height: 0.96;
}

h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.025em;
}

h3 {
  font-size: var(--fs-h3);
  line-height: 1.15;
}

p {
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: transform var(--dur) var(--ease-spring),
    background var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
  will-change: transform;
}

.btn .arrow {
  display: inline-block;
  transition: transform var(--dur) var(--ease-spring);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 10px 24px -12px var(--accent-glow);
}

.btn--primary:hover {
  background: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 18px 36px -16px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--whisper);
}

.btn--ghost:hover {
  background: var(--surface);
  border-color: var(--ink);
}

/* Section header */
.section {
  padding-block: var(--gap-6);
  position: relative;
}

.section__head {
  max-width: 720px;
  margin-bottom: var(--gap-5);
}

.section__head .eyebrow {
  margin-bottom: 1.25rem;
}

.section__head h2 {
  margin-bottom: 1.25rem;
}

.section__head .lede {
  margin-top: 0.5rem;
}

/* Grain — pinned to viewport, never reflows content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =========================================================
 Navigation
 ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: color-mix(in srgb, var(--canvas) 78%, transparent);
  border-bottom: 1px solid var(--whisper-soft);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--canvas);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__links a {
  font-size: 0.94rem;
  color: var(--ink-2);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--dur) var(--ease-out);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur) var(--ease-out);
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__links a:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav__cta .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}

.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--whisper);
  background: var(--surface);
  align-items: center;
  justify-content: center;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--ink);
}

.nav__burger span::before {
  top: -6px;
}

.nav__burger span::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--whisper-soft);
  background: var(--canvas);
  padding: 1rem 0 1.5rem;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.9rem 0 0.9rem 25px;
  border-bottom: 1px solid var(--whisper-soft);
  font-size: 1.05rem;
}

.mobile-menu a:last-of-type {
  border-bottom: 0;
}

@media (max-width: 880px) {

  .nav__links,
  .nav__cta .btn--ghost {
    display: none;
  }

  .nav__burger {
    display: inline-flex;
  }
}

/* =========================================================
 HERO — asymmetric split
 ========================================================= */
.hero {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(4rem, 8vw, 7rem);
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

.hero__meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.75rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--whisper);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-2);
}

.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2BB673;
  box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.6);
  animation: pulse 2.4s var(--ease-out) infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(43, 182, 115, 0.55);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(43, 182, 115, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(43, 182, 115, 0);
  }
}

.hero h1 {
  font-weight: 700;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero h1 .strike {
  position: relative;
  display: inline-block;
}

.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 56%;
  height: 8px;
  background: var(--accent);
  border-radius: 4px;
  transform: rotate(-2deg);
  z-index: -1;
  opacity: 0.18;
}

.hero__claim {
  margin-top: 1.5rem;
  font-size: var(--fs-lead);
  color: var(--ink-2);
  max-width: 38ch;
}

.hero__claim strong {
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  border-top: 1px solid var(--whisper);
  padding-top: 1.75rem;
  max-width: 540px;
}

.hero__stats .num {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero__stats .lbl {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Hero right: build card */
.build {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--whisper);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.02),
    0 30px 60px -30px rgba(27, 26, 23, 0.18);
  transform: rotate(1.2deg);
  transition: transform var(--dur-slow) var(--ease-spring);
}

.build:hover {
  transform: rotate(0.4deg) translateY(-4px);
}

.build__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--whisper-soft);
}

.build__bar .dots {
  display: flex;
  gap: 6px;
}

.build__bar .dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--whisper);
  display: block;
}

.build__bar .dots i:nth-child(1) {
  background: var(--geo-rose);
}

.build__bar .dots i:nth-child(2) {
  background: var(--geo-amber);
}

.build__bar .dots i:nth-child(3) {
  background: var(--geo-blue);
}

.build__bar .title {
  margin-left: 0.5rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.build__body {
  padding: 1.5rem 0.5rem 0.5rem;
  display: grid;
  gap: 1rem;
}

.build__row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
}

.build__row .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.build__row .ico.s {
  background: var(--accent-soft);
  color: var(--accent);
}

.build__row .ico.b {
  background: rgba(46, 94, 90, 0.12);
  color: var(--geo-blue);
}

.build__row .ico.a {
  background: rgba(224, 168, 46, 0.18);
  color: var(--geo-amber);
}

.build__row .ico.r {
  background: rgba(182, 83, 106, 0.14);
  color: var(--geo-rose);
}

.build__row .lbl {
  color: var(--muted);
  font-size: 0.82rem;
}

.build__row .val {
  color: var(--ink);
  font-weight: 500;
}

.build__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--whisper-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
}

.build__footer .tag {
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.build__footer .tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.4s var(--ease-out) infinite;
}

@keyframes blink {
  50% {
    opacity: 0.3;
  }
}

/* sticky note accent */
.sticky {
  position: absolute;
  top: -22px;
  right: -22px;
  background: var(--geo-amber);
  color: var(--ink);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.74rem;
  transform: rotate(6deg);
  box-shadow: 0 12px 24px -10px rgba(224, 168, 46, 0.5);
}

@media (max-width: 880px) {
  .hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .build {
    transform: rotate(0);
    max-width: 460px;
    margin: 0 auto;
  }

  .sticky {
    right: 12px;
    top: -18px;
  }

  .hero__stats {
    max-width: none;
  }
}

/* =========================================================
 Section: Idee (zig-zag)
 ========================================================= */
.idea {
  background: var(--canvas-soft);
  border-block: 1px solid var(--whisper-soft);
}

.idea__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.idea__visual {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--whisper);
  overflow: hidden;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
}

.idea__visual .tile {
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  transition: transform var(--dur) var(--ease-spring);
}

.idea__visual .tile:hover {
  transform: translateY(-3px) rotate(-0.5deg);
}

.idea__visual .tile .k {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.idea__visual .tile .v {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.idea__visual .t1 {
  background: var(--accent);
  color: #fff;
  grid-column: 1;
  grid-row: 1;
}

.idea__visual .t1 .k {
  color: rgba(255, 255, 255, 0.7);
}

.idea__visual .t2 {
  background: var(--ink);
  color: var(--canvas);
}

.idea__visual .t2 .k {
  color: rgba(244, 239, 230, 0.55);
}

.idea__visual .t3 {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.idea__visual .t4 {
  background: var(--surface-dim);
  border: 1px solid var(--whisper);
}

.idea__list {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.idea__list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
  align-items: start;
  color: var(--ink-2);
}

.idea__list li svg {
  color: var(--accent);
  margin-top: 4px;
}

.idea__list li strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

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

/* =========================================================
 Section: Für wen
 ========================================================= */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.audience__card {
  background: var(--surface);
  border: 1px solid var(--whisper);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--dur) var(--ease-spring), border-color var(--dur) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.audience__card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}

.audience__card .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}

.audience__card h3 {
  margin-bottom: 0.5rem;
}

.audience__card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.audience__card.feature {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.audience__card.feature h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.audience__card.feature p {
  color: rgba(244, 239, 230, 0.72);
  font-size: 1.02rem;
}

.audience__card.feature .ico {
  background: var(--accent);
  color: #fff;
  width: 56px;
  height: 56px;
}

.audience__card.feature .right {
  border-left: 1px solid rgba(244, 239, 230, 0.18);
  padding-left: 2.5rem;
}

.audience__card.feature .right ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.audience__card.feature .right li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.98rem;
}

.audience__card.feature .right li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

  .audience__card.feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .audience__card.feature .right {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(244, 239, 230, 0.18);
    padding-top: 1.5rem;
  }
}

/* =========================================================
 Section: Ablauf (timeline)
 ========================================================= */
.flow {
  background: var(--canvas-soft);
  border-block: 1px solid var(--whisper-soft);
}

.flow__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--whisper) 100%);
}

.step {
  position: relative;
  padding: 1.5rem 0 1.5rem 1rem;
  border-bottom: 1px solid var(--whisper-soft);
}

.step:last-child {
  border-bottom: 0;
}

.step__node {
  position: absolute;
  left: -2.5rem;
  top: 1.6rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--canvas-soft);
  border: 1.5px solid var(--accent);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
}

.step__node::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform var(--dur) var(--ease-spring);
}

.step:hover .step__node::after {
  transform: scale(1.6);
}

.step__time {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1.2rem;
}

.step p {
  color: var(--muted);
  font-size: 0.98rem;
}

.flow__visual {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--whisper);
  aspect-ratio: 4 / 5;
}

.flow__visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

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

  .flow__visual {
    position: relative;
    top: 0;
    aspect-ratio: 4 / 3;
  }
}

/* =========================================================
 Section: Termine
 ========================================================= */
.dates {
  background: var(--canvas);
  border-block: 1px solid var(--whisper-soft);
}

/* Highlight card — next event */
.next-event {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  margin-bottom: var(--gap-5);
}

.next-card {
  background: var(--ink);
  color: var(--canvas);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.next-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.18;
  filter: blur(12px);
  pointer-events: none;
}

.next-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 230, 0.08);
  pointer-events: none;
}

.next-card__badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  padding: 0.5rem 0.95rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -10px var(--accent-glow);
}

.next-card__badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2.4s var(--ease-out) infinite;
}

.next-card__date {
  position: relative;
  margin: 1.75rem 0 1.5rem;
}

.next-card__day {
  display: block;
  font-size: clamp(4.5rem, 9vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: var(--canvas);
}

.next-card__month {
  display: block;
  margin-top: 0.5rem;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.next-card__topic {
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.next-card__sub {
  position: relative;
  color: rgba(244, 239, 230, 0.65);
  font-size: 0.98rem;
}

.next-card__meta {
  position: relative;
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
  font-size: 0.95rem;
}

.next-card__meta div {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  color: rgba(244, 239, 230, 0.85);
}

.next-card__meta strong {
  color: var(--canvas);
  font-weight: 500;
}

.next-card__meta svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Side stats column */
.next-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.next-stat {
  background: var(--surface);
  border: 1px solid var(--whisper);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform var(--dur) var(--ease-spring), border-color var(--dur) var(--ease-out);
}

.next-stat:hover {
  transform: translateY(-3px);
  border-color: var(--ink);
}

.next-stat .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.next-stat .k {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  display: block;
}

.next-stat .v {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (max-width: 880px) {
  .next-event {
    grid-template-columns: 1fr;
  }

  .next-card {
    min-height: 360px;
  }
}

/* Programme grid — upcoming evenings */
.programme-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-top: var(--gap-3);
  border-top: 1px solid var(--whisper);
}

.programme-head h3 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -0.02em;
}

.programme-head p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36ch;
}

@media (max-width: 600px) {
  .programme-head {
    flex-direction: column;
    align-items: start;
  }
}

.programme {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

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

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

.evening {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--whisper);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
    transform var(--dur) var(--ease-spring),
    border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
  overflow: hidden;
}

.evening::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-slow) var(--ease-out);
}

.evening:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px -32px rgba(27, 26, 23, 0.18);
}

.evening:hover::before {
  transform: scaleX(1);
}

.evening__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.evening__date {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

.evening__date strong {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-top: 0.1rem;
}

.evening__ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  transition: transform var(--dur) var(--ease-spring);
}

.evening:hover .evening__ico {
  transform: rotate(-6deg) scale(1.05);
}

.evening__ico.alt {
  background: rgba(46, 94, 90, 0.12);
  color: var(--geo-blue);
}

.evening__ico.warm {
  background: rgba(224, 168, 46, 0.18);
  color: var(--geo-amber);
}

.evening__ico.cool {
  background: rgba(182, 83, 106, 0.12);
  color: var(--geo-rose);
}

.evening h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.evening p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.evening__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.evening__tag::before {
  content: "";
  width: 14px;
  height: 1px;
  background: currentColor;
}

/* CTA variant of evening card (dark) */
.evening--cta {
  background: var(--ink);
  color: var(--canvas);
  border-color: var(--ink);
}

.evening--cta::before {
  background: var(--accent);
}

.evening--cta h3 {
  color: var(--canvas);
}

.evening--cta p {
  color: rgba(244, 239, 230, 0.72);
}

.evening--cta .evening__date {
  color: rgba(244, 239, 230, 0.55);
}

.evening--cta .evening__date strong {
  color: var(--canvas);
}

/* =========================================================
 Section: Mitmachen / Form
 ========================================================= */
.join {
  background: var(--canvas-soft);
  border-block: 1px solid var(--whisper-soft);
}

.join__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

/* On mobile, copy and form become one full-width column each */
@media (max-width: 720px) {
  .join__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.join__copy h2 {
  margin-bottom: 1.25rem;
}

.join__points {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.join__points li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: 1rem;
}

.join__points li svg {
  color: var(--accent);
  flex-shrink: 0;
}

.form {
  background: var(--surface);
  border: 1px solid var(--whisper);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 30px 60px -36px rgba(27, 26, 23, 0.22);
}

.form__row {
  display: grid;
  gap: 1.25rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.field input,
.field textarea {
  background: var(--surface-dim);
  border: 1px solid var(--whisper);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  font-size: 1rem;
  color: var(--ink);
  width: 100%;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.form__two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__submit {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form__hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.form__success,
.form__error {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  align-items: center;
  gap: 0.6rem;
}

.form__success {
  background: rgba(43, 182, 115, 0.1);
  border: 1px solid rgba(43, 182, 115, 0.3);
  color: #1F6B47;
}

.form__error {
  background: rgba(217, 82, 30, 0.08);
  border: 1px solid rgba(217, 82, 30, 0.3);
  color: var(--accent-ink);
}

.form__success.is-visible,
.form__error.is-visible {
  display: flex;
}

.form .btn--primary {
  min-height: 48px;
}

.form .btn--primary[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.form .spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Mobile form: full-width, larger tap targets, stacked fields */
@media (max-width: 600px) {
  .form {
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .form__two {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form__row {
    gap: 1rem;
  }

  .form__submit {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .form__submit .btn {
    width: 100%;
    justify-content: center;
    padding: 1.05rem 1.5rem;
  }

  .form__hint {
    text-align: center;
  }

  .field input,
  .field textarea {
    font-size: 16px;
    /* prevents iOS zoom on focus */
    padding: 1.05rem 1.1rem;
    min-height: 48px;
  }

  .field textarea {
    min-height: 130px;
  }
}

/* =========================================================
   Section: Partner (dark, white logos)
   ========================================================= */
.partners {
  background: var(--ink);
  color: var(--canvas);
  padding-block: var(--gap-5);
  border-top: 1px solid rgba(244, 239, 230, 0.08);
}

.partners__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--gap-4);
}

.partners__head .eyebrow {
  justify-content: center;
  color: var(--accent);
}

.partners__head .eyebrow::before {
  background: currentColor;
}

.partners__head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--canvas);
  margin: 1rem 0 0.6rem;
}

.partners__head p {
  color: rgba(244, 239, 230, 0.6);
  font-size: 0.98rem;
  max-width: 48ch;
  margin: 0 auto;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid rgba(244, 239, 230, 0.08);
  transition:
    transform var(--dur) var(--ease-spring),
    background var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out);
  min-height: 140px;
}

.partner:hover {
  transform: translateY(-3px);
  background: rgba(244, 239, 230, 0.08);
  border-color: var(--accent);
}

.partner img,
.partner svg {
  max-height: 56px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity var(--dur) var(--ease-out);
}

.partner:hover img,
.partner:hover svg {
  opacity: 1;
}

@media (max-width: 560px) {
  .partners__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .partner {
    min-height: 120px;
    padding: 1.75rem 1.25rem;
  }

  .partner img,
  .partner svg {
    max-height: 44px;
  }
}

/* =========================================================
   Footer
   ========================================================= */
footer.site {
  background: var(--ink);
  color: var(--canvas);
  padding-block: var(--gap-5) 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 239, 230, 0.14);
}

.footer__top h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.footer__top h3 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}

.footer__top p {
  color: rgba(244, 239, 230, 0.7);
  max-width: 38ch;
}

.footer__col h4 {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 239, 230, 0.55);
  margin: 0 0 1rem;
  font-weight: 500;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer__col a {
  color: var(--canvas);
  transition: color var(--dur) var(--ease-out);
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__col strong {
  color: var(--canvas);
  font-weight: 600;
}

.footer__contact li:first-child {
  margin-bottom: 0.4rem;
}

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(244, 239, 230, 0.5);
}

.footer__bottom .links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 880px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__top>div:first-child {
    grid-column: 1 / -1;
  }
}

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

/* =========================================================
 Reveal animation (IntersectionObserver)
 ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] {
  transition-delay: 80ms;
}

.reveal[data-delay="2"] {
  transition-delay: 160ms;
}

.reveal[data-delay="3"] {
  transition-delay: 240ms;
}

.reveal[data-delay="4"] {
  transition-delay: 320ms;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}