/* ===================================================================
   EvergoldAI — DOSSIER edition
   Editorial · Manifesto · Surgical Gold · Deep Emerald-Black
   =================================================================== */

:root {
  --ink:         #050E0B;     /* paper-black / deep forest */
  --ink-2:       #0A1611;
  --ink-3:       #11241B;

  --gold:        #C9A961;
  --gold-pale:   #E6CC7F;
  --gold-deep:   #8C7239;
  --gold-ink:    #B4954A;     /* gold used as ink */

  --paper:       #EFE7D3;     /* parchment used for "documents" */
  --paper-dim:   #D8CFB8;
  --paper-ink:   #1A2118;     /* dark ink on paper */

  --ivory:       #EFE9D6;
  --cream:       #DED7C2;
  --sage:        #A0B0A4;
  --sage-dim:    #6E8076;

  --rule:        rgba(201, 169, 97, 0.18);
  --rule-strong: rgba(201, 169, 97, 0.42);
  --rule-faint:  rgba(201, 169, 97, 0.08);

  --serif: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Hanken Grotesk', 'Söhne', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }html, body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  /* Cursor-follow shimmer position (updated by JS) */
  --mx: 50vw;
  --my: 40vh;
  --shimmer-strength: 1;

  background:
    radial-gradient(ellipse 80% 55% at 50% -8%, rgba(31, 90, 65, 0.72), transparent 65%),
    radial-gradient(ellipse 60% 45% at 10% 30%, rgba(31, 90, 65, 0.42), transparent 60%),
    radial-gradient(ellipse 65% 50% at 90% 60%, rgba(31, 90, 65, 0.40), transparent 60%),
    radial-gradient(ellipse 50% 40% at 30% 90%, rgba(31, 90, 65, 0.28), transparent 65%),
    linear-gradient(180deg, #07241B 0%, #061A14 35%, #07211A 70%, #06180F 100%);
  min-height: 100vh;
}

/* Cursor-following emerald shimmer — a deep, saturated emerald glow at cursor.
   NO screen blend (which would whiten things) — just a soft additive emerald wash. */
.shimmer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle 560px at var(--mx) var(--my),
      rgba(35, 110, 78, calc(0.18 * var(--shimmer-strength))) 0%,
      rgba(28, 88, 64, calc(0.11 * var(--shimmer-strength))) 22%,
      rgba(20, 64, 47, calc(0.05 * var(--shimmer-strength))) 46%,
      transparent 72%);
  transition: opacity .8s ease;
  will-change: background;
}

/* Subtle paper-grain over the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.78  0 0 0 0 0.66  0 0 0 0 0.38  0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--gold); color: var(--ink); }

/* ===================================================================
   Type primitives
   =================================================================== */

.serif       { font-family: var(--serif); font-weight: 400; letter-spacing: -0.005em; }
.serif-it    { font-family: var(--serif); font-style: italic; font-weight: 400; }
.mono        { font-family: var(--mono); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
}

/* Running heads — small ALL CAPS letter-spaced markers */
.run {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.run-paper { color: var(--paper-dim); }
.run-faint { color: var(--sage); }

.numeral {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.figmark {
  color: var(--gold);
  font-size: 10px;
  vertical-align: middle;
}
.figmark::before { content: '✦'; }

.gold { color: var(--gold-pale); }
.italic-gold { font-style: italic; color: var(--gold-pale); font-family: var(--serif); }

/* ===================================================================
   Layout primitives
   =================================================================== */

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 56px 0 56px;
  position: relative;
  z-index: 2;
}
.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 56px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .container, .container-narrow { padding: 0 24px; }
}

section { position: relative; z-index: 2; }

.hairline {
  height: 1px;
  background: var(--rule);
  width: 100%;
}
.hairline-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 100%;
}

/* ===================================================================
   Top running rail — transparent (no black bar), logo + brand + lang
   =================================================================== */

.rail {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 56px;
  background: transparent;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  transition: transform .45s cubic-bezier(.4,0,.2,1), background .4s ease, backdrop-filter .4s ease, padding .4s ease;
}
/* Slides up out of view when scrolling down into content, so the logo
   never sits on top of section text. */
.rail.rail-hidden {
  transform: translateY(-110%);
}
.rail-left, .rail-right { display: flex; align-items: center; gap: 18px; }
.rail .sep { color: var(--gold); }
.rail-brand {
  display: flex; align-items: center; gap: 16px;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
}
.rail-brand i { font-style: normal; color: var(--gold-pale); font-weight: 700; }
.rail-mark {
  width: 54px; height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.5));
  transition: filter .35s, transform .35s;
}
.rail-brand:hover .rail-mark {
  filter: drop-shadow(0 3px 14px rgba(201, 169, 97, 0.7));
  transform: rotate(8deg);
}
.rail .lang {
  display: inline-flex; gap: 12px;
  font-size: 10.5px;
}
.rail .lang button {
  letter-spacing: 0.18em;
  color: var(--sage);
  transition: color .25s;
  font-weight: 500;
}
.rail .lang button.active { color: var(--gold); }
.rail .lang button + button { padding-left: 12px; border-left: 1px solid var(--rule); }

@media (max-width: 760px) {
  .rail { padding: 12px 24px; font-size: 9.5px; letter-spacing: 0.18em; gap: 12px; }
  .rail .rail-mid { display: none; }
}

/* ===================================================================
   Nav (below rail) — minimal section-number list
   =================================================================== */

.subnav {
  position: fixed;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.subnav a {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color .3s;
  font-weight: 500;
  white-space: nowrap;
}
.subnav a .dot {
  display: inline-block;
  width: 8px; height: 1px;
  background: currentColor;
  transition: width .35s ease, background .35s ease;
  flex-shrink: 0;
}
.subnav a:hover, .subnav a.active {
  color: var(--gold-pale);
}
.subnav a.active .dot {
  width: 30px;
  background: var(--gold);
}
.subnav a .label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  color: inherit;
}
@media (max-width: 1400px) { .subnav { display: none; } }

