/* ==========================================================================
   Bethesna Verwaltung GmbH — v2 „Light Ledger"
   Private Beteiligungs- & Vermögensverwaltung, Berlin

   Markenpalette:  Tannengrün #0F2A22 · Champagner #C6A356
                   Weiß #FFFFFF · Sandstein #FAFAF7 · Tinte #1A1714
   Schrift:        Playfair Display (Display) · Manrope (Body)

   Richtung v2: hell, Tinte als Textfarbe, sichtbares Raster & Linien,
   Grün nur als Akzentfläche, Gold für Ziffern & Details.
   ========================================================================== */

:root {
  --paper: #FFFFFF;
  --sand: #FAFAF7;
  --ink: #1A1714;
  --ink-70: rgba(26, 23, 20, 0.72);
  --ink-50: rgba(26, 23, 20, 0.52);
  --ink-15: rgba(26, 23, 20, 0.14);
  --ink-08: rgba(26, 23, 20, 0.08);
  --green: #0F2A22;
  --green-soft: rgba(15, 42, 34, 0.85);
  --gold: #C6A356;
  --gold-40: rgba(198, 163, 86, 0.4);
  --gold-15: rgba(198, 163, 86, 0.15);
  --sand-70: rgba(250, 250, 247, 0.72);
  --sand-45: rgba(250, 250, 247, 0.45);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", Inter, system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --rail-w: 76px;
  --gutter: clamp(20px, 4vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--green); color: var(--sand); }

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Mikro-Typo ---------- */
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.label--gold { color: var(--gold); }
.label--sand { color: var(--sand-45); }

[data-rise] { will-change: transform, opacity; }
html.js [data-rise] { opacity: 0; transform: translateY(28px); }

.hline { display: block; overflow: hidden; }
.hline__in { display: inline-block; will-change: transform; }
html.js .hline__in { transform: translateY(112%); }
html.js .top, html.js .rail { opacity: 0; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.btn span { position: relative; z-index: 1; }
.btn--solid { background: var(--green); color: var(--sand); }
.btn--solid::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s var(--ease);
}
.btn--solid:hover { color: var(--green); }
.btn--solid:hover::after { transform: scaleX(1); }

.btn--line {
  border: 1px solid var(--ink-15);
  color: var(--ink);
}
.btn--line:hover { border-color: var(--green); background: var(--sand); }

/* ==========================================================================
   Seitenschiene
   ========================================================================== */
.rail {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--rail-w);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 28px;
  border-right: 1px solid var(--ink-08);
  background: var(--paper);
}
.rail__grape {
  width: 20px; height: 28px;
  background: var(--green);
  -webkit-mask: url("../assets/bethesna-grape-green.svg") center / contain no-repeat;
  mask: url("../assets/bethesna-grape-green.svg") center / contain no-repeat;
}
.rail__track {
  position: relative;
  flex: 1;
  width: 1px;
  margin: 28px 0;
  background: var(--ink-08);
}
.rail__progress {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top center;
}
.rail__index {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.rail__index li {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-50);
  opacity: 0.45;
  transition: opacity 0.35s, color 0.35s;
  font-variant-numeric: tabular-nums;
}
.rail__index li.is-active { opacity: 1; color: var(--gold); }
.rail__word {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* ==========================================================================
   Kopfzeile
   ========================================================================== */
.top {
  position: fixed;
  top: 0; left: var(--rail-w); right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding: 0 var(--gutter);
  height: 76px;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.top.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--ink-08);
  height: 64px;
}

.top__brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.top__grape {
  width: 20px; height: 27px;
  background: var(--green);
  -webkit-mask: url("../assets/bethesna-grape-green.svg") center / contain no-repeat;
  mask: url("../assets/bethesna-grape-green.svg") center / contain no-repeat;
}
.top__wordmark {
  width: 124px; height: 15px;
  background: var(--green);
  -webkit-mask: url("../assets/bethesna-bethesna-green.svg") center / contain no-repeat;
  mask: url("../assets/bethesna-bethesna-green.svg") center / contain no-repeat;
}

.top__nav { display: flex; gap: clamp(18px, 2.2vw, 36px); }
.top__nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
  padding: 6px 0;
  transition: color 0.3s;
}
.top__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s var(--ease);
}
.top__nav a:hover { color: var(--ink); }
.top__nav a:hover::after { transform: scaleX(1); transform-origin: left center; }

