
:root {
  --cream: #EFEAE4;
  --ink: #343434;
  --ink-light: #6B6559;
  --gold: #7C7A6A;
  --gold-pale: rgba(124,122,106,0.08);
  --rule: rgba(52,52,52,0.1);
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  lang: de;
}

/* Justify exceptions */
h1, h2, h3, h4,
nav, footer,
table, th, td,
.hero-h1, .hero-sub, .hero-stats,
.stat-num, .stat-label,
.sec-label, .nav-links, .nav-logo,
.team-name, .team-role,
.doc-name, .doc-desc, .doc-desc,
.foot-logo, .foot-note,
.gate-inner, .gate-label, .gate-tag,
[style*="font-family:var(--mono)"],
[style*="font-family:var(--serif)"],
[style*="text-align:center"],
[style*="letter-spacing"] {
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
}

.accent p, p.body, .body {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ─── GATE ─────────────────────────────────────────── */
#gate {
  position: fixed; inset: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000;
  transition: opacity 0.5s ease;
}
#gate.out { opacity: 0; pointer-events: none; }

.gate-inner { width: 320px; text-align: center; }

.gate-logo {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gate-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-light);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  text-align: center;
}
.gate-rule {
  width: 32px; height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
}
.gate-label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 10px;
  text-align: left;
}
.gate-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.gate-error {
  font-family: var(--mono);
  font-size: 10px;
  color: #8B3A3A;
  min-height: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-align: left;
}
.gate-btn {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 15px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.gate-btn:hover { background: var(--gold); }

.gate-langs {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 24px;
}
.gate-langs button {
  background: none; border: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  cursor: pointer;
  color: var(--ink-light);
  padding: 3px 6px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.gate-langs button.active,
.gate-langs button:hover { color: var(--gold); border-color: var(--gold); }

.gate-notice {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-light);
  letter-spacing: 0.06em;
  line-height: 1.8;
  opacity: 0.55;
}

/* ─── SITE ─────────────────────────────────────────── */
#site { display: none; }

/* ─── NAV ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  z-index: 500;
  padding: 0 48px;
  height: 54px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-lang {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ink-light);
  cursor: pointer;
  background: none;
  border: 1px solid var(--rule);
  padding: 4px 10px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-lang:hover { color: var(--gold); border-color: var(--gold); }

/* ─── SECTIONS ─────────────────────────────────────── */
section { padding: 72px 48px; }
section .container > :last-child { margin-bottom: 0; }
.container { max-width: 940px; margin: 0 auto; }

.sec-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.sec-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 28px;
}
h2 em { font-style: italic; color: var(--gold); }

h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 16px;
}

p.body {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.78;
  margin-bottom: 16px;
  max-width: 680px;
}

hr.sec-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0 48px;
}

/* ─── HERO ─────────────────────────────────────────── */
#hero {
  padding-top: 160px;
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--rule);
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 32px;
  max-width: 760px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  color: var(--ink-light);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 52px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-cta:hover { color: var(--gold); border-color: var(--gold); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: 72px;
  padding-top: 44px;
}
.stat {
  padding-right: 36px;
}
.stat + .stat {
  border-left: 1px solid var(--rule);
  padding-left: 36px;
  padding-right: 36px;
}
.stat:last-child { padding-right: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ─── TWO COL ──────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* ─── TABLES ───────────────────────────────────────── */
.dt {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
}
.dt th {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding: 10px 14px 8px;
  text-align: left;
  border-bottom: 1px solid var(--ink);
}
.dt td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-light);
  vertical-align: top;
  line-height: 1.55;
}
.dt tr:last-child td { border-bottom: none; }
.dt td:first-child {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink);
  white-space: nowrap;
  letter-spacing: 0.04em;
  width: 38%;
}
.dt .val {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
}

/* ─── ACCENT BLOCK ─────────────────────────────────── */
.accent {
  border-left: 2px solid var(--gold);
  padding: 22px 26px;
  background: var(--gold-pale);
  margin: 32px 0;
}
.accent p {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
}

/* ─── DEAL GRID ────────────────────────────────────── */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 36px;
}
.deal-item {
  background: var(--cream);
  padding: 22px 24px;
}
.deal-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 8px;
}
.deal-val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.deal-val small {
  font-size: 12px;
  color: var(--ink-light);
  font-family: var(--sans);
  display: block;
  margin-top: 3px;
}

/* ─── SCENARIO GRID ────────────────────────────────── */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  margin-top: 36px;
}
.scenario {
  padding: 32px 26px;
  border-right: 1px solid var(--rule);
}
.scenario:last-child { border-right: none; }
.scenario-letter {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.scenario-title {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
}
.scenario p {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.68;
}

/* ─── EVIDENCE PHASES ──────────────────────────────── */
.ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  margin-top: 36px;
}
.ev-phase {
  padding: 26px 22px;
  border-right: 1px solid var(--rule);
}
.ev-phase:last-child { border-right: none; }
.ev-phase-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.ev-phase-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
}
.ev-phase p {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.68;
}

/* ─── TEAM GRID ────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 36px;
}
.team-card {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.team-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.team-bio {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.72;
}

/* ─── PROGRESS ─────────────────────────────────────── */
.progress-wrap { margin-top: 36px; }
.progress-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-bottom: 10px;
}
.progress-meta strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--ink);
}
.progress-track {
  height: 2px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}