/* ===================================================================
   HERO — Editorial Poster
   =================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-orn-glow {
  position: absolute;
  width: 80vw;
  height: 60vh;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(31,90,65,0.5), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  animation: emerald-breathe 8s ease-in-out infinite;
}

/* Giant copper logo behind the hero quote — melts & drips down on scroll.
   The whole group is wrapped in an SVG goo filter so the logo and its
   droplets merge into long liquid tendrils. */
.hero-logo-drip {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(820px, 70vw);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  filter: url(#goo) drop-shadow(0 0 60px rgba(201, 169, 97, 0.22));
  --drip: 0;
  opacity: 0.32;
}
/* Drips disabled — hero now morphs logo → brain on scroll. */
.hero-logo-drip .drip,
.hero-logo-drip .fall { display: none !important; }
.hero-logo-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: auto;
  transform: none;
  will-change: filter;
}

/* Copper brain that fades in as the logo dissolves */
.hero-brain {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(720px, 62vw);
  height: auto;
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 60px rgba(201, 169, 97, 0.3));
  will-change: opacity, transform;
}

/* Drips — bronze teardrops that stretch down off the mark, with a heavy
   bulbous tip. The goo filter fuses stem + bead into a smooth long teardrop. */
.hero-logo-drip .drip {
  position: absolute;
  width: 2.2%;
  height: calc(var(--drip) * var(--len));
  background: #C08A5E;
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
  transform-origin: top center;
  opacity: calc(var(--drip) * 1.6);
}
/* Heavy bulbous droplet at the tip of each strand — same copper tone. */
.hero-logo-drip .drip::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 320%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, 42%);
  border-radius: 50%;
  background: #C08A5E;
}
/* Each drip: distinct x position, start height and strand length. */
.hero-logo-drip .d1 { left: 23%; top: 34%; --len: 320px; }
.hero-logo-drip .d2 { left: 39%; top: 42%; --len: 520px; }
.hero-logo-drip .d3 { left: 51%; top: 38%; --len: 430px; }
.hero-logo-drip .d4 { left: 65%; top: 36%; --len: 580px; }
.hero-logo-drip .d5 { left: 77%; top: 40%; --len: 360px; }

/* Detaching droplets that fall off the molten mass — only visible while
   melting (opacity gated by --drip), accelerating downward like gravity. */
.hero-logo-drip .fall {
  position: absolute;
  width: 2.4%;
  aspect-ratio: 1 / 1;
  opacity: calc(var(--drip, 0));
}
.hero-logo-drip .f1 { left: 39%; top: 56%; }
.hero-logo-drip .f2 { left: 65%; top: 52%; }
.hero-logo-drip .f3 { left: 51%; top: 58%; }
.hero-logo-drip .bead {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #C08A5E;
  animation: fall-drop 2.6s ease-in infinite;
}
.hero-logo-drip .f2 .bead { animation-duration: 3.1s; animation-delay: 1s; }
.hero-logo-drip .f3 .bead { animation-duration: 3.5s; animation-delay: 1.9s; }
@keyframes fall-drop {
  0%   { transform: translateY(0) scaleY(1.5); opacity: 0; }
  12%  { opacity: 1; }
  78%  { opacity: 1; }
  100% { transform: translateY(380px) scaleY(1.1); opacity: 0; }
}
.hero > .container { position: relative; z-index: 2; }
.hero-quote, .hero-folio, .hero-bottom { position: relative; z-index: 2; }

@keyframes emerald-breathe {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  width: 100%;
}

.hero-folio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
}
.hero-folio .folio-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  letter-spacing: 0;
  color: var(--gold);
  font-weight: 400;
}
.hero-folio .folio-sep {
  font-family: var(--sans);
  font-style: normal;
  font-size: 17px;
  color: var(--gold-pale);
  font-weight: 600;
  letter-spacing: 0;
}
.hero-folio .rule { display: none; }

.hero-quote {
  font-family: var(--serif);
  font-size: clamp(40px, 11vw, 160px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ivory);
  text-wrap: balance;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-quote em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
}
.hero-quote .quote-open,
.hero-quote .quote-close {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
  display: inline-block;
}
.hero-quote .quote-open { margin-right: 0.18em; transform: none; vertical-align: baseline; }
.hero-quote .quote-close { margin-left: -0.12em; transform: none; vertical-align: baseline; }

.hero-attrib {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 56px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.hero-attrib::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-attrib em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--cream);
}

.hero-bottom {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 56px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 40px;
}
@media (max-width: 900px) {
  .hero-bottom { position: static; padding: 56px 0 0; flex-direction: column; align-items: flex-start; }
  .hero { padding: 120px 0 60px; min-height: auto; }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold-pale);
  padding: 14px 0;
  border-bottom: 1px solid var(--gold);
  transition: gap .3s, color .25s;
}
.hero-cta:hover { gap: 22px; color: var(--ivory); }
.hero-cta .arr {
  display: inline-block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 18px;
  transition: transform .35s;
}
.hero-cta:hover .arr { transform: translateX(4px); }

.hero-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  line-height: 1.8;
  text-align: left;
}
.hero-meta .v { color: var(--ivory); font-weight: 500; }
@media (max-width: 900px) {
  .hero-meta { text-align: left; }
}

/* ===================================================================
   AWARD strip — between Hero and Probe
   =================================================================== */
.award {
  padding: 80px 0 90px;
  position: relative;
  z-index: 2;
}
.award-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.award-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-strong), transparent);
}
.award-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.award-img {
  width: 300px;
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.4));
}
.award-cap {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 700px) {
  .award-line { display: none; }
  .award-img { width: 220px; }
  .award-inner { padding: 0 8px; }
  .award-cap {
    font-size: 11px;
    letter-spacing: 0.16em;
    line-height: 1.6;
    max-width: 320px;
    text-wrap: balance;
  }
}