.top__cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--gold-40);
  border-radius: 4px;
  padding: 10px 20px;
  transition: background-color 0.35s var(--ease), color 0.35s, border-color 0.35s;
}
.top__cta:hover { background: var(--green); border-color: var(--green); color: var(--sand); }

.top__burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 130;
}
.top__burger span {
  position: absolute;
  left: 9px; right: 9px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), background-color 0.4s;
}
.top__burger span:first-child { top: 18px; }
.top__burger span:last-child { bottom: 18px; }
.top.is-open .top__burger span { background: var(--sand); }
.top.is-open .top__burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
.top.is-open .top__burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.top.is-open { background: transparent; box-shadow: none; }
.top.is-open .top__wordmark { background: var(--sand); }

/* ==========================================================================
   Mobiles Menü
   ========================================================================== */
.menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--green);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20vh 9vw 44px;
  visibility: hidden;
  clip-path: circle(0% at calc(100% - 50px) 38px);
}
.menu__links { display: flex; flex-direction: column; }
.menu__links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 500;
  color: var(--sand);
  border-bottom: 1px solid rgba(198, 163, 86, 0.16);
}
.menu__links a i {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.menu__foot {
  margin-top: auto;
  padding-top: 32px;
  font-size: 14px;
  line-height: 24px;
  color: var(--sand-70);
}
.menu__foot a { color: var(--gold); }

/* ==========================================================================
   Seitenlayout
   ========================================================================== */
.page { margin-left: var(--rail-w); }
.footer { margin-left: var(--rail-w); }

/* ==========================================================================
   01 · Hero
   ========================================================================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: calc(76px + 4vh) var(--gutter) 0;
}
.hero__grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: stretch;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vh 0;
}
.hero__label { margin-bottom: clamp(20px, 3.5vh, 40px); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6.6vw, 86px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
  hyphens: auto;
  overflow-wrap: break-word;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero__deck {
  margin-top: clamp(16px, 2vh, 26px);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink-50);
}

.hero__foot {
  display: flex;
  align-items: flex-end;
  gap: clamp(28px, 4vw, 72px);
  margin-top: clamp(32px, 5.5vh, 72px);
}
.hero__sub {
  max-width: 46ch;
  font-size: 16px;
  line-height: 27px;
  color: var(--ink-70);
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.hero__plate {
  position: relative;
  border-radius: 20px;
  background: var(--green);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 24px 64px -32px rgba(15, 42, 34, 0.45);
}
html.js .hero__plate { opacity: 0; }
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__plate-grape {
  position: absolute;
  top: 22px; right: 22px;
  width: 26px; height: 36px;
  background: var(--gold);
  opacity: 0.9;
  -webkit-mask: url("../assets/bethesna-grape-gold.svg") center / contain no-repeat;
  mask: url("../assets/bethesna-grape-gold.svg") center / contain no-repeat;
}
.hero__plate-caption {
  position: absolute;
  left: 22px; right: 22px; bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-45);
}

.hero__ticker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding: 22px 0 26px;
  margin-top: clamp(24px, 4vh, 48px);
  border-top: 1px solid var(--ink-08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.hero__ticker i {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ==========================================================================
   Intro-Statement
   ========================================================================== */
.intro {
  padding: clamp(96px, 13vw, 200px) var(--gutter);
  max-width: 1280px;
}
.intro__rule {
  width: 64px; height: 3px;
  background: var(--gold);
  margin-bottom: clamp(32px, 4vw, 56px);
  transform-origin: left center;
}
html.js .intro__rule { transform: scaleX(0); }
.intro__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.36;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 30ch;
}
.intro__text .word { opacity: 0.14; }
.intro__sig {
  margin-top: clamp(28px, 3.5vw, 44px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-50);
}

/* ==========================================================================
   02 · Tätigkeitsfelder
   ========================================================================== */
.fields {
  background: var(--sand);
  border-block: 1px solid var(--ink-08);
  padding: clamp(88px, 11vw, 168px) var(--gutter);
}
.fields__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.fields__head {
  position: sticky;
  top: 110px;
}
.fields__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 18px;
}
.fields__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0;
}
.fields__note {
  margin-top: 24px;
  max-width: 36ch;
  font-size: 14px;
  line-height: 24px;
  color: var(--ink-50);
  padding-left: 18px;
  border-left: 2px solid var(--gold-40);
}

