/* ==========================================================================
   CSS RESET - Modern Reset (Josh Comeau inspired)
   ========================================================================== */

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

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Hidden utility */
[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ==========================================================================
   DESIGN TOKENS - Kunstpfeifer.com
   "Saffron & Onyx" Color System + "Modern Bold" Typography
   ========================================================================== */

:root {
  /* ── Colors: Backgrounds ── */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F5F5F6;
  --color-bg-elevated: #EEEFF0;
  --color-bg-surface: #E9EAEC;
  --color-bg-gold-wash: #FBF3E8;
  --color-bg-gold-wash-light: #FDF8F0;
  --color-bg-dark: #2A2E34;
  --color-bg-dark-secondary: #0B0C0C;

  /* ── Colors: Gold Accents ── */
  --color-accent: #946D35;
  --color-accent-light: #AF8248;
  --color-accent-dark: #7A5A2C;
  --color-accent-glow: rgba(175, 130, 72, 0.06);
  --color-accent-glow-strong: rgba(175, 130, 72, 0.12);

  /* ── Colors: Secondary (Cool Gray) ── */
  --color-secondary: #4A4F57;
  --color-secondary-light: #6B7079;
  --color-secondary-dark: #363B42;

  /* ── Colors: Neutral ── */
  --color-warm-light: #D4D5D8;
  --color-warm-neutral: #E9EAEC;

  /* ── Colors: Text ── */
  --color-text-primary: #0B0C0C;
  --color-text-secondary: #4A4F57;
  --color-text-muted: #595959;
  --color-text-inverse: #FFFFFF;

  /* ── Colors: Feedback ── */
  --color-success: #16A34A;
  --color-error: #DC2626;
  --color-warning: #D97706;

  /* ── Colors: Borders ── */
  --color-border: #E9EAEC;
  --color-border-accent: rgba(175, 130, 72, 0.4);

  /* ── Gradients ── */
  --gradient-spotlight: radial-gradient(ellipse at 50% 30%, rgba(175, 130, 72, 0.06) 0%, transparent 60%);
  --gradient-section: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(11, 12, 12, 0.2) 0%, rgba(11, 12, 12, 0.65) 100%);
  --gradient-overlay-strong: linear-gradient(180deg, rgba(11, 12, 12, 0.35) 0%, rgba(11, 12, 12, 0.8) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 50%, var(--color-accent-light) 100%);
  --gradient-gold: linear-gradient(135deg, #AF8248, #C9A26C, #D4D5D8);

  /* ── Typography ── */
  --font-display: 'Bebas Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-handwriting: 'Caveat', cursive;

  /* ── Font Sizes (fluid) ── */
  --fs-hero: clamp(2.5rem, 6vw, 5rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.25rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-h4: clamp(1.05rem, 1.5vw, 1.25rem);
  --fs-body: clamp(1rem, 1.5vw, 1.3125rem);
  --fs-body-lg: clamp(1.1rem, 1.7vw, 1.4375rem);
  --fs-small: clamp(0.85rem, 1.1vw, 0.9375rem);
  --fs-label: clamp(0.75rem, 0.95vw, 0.8125rem);

  /* ── Font Weights ── */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* ── Line Heights ── */
  --lh-tight: 1.15;
  --lh-normal: 1.7;
  --lh-relaxed: 1.85;

  /* ── Letter Spacing ── */
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-wider: 0.1em;
  --ls-widest: 0.2em;

  /* ── Spacing Scale ── */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(4rem, 8vw, 7rem);
  --space-section-top: clamp(2.5rem, 4vw, 3.5rem);

  /* ── Layout ── */
  --container-sm: 720px;
  --container-md: 960px;
  --container-lg: 1140px;
  --container-xl: 1320px;
  --container-padding: clamp(1rem, 4vw, 2rem);
  --header-height: 80px;

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(11, 12, 12, 0.04), 0 1px 2px rgba(11, 12, 12, 0.03);
  --shadow-md: 0 4px 12px rgba(11, 12, 12, 0.06), 0 2px 4px rgba(11, 12, 12, 0.03);
  --shadow-lg: 0 8px 30px rgba(11, 12, 12, 0.08), 0 4px 8px rgba(11, 12, 12, 0.03);
  --shadow-accent: 0 4px 20px rgba(175, 130, 72, 0.2);
  --shadow-accent-lg: 0 8px 40px rgba(175, 130, 72, 0.25);

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;

  /* ── Z-Index Scale ── */
  --z-behind: -1;
  --z-base: 0;
  --z-above: 10;
  --z-sticky: 100;
  --z-header: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}
/* ==========================================================================
   BASE STYLES - Typography, Body, Links, Global Elements
   ========================================================================== */

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

/* ── Headings ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  text-transform: uppercase;
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

/* ── Subheadings / Labels ── */
.subheading {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ── Body Text ── */
p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

p:last-child {
  margin-bottom: 0;
}

.text-lg {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
}

.text-sm {
  font-size: var(--fs-small);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-accent {
  color: var(--color-accent);
}

.text-center {
  text-align: center;
}

/* ── Links ── */
a {
  color: var(--color-accent);
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--color-accent-dark);
}

a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Section Dividers ── */
main > section + section {
  border-top: none;
}

/* ── Selection ── */
::selection {
  background-color: rgba(175, 130, 72, 0.2);
  color: var(--color-text-primary);
}

/* ── Horizontal Rule ── */
hr {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: var(--space-2xl) 0;
}

.hr-gold {
  background: var(--gradient-accent);
  height: 2px;
}

/* ── Strong / Emphasis ── */
strong, b {
  font-weight: var(--fw-semibold);
  color: var(--color-text-primary);
}

em, i {
  font-style: italic;
}

/* ── Lists (when styled) ── */
.list-styled li {
  padding-left: var(--space-lg);
  position: relative;
  margin-bottom: var(--space-xs);
  color: var(--color-text-secondary);
}

.list-styled li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* ── Blockquote ── */
blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--color-text-secondary);
  font-size: var(--fs-body-lg);
}

/* ── Skip to Content (Accessibility) ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-accent);
  color: var(--color-text-inverse);
  font-weight: var(--fw-semibold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: var(--z-toast);
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-to-content:focus {
  top: 0;
}
/* ==========================================================================
   LAYOUT - Containers, Grids, Sections
   ========================================================================== */

/* ── Containers ── */
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--sm {
  max-width: var(--container-sm);
}

.container--md {
  max-width: var(--container-md);
}

.container--xl {
  max-width: var(--container-xl);
}

.container--full {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

/* ── Sections ── */
.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
  position: relative;
}

.section--dark {
  background-color: var(--color-bg-primary);
}

.section--darker {
  background-color: var(--color-bg-elevated);
}

.section--elevated {
  background-color: var(--color-bg-secondary);
}

.section--spotlight {
  background: var(--gradient-spotlight);
}

.section--no-pad-top {
  padding-top: 0;
}

.section--no-pad-bottom {
  padding-bottom: 0;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header .subheading {
  margin-bottom: var(--space-sm);
  display: block;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: var(--fs-body);
}

/* ── Grid System ── */
.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

/* ── Flex Utilities ── */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  justify-content: space-between;
  align-items: center;
}

.flex--col {
  flex-direction: column;
}

.flex--wrap {
  flex-wrap: wrap;
}

.flex--gap-sm {
  gap: var(--space-sm);
}

.flex--gap-md {
  gap: var(--space-md);
}

.flex--gap-lg {
  gap: var(--space-lg);
}

.flex--gap-xl {
  gap: var(--space-xl);
}

/* ── Two-Column Layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }

  .split--reverse > :first-child {
    order: 2;
  }

  .split--40-60 {
    grid-template-columns: 2fr 3fr;
  }

  .split--60-40 {
    grid-template-columns: 3fr 2fr;
  }
}

/* ── Spacer Utilities ── */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

/* ── Accent Divider ── */
.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--gradient-accent);
  margin: var(--space-lg) auto;
}

