/* ── FONTS: Lokal gehostet — DSGVO-konform, kein Drittanbieter ─────────────
   Dateien im Ordner fonts/ (7 Dateien)
──────────────────────────────────────────────────────────────────────── */

@font-face {
  font-display: swap;
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/instrument-serif-v5-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/instrument-serif-v5-latin-italic.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/bricolage-grotesque-v9-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/bricolage-grotesque-v9-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/bricolage-grotesque-v9-latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/bricolage-grotesque-v9-latin-600.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/bricolage-grotesque-v9-latin-700.woff2') format('woff2');
}

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

:root {
  /* Colors */
  --bg:         #0A0806;
  --bg-1:       #0F0C08;
  --bg-2:       #141009;
  --bg-3:       #1C1610;
  --bg-4:       #221A12;
  --gold:       #C8920A;
  --gold-lt:    #E8A820;
  --gold-dim:   #A07208;
  --gold-glow:  rgba(200,146,10,0.15);
  --gold-line:  rgba(200,146,10,0.2);
  --white:      #FDFAF4;
  --white-70:   rgba(253,250,244,0.7);
  --white-40:   rgba(253,250,244,0.4);
  --white-15:   rgba(253,250,244,0.15);
  --white-06:   rgba(253,250,244,0.06);
  --white-03:   rgba(253,250,244,0.03);
  --border:     rgba(253,250,244,0.08);
  --border-gold: rgba(200,146,10,0.25);

  /* Type */
  --font-display: 'Instrument Serif', 'Garamond', 'Georgia', serif;
  --font-body:    'Bricolage Grotesque', 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section: 120px;
  --r: 12px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE TEXTURE OVERLAY ───────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ── LAYOUT ──────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px,5vw,60px); }
section { padding: var(--section) 0; position: relative; z-index: 1; }

/* ── TYPOGRAPHY ──────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400; line-height: 1.02; letter-spacing: -2px;
  color: var(--white);
}
.display em { font-style: italic; color: var(--gold-lt); }

.heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 400; line-height: 1.08; letter-spacing: -1px;
  color: var(--white);
}
.heading em { font-style: italic; color: var(--gold-lt); }

.subheading {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; line-height: 1.2; letter-spacing: -0.5px;
  color: var(--white);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: block;
}

.body-lg { font-size: 18px; line-height: 1.75; color: var(--white-70); font-weight: 300; }
.body-md { font-size: 15px; line-height: 1.75; color: var(--white-70); font-weight: 300; }
.body-sm { font-size: 13px; line-height: 1.65; color: var(--white-40); }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  text-decoration: none; border: none; cursor: pointer;
  border-radius: 6px; padding: 13px 28px;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  position: relative; overflow: hidden;
}
.btn-gold {
  background: var(--gold); color: var(--bg);
  box-shadow: 0 0 0 1px var(--gold-dim), 0 8px 32px rgba(200,146,10,0.3);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 0 0 1px var(--gold-lt), 0 12px 40px rgba(232,168,32,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--white-70);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--white-40); color: var(--white);
  background: var(--white-06);
}
.btn-ghost {
  background: var(--white-06); color: var(--white-70);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--white-15); color: var(--white); }

/* ── NAVIGATION ──────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px; display: flex; align-items: center;
  padding: 0 clamp(20px,5vw,60px);
  background: rgba(10,8,6,0.8);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner { width: 100%; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }



.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  background: #FEF5E0;
  border-radius: 10px;
  padding: 6px;
  border: 1.5px solid rgba(200,146,10,0.45);
  box-shadow: 0 0 0 3px rgba(200,146,10,0.08);
}
.nav-logo-name {
  font-family: var(--font-display); font-size: 20px; font-weight: 400;
  color: var(--white); letter-spacing: -0.3px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--white-40);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-btn { padding: 9px 20px; font-size: 13px; }
.nav-mobile { display: none; }

/* ── GOLD LINE DIVIDER ───────────────────────────── */
.gold-line {
  width: 40px; height: 1px; background: var(--gold);
  margin: 20px 0; opacity: 0.6;
}
.gold-line.center { margin: 20px auto; }

/* ── CARDS ───────────────────────────────────────── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--border-gold); transform: translateY(-2px); }

/* ── GRID GLOW ───────────────────────────────────── */
.glow-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: 0.25;
}

/* ── SCROLL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.show { opacity: 1; transform: none; }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--bg-1); border-top: 1px solid var(--border);
  padding: 72px 0 40px; position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 48px;
  border-bottom: 1px solid var(--border); margin-bottom: 32px;
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-logo img { width: 28px; height: 28px; object-fit: contain; }
.footer-brand-name { font-family: var(--font-display); font-size: 18px; color: var(--white); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white-40); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--white-40); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white-70); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--white-40); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--white-40); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white-70); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section: 80px; }
  .nav-links { display: none; }
  .nav-mobile { display: flex; align-items: center; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Scroll reveal JS helper */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