.fold-divider {
  position: relative;
  text-align: center;
  padding: 80px 0 40px;
}
.fold-divider .mark {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 32px;
  letter-spacing: -0.02em;
}
.fold-divider::before, .fold-divider::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.fold-divider::before { transform: translate(-180px, -50%) scaleX(-1); }
.fold-divider::after  { transform: translate(60px, -50%); }

/* ===================================================================
   PAGINA — large editorial section header
   =================================================================== */

.pagina {
  padding: 100px 0 64px;
}
.pagina-head {
  display: block;
  margin-bottom: 80px;
  text-align: center;
}
.pagina-head .side {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
  margin-bottom: 28px;
}
.pagina-head .side .num {
  display: inline;
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0;
  font-weight: 400;
}
.pagina-head .side .label-de {
  display: inline;
  color: var(--gold-pale);
  font-weight: 600;
}
.pagina-head .body h2 {
  font-size: clamp(40px, 5vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.022em;
  color: var(--ivory);
  text-wrap: balance;
  margin-bottom: 28px;
}
.pagina-head .body h2 em { font-style: italic; color: var(--gold-pale); }
.pagina-head .body .lead {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ivory);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.pagina-head .body .lead i { font-style: italic; color: var(--gold-pale); }

@media (max-width: 900px) {
  .pagina-head { margin-bottom: 56px; }
}

/* ===================================================================
   SECTION II — PROBE (Live KI document)
   =================================================================== */

.probe {
  padding: 60px 0 100px;
}
.probe-lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.probe-lead .eyebrow {
  font-family: var(--sans);
  font-size: 17px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}
.probe-lead .eyebrow .enum {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  font-weight: 400;
}
.probe-lead .eyebrow .esep {
  font-family: var(--sans);
  font-style: normal;
  font-size: 17px;
  color: var(--gold-pale);
  font-weight: 600;
}
.probe-lead h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ivory);
  text-wrap: balance;
  margin-bottom: 16px;
}
.probe-lead h2 em { font-style: italic; color: var(--gold-pale); }
.probe-lead p {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ivory);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto;
}

/* The "manuscript" document */
.manuscript {
  max-width: 900px;
  margin: 0 auto;
  background: var(--paper);
  color: var(--paper-ink);
  border-radius: 2px;
  box-shadow:
    0 80px 120px -40px rgba(0,0,0,0.7),
    0 30px 60px -30px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.manuscript::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(180deg, transparent 0, transparent 31px, rgba(26,33,24,0.04) 32px),
    radial-gradient(ellipse at top left, rgba(180,149,74,0.05), transparent 50%);
  z-index: 1;
}
.manuscript-head {
  position: relative;
  z-index: 2;
  padding: 28px 48px 20px;
  border-bottom: 1px solid rgba(26,33,24,0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(180,149,74,0.06), transparent);
}
.manuscript-head .stamp {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #5a4416;
  font-weight: 700;
}
.manuscript-head .stamp .sep { color: rgba(26,33,24,0.45); margin: 0 10px; }
.manuscript-head .stamp .live {
  display: inline-flex; align-items: center; gap: 8px;
}
.manuscript-head .stamp .live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }

.manuscript-tabs {
  position: relative;
  z-index: 2;
  padding: 18px 48px 0;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.manuscript-tab {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(20,26,18,0.78);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color .25s, border-color .25s;
  letter-spacing: -0.01em;
}
.manuscript-tab .num {
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-right: 8px;
  vertical-align: 2px;
  color: #5a4416;
  font-weight: 700;
}
.manuscript-tab:hover { color: var(--paper-ink); }
.manuscript-tab.active {
  color: var(--paper-ink);
  border-bottom-color: var(--gold-deep);
}

.manuscript-body {
  position: relative;
  z-index: 2;
  padding: 36px 48px 36px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 40px;
}
.manuscript-prompt {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: #1a2118;
  padding-top: 6px;
  letter-spacing: 0.01em;
  border-right: 1px solid rgba(26,33,24,0.14);
  padding-right: 28px;
}
.manuscript-prompt .label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #5a4416;
  font-weight: 700;
  display: block;
  margin-bottom: 16px;
}
.manuscript-output {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--paper-ink);
  white-space: pre-wrap;
  min-height: 280px;
}
.manuscript-output b { font-weight: 400; color: var(--gold-deep); font-style: italic; }
.manuscript-output .cursor {
  display: inline-block;
  width: 9px; height: 20px;
  background: var(--paper-ink);
  vertical-align: -3px;
  margin-left: 2px;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.manuscript-foot {
  position: relative;
  z-index: 2;
  padding: 18px 48px 24px;
  border-top: 1px solid rgba(26,33,24,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #2a2414;
  text-transform: uppercase;
}

@media (max-width: 740px) {
  .manuscript-body { grid-template-columns: 1fr; padding: 28px 28px 28px; }
  .manuscript-prompt { border-right: none; border-bottom: 1px solid rgba(26,33,24,0.12); padding: 0 0 16px; }
  .manuscript-head, .manuscript-tabs, .manuscript-foot { padding-left: 28px; padding-right: 28px; }
}

.probe-aside {
  max-width: 900px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.probe-aside i {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 24px;
  color: var(--gold-pale);
}

/* ===================================================================
   SECTION III — MANIFEST (4 numbered statements)
   =================================================================== */

.manifest {
  padding: 100px 0;
}
.manifest-list {
  border-top: 1px solid var(--rule-strong);
}
.manifest-item {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 64px;
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: background .4s;
}
.manifest-item:hover {
  background: rgba(31, 90, 65, 0.08);
  box-shadow: inset 0 0 80px rgba(31, 90, 65, 0.15);
}
.manifest-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.manifest-statement {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
  text-wrap: balance;
}
.manifest-statement em { font-style: italic; color: var(--gold-pale); }
.manifest-body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  max-width: 460px;
  font-weight: 400;
}
.manifest-body .stat {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-pale);
}
@media (max-width: 900px) {
  .manifest-item { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .manifest-num { font-size: 48px; }
}

/* ===================================================================
   SECTION IV — METHODIK (3 columns, editorial)
   =================================================================== */

.method-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
.method-col {
  padding: 56px 36px 56px 0;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .4s;
  display: flex;
  flex-direction: column;
}
.method-col:last-child { border-right: none; padding-right: 0; }
.method-col:first-child { padding-left: 0; }
.method-col + .method-col { padding-left: 36px; }
.method-col:hover {
  background: rgba(31, 90, 65, 0.06);
  box-shadow: inset 0 0 60px rgba(31, 90, 65, 0.12);
}

.method-numeral {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.method-numeral .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0;
}

.method-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(44px, 4vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--gold-pale);
  margin-bottom: 32px;
  min-height: 2.05em;
}

.method-drop {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 28px;
  min-height: 16.5em;
}
.method-drop::first-letter {
  font-family: var(--serif);
  font-size: 58px;
  float: left;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--gold-pale);
  font-style: italic;
}
.method-list {
  list-style: none;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--cream);
  font-weight: 400;
  margin-top: 0;
  line-height: 1.45;
}
.method-list li {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 12px;
}
.method-list li::before { content: '✦'; color: var(--gold); font-size: 9px; padding-top: 4px; }