.divider-gold--left {
  margin-left: 0;
}

/* ── Full-Bleed Section ── */
.full-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}
/* ==========================================================================
   HEADER - Navigation, Hamburger, Language Switcher
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  transition: background-color var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

@media (min-width: 1024px) {
  .header__inner {
    justify-content: space-between;
  }
}

/* ── Logo ── */
.header__logo {
  display: flex;
  align-items: center;
  z-index: var(--z-overlay);
  text-decoration: none;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  letter-spacing: var(--ls-wider);
  line-height: 1;
  transition: color var(--duration-fast) var(--ease-out);
}

.header.is-scrolled .header__logo-text {
  color: var(--color-text-primary);
}

.header__logo-divider {
  width: 1px;
  height: 1.2em;
  background: var(--color-accent);
  opacity: 0.4;
  margin: 0 var(--space-sm);
  flex-shrink: 0;
}

.header.is-scrolled .header__logo-divider {
  background: var(--color-text-muted);
}

.header__logo-tagline {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 300;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-accent-light);
  line-height: 1;
  white-space: nowrap;
}

.header.is-scrolled .header__logo-tagline {
  color: var(--color-text-muted);
}

@media (max-width: 767px) {
  .header__logo-divider,
  .header__logo-tagline {
    display: none;
  }
}

