:root {
  --bg: #0E0E0C;
  --bg-elevated: #16161300;
  --bg-card: #1a1a17;
  --bg-card-hover: #21211c;
  --text: #F5EFDE;
  --text-muted: #DDD5C0;
  --text-dim: #B8B0A0;
  --text-faint: #6a655a;
  --gold: #D4A017;
  --gold-dim: #b88810;
  --red: #B91C1C;
  --line: #2a2823;
  --line-strong: #3a3830;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-mono: "JetBrains Mono", "Menlo", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Warm vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.5) 100%);
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text); }

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

/* ============ LAYOUT PRIMITIVES ============ */
.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section + .section { border-top: 0.5px solid var(--line); }

/* Eckmarker */
.corners {
  position: relative;
}
.corners::before, .corners::after,
.corner-bl, .corner-br {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
.corners::before { top: 0; left: 0; border-top-width: 2px; border-left-width: 2px; }
.corners::after { top: 0; right: 0; border-top-width: 2px; border-right-width: 2px; }
.corner-bl { bottom: 0; left: 0; border-bottom-width: 2px; border-left-width: 2px; }
.corner-br { bottom: 0; right: 0; border-bottom-width: 2px; border-right-width: 2px; }

/* Dossier stamp */
.stamp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 32px;
}
.stamp .right { color: var(--text); display: flex; align-items: center; gap: 8px; font-weight: 600; }
.stamp .dot {
  width: 6px; height: 6px; background: var(--red);
  border-radius: 50%; display: inline-block;
  animation: pulse 2s infinite;
}
.stamp-bottom { padding-top: 32px; padding-bottom: 0; color: var(--text-faint); }
.stamp-bottom .right { color: var(--text-faint); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Section headings */
.section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold);
}

.section-intro {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 56px;
}

/* ============ TOP BAR ============ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 12, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2.5px;
  color: var(--text);
}
.logo .dot { color: var(--gold); }
.nav { display: flex; gap: 32px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.nav a { color: var(--text-muted); }
.nav a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .nav { display: none; }
}

/* ============ HERO ============ */
.hero {
  padding: 64px 0 96px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 24px 32px;
  position: relative;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 24px 16px;
  }
}

.hero-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #1a1a17 0%, #2a2620 100%);
  border: 0.5px solid var(--line-strong);
  overflow: hidden;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.92);
}
/* Photo corner markers */
.hero-portrait::before, .hero-portrait::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-portrait::before { top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; }
.hero-portrait::after { bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; }
/* Photo stamp overlay */
.photo-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(14, 14, 12, 0.75);
  border: 0.5px solid var(--gold);
  padding: 4px 8px;
  z-index: 4;
  backdrop-filter: blur(2px);
}
.photo-stamp-bl {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--text);
  background: rgba(14, 14, 12, 0.7);
  padding: 3px 7px;
  z-index: 4;
  backdrop-filter: blur(2px);
}

.hero-bullets {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  line-height: 2.2;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 28px;
  font-weight: 500;
  color: var(--text);
}
.hero-slogan em { color: var(--gold); font-style: italic; font-weight: 600; }

.hero-subline {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 500px;
}

/* Lead magnet box */
.leadbox {
  background: var(--bg-card);
  border: 0.5px solid var(--gold);
  padding: 24px 28px;
  position: relative;
  max-width: 520px;
}
.leadbox::before, .leadbox::after {
  content: ""; position: absolute; width: 12px; height: 12px;
  border-color: var(--gold); border-style: solid; border-width: 0;
}
.leadbox::before { top: -1px; left: -1px; border-top-width: 2px; border-left-width: 2px; }
.leadbox::after { bottom: -1px; right: -1px; border-bottom-width: 2px; border-right-width: 2px; }

.leadbox-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.leadbox-title {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
}
.leadbox-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.form-row input {
  flex: 1;
  min-width: 0;
  background: var(--bg);
  color: var(--text);
  border: 0.5px solid var(--line-strong);
  padding: 13px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus { border-color: var(--gold); }
.form-row input::placeholder { color: var(--text-dim); }

.btn {
  background: var(--gold);
  color: var(--bg);
  border: 0;
  padding: 13px 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover { background: var(--text); }
.btn:active { transform: scale(0.97); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 0.5px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: var(--bg); }

.leadbox-microcopy {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ TRUST SECTION ============ */
.trust {
  background: var(--bg-card);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; gap: 56px; }
}
.trust-item .number {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 120px);
  color: var(--gold);
  line-height: 0.9;
  letter-spacing: 2px;
}
.trust-item .label {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 8px 0 16px;
}
.trust-item .desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

/* ============ 5 GRIMASSEN ============ */
.grimassen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 1100px) {
  .grimassen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grimassen-grid { grid-template-columns: 1fr; }
}

.grimasse {
  background: var(--bg-card);
  border: 0.5px solid var(--line-strong);
  padding: 32px 24px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.grimasse:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.grimasse::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px;
  width: 14px; height: 14px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
}
.grimasse::after {
  content: "";
  position: absolute;
  bottom: 12px; right: 12px;
  width: 14px; height: 14px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}
.grimasse-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.grimasse-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 12px;
  min-height: 56px;
}
.grimasse-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.4;
  flex-grow: 1;
}
.grimasse-quote {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: var(--text-muted);
  border-top: 0.5px solid var(--line-strong);
  padding-top: 16px;
  margin-top: auto;
}