.fields__stack { display: flex; flex-direction: column; gap: 20px; }
.fcard {
  position: sticky;
  background: var(--paper);
  border: 1px solid var(--ink-08);
  border-top: 3px solid var(--green);
  border-radius: 14px;
  padding: clamp(26px, 3vw, 44px);
  box-shadow: 0 18px 48px -36px rgba(26, 23, 20, 0.4);
}
.fcard:nth-child(1) { top: 104px; }
.fcard:nth-child(2) { top: 120px; }
.fcard:nth-child(3) { top: 136px; }
.fcard:nth-child(4) { top: 152px; }
.fcard:nth-child(5) { top: 168px; }
.fcard:nth-child(6) { top: 184px; }

.fcard__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.fcard__no {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 30px;
  color: var(--gold);
}
.fcard__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
  text-align: right;
}
.fcard__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.01em;
  color: var(--green);
  margin-bottom: 14px;
}
.fcard__text {
  max-width: 56ch;
  font-size: 15px;
  line-height: 26px;
  color: var(--ink-70);
}

/* ==========================================================================
   03 · Content (Säule 2) — Karten-Raster
   ========================================================================== */
.pillar { padding: clamp(88px, 11vw, 168px) var(--gutter); }
.pillar__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 72px); }
.pillar__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 16px;
}
.pillar__lead {
  margin-top: 20px;
  max-width: 56ch;
  font-size: 16px;
  line-height: 27px;
  color: var(--ink-70);
}
.cardgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.ccard {
  background: var(--sand);
  border: 1px solid var(--ink-08);
  border-radius: 14px;
  padding: clamp(26px, 2.6vw, 40px);
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.ccard--wide { grid-column: 1 / -1; }
.ccard:hover {
  background: var(--paper);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -34px rgba(26, 23, 20, 0.45);
}
.ccard__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(28px, 3.4vw, 48px);
}
.ccard__name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(20px, 1.9vw, 27px);
  letter-spacing: -0.01em;
  color: var(--green);
  margin-bottom: 12px;
}
.ccard__text { font-size: 15px; line-height: 26px; color: var(--ink-70); max-width: 60ch; }

/* ==========================================================================
   04 · Ablauf — nummerierte Schritte
   ========================================================================== */
.steps { background: var(--sand); border-block: 1px solid var(--ink-08); padding: clamp(88px, 11vw, 168px) var(--gutter); }
.steps__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 72px); }
.steps__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 16px;
}
.steps__lead { margin-top: 18px; max-width: 52ch; font-size: 16px; line-height: 27px; color: var(--ink-70); }
.steps__list { list-style: none; border-top: 1px solid var(--ink-15); }
.step {
  display: grid;
  grid-template-columns: clamp(90px, 12vw, 180px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
  padding: clamp(26px, 3.2vw, 48px) 0;
  border-bottom: 1px solid var(--ink-15);
}
.step__no {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(64px, 8vw, 130px);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  font-variant-numeric: tabular-nums;
  transition: color 0.5s var(--ease);
}
.step:hover .step__no { color: var(--gold); }
.step__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--green);
  margin-bottom: 10px;
}
.step__body p { max-width: 56ch; font-size: 15px; line-height: 26px; color: var(--ink-70); }

/* ==========================================================================
   Region & Haltung
   ========================================================================== */