/* ROI-Spalten zentriert */
.method-col { text-align: center; padding: 56px 30px; align-items: stretch; }
.method-col:first-child { padding-left: 30px; }
.method-col:last-child { padding-right: 30px; }
.method-col + .method-col { padding-left: 30px; }
.method-numeral { justify-content: center; }
.method-drop::first-letter {
  float: none; font-size: inherit; line-height: inherit;
  padding: 0; margin: 0; color: inherit; font-family: inherit;
  font-style: inherit; font-weight: inherit;
}
.method-list { width: 100%; }
.method-list li { justify-content: center; }
.method-title { overflow-wrap: anywhere; hyphens: auto; }

@media (max-width: 900px) {
  .method-cols { grid-template-columns: 1fr; }
  .method-col { border-right: none; border-bottom: 1px solid var(--rule); padding: 36px 0 !important; }
  .method-col:last-child { border-bottom: none; }
  /* Desktop alignment hacks would leave huge gaps when stacked. */
  .method-title { min-height: 0; margin-bottom: 20px; }
  .method-drop { min-height: 0; margin-bottom: 22px; }
}

/* ===================================================================
   SECTION V — WORKSHOP (Two-day type-set program)
   =================================================================== */

.program {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(31,90,65,0.15), transparent 60%),
    rgba(10, 22, 17, 0.5);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.program-day {
  margin-bottom: 80px;
}
.program-day:last-child { margin-bottom: 0; }
.program-dayhead {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule-strong);
  margin-bottom: 0;
}
.program-dayhead .lhs {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.program-dayhead .lhs .roman {
  font-family: var(--serif);
  font-style: italic;
  font-size: 110px;
  display: block;
  line-height: 0.85;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: -0.04em;
}
.program-dayhead .rhs h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1;
  color: var(--ivory);
  letter-spacing: -0.02em;
}
.program-dayhead .rhs h3 em { color: var(--gold-pale); }
.program-dayhead .rhs .topline {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.schedule {
  border-top: 1px solid transparent;
}

/* Danach section — Pagina V½ (typographic only, compact) */
.program-after {
  margin-top: 80px;
  padding: 56px 0 0;
  border-top: 1px solid var(--rule-strong);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.program-after-text {
  display: flex;
  flex-direction: column;
  grid-column: 2;
  max-width: 640px;
}
.program-after-text .topline {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.program-after-text .frac {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  margin-left: 1px;
}
.program-after-text h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ivory);
  margin-bottom: 20px;
}
.program-after-text h3 em { font-style: italic; color: var(--gold-pale); }
.program-after-text p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--cream);
  max-width: 540px;
  margin-bottom: 28px;
}

@media (max-width: 760px) {
  .program-after { grid-template-columns: 1fr; gap: 24px; }
  .program-after-text { grid-column: 1; }
}
.sb {
  display: grid;
  grid-template-columns: 100px 1.3fr 1fr;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: background .35s, padding-left .35s;
}
.sb:hover {
  padding-left: 12px;
  background: rgba(31, 90, 65, 0.07);
  box-shadow: inset 0 0 50px rgba(31, 90, 65, 0.1);
}
.sb-time {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.sb-title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.sb-title em { font-style: italic; color: var(--gold-pale); }
.sb-aside {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--cream);
  text-align: left;
}
@media (max-width: 760px) {
  .program-dayhead { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .program-dayhead .lhs .roman { font-size: 72px; }
  /* Stack time + title + description vertically instead of hiding the text. */
  .sb { grid-template-columns: 64px 1fr; gap: 16px 18px; }
  .sb-aside {
    grid-column: 2;
    text-align: left;
    margin-top: 6px;
    font-size: 14px;
  }
}

/* ===================================================================
   SECTION VI — INVESTMENT (three premium columns)
   =================================================================== */

.invest {
  padding: 100px 0;
}

/* Investment as a readable list — one package per row */
/* Investment — 3 primary cards + 2 secondary rows + compliance note */
.invest-primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
.ip-card {
  position: relative;
  padding: 44px 36px 40px;
  border-right: 1px solid var(--rule);
  text-align: left;
  transition: background .4s;
  display: flex;
  flex-direction: column;
}
.ip-card:last-child { border-right: none; }
.ip-card:hover { background: rgba(31, 90, 65, 0.06); }
.ip-card.featured { background: linear-gradient(180deg, rgba(201,169,97,0.07), rgba(31,90,65,0.06)); }
.ip-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--rule-strong);
  border-radius: 2px;
  margin-bottom: 26px;
  white-space: nowrap;
}
.ip-card.featured .ip-badge { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.ip-name {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.ip-headline {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 20px;
}
.ip-headline em { font-style: italic; color: var(--gold-pale); }
.ip-focus {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream);
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.ip-focus b { color: var(--gold-pale); font-weight: 600; }
.ip-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 28px;
}
.ip-amt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 62px;
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--gold-pale);
}
.ip-unit {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.ip-feats { list-style: none; flex: 1; }
.ip-feats li {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ivory);
  font-weight: 400;
  padding: 13px 0;
  border-top: 1px solid var(--rule);
}
.ip-feats li b { font-weight: 600; color: var(--gold-pale); }

