/* ============================================================
   shared.css – Nils Christian Wedtke
   Globale Styles: Reset, CI, Navbar, Footer, Akzente, Texturen
   Alle Unterseiten binden diese Datei ein.
   ============================================================ */

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  background: var(--black);
  color-scheme: dark;
}

body {
  background: var(--black);
  min-height: 100vh;
}

/* ========================================
   CSS CUSTOM PROPERTIES (CI)
   ======================================== */
:root {
  /* Farben */
  --black:        #0A0A0A;
  --cream:        #F2EDE3;
  --gold:         #C8860A;
  --gold-hover:   #daa520;
  --gray-light:   #F0F0F0;

  /* Sturmfest CI */
  --slate-blue:   #2E4A62;
  --forest-green: #3D5C3A;

  /* Typografie */
  --font-headline: 'DM Serif Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --content-max:     1440px;

  /* Lens Flare – hier anpassen, wirkt auf alle Seiten */
  --flare-warm:      rgba(255, 200, 60, 0.7);
  --flare-mid:       rgba(230, 160, 30, 0.4);
  --flare-cool:      rgba(200, 50, 20, 0.55);
}

/* ========================================
   NAVIGATION – Floating Pill
   ======================================== */
nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2.5rem);
  max-width: 1100px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(10, 10, 10, 0.06), 0 1px 4px rgba(10, 10, 10, 0.04);
}