.region {
  background: var(--green);
  color: var(--sand);
  padding: clamp(88px, 11vw, 168px) var(--gutter);
}
.region__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.region__copy { position: sticky; top: 110px; }
.region__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.16;
  color: var(--sand);
  margin-top: 16px;
}
.region__text {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 16px;
  line-height: 27px;
  color: var(--sand-70);
}
.region__list { list-style: none; border-top: 1px solid rgba(198, 163, 86, 0.3); }
.region__list li {
  padding: clamp(18px, 2.2vw, 28px) 0;
  border-bottom: 1px solid rgba(198, 163, 86, 0.18);
  font-size: 16px;
  line-height: 27px;
  color: var(--sand-70);
  padding-left: 26px;
  position: relative;
}
.region__list li::before {
  content: "";
  position: absolute;
  left: 0; top: clamp(25px, 2.7vw, 35px);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.region__list b { color: var(--sand); font-weight: 700; }

/* ==========================================================================
   FAQ — Akkordeon
   ========================================================================== */
.faq { padding: clamp(88px, 11vw, 168px) var(--gutter); }
.faq__head { max-width: 760px; margin-bottom: clamp(36px, 4.5vw, 64px); }
.faq__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 14px;
}
.faq__list { border-top: 1px solid var(--ink-15); max-width: 1000px; }
.faq__item { border-bottom: 1px solid var(--ink-15); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: clamp(22px, 2.6vw, 34px) 0;
}
.faq__q span:first-child {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.9vw, 26px);
  line-height: 1.32;
  color: var(--green);
  transition: color 0.35s;
}
.faq__q:hover span:first-child { color: var(--ink); }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 34px; height: 34px;
  margin-top: 4px;
  border: 1px solid var(--gold-40);
  border-radius: 50%;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.5px;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), background-color 0.4s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon { background: var(--green); border-color: var(--green); }
.faq__item.is-open .faq__icon::before { background: var(--sand); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); background: var(--sand); }
.faq__a { overflow: hidden; }
html.js .faq__a { height: 0; }
.faq__a p {
  max-width: 80ch;
  padding-bottom: clamp(22px, 2.6vw, 34px);
  font-size: 15px;
  line-height: 27px;
  color: var(--ink-70);
}

/* ==========================================================================
   05 · Kontakt
   ========================================================================== */
.contact { padding: clamp(88px, 11vw, 160px) var(--gutter); }
.contact__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(36px, 5vw, 96px);
  background: var(--green);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 96px);
  overflow: hidden;
  box-shadow: 0 32px 80px -40px rgba(15, 42, 34, 0.5);
}
.contact__grain {
  position: absolute;
  inset: -50%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.contact__left { position: relative; }
.contact__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.18;
  color: var(--sand);
  margin-top: 18px;
}
.contact__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.contact__sub {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 15px;
  line-height: 26px;
  color: var(--sand-70);
}
.contact__right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 28px;
}
.contact__mail {
  display: inline-block;
  text-align: center;
  background: var(--gold);
  color: var(--green);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 20px 28px;
  border-radius: 8px;
  transition: background-color 0.35s var(--ease), color 0.35s;
}
.contact__mail:hover { background: var(--sand); }
.contact__addr {
  font-size: 14px;
  line-height: 25px;
  color: var(--sand-70);
  border-left: 2px solid var(--gold-40);
  padding-left: 18px;
}
.contact__disclaimer {
  max-width: 70ch;
  margin: clamp(28px, 3vw, 40px) auto 0;
  text-align: center;
  font-size: 12.5px;
  line-height: 21px;
  color: var(--ink-50);
}

/* ---------- Kontaktformular ---------- */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.contact__hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand-70);
}
.field__req { color: var(--gold); }
.field__opt {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--sand-45);
}
.field__input {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 24px;
  color: var(--sand);
  background: rgba(250, 250, 247, 0.04);
  border: 1px solid var(--gold-40);
  border-radius: 8px;
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.field__input::placeholder { color: var(--sand-45); }
.field__input:hover { border-color: rgba(198, 163, 86, 0.6); }
.field__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(250, 250, 247, 0.07);
}
.field__textarea { resize: vertical; min-height: 120px; }
.contact__submit {
  align-self: flex-start;
  margin-top: 4px;
  background: var(--gold);
  color: var(--green);
}
.contact__submit::after { background: var(--sand); }
.contact__submit:hover { color: var(--green); }
.contact__consent {
  font-size: 12px;
  line-height: 19px;
  color: var(--sand-45);
}
.contact__consent a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.contact__consent a:hover { color: var(--sand); }
.contact__alt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(198, 163, 86, 0.22);
}
.contact__alt-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand-45);
}

/* ==========================================================================
   Fußzeile
   ========================================================================== */