/* Booking CTA button on each package card */
.ip-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  width: 100%;
  padding: 15px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--gold-pale);
  background: transparent;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color .35s, background .35s, color .35s;
}
.ip-cta .arr {
  font-family: var(--sans);
  font-style: normal;
  font-size: 16px;
  transition: transform .35s;
}
.ip-cta:hover { border-color: var(--gold); background: rgba(201,169,97,0.06); }
.ip-cta:hover .arr { transform: translateX(5px); }
.ip-cta.featured {
  background: linear-gradient(180deg, var(--gold-pale), var(--gold) 62%, var(--gold-deep));
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 10px 30px -12px rgba(201,169,97,0.5);
}
.ip-cta.featured:hover { filter: brightness(1.05); background: linear-gradient(180deg, var(--gold-pale), var(--gold) 62%, var(--gold-deep)); }

/* ===================================================================
   FEATURED OFFER PANEL  (AI-Act-Pflichtpaket · Countdown)
   =================================================================== */
.feature-offer {
  margin: 44px 0 8px;
  background:
    radial-gradient(140% 200% at 0% 0%, rgba(201,169,97,0.14), transparent 52%),
    linear-gradient(180deg, rgba(12,31,23,0.92), rgba(8,18,13,0.92));
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  overflow: hidden;
}
.fo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--rule);
  background: rgba(5,14,11,0.35);
}
.fo-flag {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-pale);
}
.fo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: foPulse 2s infinite;
}
@keyframes foPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,169,97,0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(201,169,97,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,97,0); }
}
.fo-clockwrap { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.fo-clocknote {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}
.fo-clock { display: flex; align-items: flex-end; gap: 9px; }
.foc-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 52px;
  padding: 8px 6px 6px;
  background: rgba(5,14,11,0.6);
  border: 1px solid var(--rule);
  border-radius: 3px;
}
.foc-unit b {
  font-family: var(--serif); font-style: italic;
  font-size: 30px; line-height: 0.9;
  color: var(--gold-pale); font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.foc-unit i {
  font-family: var(--sans); font-style: normal;
  font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage); margin-top: 6px;
}
.foc-sep { font-family: var(--serif); font-size: 24px; color: var(--gold-deep); padding-bottom: 13px; }

.fo-body {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
}
.fo-left { padding: 36px 36px 38px; }
.fo-headline {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 46px;
}
.fo-headline em { font-style: italic; color: var(--gold-pale); white-space: nowrap; }
.fo-sub {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream);
  max-width: 46ch;
  margin-bottom: 26px;
}
.fo-sub b { color: var(--gold-pale); font-weight: 600; }
.fo-items { list-style: none; }
.fo-items li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}
.fo-items li:last-child { border-bottom: 1px solid var(--rule); }
.foi-name { font-family: var(--sans); font-size: 16px; color: var(--ivory); }
.foi-rule { flex: 1; border-bottom: 1px dotted var(--rule-strong); transform: translateY(-4px); }
.foi-price {
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  color: var(--gold-pale); font-variant-numeric: tabular-nums; white-space: nowrap;
}

.fo-right {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 14px;
  padding: 36px 36px 38px;
  border-left: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(201,169,97,0.06), rgba(31,90,65,0.05));
}
.fo-save {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--ink); background: var(--gold-pale);
  padding: 6px 12px; border-radius: 999px; white-space: nowrap;
}
.fo-priceblock { display: flex; flex-direction: column; gap: 2px; }
.fo-was {
  font-family: var(--sans); font-size: 19px; color: var(--sage);
  text-decoration: line-through; text-decoration-color: var(--gold-deep);
}
.fo-nowrow { display: flex; flex-direction: column; align-items: flex-start; }
.fo-now {
  font-family: var(--serif); font-style: italic;
  font-size: 72px; line-height: 0.9; letter-spacing: -0.02em;
  color: var(--gold-pale);
  margin-bottom: 8px;
}
.fo-unit {
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream);
}
.fo-cta { width: 100%; margin-top: 6px; }
.fo-expired { font-family: var(--serif); font-size: 20px; line-height: 1.4; color: var(--sage); }

@media (max-width: 860px) {
  .fo-body { grid-template-columns: 1fr; }
  .fo-right { border-left: none; border-top: 1px solid var(--rule); align-items: stretch; }
  .fo-now { font-size: 60px; }
  .fo-headline { font-size: 34px; }
}
@media (max-width: 560px) {
  .fo-head { padding: 16px 22px; }
  .fo-left, .fo-right { padding: 26px 22px; }
  .foc-unit { min-width: 44px; }
  .foc-unit b { font-size: 24px; }
}

/* ===================================================================
   BOOKING MODAL
   =================================================================== */