.header__logo img,
.header__logo svg {
  height: 36px;
  width: auto;
}

@media (min-width: 768px) {
  .header__logo img,
  .header__logo svg {
    height: 44px;
  }
}

/* ── Desktop Navigation im Header ── */
.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    align-items: center;
  }

  .header__nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__nav-link {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--color-accent);
    text-decoration: none;
    padding: var(--space-2xs) var(--space-xs);
    transition: color var(--duration-fast) var(--ease-out);
    white-space: nowrap;
  }

  .header__nav-link:hover {
    color: #ffffff;
  }

  .header__nav-link.is-active {
    color: #ffffff;
  }

  /* Nach Scroll: dunkle Farben */
  .header.is-scrolled .header__nav-link {
    color: var(--color-text-secondary);
  }

  .header.is-scrolled .header__nav-link:hover {
    color: var(--color-text-primary);
  }

  .header.is-scrolled .header__nav-link.is-active {
    color: var(--color-accent);
  }
}

/* ── Show Dropdown Menu ── */
.header__nav-item--dropdown {
  position: relative;
}

/* Dropdown-Toggle soll nie weiß werden (is-active Override) */
.header__nav-item--dropdown > .header__nav-link {
  color: var(--color-accent) !important;
}
.header.is-scrolled .header__nav-item--dropdown > .header__nav-link {
  color: var(--color-text-secondary) !important;
}
.header.is-scrolled .header__nav-item--dropdown > .header__nav-link:hover {
  color: var(--color-text-primary) !important;
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: rgba(11, 12, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: var(--space-xs) 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-fast) var(--ease-out),
              visibility var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Invisible bridge so mouse doesn't lose hover */
.header__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

/* Dropdown öffnet auf Klick, nicht auf Hover */
.header__nav-item--dropdown.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header__dropdown-link {
  display: block;
  padding: var(--space-xs) var(--space-md);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-accent-light);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out),
              background-color var(--duration-fast) var(--ease-out);
}

.header__dropdown-link:hover {
  color: #ffffff;
  background: rgba(175, 130, 72, 0.15);
}

/* Scrolled state: light background */
.header.is-scrolled .header__dropdown {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--color-border);
}

.header.is-scrolled .header__dropdown-link {
  color: var(--color-text-secondary);
}