.grimassen-outro {
  margin-top: 56px;
  padding: 32px;
  border-left: 2px solid var(--gold);
  background: var(--bg-card);
}
.grimassen-outro p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 16px;
}
.grimassen-outro .micro-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-top: 16px;
}

/* ============ DREI FRAMEWORKS ============ */
.frameworks { }
.framework {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 0.5px solid var(--line);
}
.framework:first-of-type { border-top: 0; }
@media (max-width: 768px) {
  .framework { grid-template-columns: 1fr; gap: 16px; }
}
.framework-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
}
.framework-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}
.framework-body p { margin-bottom: 16px; color: var(--text); font-size: 18px; font-weight: 500; }
.framework-body p strong {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-right: 8px;
  font-weight: 400;
}
.framework-body .closer {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
  font-size: 19px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 0.5px solid var(--line-strong);
}

/* ============ PRODUKTE ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: 1fr; }
}
.product {
  background: var(--bg-card);
  border: 0.5px solid var(--line-strong);
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}
.product:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}
.product-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1.5px;
  line-height: 1.05;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.product-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 24px;
}
.product-price {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text);
  border-top: 0.5px solid var(--line-strong);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price .cta {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
}
.product-price .cta::after {
  content: " →";
  transition: margin-left 0.2s;
}
.product:hover .cta::after { margin-left: 4px; }

.products-outro {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ============ ÜBER MICH ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #1a1a17 0%, #2a2620 100%);
  border: 0.5px solid var(--line-strong);
  overflow: hidden;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.95);
}
.about-portrait::before, .about-portrait::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 3;
  pointer-events: none;
}
.about-portrait::before { top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; }
.about-portrait::after { bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; }
.about-portrait .photo-stamp {
  top: 14px;
  right: 14px;
}
.about-portrait .photo-stamp-bl {
  bottom: 14px;
  left: 14px;
}
.about-body p {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: 24px;
  color: var(--text);
}
.about-body p:first-child::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 72px;
  line-height: 0.85;
  padding: 4px 12px 0 0;
  color: var(--gold);
}

.values-stamps {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.value-stamp {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 10px 18px;
  transform: rotate(-1deg);
  background: rgba(212, 160, 23, 0.05);
}
.value-stamp:nth-child(2) { transform: rotate(0.5deg); }
.value-stamp:nth-child(3) { transform: rotate(-0.5deg); }

/* ============ STIMMEN ============ */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .voices-grid { grid-template-columns: 1fr; }
}
.voice {
  padding: 32px;
  background: var(--bg-card);
  border: 0.5px solid var(--line-strong);
  position: relative;
}
.voice::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
}
.voice-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  padding-top: 16px;
  margin-bottom: 24px;
}
.voice-source {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  border-top: 0.5px solid var(--line-strong);
  padding-top: 16px;
}
.voices-outro {
  margin-top: 48px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
  font-weight: 500;
  font-size: 17px;
  max-width: 600px;
}

/* ============ FAQ ============ */
.faq {
  max-width: 880px;
}
.faq-item {
  border-bottom: 0.5px solid var(--line-strong);
}
.faq-question {
  width: 100%;
  background: none;
  border: 0;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .arrow {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question .arrow { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 0 28px 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  max-width: 720px;
}

/* ============ 2. LEAD-MAGNET ============ */
.lead2 {
  background: var(--bg-card);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
}
.lead2-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .lead2-grid { grid-template-columns: 1fr; }
}
.lead2-mockup {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg);
  border: 0.5px solid var(--gold);
  padding: 32px 24px;
  transform: rotate(-2deg);
  box-shadow: 12px 12px 0 rgba(212, 160, 23, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lead2-mockup .mockup-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.8px;
  color: var(--gold);
}
.lead2-mockup .mockup-title {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 1.5px;
  line-height: 1;
  text-transform: uppercase;
  margin: 24px 0 16px;
}
.lead2-mockup .mockup-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
}
.lead2-mockup .mockup-numbers {
  display: flex;
  justify-content: space-around;
  border-top: 0.5px solid var(--line-strong);
  padding-top: 16px;
}
.lead2-mockup .mockup-numbers span {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 1px;
}
.lead2-mockup .mockup-foot {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  text-align: center;
}

.lead2-content .headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  line-height: 0.95;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.lead2-content .sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--gold);
  margin-bottom: 28px;
}
.lead2-bullets {
  list-style: none;
  margin-bottom: 32px;
}
.lead2-bullets li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.6;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 0.5px solid var(--line);
  display: flex;
  gap: 12px;
}
.lead2-bullets li::before {
  content: "·";
  color: var(--gold);
  font-size: 18px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  border-top: 0.5px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer ul { list-style: none; }
.footer li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 0;
  color: var(--text-muted);
}
.footer li a { color: var(--text-muted); }
.footer li a:hover { color: var(--gold); }

.footer-disclaimer {
  border-top: 0.5px solid var(--line);
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 900px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 0.5px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-faint);
}
.footer-bottom .logo-small {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text-dim);
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* ============ FADE-IN ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ UTILITY ============ */
.text-gold { color: var(--gold); }
.spacer-32 { height: 32px; }
.spacer-48 { height: 48px; }