.bk-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 9, 7, 0.74);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 24px;
  overflow-y: auto;
  animation: bk-fade .25s ease;
}
@keyframes bk-fade { from { opacity: 0; } to { opacity: 1; } }
.bk-modal {
  position: relative;
  width: 100%;
  max-width: 660px;
  background: linear-gradient(180deg, #0C1F17, #08160F);
  border: 1px solid var(--rule-strong);
  border-radius: 6px;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.8);
  padding: 48px 48px 40px;
  animation: bk-rise .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes bk-rise { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.bk-close {
  position: absolute;
  top: 20px; right: 22px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  background: transparent;
  color: var(--cream);
  font-size: 15px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.bk-close:hover { background: rgba(201,169,97,0.12); color: var(--gold-pale); }
.bk-head {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.bk-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.bk-title {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 8px;
}
.bk-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold-pale);
}
.bk-price span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-left: 6px;
}
.bk-form .bk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 22px;
}
.bk-form .cf { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.bk-addr { display: flex; flex-direction: column; gap: 10px; }
.bk-addr-zc { display: grid; grid-template-columns: 34% 1fr; gap: 10px; }
.bk-form .bk-row .cf { margin-bottom: 0; }
.bk-form label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
}
.bk-form input, .bk-form textarea, .bk-form select {
  font-family: var(--serif);
  font-size: 17px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--rule-strong);
  border-radius: 3px;
  padding: 11px 14px;
  color: var(--ivory);
  outline: none;
  transition: border-color .2s, background .2s;
}
.bk-form input[type="date"], .bk-form input[type="time"] { color-scheme: dark; cursor: pointer; }
.bk-form .cf select { cursor: pointer; -webkit-appearance: none; appearance: none; background-color: rgba(255,255,255,0.02); background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 36px; }
.bk-form .cf select option { background: var(--ink); color: var(--ivory); }
.bk-form input:focus, .bk-form textarea:focus, .bk-form select:focus { border-color: var(--gold); background: rgba(255,255,255,0.04); }
.bk-form input::placeholder, .bk-form textarea::placeholder { color: var(--sage); }
.bk-form textarea { min-height: 92px; resize: vertical; line-height: 1.4; }
.bk-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 28px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream);
  cursor: pointer;
}
.bk-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.bk-consent a { color: var(--gold-pale); text-decoration: underline; }
.bk-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.bk-note {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}
.bk-thanks { text-align: center; padding: 28px 12px; }
.bk-thanks .bk-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--gold-pale);
  margin-bottom: 16px;
}
.bk-thanks p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--cream);
  max-width: 440px;
  margin: 0 auto 28px;
}
.bk-thanks .ip-cta { align-self: center; width: auto; }

/* Bestätigung — Bankdaten (Überweisung) */
.bk-thanks-event { text-align: left; padding: 20px 4px 8px; }
.bk-thanks-event .bk-mark { text-align: center; }
.bk-thanks-event > p {
  font-family: var(--serif); font-size: 19px; line-height: 1.5;
  color: var(--cream); text-align: center; max-width: none;
  margin: 0 auto 24px;
}
.bk-bank {
  border: 1px solid var(--rule-strong); border-radius: 5px;
  background: linear-gradient(180deg, rgba(201,169,97,0.06), rgba(31,90,65,0.05));
  padding: 22px 24px; margin-bottom: 22px;
}
.bk-banktitle {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700; color: var(--gold);
  margin-bottom: 14px;
}
.bk-bankrow {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 0; border-top: 1px solid var(--rule);
}
.bk-bankrow:first-of-type { border-top: none; }
.bk-bankkey {
  flex: 0 0 122px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage);
}
.bk-bankval {
  flex: 1; min-width: 0; word-break: break-word;
  font-family: var(--mono); font-size: 14.5px; color: var(--ivory);
}
.bk-copy {
  flex: 0 0 auto; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  color: var(--gold-pale);
  border: 1px solid var(--rule-strong); border-radius: 999px;
  padding: 6px 12px; min-width: 40px;
  transition: border-color .2s, color .2s, background .2s;
}
.bk-copy:hover { border-color: var(--gold); color: var(--ivory); }
.bk-copy.is-copied { color: var(--ink); background: var(--gold-pale); border-color: var(--gold-pale); }
.bk-bankhint {
  font-family: var(--sans) !important; font-size: 12.5px !important; line-height: 1.55 !important;
  color: var(--sage) !important; margin: 16px 0 0 !important; text-align: left !important;
  max-width: none !important;
}
.bk-thanksactions {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.bk-thanksactions .ip-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  text-decoration: none;
}
.bk-textbtn {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage); cursor: pointer;
}
.bk-textbtn:hover { color: var(--gold-pale); }
.bk-mark-err { color: #E4B7A0 !important; }
.bk-thanksactions .ip-cta { min-width: 240px; }
.bk-thanksactions .bk-icsbtn { opacity: 0.85; }
.bk-form button[disabled] { opacity: 0.55; cursor: progress; }

@media (max-width: 600px) {
  .bk-modal { padding: 40px 24px 32px; }
  .bk-form .bk-row { grid-template-columns: 1fr; gap: 0; }
  .bk-title { font-size: 30px; }
  .bk-submit { flex-direction: column; align-items: flex-start; }
}

.invest-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-top: none;
  margin-top: 0;
}
.is-row {
  padding: 32px 36px;
  border-right: 1px solid var(--rule);
}
.is-row:last-child { border-right: none; }
.is-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.is-name {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 10px;
}
.is-name b { font-weight: 400; color: var(--gold-pale); font-style: italic; }
.is-desc {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  color: var(--cream);
}

.invest-note {
  margin-top: 40px;
  text-align: center;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--cream);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.invest-note b { color: var(--gold-pale); font-weight: 600; }

@media (max-width: 920px) {
  .invest-primary { grid-template-columns: 1fr; }
  .ip-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .ip-card:last-child { border-bottom: none; }
  .invest-secondary { grid-template-columns: 1fr; }
  .is-row { border-right: none; border-bottom: 1px solid var(--rule); }
  .is-row:last-child { border-bottom: none; }
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
}
.tier-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.tier-grid-flex {
  grid-template-columns: repeat(5, 1fr);
}
.tier {
  position: relative;
  padding: 48px 26px 34px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: background .5s;
}
.tier:last-child { border-right: none; }
.tier:hover {
  background: rgba(31, 90, 65, 0.08);
}
.tier.featured {
  background: linear-gradient(180deg, rgba(201,169,97,0.06), rgba(31,90,65,0.10));
  box-shadow: inset 0 0 80px rgba(201, 169, 97, 0.05);
}
.tier.featured:hover {
  background: linear-gradient(180deg, rgba(201,169,97,0.10), rgba(31,90,65,0.16));
}

.tier-badge {
  position: absolute;
  top: -10px;
  left: 40px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 5px 14px;
  font-weight: 700;
}