.nav-inner {
  padding: 0.6rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.nav-logo:hover {
  background: rgba(10, 10, 10, 0.04);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-logo:hover .nav-logo-img {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.5);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
  background: rgba(10, 10, 10, 0.04);
}

/* ── HAMBURGER – SVG Morphing ──────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger svg {
  width: 28px;
  height: 28px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.5s ease-in-out;
}

.nav-hamburger.open svg {
  transform: rotate(-45deg);
}

.nav-hamburger .menu-path {
  stroke-dasharray: 12 63;
  transition: stroke-dasharray 0.5s ease-in-out, stroke-dashoffset 0.5s ease-in-out;
}

.nav-hamburger.open .menu-path {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

.nav-hamburger .menu-line {
  transition: opacity 0.3s ease;
}

/* ── MOBILE MENU – Slide from Bottom ─────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.5vh, 2rem);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: rgba(242, 237, 227, 0.85);
  text-decoration: none;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(30px);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}

.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.30s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.40s; }
.mobile-menu.open a:nth-child(8) { transition-delay: 0.45s; }

.mobile-menu a:hover { color: var(--gold); }

/* Social Links unten im Mobile-Menü */
.mobile-menu-social {
  position: absolute;
  bottom: 2.5rem;
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
}

.mobile-menu.open .mobile-menu-social {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

.mobile-menu-social a {
  width: 52px !important;
  height: 52px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0 !important;
  transition: opacity 0.3s ease !important;
}

.mobile-menu-social a:hover {
  opacity: 0.7 !important;
}

.mobile-menu-social svg {
  width: 26px;
  height: 26px;
  fill: rgba(242, 237, 227, 0.6);
  transition: fill 0.3s ease;
}

.mobile-menu-social a:hover svg {
  fill: var(--gold);
}

/* Close-Button – exakt auf Hamburger-Position */
.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.mobile-menu-close svg {
  width: 28px;
  height: 28px;
  stroke: var(--cream);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-45deg);
}

.mobile-menu-close .menu-path {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42px;
}

/* ── Navbar Responsive ─────────────────────────────────── */
@media (max-width: 1140px) {
  .nav-links   { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 480px) {
  nav {
    top: 0.75rem;
    width: calc(100% - 1.5rem);
    border-radius: 12px;
  }
  .nav-inner { padding: 0.5rem 0.8rem; }
  .nav-logo-img { height: 30px; }
  .mobile-menu-close { top: 1rem; right: 1.5rem; }
}

/* ── SUBMENU – Desktop Dropdown ────────────────────────── */
.nav-item-sub {
  position: relative;
}

/* Unsichtbare Brücke: verhindert Hover-Unterbruch beim
   Übergang vom Nav-Link zum Dropdown-Panel              */
.nav-item-sub::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -0.5rem;
  right: -0.5rem;
  height: 0.6rem;
}

.nav-sub {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(10, 10, 10, 0.10), 0 2px 6px rgba(10, 10, 10, 0.05);
  padding: 0.35rem;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.nav-item-sub:hover .nav-sub,
.nav-item-sub:focus-within .nav-sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-sub a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(10, 10, 10, 0.55);
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: 7px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-sub a:hover,
.nav-sub a.active {
  color: var(--black);
  background: rgba(10, 10, 10, 0.04);
}

/* ── SUBMENU – Mobile ─────────────────────────────────── */
.mobile-sub-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Gleiche Einstiegsanimation wie .mobile-menu a */
  opacity: 0;
  transform: translateY(30px);
}

.mobile-menu.open .mobile-sub-group {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open .mobile-sub-group:nth-child(3) {
  transition-delay: 0.20s;
}

.mobile-sub-trigger {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 8vw, 3.5rem);
  color: rgba(242, 237, 227, 0.85);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.3em;
  line-height: 1;
  transition: color 0.2s;
}

.mobile-sub-trigger:hover,
.mobile-sub-group.open .mobile-sub-trigger {
  color: var(--gold);
}

/* Chevron-Pfeil im Trigger-Button */
.mobile-sub-trigger svg {
  width: 0.38em;
  height: 0.38em;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.55;
  transition: transform 0.3s ease, opacity 0.3s;
  margin-top: 0.05em;
}

.mobile-sub-group.open .mobile-sub-trigger svg {
  transform: rotate(180deg);
  opacity: 0.9;
}

/* Smooth expand via grid-template-rows */
.mobile-sub-items {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sub-group.open .mobile-sub-items {
  grid-template-rows: 1fr;
}

.mobile-sub-items-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.4rem 0 0.25rem;
}

/* Sub-Links: kleiner als Haupt-Links, Gold-Hover */
.mobile-sub-items a {
  font-family: var(--font-headline);
  font-size: clamp(1.1rem, 4vw, 1.6rem) !important;
  color: rgba(242, 237, 227, 0.45) !important;
  text-decoration: none;
  padding: 0.2rem 0;
  opacity: 1 !important;
  transform: none !important;
  transition: color 0.2s !important;
  letter-spacing: 0.01em;
}

.mobile-sub-items a:hover,
.mobile-sub-items a.active {
  color: var(--gold) !important;
}

/* ========================================
   AKZENTE – Textmarker & Pinselstriche
   ======================================== */

/* Goldener handgemalter Textmarker */
.marker {
  position: relative;
  display: inline;
  padding: 0 0.1em;
  isolation: isolate;
}

.marker::after {
  content: '';
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 0.38em;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18' preserveAspectRatio='none'%3E%3Cpath d='M2 12 C20 7, 35 15, 55 10 S90 5, 110 12 S145 16, 170 8 S190 13, 198 10' fill='none' stroke='%23C8860A' stroke-width='14' stroke-linecap='round' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Goldene Pinselstriche (3 horizontale Linien, inline) */
.brush-strokes {
  display: inline-block;
  width: 140px;
  height: 52px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 48' preserveAspectRatio='none'%3E%3Cpath d='M5 14 C80 12, 200 17, 350 13 S550 18, 700 14 S850 17, 995 13' fill='none' stroke='%23C8860A' stroke-width='4' stroke-linecap='round' opacity='0.85'/%3E%3Cpath d='M3 24 C90 22, 220 27, 380 23 S580 28, 720 24 S870 27, 992 23' fill='none' stroke='%23C8860A' stroke-width='4.5' stroke-linecap='round' opacity='0.8'/%3E%3Cpath d='M15 34 C120 32, 250 37, 420 33 S600 38, 750 34 S900 37, 990 33' fill='none' stroke='%23C8860A' stroke-width='3.5' stroke-linecap='round' opacity='0.7'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Pinselstrich-Divider (volle Breite, zwischen Sektionen) */
.brush-divider {
  display: block;
  width: 100%;
  height: 48px;
  background: var(--cream);
  position: relative;
  z-index: 4;
}

.brush-divider .brush-strokes {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========================================
   FILM GRAIN + PAPIER-TEXTUR
   Auf cream-farbenen Sektionen
   ======================================== */
.grain {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.04' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)' opacity='.09'/%3E%3Crect width='250' height='250' filter='url(%23p)' opacity='.07'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  background-repeat: repeat;
}

/* ========================================
   LENS FLARE / LIGHT LEAK
   Klasse auf Foto-Container setzen (braucht position: relative).
   Farben über --flare-warm / --flare-mid / --flare-cool in :root.
   ======================================== */
.photo-flare::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(160deg, var(--flare-warm) 0%, var(--flare-mid) 35%, transparent 65%),
    linear-gradient(340deg, var(--flare-cool) 0%, rgba(180, 40, 15, 0.3) 30%, transparent 60%),
    linear-gradient(to bottom, rgba(255, 220, 120, 0.25) 0%, rgba(200, 130, 10, 0.15) 50%, rgba(180, 50, 20, 0.2) 100%);
  mix-blend-mode: screen;
}

/* ========================================
   AURORA BACKGROUND (Sturmfest-Sektion)
   Wiederverwendbar auf Homepage + sturmfest.html
   ======================================== */
.sturmfest {
  --sf-dark:   #0f1e2a;
  --sf-mid:    #1a3147;
  --sf-blue:   #2E4A62;
  --sf-teal:   #1a6b5a;
  --sf-green:  #2d8a6e;
  --sf-purple: #4a3a7a;
  --sf-violet: #6b4f9e;
  --sf-cyan:   #2a8a9a;

  background: linear-gradient(135deg, var(--sf-dark) 0%, var(--sf-mid) 40%, var(--sf-blue) 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Aurora Hauptschicht */
.sturmfest::before {
  content: '';
  position: absolute;
  inset: -10px;
  background-image:
    repeating-linear-gradient(100deg,
      var(--sf-dark) 0%, var(--sf-dark) 7%,
      transparent 10%, transparent 12%,
      var(--sf-dark) 16%),
    repeating-linear-gradient(100deg,
      var(--sf-teal) 8%, var(--sf-green) 14%, var(--sf-cyan) 20%,
      var(--sf-purple) 26%, var(--sf-violet) 32%, var(--sf-teal) 38%);
  background-size: 300% 200%;
  background-position: 50% 50%;
  filter: blur(16px);
  opacity: 0.5;
  pointer-events: none;
  animation: aurora1 16s ease infinite;
  will-change: transform;
}

/* Aurora zweite Schicht (gegenläufig, mix-blend) */
.sturmfest::after {
  content: '';
  position: absolute;
  inset: -10px;
  background-image:
    repeating-linear-gradient(100deg,
      var(--sf-dark) 0%, var(--sf-dark) 7%,
      transparent 10%, transparent 12%,
      var(--sf-dark) 16%),
    repeating-linear-gradient(100deg,
      var(--sf-violet) 10%, var(--sf-cyan) 16%, var(--sf-green) 22%,
      var(--sf-purple) 28%, var(--sf-teal) 34%);
  background-size: 200% 100%;
  background-attachment: fixed;
  mix-blend-mode: difference;
  filter: blur(14px);
  opacity: 0.4;
  pointer-events: none;
  animation: aurora2 12s ease-in-out infinite;
  will-change: transform;
  mask-image: radial-gradient(ellipse at 80% 20%, black 15%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 80% 20%, black 15%, transparent 70%);
}

@keyframes aurora1 {
  0%   { background-position: 50% 50%, 50% 50%; }
  33%  { background-position: 30% 60%, 70% 40%; }
  66%  { background-position: 70% 40%, 30% 60%; }
  100% { background-position: 50% 50%, 50% 50%; }
}

@keyframes aurora2 {
  0%   { background-position: 50% 50%, 80% 20%; }
  50%  { background-position: 80% 30%, 30% 70%; }
  100% { background-position: 50% 50%, 80% 20%; }
}

.sturmfest-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 2;
}

.sturmfest-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.sturmfest-headline {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.18;
  margin-bottom: 36px;
}

.sturmfest-facts {
  display: flex;
  gap: 3rem;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sturmfest-fact { display: flex; flex-direction: column; gap: 4px; }

.sturmfest-fact strong {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.sturmfest-fact span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(242, 237, 227, 0.55);
  letter-spacing: 0.04em;
}

.sturmfest-text {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(242, 237, 227, 0.75);
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 48px;
}

.sturmfest-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  background: var(--gold);
  padding: 1rem 2.2rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.sturmfest-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.sturmfest-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(242, 237, 227, 0.4);
  letter-spacing: 0.04em;
}

.sturmfest-badge::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.85rem;
}

@media (max-width: 968px) {
  .sturmfest { padding: 80px 0; }
  .sturmfest-inner { padding: 0 1.5rem; }
  .sturmfest-facts { gap: 2rem; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(242, 237, 227, 0.06);
}

/* --- Newsletter Band --- */
.footer-newsletter {
  border-bottom: 1px solid rgba(242, 237, 227, 0.06);
  padding: 80px 0;
}

.footer-newsletter-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.footer-nl-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-nl-headline {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}

.footer-nl-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(242, 237, 227, 0.5);
  line-height: 1.7;
}

.footer-nl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nl-form-row {
  display: flex;
  gap: 0;
}

.footer-nl-form input[type="email"] {
  flex: 1;
  background: rgba(242, 237, 227, 0.06);
  border: 1px solid rgba(242, 237, 227, 0.12);
  border-right: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.9em 1.4em;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.footer-nl-form input[type="email"]::placeholder {
  color: rgba(242, 237, 227, 0.3);
}

.footer-nl-form input[type="email"]:focus {
  background: rgba(242, 237, 227, 0.09);
  border-color: rgba(200, 134, 10, 0.5);
}

.footer-nl-form button {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9em 1.8em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.footer-nl-form button:hover {
  background: var(--gold-hover);
}

.footer-nl-disclaimer {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(242, 237, 227, 0.25);
  line-height: 1.6;
}

.footer-nl-disclaimer a {
  color: rgba(242, 237, 227, 0.35);
  text-decoration: underline;
}

/* --- Footer Main --- */
.footer-main {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px 3rem 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 35px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-logo-link:hover .footer-logo-img {
  opacity: 1;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(242, 237, 227, 0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social { display: flex; gap: 16px; margin-top: 4px; }

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 237, 227, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-social svg { width: 22px; height: 22px; fill: currentColor; }

.footer-nav-cols {
  display: flex;
  gap: 2.5rem;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.25);
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(242, 237, 227, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: var(--cream); }

/* --- Footer Bottom --- */
.footer-bottom {
  border-top: 1px solid rgba(242, 237, 227, 0.06);
  padding: 20px 3rem;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(242, 237, 227, 0.2);
}

.footer-legal { display: flex; gap: 1.5rem; }

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(242, 237, 227, 0.2);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: rgba(242, 237, 227, 0.5); }

/* Footer Responsive */
@media (max-width: 968px) {
  .footer-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  .footer-newsletter { padding: 60px 0; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 48px 1.5rem 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 20px 1.5rem;
  }
}

/* ========================================
   READ PROGRESS BAR (nur Blogposts)
   Scroll-driven, pure CSS, kein JS.
   Blogpost-HTML fügt <div class="read-progress"></div> direkt nach <body> ein.
   Fallback in älteren Browsern: Bar bleibt bei 0 % – nicht störend.
   ======================================== */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 1500;
  pointer-events: none;
  animation: read-progress-scale linear;
  animation-timeline: scroll(root block);
}

@keyframes read-progress-scale {
  to { transform: scaleX(1); }
}

/* ── Mailchimp Form States ──────────────────────────────── */
.mc-success {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gold);
  padding: 0.75rem 0;
  line-height: 1.5;
}

.mc-error {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: #c0392b;
  margin-top: 0.5rem;
  line-height: 1.5;
}
