/* Glanzvoll — Design Tokens */
:root {
  --navy: #0f1f3d;
  --navy-light: #1a2f52;
  --navy-deep: #0a1628;
  --gold: #c9a84c;
  --gold-light: #e4c76b;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --white: #ffffff;
  --off-white: #f8f9fb;
  --text: #2c3e50;
  --text-muted: #6b7c93;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(15, 31, 61, 0.12);
  --shadow-lg: 0 24px 64px rgba(15, 31, 61, 0.18);
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --stars-pattern: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22420%22%20height%3D%22420%22%20viewBox%3D%220%200%20420%20420%22%3E%3Ccircle%20cx%3D%2272%22%20cy%3D%22108%22%20r%3D%222.0%22%20fill%3D%22%23c9a84c%22%20opacity%3D%220.9%22%2F%3E%3Ccircle%20cx%3D%22198%22%20cy%3D%2272%22%20r%3D%221.7%22%20fill%3D%22%23ffffff%22%20opacity%3D%220.65%22%2F%3E%3Ccircle%20cx%3D%22340%22%20cy%3D%22145%22%20r%3D%222.2%22%20fill%3D%22%23c9a84c%22%20opacity%3D%220.85%22%2F%3E%3Ccircle%20cx%3D%22385%22%20cy%3D%2295%22%20r%3D%221.5%22%20fill%3D%22%23c9a84c%22%20opacity%3D%220.75%22%2F%3E%3Ccircle%20cx%3D%22125%22%20cy%3D%22280%22%20r%3D%221.8%22%20fill%3D%22%23ffffff%22%20opacity%3D%220.55%22%2F%3E%3Ccircle%20cx%3D%22290%22%20cy%3D%22320%22%20r%3D%222.0%22%20fill%3D%22%23c9a84c%22%20opacity%3D%220.8%22%2F%3E%3Ccircle%20cx%3D%22355%22%20cy%3D%22385%22%20r%3D%221.6%22%20fill%3D%22%23c9a84c%22%20opacity%3D%220.7%22%2F%3E%3Ccircle%20cx%3D%2258%22%20cy%3D%22365%22%20r%3D%221.7%22%20fill%3D%22%23c9a84c%22%20opacity%3D%220.78%22%2F%3E%3Ccircle%20cx%3D%22210%22%20cy%3D%22405%22%20r%3D%221.5%22%20fill%3D%22%23ffffff%22%20opacity%3D%220.5%22%2F%3E%3Ccircle%20cx%3D%22160%22%20cy%3D%22180%22%20r%3D%221.6%22%20fill%3D%22%23c9a84c%22%20opacity%3D%220.72%22%2F%3E%3Ccircle%20cx%3D%2240%22%20cy%3D%22215%22%20r%3D%221.4%22%20fill%3D%22%23ffffff%22%20opacity%3D%220.48%22%2F%3E%3Ccircle%20cx%3D%22395%22%20cy%3D%22255%22%20r%3D%221.5%22%20fill%3D%22%23c9a84c%22%20opacity%3D%220.68%22%2F%3E%3C%2Fsvg%3E");
  --stars-size: 420px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(12px, -18px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes starsDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(22px, -16px); }
}

@media (prefers-reduced-motion: reduce) {
  .stars-drift::after,
  .stars-drift::before,
  .maintenance-bg::before {
    animation: none !important;
  }
}

html.stars-disabled #site::before,
html.stars-disabled .m-hero-bg::after,
html.stars-disabled .hero-bg.stars-drift::after,
html.stars-disabled .contact.stars-drift::before,
html.stars-disabled .footer.stars-drift::before,
html.stars-disabled .maintenance-bg::before {
  display: none !important;
  animation: none !important;
}
