/* ================================================================
   MINDSHIFT KI — PREMIUM LANDING PAGE V2
   Editorial Luxury · Dossier-Dramaturgie · Gold-Standard
   Basis: Positionierung V20 (6-Kapitel-Dossier)
   Palette: Midnight + Gold + Burgundy + Ivory
   Typografie: Cormorant Garamond (serif) + Inter (sans)
   ================================================================ */

:root {
  --midnight: #0A1628;
  --navy: #0B3D91;
  --gold: #B8935A;
  --gold-light: #D4B675;
  --gold-soft: #E8D9B8;
  --burgundy: #7A1522;
  --ink: #1A1A1A;
  --smoke: #555555;
  --ivory: #F6F2E9;
  --cream: #FAF8F3;
  --paper: #FFFFFF;

  /* Ohne Consent: System-Fonts (legal einwandfrei, keine externe Ressource)
     Mit Consent (html.consent-fonts): Google Fonts (werden via consent.js injiziert) */
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;

  --max: 1200px;
  --wrap: clamp(1.25rem, 4vw, 3.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--midnight); }

/* ================================================================
   TYPOGRAFIE
   ================================================================ */

.serif { font-family: var(--serif); letter-spacing: -0.01em; }
em { font-style: italic; color: var(--burgundy); }
.dark em { color: var(--gold); }
strong { font-weight: 600; color: var(--ink); }
.dark strong { color: var(--ivory); }

.label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.chapter-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--midnight);
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5 { color: var(--ivory); }

/* ================================================================
   LAYOUT — Kapitel-Rhythmus (Dossier-Dramaturgie)
   ================================================================ */

.chapter {
  padding: clamp(4rem, 10vw, 9rem) var(--wrap);
  position: relative;
}

.chapter-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.chapter.dark {
  background: var(--midnight);
  color: var(--ivory);
}

.chapter.ivory { background: var(--ivory); }
.chapter.cream { background: var(--cream); }

/* Kapitel-Kopf (Nummer + Logo) */
.chapter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 0.5px solid var(--gold);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.chapter-head .section-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--midnight);
}

.dark .chapter-head .section-title { color: var(--gold); }

.chapter-head .logo-inline {
  width: clamp(90px, 14vw, 130px);
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 1.5rem 0;
}

/* ================================================================
   NAV (fixiert, transparent, schlank)
   ================================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem var(--wrap);
  background: rgba(10, 22, 40, 0.0);
  backdrop-filter: blur(0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.6rem var(--wrap);
}

.nav-logo img {
  width: 140px;
  transition: width 0.3s ease;
}
.nav.scrolled .nav-logo img { width: 110px; }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 0.5px solid var(--gold);
  padding: 0.6rem 1.2rem;
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--midnight);
}

/* ================================================================
   HERO (Kapitel 1 · Donnerschlag)
   ================================================================ */

.hero {
  background: var(--midnight);
  color: var(--ivory);
  min-height: 100vh;
  padding: clamp(7rem, 14vh, 10rem) var(--wrap) clamp(4rem, 8vh, 6rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 22mm; left: var(--wrap);
  width: 60px; height: 1px;
  background: var(--gold);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 22mm; right: var(--wrap);
  width: 60px; height: 1px;
  background: var(--gold);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.6fr 1fr; }
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 560px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 2rem;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}

.hero-byline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--gold-light);
  margin: 2rem 0 2.5rem;
  max-width: 500px;
}

.hero-byline .gold { color: var(--gold); font-style: italic; }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
}

.hero-portrait {
  max-width: 360px;
  margin: 0 auto;
}

.hero-portrait-frame {
  border: 0.5px solid var(--gold);
  padding: 0.5rem;
  background: rgba(246, 242, 233, 0.03);
}

.hero-portrait-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.88) contrast(1.02);
}

.hero-portrait-caption {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-align: center;
  margin-top: 1rem;
  font-weight: 500;
}

.hero-portrait-role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  text-align: center;
  margin-top: 0.25rem;
}

/* ================================================================
   CTA-BUTTON — Primär / Sekundär (Gold-Standard)
   ================================================================ */

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--midnight);
  padding: 1.1rem 2.2rem;
  font-weight: 600;
  border: 1px solid var(--gold);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 147, 90, 0.35);
}

.cta-primary::after {
  content: '→';
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0;
  font-weight: 400;
  transform: translateX(0);
  transition: transform 0.25s ease;
}
.cta-primary:hover::after { transform: translateX(4px); }

.cta-micro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-light);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold);
  padding: 0.6rem 0;
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s;
}
.cta-secondary:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ================================================================
   KAPITEL-TITEL & LEDE
   ================================================================ */