.header.is-scrolled .header__dropdown-link:hover {
  color: var(--color-accent);
  background: var(--color-accent-glow);
}


/* ── Header Actions (right side) ── */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  z-index: var(--z-overlay);
}

/* Burger + Actions komplett weg auf Desktop */
@media (min-width: 1024px) {
  .header__actions--mobile {
    display: none;
  }
}

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
}

.lang-link {
  color: var(--color-text-muted);
  transition: color var(--duration-fast) var(--ease-out);
  padding: var(--space-2xs) var(--space-xs);
  text-decoration: none;
}

.lang-link:hover {
  color: var(--color-text-primary);
}

.lang-link.is-active {
  color: var(--color-accent);
}

.lang-divider {
  color: var(--color-text-muted);
  user-select: none;
}

/* ── Hamburger Button ── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: var(--z-overlay);
}

.hamburger__line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #ffffff;
  transition: all var(--duration-normal) var(--ease-out);
  border-radius: 2px;
}

/* Scrolled header → dark lines on white background */
.header.is-scrolled .hamburger__line {
  background-color: var(--color-text-primary);
}

.hamburger__line:nth-child(1) {
  margin-bottom: 7px;
}

.hamburger__line:nth-child(2) {
  margin-bottom: 7px;
}

/* Hamburger active state */
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ── Fullscreen Navigation Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-slow) var(--ease-out),
              visibility var(--duration-slow) var(--ease-out);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__inner {
  text-align: center;
}

/* ── Navigation Links ── */
.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-text-primary);
  padding: 0.15em var(--space-md);
  transition: color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
}

.nav-overlay.is-open .nav-link {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation */
.nav-overlay.is-open .nav-link:nth-child(1) { transition-delay: 100ms; }
.nav-overlay.is-open .nav-link:nth-child(2) { transition-delay: 150ms; }
.nav-overlay.is-open .nav-link:nth-child(3) { transition-delay: 200ms; }
.nav-overlay.is-open .nav-link:nth-child(4) { transition-delay: 250ms; }
.nav-overlay.is-open .nav-link:nth-child(5) { transition-delay: 300ms; }
.nav-overlay.is-open .nav-link:nth-child(6) { transition-delay: 350ms; }
.nav-overlay.is-open .nav-link:nth-child(7) { transition-delay: 400ms; }
.nav-overlay.is-open .nav-link:nth-child(8) { transition-delay: 450ms; }
.nav-overlay.is-open .nav-link:nth-child(9) { transition-delay: 500ms; }
.nav-overlay.is-open .nav-link:nth-child(10) { transition-delay: 550ms; }

.nav-link:hover {
  color: var(--color-accent);
  transform: translateX(8px);
}

.nav-link.is-active {
  color: var(--color-accent);
}

/* Social links in nav overlay */
.nav-social {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out) 600ms;
}

.nav-overlay.is-open .nav-social {
  opacity: 1;
}

