/* ============================================================
   Hawthorne Private Markets 路 Public Site Stylesheet
   Light/Serious Family-Office aesthetic
   ============================================================ */

:root {
  --bg-base: #f7f4ec;
  --bg-elev: #ffffff;
  --bg-tint: #efeadf;
  --bg-deep: #0e1c2e;

  --border: #e3ddcd;
  --border-strong: #c9c1ad;
  --border-deep: #233650;

  --text: #161b24;
  --text-soft: #3b4250;
  --text-muted: #6e7282;
  --text-dim: #9a9a92;
  --text-on-deep: #e9e6df;
  --text-on-deep-muted: #8a93a3;

  --accent: #1d3a5e;
  --accent-soft: #2a4d75;
  --accent-glow: rgba(29, 58, 94, 0.08);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, sans-serif;
  --max-w: 1240px;
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --shadow-card: 0 1px 2px rgba(20, 26, 40, 0.04), 0 8px 28px -12px rgba(20, 26, 40, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
  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.85' numOctaves='2' /%3E%3CfeColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.5  0 0 0 0 0.42  0 0 0 0.04 0' /%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' /%3E%3C/svg%3E");
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.12;
  color: var(--text);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 620px;
  line-height: 1.7;
  font-weight: 300;
}

/* Navigation */
nav.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.2rem 0;
  background: rgba(247, 244, 236, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color 0.3s ease, padding 0.3s ease, background 0.3s ease;
}
nav.topbar.scrolled {
  border-bottom-color: var(--border);
  padding: 0.85rem 0;
  background: rgba(247, 244, 236, 0.92);
}
nav.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--text);
  text-decoration: none;
}
.brand .dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
@media (max-width: 820px) {
  .nav-links li:not(:last-child) { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* Hero */
section.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  top: 9rem;
  left: var(--gutter);
  width: 1px;
  height: 60px;
  background: var(--accent);
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 1.8rem 0 1.6rem;
  max-width: 920px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero .lead { margin-bottom: 2.4rem; }
.hero .cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Trust strip */
.trust-strip {
  margin-top: 5.5rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item .num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--text);
  display: block;
  line-height: 1;
}
.trust-item .num .accent { color: var(--accent); }
.trust-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.7rem;
  display: block;
}
@media (max-width: 720px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

/* Section base */
section.block {
  padding: 7rem 0;
  position: relative;
}
section.block.tinted { background: var(--bg-tint); }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-strong);
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 640px;
}
.section-header .meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  align-self: end;
}

/* Current Offering */
.offering-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.offering-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.offering-status {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(29, 58, 94, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(29, 58, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(29, 58, 94, 0); }
}
.offering-card h3 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}
.offering-card p {
  color: var(--text-soft);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.offering-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}
.stat {
  padding: 1.6rem 1.2rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-last-child(-n+2) { border-bottom: none; }
.stat .stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  display: block;
}
.stat .stat-value {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
}
@media (max-width: 880px) {
  .offering-card { grid-template-columns: 1fr; }
}