.chapter-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  color: var(--midnight);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.dark .chapter-title { color: var(--ivory); }
.chapter-title em { color: var(--burgundy); font-style: italic; }
.dark .chapter-title em { color: var(--gold); font-style: italic; }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 2.5rem;
  max-width: 780px;
}
.dark .lede { color: var(--gold-light); }

/* ================================================================
   KAPITEL 2 — ZAHLEN
   ================================================================ */

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem 4rem;
  margin-top: 3rem;
}

.number-item {
  border-top: 0.5px solid var(--gold);
  padding-top: 1.5rem;
}

.number-item .big {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 5rem);
  line-height: 0.9;
  color: var(--midnight);
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums;
}
.number-item .big .pct { color: var(--gold); font-weight: 400; }

.number-item .caption {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
  margin-top: 1rem;
}

.number-item .source {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--smoke);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.8rem;
  font-weight: 500;
}

/* ================================================================
   KAPITEL 3 — SYMPTOMBILD (SHIFT als Diagnose)
   ================================================================ */

.shift-axis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-top: 0.5px solid var(--gold);
  border-bottom: 0.5px solid var(--gold);
  margin: 1rem 0 2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.shift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.shift-phase {
  background: var(--ivory);
  border-top: 2px solid var(--gold);
  padding: 1.5rem 1.5rem 4rem;
  position: relative;
  min-height: 340px;
}

.dark .shift-phase { background: rgba(246, 242, 233, 0.04); }

.shift-phase .letter {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--midnight);
  font-weight: 500;
}
.dark .shift-phase .letter { color: var(--ivory); }

.shift-phase .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--burgundy);
  margin: 0.3rem 0 1rem;
}
.dark .shift-phase .name { color: var(--gold); }

.shift-phase .desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink);
}
.dark .shift-phase .desc { color: var(--gold-light); }

.shift-phase .desc em { color: var(--burgundy); font-style: italic; }
.dark .shift-phase .desc em { color: var(--gold); }

.shift-phase .tag {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.25rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.7rem;
  border-top: 0.5px solid var(--gold-soft);
  font-weight: 500;
  line-height: 1.4;
}
.shift-phase .tag .article { display: block; }

.shift-closing {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--ivory);
  border-left: 2px solid var(--burgundy);
}
.dark .shift-closing {
  background: rgba(184, 147, 90, 0.08);
  border-left-color: var(--gold);
}

.shift-closing p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--burgundy);
  line-height: 1.4;
  margin: 0;
}
.dark .shift-closing p { color: var(--gold); }

/* ================================================================
   KAPITEL 4 — KOSTEN
   ================================================================ */

.cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cost-card {
  padding: 1.5rem 1.75rem;
  background: var(--ivory);
  border-left: 2px solid var(--gold);
}
.dark .cost-card {
  background: rgba(246, 242, 233, 0.04);
  border-left-color: var(--gold);
}

.cost-card .card-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
}
.dark .cost-card .card-label { color: var(--gold); }

.cost-card h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--midnight);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.dark .cost-card h4 { color: var(--ivory); }

.cost-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.dark .cost-card p { color: var(--gold-light); }

.cost-final {
  padding: 2rem 2.25rem;
  background: var(--midnight);
  color: var(--ivory);
  margin-top: 1rem;
}

.cost-final .card-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.cost-final h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ivory);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cost-final p {
  font-size: 1rem;
  color: var(--gold-light);
  line-height: 1.55;
  margin: 0;
}

.cost-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ================================================================
   KAPITEL 5 — FALLSTUDIE (Vorher / Heute)
   ================================================================ */

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 1rem 0 3rem;
}

.value-card {
  padding: 1.75rem 2rem;
  background: var(--ivory);
  border-left: 2px solid var(--gold);
}

.value-card.vorher { border-left-color: var(--burgundy); }

.value-card .card-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.value-card.vorher .card-label { color: var(--burgundy); }

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.kpi {
  text-align: center;
  padding: 1.25rem 0.5rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.kpi .big {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 3rem);
  color: var(--burgundy);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
  font-variant-numeric: lining-nums;
}

.kpi .sub {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.kpi .kpi-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 0.8rem;
  line-height: 1.4;
  font-weight: 500;
}

.value-closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--burgundy);
  line-height: 1.5;
  padding: 1rem 0 0 1.75rem;
  border-left: 2px solid var(--gold);
  max-width: 820px;
}

/* ================================================================
   KAPITEL 6 — INVITATION (Dark, CTA)
   ================================================================ */

.invitation {
  background: var(--midnight);
  color: var(--ivory);
}

.invitation-body-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  line-height: 1.5;
  color: var(--gold-light);
  max-width: 780px;
  margin: 0 0 1.25rem;
}
.invitation-body-text em { color: var(--gold); font-style: italic; }