.tier-name {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.tier-subtitle {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 0;
  text-wrap: balance;
}
.tier-subtitle em { font-style: italic; color: var(--gold-pale); }

.tier-divider {
  height: 1px;
  background: var(--rule);
  margin: 36px 0 28px;
}

.tier-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.tier-from {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  align-self: flex-start;
  margin-top: 12px;
}
.tier-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--gold-pale);
}
.tier-unit {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
}

.tier-features {
  list-style: none;
  flex: 1;
  margin-bottom: 36px;
}
.tier-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
  color: var(--ivory);
}
.tier-features li:last-child {
  border-bottom: 1px solid var(--rule);
}
.tier-check {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  padding-top: 4px;
  flex-shrink: 0;
}

/* Feature list as label/value rows (Investment table style) */
.tier-features-table li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
}
.tf-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.tf-value {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.4;
  color: var(--ivory);
}

.tier-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-pale);
  padding: 10px 0;
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  transition: gap .35s, color .25s;
}
.tier-cta:hover { gap: 22px; color: var(--ivory); }
.tier-cta .arr { font-family: var(--sans); font-style: normal; font-size: 16px; }

.invest-promise {
  margin: 56px auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--cream);
  max-width: 760px;
  padding: 20px 32px;
}
.invest-promise b { color: var(--gold-pale); font-weight: 400; }

@media (max-width: 1100px) {
  .tier-grid-flex { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .tier-grid, .tier-grid-2, .tier-grid-flex { grid-template-columns: 1fr; }
  .tier { border-right: none; border-bottom: 1px solid var(--rule); }
  .tier:last-child { border-bottom: none; }
}

/* ===================================================================
   SECTION VII — KONTAKT
   =================================================================== */

.contact {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(201,169,97,0.1), transparent 60%);
  pointer-events: none;
}
.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-box { grid-template-columns: 1fr; gap: 56px; }
}
.contact-lhs .invite {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(56px, 7vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--ivory);
  margin-bottom: 32px;
  text-wrap: balance;
}
.contact-lhs .invite em { color: var(--gold-pale); }
.contact-lhs p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--cream);
  max-width: 460px;
  margin-bottom: 40px;
}
.contact-card {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.contact-card .key {
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
  display: block;
  margin: 20px 0 4px;
}

.contact-form {
  background: rgba(255,255,255,0.018);
  border: 1px solid var(--rule);
  padding: 40px 36px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.cf-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .cf-row { grid-template-columns: 1fr; gap: 20px; }
  .contact-form { padding: 28px 22px; }
  .cf-submit { flex-direction: column; align-items: flex-start; }
}
.cf {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
}
.cf input, .cf textarea, .cf select {
  font-family: var(--serif);
  font-size: 18px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-strong);
  padding: 8px 0 10px;
  color: var(--ivory);
  outline: none;
  transition: border-color .2s;
}
.cf input:focus, .cf textarea:focus, .cf select:focus {
  border-bottom-color: var(--gold);
}
.cf textarea { min-height: 88px; resize: vertical; line-height: 1.4; }
.cf input::placeholder, .cf textarea::placeholder { color: var(--cream); font-style: normal; opacity: 1; }
.cf select { color: var(--ivory); cursor: pointer; }
.cf select option { background: var(--ink); color: var(--ivory); }

.cf-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  gap: 16px;
  flex-wrap: wrap;
}
.cf-submit .note {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.cf-submit button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-pale);
  padding: 10px 0;
  border-bottom: 1px solid var(--gold);
  transition: gap .3s, color .25s;
}
.cf-submit button:hover { gap: 22px; color: var(--ivory); }

.contact-thanks {
  padding: 60px 40px;
  border: 1px solid var(--gold);
  text-align: center;
  background: rgba(201,169,97,0.04);
}
.contact-thanks .mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  color: var(--gold-pale);
  margin-bottom: 16px;
  line-height: 1;
}
.contact-thanks p {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  line-height: 1.45;
}

/* ===================================================================
   COLOPHON (footer)
   =================================================================== */

.colophon {
  border-top: 1px solid var(--rule-strong);
  padding: 60px 0 32px;
}
.col-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.col-brand {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.col-brand .mark {
  width: 44px; height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 3px 12px rgba(201, 169, 97, 0.3));
}
.col-brand .wt {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}
.col-brand .wt i { font-style: italic; color: var(--gold-pale); }

.col-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--cream);
  line-height: 1.4;
  max-width: 320px;
}
.col-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.col-col ul { list-style: none; }
.col-col li {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  padding: 5px 0;
}
.col-col li a {
  color: var(--cream);
  transition: color .25s;
}
.col-col li a:hover { color: var(--gold-pale); }
.col-col li .plain { color: var(--cream); }

.col-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  flex-wrap: wrap;
  gap: 16px;
}
.col-bottom .signed {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--gold-pale);
}

@media (max-width: 900px) {
  .col-top { grid-template-columns: 1fr 1fr; }
}

/* ===================================================================
   Global mobile section-padding pass — keeps vertical rhythm tight on phones
   =================================================================== */
@media (max-width: 600px) {
  .pagina { padding: 64px 0 40px; }
  .probe { padding: 48px 0 64px; }
  .invest { padding: 64px 0; }
  .contact { padding: 80px 0 64px; }
  .program { padding: 64px 0; }
  .hero { padding: 110px 0 50px; }
  .award { padding: 56px 0 64px; }
  .pagina-head .body h2 { font-size: clamp(34px, 9vw, 86px); }
}

/* ===================================================================
   Reveal — progressive enhancement (no IO)
   =================================================================== */