/* Track Record Table */
.deals-wrap {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.deals-table {
  width: 100%;
  border-collapse: collapse;
}
.deals-table thead th {
  text-align: left;
  padding: 1.4rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-strong);
  background: var(--bg-tint);
}
.deals-table thead th.right { text-align: right; }
.deals-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.18s;
}
.deals-table tbody tr:last-child { border-bottom: none; }
.deals-table tbody tr:hover { background: var(--bg-tint); }
.deals-table tbody td {
  padding: 1.7rem 1.4rem;
  vertical-align: middle;
}
.deals-table tbody td.right { text-align: right; }
.company-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.company-mark {
  width: 42px; height: 42px;
  border: 1px solid var(--border-strong);
  background: var(--bg-base);
  border-radius: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.company-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1;
}
.company-sector {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
  display: block;
}
.valuation-num {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text);
}
.badge {
  display: inline-block;
  padding: 0.32rem 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  border-radius: 1px;
  color: var(--text-muted);
  font-weight: 500;
}
.badge.listed { color: var(--accent); border-color: rgba(29, 58, 94, 0.3); background: rgba(29, 58, 94, 0.05); }
.badge.held { color: #5a4d2a; border-color: rgba(150, 122, 50, 0.3); background: rgba(180, 150, 70, 0.06); }
.badge.exit { color: #2f5d3a; border-color: rgba(47, 93, 58, 0.3); background: rgba(47, 93, 58, 0.05); }
.badge.partial_exit { color: #2f5d3a; border-color: rgba(47, 93, 58, 0.3); background: rgba(47, 93, 58, 0.05); }
@media (max-width: 760px) {
  .deals-table thead { display: none; }
  .deals-table, .deals-table tbody, .deals-table tr, .deals-table td {
    display: block;
    width: 100%;
  }
  .deals-table tr { padding: 1.5rem 1.2rem; }
  .deals-table td {
    padding: 0.4rem 0;
    text-align: left !important;
  }
  .deals-table td.right { text-align: left; }
  .deals-table td:not(.company)::before {
    content: attr(data-label);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.3rem;
  }
}

/* Methodology */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  box-shadow: var(--shadow-card);
}
.method-card {
  padding: 3rem 2.4rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.method-card:last-child { border-right: none; }
.method-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  display: block;
}
.method-card h3 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.method-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}
@media (max-width: 880px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-card { border-right: none; border-bottom: 1px solid var(--border); }
  .method-card:last-child { border-bottom: none; }
}

/* Form Section */
.form-section {
  background: var(--bg-tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.form-grid h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.4rem; }
.form-grid .lead { margin-bottom: 0; }

form.access-form {
  display: grid;
  gap: 1.4rem;
  background: var(--bg-elev);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.7rem 0;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.field textarea { min-height: 80px; resize: vertical; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.field-error { color: #8b2e2e; font-size: 0.78rem; margin-top: -0.2rem; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-bottom-color: #8b2e2e; }

/* Honeypot - visually hidden but accessible */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.submit-row {
  margin-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 360px;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .field-row { grid-template-columns: 1fr; }
}

/* Alert messages */
.alert {
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
  font-size: 0.92rem;
}
.alert-error { background: rgba(139,46,46,0.05); border-color: rgba(139,46,46,0.3); color: #8b2e2e; }
.alert-success { background: rgba(47,93,58,0.06); border-color: rgba(47,93,58,0.3); color: #2f5d3a; }

/* Footer (DARK NAVY anchor) */
footer {
  background: var(--bg-deep);
  color: var(--text-on-deep);
  padding: 5rem 0 2.5rem;
  position: relative;
  z-index: 5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand h4 {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  margin-bottom: 1.2rem;
  color: var(--text-on-deep);
}
.footer-brand p {
  color: var(--text-on-deep-muted);
  font-size: 0.92rem;
  max-width: 380px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-on-deep);
  margin-bottom: 1.3rem;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.footer-col a {
  color: var(--text-on-deep-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: #ffffff; }
.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-deep);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-on-deep-muted);
  font-size: 0.82rem;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Reveal animation on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* Thank-you page */
.thanks-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem var(--gutter);
}
.thanks-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.thanks-card .check {
  width: 56px; height: 56px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--accent);
}
.thanks-card h1 { font-size: 2.6rem; margin-bottom: 1rem; }
.thanks-card p { color: var(--text-soft); margin-bottom: 2rem; line-height: 1.7; }


/* ===== Hero-Auswahl (Tab-Selector) ===== */
.hero { align-items: flex-start; min-height: auto; }
.hero-intro { position: relative; z-index: 2; }
.selector { margin-top: 3.5rem; position: relative; z-index: 2; scroll-margin-top: 90px; }
.selector-tabs { display: flex; flex-wrap: wrap; gap: 0.25rem; border-bottom: 1px solid var(--border-strong); }
.selector-tab { appearance: none; background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; padding: 0.9rem 1.4rem; font-family: var(--sans); font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em; color: var(--text-muted); cursor: pointer; white-space: nowrap; transition: color .2s ease, border-color .2s ease; }
.selector-tab:hover { color: var(--accent); }
.selector-tab.is-active { color: var(--accent); border-bottom-color: var(--accent); }
.selector-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.selector-panel { padding-top: 2.2rem; }
.selector.js-enabled .selector-panel { display: none; }
.selector.js-enabled .selector-panel.is-active { display: block; animation: panelIn .4s cubic-bezier(.16,1,.3,1); }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.panel-lede { font-family: var(--serif); font-size: 1.6rem; line-height: 1.3; color: var(--text); margin-bottom: 1rem; }
.selector-panel > p { color: var(--text-soft); max-width: 70ch; line-height: 1.75; margin-bottom: 1rem; }
.selector-panel .btn { margin-top: 0.8rem; }
.panel-placeholder { color: var(--text-dim); font-style: italic; }
.panel-flag { display: inline-block; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8a6a1f; background: rgba(180,150,70,.1); border: 1px solid rgba(150,122,50,.3); border-radius: 1px; padding: 0.28rem 0.7rem; margin-bottom: 1.1rem; }
@media (max-width: 680px) {
  .selector { margin-top: 2.5rem; }
  .selector-tabs { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .selector-tabs::-webkit-scrollbar { display: none; }
  .selector-tab { padding: 0.8rem 1rem; font-size: 0.86rem; }
  .panel-lede { font-size: 1.35rem; }
  .hero-intro .cta-row .btn, .selector-panel > .btn { width: 100%; justify-content: center; }
}

/* Track-Record · Performance-Spalte */
.perf { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.perf-up { color: #2f5d3a; }
.perf-down { color: #8b2e2e; }
.perf-empty { color: var(--text-dim); }

/* ===== Hawthorne-Layout: Nav-Dropdown, Hero-Bild, Content-Blöcke ===== */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a .caret { font-size: 0.7em; margin-left: 3px; }
.nav-links .dropdown { position: absolute; top: 100%; left: 0; min-width: 210px; background: var(--bg-elev); border: 1px solid var(--border); box-shadow: var(--shadow-card); margin-top: 0.7rem; padding: 0.5rem 0; list-style: none; display: none; z-index: 200; }
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown.open .dropdown { display: block; }
.nav-links .dropdown li { display: block; }
.nav-links .dropdown a { display: block; padding: 0.5rem 1.1rem; font-size: 0.85rem; color: var(--text-soft); }
.nav-links .dropdown a:hover { color: var(--accent); background: var(--bg-tint); }

.hero { display: block; min-height: auto; padding: 10rem 0 5rem; position: relative; align-items: initial; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center right; background-repeat: no-repeat; border-bottom: 1px solid var(--border); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,244,236,0.95) 0%, rgba(247,244,236,0.78) 28%, rgba(247,244,236,0.35) 55%, rgba(247,244,236,0) 80%); }
.hero-bg .hero-imgtag { position: absolute; top: 1rem; right: 1rem; font-size: 0.7rem; color: var(--text-muted); background: var(--bg-elev); border: 1px solid var(--border); padding: 0.25rem 0.6rem; }
.hero-inner { position: relative; z-index: 2; }

.content-block { padding: 5.5rem 0; }
.content-grid { display: grid; grid-template-columns: 300px 1fr; gap: 3.5rem; align-items: center; }
.content-grid.reverse { grid-template-columns: 1fr 300px; }
.content-media { background: var(--bg-elev); border: 1px solid var(--border);  display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.05em; }
.content-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }
.content-text p { color: var(--text-soft); line-height: 1.75; margin-bottom: 1rem; max-width: 62ch; }
.content-text .cta-row { margin-top: 1.4rem; }
@media (max-width: 820px) {
  .hero-bg { background-position: 40% center; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(247,244,236,0.9) 0%, rgba(247,244,236,0.82) 50%, rgba(247,244,236,0.8) 100%); }
  .hero { padding: 8rem 0 4rem; }
  .content-grid, .content-grid.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .content-grid.reverse .content-text { order: 1; }
  .content-grid.reverse .content-media { order: 2; }
}

.nav-links a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover { color: #fff; border-color: var(--accent-soft); }

.contact-shell { min-height: 72vh; display: flex; align-items: center; padding: 9rem var(--gutter) 6rem; }
.contact-card { max-width: 620px; margin: 0 auto; text-align: center; }
.contact-card h1 { font-size: clamp(2rem, 4vw, 3rem); }
.contact-card .lead { color: var(--text-soft); max-width: none; }
.contact-mail { font-size: 0.95rem; color: var(--text-muted); letter-spacing: 0.04em; }

.page-prose { max-width: 720px; }
.page-prose p { margin-bottom: 1.2rem; color: var(--text-soft); }
.page-prose p.lead { color: var(--text); }

/* Nav-Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > .dropdown-toggle { display: inline-flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.has-dropdown .caret { font-size: 0.7em; transition: transform 0.2s; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--bg-elev); border: 1px solid var(--border);
  box-shadow: var(--shadow-card); padding: 0.5rem 0; list-style: none;
  display: none; z-index: 200;
}
.dropdown-menu a {
  display: block; padding: 0.6rem 1.2rem; font-size: 0.88rem;
  color: var(--text-soft); white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--bg-tint); color: var(--accent); }
.has-dropdown:hover > .dropdown-menu,
.has-dropdown.open > .dropdown-menu { display: block; }
.has-dropdown.open > .dropdown-toggle .caret { transform: rotate(180deg); }

/* Code-Gate (What we offer) */
.offering-locked {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}
.offering-locked h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.offering-locked p { color: var(--text-soft); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; }
.code-form { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; max-width: 520px; margin: 0 auto; }
.code-form input {
  flex: 1 1 220px; background: transparent; border: 1px solid var(--border-strong);
  color: var(--text); padding: 0.85rem 1rem; font-family: var(--sans); font-size: 1rem;
  letter-spacing: 0.18em; text-align: center; text-transform: uppercase; border-radius: 1px;
  transition: border-color 0.2s;
}
.code-form input:focus { outline: none; border-color: var(--accent); }
.lock-hint { margin-top: 1.6rem; font-size: 0.88rem; color: var(--text-muted); }
.lock-hint a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) {
  .code-form { flex-direction: column; }
  .code-form .btn { justify-content: center; }
}

/* Bilder in den Content-Blöcken */
.content-media { display: block; padding: 0; overflow: hidden; }
.content-media img { display: block; width: 100%; height: 100%; object-fit: cover; }