.invitation-closing-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--gold);
  margin: 0 0 2.5rem;
}
.invitation-closing-line .strong-ivory {
  color: var(--ivory);
  font-style: normal;
  font-weight: 500;
}

.invitation-rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem 2.5rem;
  margin: 2rem 0 3rem;
  padding: 1.75rem 0;
  border-top: 0.5px solid var(--gold);
  border-bottom: 0.5px solid var(--gold);
}

.invitation-rules .rules-head {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.invitation-rules .rule {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--ivory);
  line-height: 1.55;
}

.invitation-rules .rule strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.3rem;
}

.invitation-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.invitation-step {
  border-top: 1px solid var(--gold);
  padding-top: 1rem;
}

.invitation-step .step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.invitation-step h5 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ivory);
  font-weight: 400;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.invitation-step p {
  font-size: 0.95rem;
  color: var(--gold-light);
  line-height: 1.55;
  margin: 0;
}

/* ================================================================
   KONTAKTFORMULAR (kompakt, dark)
   ================================================================ */

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
  margin-top: 2rem;
  padding-top: 2.5rem;
  border-top: 0.5px solid var(--gold);
}

.contact-form .field { display: flex; flex-direction: column; }
.contact-form .field.full { grid-column: 1 / -1; }

.contact-form label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ivory);
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--gold);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-bottom-color: var(--gold-light); }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(212, 182, 117, 0.35); }

.contact-form select option { background: var(--midnight); color: var(--ivory); }

.contact-form textarea { resize: vertical; min-height: 100px; }

.contact-form .honeypot { position: absolute; left: -9999px; }

.contact-form .consent {
  grid-column: 1 / -1;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--gold-light);
  line-height: 1.5;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.contact-form .consent input { width: auto; margin-top: 0.25rem; }
.contact-form .consent a { color: var(--gold); border-bottom: 0.5px solid var(--gold); }

.contact-form .submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  margin-top: 0.5rem;
}

.form-message {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  min-height: 1.5rem;
}
.form-message.error { color: #E8A4A4; font-style: normal; font-family: var(--sans); font-size: 0.95rem; }

@media (max-width: 640px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ================================================================
   CONTACT BLOCK (Autor + Details) — am Ende Kapitel 6
   ================================================================ */

.invitation-contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 0.5px solid var(--gold);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.invitation-contact .author {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.invitation-contact .photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 0.5px solid var(--gold);
}

.invitation-contact .name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.invitation-contact .role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.invitation-contact .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.invitation-contact .details {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--gold-light);
  line-height: 1.7;
}
.invitation-contact .details a { color: var(--gold); border-bottom: 0.5px solid transparent; transition: border-color 0.2s; }
.invitation-contact .details a:hover { border-color: var(--gold); }

/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: var(--midnight);
  color: var(--gold-light);
  padding: 2.5rem var(--wrap);
  border-top: 0.5px solid rgba(184, 147, 90, 0.3);
  font-family: var(--sans);
  font-size: 0.85rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ivory);
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}
.footer-links a {
  color: var(--gold-light);
  margin-left: 1.25rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ================================================================
   REVEAL-ANIMATIONEN (dezent)
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ================================================================
   FONTS — Nach Consent via consent.js eingebunden
   ================================================================ */
html.consent-fonts {
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ================================================================
   CONSENT-BANNER (DSGVO / TDDDG)
   Gleichwertige Ablehnung: „Nur Essenzielles" vs „Alle akzeptieren"
   ================================================================ */

.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  background: var(--midnight);
  color: var(--ivory);
  border-top: 1px solid var(--gold);
  padding: clamp(1.25rem, 3vw, 2rem) var(--wrap);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.consent-banner.open {
  transform: translateY(0);
  opacity: 1;
}

.consent-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.consent-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--ivory);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.consent-text {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  max-width: 840px;
}

.consent-text a {
  color: var(--gold);
  border-bottom: 0.5px solid var(--gold);
}
.consent-text strong { color: var(--ivory); font-weight: 500; }

.consent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  margin-bottom: 1.5rem;
}

.consent-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--ivory);
  cursor: pointer;
  user-select: none;
}

.consent-options label:has(input:disabled) {
  cursor: default;
  opacity: 0.7;
}

.consent-options input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.consent-banner .cta-primary,
.consent-banner .cta-secondary { cursor: pointer; }

.consent-banner .cta-secondary {
  background: transparent;
  border: 0.5px solid var(--gold);
  padding: 0.85rem 1.4rem;
  color: var(--gold);
  font-weight: 500;
}
.consent-banner .cta-secondary:hover {
  background: rgba(184, 147, 90, 0.12);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 640px) {
  .consent-actions .cta-primary,
  .consent-actions .cta-secondary { flex: 1 1 100%; text-align: center; justify-content: center; }
}