.reveal {
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.reveal.reveal-init {
  opacity: 0;
  transform: translateY(36px);
}
.reveal.reveal-init.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================================
   EVENT — Live-Event (Vortrag + Übungen · Ticket-Stub)
   =================================================================== */
.event { padding: 56px 0 72px; }
.ev-card {
  max-width: 1060px;
  margin: 0 auto;
  background:
    radial-gradient(120% 140% at 88% 0%, rgba(201,169,97,0.07), transparent 60%),
    linear-gradient(165deg, rgba(31,90,65,0.12), rgba(5,14,11,0.42));
  border: 1px solid var(--rule-strong);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 44px 90px -46px rgba(0,0,0,0.7);
}
.ev-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 20px 34px;
  border-bottom: 1px solid var(--rule);
  background: rgba(5,14,11,0.38);
}
.ev-flag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 600; color: var(--gold-pale);
}
.ev-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: foPulse 2s infinite; }
.ev-clockwrap { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.ev-clocknote { font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); }
.ev-clock { display: flex; align-items: flex-end; gap: 9px; }
.evc-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 50px; padding: 8px 6px 6px;
  background: rgba(5,14,11,0.5); border: 1px solid var(--rule); border-radius: 3px;
}
.evc-unit b {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; line-height: 0.9; color: var(--gold-pale);
  font-variant-numeric: tabular-nums;
}
.evc-unit i {
  font-family: var(--sans); font-style: normal;
  font-size: 8.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage); margin-top: 6px;
}
.evc-sep { font-family: var(--serif); font-size: 22px; color: var(--gold-deep); padding-bottom: 12px; }

.ev-body { display: grid; grid-template-columns: 1.45fr 0.9fr; }
.ev-left { padding: 42px 42px 44px; }
.ev-headline {
  font-family: var(--serif); font-size: 46px; line-height: 1.0;
  letter-spacing: -0.02em; color: var(--ivory); margin-bottom: 18px;
}
.ev-headline em { font-style: italic; color: var(--gold-pale); }
.ev-sub {
  font-family: var(--sans); font-size: 16px; line-height: 1.62;
  color: var(--cream); margin-bottom: 34px; max-width: 48ch;
}
.ev-sub b { color: var(--gold-pale); font-weight: 600; }
.ev-agenda { list-style: none; }
.ev-agenda li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 15px 0; border-top: 1px solid var(--rule);
}
.ev-agenda li:last-child { border-bottom: 1px solid var(--rule); }
.eva-k {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700; color: var(--gold);
  min-width: 84px; flex: 0 0 auto;
}
.eva-v { font-family: var(--serif); font-size: 19px; color: var(--ivory); flex: 1; }
.ev-takeaways { margin-top: 36px; }
.ev-tk-label {
  display: block; margin-bottom: 18px;
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 700; color: var(--gold);
}
.ev-tk-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.ev-tk-list li {
  position: relative; padding-left: 28px;
  font-family: var(--sans); font-size: 15px; line-height: 1.5; color: var(--cream);
}
.ev-tk-list li::before {
  content: '✦'; position: absolute; left: 0; top: 2px;
  color: var(--gold); font-size: 11px;
}

.ev-right {
  border-left: 1px solid var(--rule);
  background: linear-gradient(180deg, rgba(201,169,97,0.07), rgba(31,90,65,0.05));
  display: flex;
}
.ev-ticket { display: flex; flex-direction: column; gap: 24px; width: 100%; padding: 38px 34px; }
.ev-cal { display: flex; flex-direction: column; align-items: center; text-align: center; }
.ev-weekday { font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-pale); font-weight: 600; }
.ev-day { font-family: var(--serif); font-style: italic; font-size: 100px; line-height: 0.82; color: var(--gold-pale); margin: 6px 0 4px; }
.ev-monthyear { font-family: var(--sans); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory); font-weight: 500; }
.ev-meta { display: flex; flex-direction: column; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.ev-metarow { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; }
.ev-metarow + .ev-metarow { border-top: 1px solid var(--rule); }
.ev-metarow span { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.ev-metarow b { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ivory); font-weight: 400; white-space: nowrap; }
.ev-priceblock { display: flex; flex-direction: column; align-items: center; }
.ev-pricelabel { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.ev-pricerow { display: flex; align-items: baseline; gap: 7px; }
.ev-price { font-family: var(--serif); font-style: italic; font-size: 68px; line-height: 0.9; letter-spacing: -0.02em; color: var(--gold-pale); }
.ev-unit { font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em; color: var(--cream); }
.ev-cta { width: 100%; }
.ev-seatsleft { font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); text-align: center; }

@media (max-width: 860px) {
  .ev-body { grid-template-columns: 1fr; }
  .ev-right { border-left: none; border-top: 1px solid var(--rule); }
  .ev-headline { font-size: 36px; }
  .ev-day { font-size: 88px; }
}
@media (max-width: 560px) {
  .event { padding: 48px 0 56px; }
  .ev-head { padding: 16px 22px; }
  .ev-left { padding: 30px 22px; }
  .ev-ticket { padding: 30px 22px; }
  .evc-unit { min-width: 42px; }
  .evc-unit b { font-size: 22px; }
  .eva-k { min-width: 72px; }
}

/* ===================================================================
   HERO — Unterzeile + CTA (aus „Optimized" übernommen, im Dossier-Stil)
   =================================================================== */
.hero .container { text-align: center; }
.hero .hero-quote {
  font-size: clamp(34px, 7vw, 100px);
  line-height: 1.12;
  max-width: 15ch;
  margin: 0 auto;
}
.hero-subquote {
  font-family: var(--serif);
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.55;
  color: var(--cream);
  max-width: 52ch;
  margin: 44px auto 0;
  text-align: center;
  text-wrap: pretty;
}
.hero-subquote em { font-style: italic; color: var(--gold-pale); }
.hero-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  width: auto; margin: 52px auto 0; text-decoration: none; white-space: nowrap;
}

/* ===================================================================
   MISSION — Gründer-Haltung („Warum EvergoldAI?")
   =================================================================== */
.mission { padding: 110px 0; text-align: center; }
.mission .mission-head { display: block; margin-bottom: 26px; }
.mission-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 42px;
  text-wrap: balance;
}
.mission-title em { font-style: italic; color: var(--gold-pale); }
.mission-body {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mission-body p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.55;
  color: var(--ivory);
  text-wrap: pretty;
}
.mission-body em { font-style: italic; color: var(--gold-pale); }
.mission-sign {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  font-weight: 600;
  margin-top: 42px;
}
@media (max-width: 600px) {
  .mission { padding: 70px 0; }
}