/* ─── DOCUMENTS ────────────────────────────────────── */
.doc-list { margin-top: 32px; }
.doc-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  gap: 24px;
}
.doc-item:first-child { border-top: 1px solid var(--rule); }
.doc-info { flex: 1; }
.doc-name {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}
.doc-desc {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.06em;
}
.doc-dl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.doc-dl:hover { color: var(--gold); border-color: var(--gold); }

/* ─── RISK NOTE ────────────────────────────────────── */
.risk {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 22px;
  border: 1px solid rgba(124,122,106,0.25);
  margin-top: 36px;
}
.risk-icon {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 1px;
  flex-shrink: 0;
}
.risk p {
  font-size: 12px;
  color: var(--ink-light);
  line-height: 1.72;
}

/* ─── CONTACT SECTION ──────────────────────────────── */
#contact {
  background: var(--ink);
  color: var(--cream);
}
#contact .sec-label { color: rgba(124,122,106,0.85); }
#contact .sec-label::before { background: rgba(124,122,106,0.85); }
#contact h2 { color: var(--cream); }
#contact h2 em { color: rgba(124,122,106,0.9); }
#contact p.body { color: rgba(245,242,236,0.62); }
.contact-rule {
  width: 32px; height: 1px;
  background: var(--gold);
  margin: 40px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 36px;
}
.contact-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 4px;
}
.contact-role {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(124,122,106,0.85);
  margin-bottom: 14px;
}
.contact-info {
  font-size: 14px;
  color: rgba(245,242,236,0.62);
  line-height: 1.8;
}
.contact-info a {
  color: rgba(245,242,236,0.62);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,242,236,0.2);
  transition: color 0.2s;
}
.contact-info a:hover { color: rgba(124,122,106,0.9); }

.disclaimer {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,242,236,0.08);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  color: rgba(245,242,236,0.28);
  line-height: 1.85;
}

/* ─── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(245,242,236,0.07);
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.foot-logo {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.35);
}
.foot-note {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(245,242,236,0.22);
}

/* ─── SCROLL FADE ──────────────────────────────────── */
.fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade.in { opacity: 1; transform: none; }

/* ─── LANGUAGE ─────────────────────────────────────── */
[data-lang="en"] { display: none; }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 720px) {
  section { padding: 56px 24px; }
  hr.sec-rule { margin: 0 24px; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: 1fr; gap: 32px; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 28px; }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario { border-right: none; border-bottom: 1px solid var(--rule); }
  .scenario:last-child { border-bottom: none; }
  .ev-grid { grid-template-columns: 1fr; }
  .ev-phase { border-right: none; border-bottom: 1px solid var(--rule); }
  .ev-phase:last-child { border-bottom: none; }
  .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .hotel-two-col { grid-template-columns: 1fr !important; }
  #hotel-main-grid { grid-template-columns: 1fr !important; }
  #origin .fade[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  #origin > div:first-child { margin-left: 0 !important; margin-right: 0 !important; }
  #hotel-main-grid > div:last-child { min-height: 280px !important; }
  .hotel-two-col > div:last-child { min-height: 280px !important; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
}

/* BYKARB layer v1 */
body{font-weight:300;text-align:left;-webkit-hyphens:none;hyphens:none}
.accent p,p.body,.body{text-align:left;-webkit-hyphens:none;hyphens:none}
strong,b,th{font-weight:500}
h1,h2,h3,h4,.hero-h1{font-weight:400}
.sec-label::before{content:'\25CB';width:auto;height:auto;background:none;
  font-size:8px;line-height:1;transform:translateY(-1px)}
.gate-btn,button.gate-btn{border-radius:999px}
.gate-langs button{border-radius:999px}
input,.gate-input{border-radius:0}
::selection{background:rgba(191,190,160,.45)}
h1 em,h2 em,h3 em,.hero-h1 em,.gate-tag{font-style:normal}
/* BYKARB Luft v2 */
section{padding:128px 48px}
#hero{padding-bottom:140px}
h2{margin-bottom:40px}
.sec-label{margin-bottom:40px}
.team-grid{gap:72px;margin-top:64px}
.contact-grid{gap:72px}
.two-col{gap:96px}
@media (max-width:720px){section{padding:84px 24px}}
/* BYKARB inverse v3: dark grounds are Moss Cream, never Ink */
#contact,footer,.dark{background:#7C7A6A;color:#FFFFFF}
.dark .sec-label,#contact .sec-label{color:rgba(255,255,255,.8)}
.dark .sec-label::before,#contact .sec-label::before{background:none}
.gate-btn,button.gate-btn{background:#7C7A6A;color:#FFFFFF}
.gate-btn:hover{background:#343434}
[style*="background:var(--ink)"]{background:#7C7A6A!important}
#contact h2{color:#FFFFFF}
/* BYKARB v4: Kontroll-Flaechen + eckige Bilder */
.lab-img .cap,.dl-btn,button.seg.active,.tg.active,.contact-photo-ph{background:#7C7A6A;border-color:#7C7A6A}
img{border-radius:0!important}
.startbtn,.dl-btn{border-radius:999px}

