/* ═══════════════════════════════════════════════════════════════
   DR. ANJA OZIK-SCHARF — SHARED STYLES
   Editorial · Navy/Gold · Cormorant Garamond + Inter Tight
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy: #1A2238;
  --navy-deep: #0F1626;
  --gold: #B8924C;
  --gold-soft: #D4B57A;
  --ivory: #F5F1E8;
  --ivory-warm: #EFE9DA;
  --ink: #1A2238;
  --whisper: #8A8578;
  --line: rgba(26, 34, 56, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 20px 64px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s, border-color 0.4s;
}
.nav.nav-on-dark {
  background: rgba(15, 22, 38, 0.55);
  border-bottom-color: rgba(245, 241, 232, 0.12);
}
.nav.nav-on-dark .nav-brand,
.nav.nav-on-dark .nav-links a { color: var(--ivory); }
.nav.nav-on-dark .nav-brand span { color: var(--gold-soft); }
.nav.nav-on-dark .nav-links a:hover,
.nav.nav-on-dark .nav-links a.active { color: var(--gold-soft); }

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; letter-spacing: 0.02em;
  color: var(--navy); text-decoration: none;
  transition: color 0.4s;
}
.nav-brand span { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex; gap: 36px;
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 400;
}
.nav-links a {
  color: var(--navy); text-decoration: none;
  transition: color 0.3s; position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px; background: currentColor;
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
}

/* ─── REUSABLE: BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px; font-size: 13px;
  letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  text-decoration: none; transition: all 0.3s;
  border: 1px solid transparent; cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
}
.btn-primary { background: var(--navy); color: var(--ivory); }
.btn-primary:hover { background: var(--gold); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--ivory); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--ivory); }
.btn-arrow { transition: transform 0.3s; display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-text {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--navy); text-decoration: none;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s, color 0.3s;
}
.btn-text:hover { gap: 18px; color: var(--gold); }

/* ─── REUSABLE: SECTION ATOMS ─── */
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 24px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -0.01em; color: var(--navy);
  max-width: 800px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic;
  line-height: 1.5; color: var(--navy);
  max-width: 720px;
}

/* ─── FOOTER ─── */
.footer {
  padding: 80px 64px 40px;
  background: var(--navy-deep);
  color: var(--ivory-warm);
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
  max-width: 1320px; margin-left: auto; margin-right: auto;
}
.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; color: var(--ivory); margin-bottom: 16px;
}
.footer-brand .footer-logo span { color: var(--gold); font-style: italic; }
.footer-brand p { opacity: 0.7; max-width: 320px; line-height: 1.6; }
.footer h5 {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 20px; font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a {
  color: var(--ivory-warm); text-decoration: none;
  opacity: 0.8; transition: opacity 0.3s, color 0.3s;
}
.footer a:hover { opacity: 1; color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.12);
  padding-top: 32px; max-width: 1320px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; opacity: 0.6;
}
@media (max-width: 900px) {
  .footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

/* ─── ANIMATIONS ─── */
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── PAGE INTRO BANNER (für Unterseiten) ─── */
.page-intro {
  padding: 180px 64px 100px;
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.page-intro::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184, 146, 76, 0.15), transparent 70%);
}
.page-intro-inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
}
.page-intro .section-eyebrow { color: var(--gold-soft); margin-bottom: 32px; }
.page-intro h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 400; line-height: 0.98;
  letter-spacing: -0.015em; color: var(--ivory);
  max-width: 900px; margin-bottom: 32px;
}
.page-intro h1 em { font-style: italic; color: var(--gold-soft); }
.page-intro-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-style: italic; line-height: 1.5;
  color: var(--ivory-warm); max-width: 640px;
}
@media (max-width: 900px) { .page-intro { padding: 130px 24px 70px; } }