.nav-social a {
  color: var(--color-text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-social a:hover {
  color: var(--color-accent);
}

.nav-social svg {
  width: 24px;
  height: 24px;
}

/* Body scroll lock when nav is open */
body.nav-open {
  overflow: hidden;
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: var(--z-header);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}
/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */

/* ── Homepage Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-bg-primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: var(--z-base);
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  display: none;
}

.hero__spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 40%,
    rgba(175, 130, 72, 0.05) 0%,
    transparent 70%
  );
  z-index: 2;
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: var(--fw-extrabold);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-md);
  line-height: 1.1;
  margin-left: -0.04em;
}

.hero__title span {
  color: var(--color-accent-light);
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: var(--lh-relaxed);
}

/* ── Hero linksbündig ── */
.hero__content--left {
  text-align: left;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 var(--container-padding);
  padding-left: var(--container-padding);
  max-width: var(--container-xl);
  margin: 0 auto;
  transform: none;
  align-self: flex-end;
  padding-bottom: var(--space-3xl);
}

.hero__content--left .hero__subtitle {
  margin-left: 0;
  margin-right: auto;
}

/* ── Subtitle gold ── */
.hero__subtitle--gold {
  color: var(--color-accent-light);
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__content--left .hero__cta {
  justify-content: flex-start;
  align-items: center;
}

/* ── Hero Audio Play Button ── */
.hero__play-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--color-accent-light);
  background: rgba(175, 130, 72, 0.1);
  color: var(--color-accent-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.hero__play-btn:hover {
  background: rgba(175, 130, 72, 0.25);
  transform: scale(1.08);
}

.hero__play-icon,
.hero__pause-icon {
  width: 22px;
  height: 22px;
  position: absolute;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero__play-icon {
  margin-left: 3px;
}

.hero__pause-icon {
  opacity: 0;
}

.hero__play-btn.is-playing .hero__play-icon {
  opacity: 0;
}

.hero__play-btn.is-playing .hero__pause-icon {
  opacity: 1;
}

/* ── Golden Pulse Waves (3D) ── */
.hero__play-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--color-accent-light);
  box-shadow: 0 0 12px rgba(175, 130, 72, 0.4),
              0 0 30px rgba(175, 130, 72, 0.15),
              inset 0 0 8px rgba(175, 130, 72, 0.2);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  pointer-events: none;
}

.hero__play-btn.is-playing .hero__play-wave {
  animation: heroPlayWave 3s ease-out infinite;
}

.hero__play-btn.is-playing .hero__play-wave:nth-child(3) {
  animation-delay: 0s;
}

.hero__play-btn.is-playing .hero__play-wave:nth-child(4) {
  animation-delay: 1s;
}

.hero__play-btn.is-playing .hero__play-wave:nth-child(5) {
  animation-delay: 2s;
}

@keyframes heroPlayWave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
    border-width: 3px;
    box-shadow: 0 0 16px rgba(175, 130, 72, 0.5),
                0 0 40px rgba(175, 130, 72, 0.25),
                inset 0 0 10px rgba(175, 130, 72, 0.3);
  }
  50% {
    opacity: 0.35;
  }
  100% {
    transform: translate(-50%, -50%) scale(4.5);
    opacity: 0;
    border-width: 1px;
    box-shadow: 0 0 4px rgba(175, 130, 72, 0.05),
                0 0 8px rgba(175, 130, 72, 0.02);
  }
}

.hero__badge {
  position: absolute;
  bottom: var(--space-2xl);
  right: var(--space-2xl);
  z-index: 3;
  width: 100px;
  height: auto;
  opacity: 0.9;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero__badge:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .hero__badge {
    width: 70px;
    bottom: var(--space-lg);
    right: var(--space-lg);
  }

  .hero__content--left {
    transform: none;
    padding-bottom: var(--space-2xl);
  }

  .hero__play-btn {
    width: 46px;
    height: 46px;
  }

  .hero__play-icon,
  .hero__pause-icon {
    width: 18px;
    height: 18px;
  }
}


/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent-light);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ── Subpage Hero ── */
.hero--sub {
  height: 40vh;
  min-height: 320px;
  max-height: 450px;
}

.hero--sub .hero__content {
  padding-top: var(--header-height);
}

.hero--sub .hero__title {
  font-size: var(--fs-h1);
}

/* ── Trust Bar (below hero) ── */
.trust-bar {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-md) 0;
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-bar__logo {
  height: 30px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(0.8);
  flex-shrink: 0;
  pointer-events: none;
}

.trust-bar__logo-text {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.5;
  white-space: nowrap;
  flex-shrink: 0;
  pointer-events: none;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Trust bar with label */
.trust-bar--labeled {
  display: flex;
  align-items: center;
}

.trust-bar__label {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  padding: 0 var(--container-padding);
  flex-shrink: 0;
}

.trust-bar__track {
  overflow: hidden;
  flex: 1;
}