.footer {
  background: var(--ink);
  color: var(--sand-45);
  padding: clamp(48px, 6vw, 80px) var(--gutter) 28px;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: clamp(32px, 5vw, 96px);
  padding-bottom: clamp(36px, 5vw, 64px);
}
.footer__brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.footer__grape {
  width: 20px; height: 27px;
  background: var(--gold);
  -webkit-mask: url("../assets/bethesna-grape-gold.svg") center / contain no-repeat;
  mask: url("../assets/bethesna-grape-gold.svg") center / contain no-repeat;
}
.footer__wordmark {
  width: 124px; height: 15px;
  background: var(--sand);
  -webkit-mask: url("../assets/bethesna-bethesna-white.svg") center / contain no-repeat;
  mask: url("../assets/bethesna-bethesna-white.svg") center / contain no-repeat;
}
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--sand-70);
  transition: color 0.3s;
  width: fit-content;
}
.footer__nav a:hover { color: var(--gold); }
.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gold);
  text-align: right;
  margin-left: auto;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 250, 247, 0.1);
  font-size: 12px;
  letter-spacing: 0.03em;
}
.footer__legal a:hover { color: var(--gold); }
.footer__clock { color: var(--gold); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .rail { display: none; }
  .page, .footer { margin-left: 0; }
  .top { left: 0; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 900px) {
  .top__nav, .top__cta { display: none; }
  .top__burger { display: block; }

  .hero { padding-top: calc(64px + 3vh); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { padding: 2vh 0 0; }
  .hero__foot { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
  .hero__plate { min-height: 320px; }

  .fields__grid, .region__grid { grid-template-columns: 1fr; }
  .fields__head, .region__copy { position: static; }
  .fcard:nth-child(n) { top: 84px; }

  .cardgrid { grid-template-columns: 1fr; }
  .ccard--wide { grid-column: auto; }

  .step { grid-template-columns: minmax(56px, 80px) minmax(0, 1fr); align-items: start; }
  .step__no { font-size: clamp(44px, 13vw, 68px); }

  .contact__panel { grid-template-columns: 1fr; }
  .contact__right { justify-content: flex-start; }

  .footer__tag { text-align: left; margin-left: 0; }
}

@media (max-width: 560px) {
  .hero__title { font-size: clamp(40px, 11.5vw, 54px); }
  .hline--indent { padding-left: 8vw; }
  .hero__ticker { gap: 10px 14px; }
  .faq__q span:first-child { font-size: 17px; }
  .contact__panel { padding: 32px 24px; }
  .contact__mail { width: 100%; }
}

/* ==========================================================================
   Reduzierte Bewegung
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html.js [data-rise] { opacity: 1; transform: none; }
  html.js .hline__in { transform: none; }
  html.js .hero__plate { opacity: 1; }
  html.js .intro__rule { transform: none; }
  html.js .top, html.js .rail { opacity: 1; }
  html.js .faq__a { height: auto; }
  .rail__progress { transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ==========================================================================
   Rechtsseiten (Impressum / Datenschutz)
   ========================================================================== */
.legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal__top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px var(--gutter);
  border-bottom: 1px solid var(--ink-08);
}
.legal__top .top__grape { width: 20px; height: 27px; }
.legal__back {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-70);
}
.legal__back:hover { color: var(--gold); }
.legal__main {
  flex: 1;
  width: min(92vw, 760px);
  margin-inline: auto;
  padding: clamp(48px, 8vw, 110px) 0;
}
.legal__main h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--green);
  margin-bottom: 12px;
}
.legal__lead { color: var(--ink-50); margin-bottom: clamp(32px, 4vw, 52px); }
.legal__main h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
  margin: clamp(28px, 3.4vw, 44px) 0 10px;
  letter-spacing: -0.01em;
}
.legal__main p, .legal__main li { font-size: 15px; line-height: 27px; color: var(--ink-70); }
.legal__main p { margin-bottom: 12px; }
.legal__main ul { padding-left: 20px; margin-bottom: 12px; }
.legal__main a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal__main a:hover { color: var(--gold); }
.legal__note {
  margin-top: clamp(36px, 5vw, 56px);
  padding: 18px 22px;
  background: var(--sand);
  border-left: 2px solid var(--gold-40);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  line-height: 22px;
  color: var(--ink-50);
}
.legal__foot {
  padding: 24px var(--gutter);
  border-top: 1px solid var(--ink-08);
  font-size: 12px;
  color: var(--ink-50);
}
