/* ── RESET & VARIABLES ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --navy:      #0D2545;
  --navy-mid:  #1E3A6E;
  --gold:      #C9A84C;
  --gold-light:#E8C96A;
  --anthrazit: #2C3E50;
  --light:     #F4F6F8;
  --white:     #FFFFFF;
  --dark:      #1A1A2E;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

nav.promiva-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(13,37,69,0.97);
  backdrop-filter: blur(8px);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); letter-spacing: 1px; text-decoration: none; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.82rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta { background: var(--gold); color: var(--navy); padding: 8px 20px; border-radius: 2px; }
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--navy); }

footer.promiva-footer {
  background: var(--dark);
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.footer-logo { font-family: var(--font-display); font-size: 1.05rem; color: rgba(255,255,255,0.45); }
.footer-logo span { color: var(--gold); }
.footer-legal { font-size: 0.78rem; }
.footer-legal a { color: rgba(255,255,255,0.45); text-decoration: none; margin: 0 8px; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }
.footer-claim { font-size: 0.78rem; color: rgba(255,255,255,0.28); font-style: italic; }

#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}
#cookie-banner p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; max-width: 700px; }
#cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--gold); color: var(--navy); border: none; padding: 10px 24px; font-weight: 700; font-size: 0.85rem; border-radius: 2px; cursor: pointer; transition: background 0.2s; font-family: var(--font-body); }
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; font-size: 0.85rem; border-radius: 2px; cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.8); }

.legal-page { padding: 120px 40px 80px; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); margin-bottom: 40px; padding-bottom: 16px; border-bottom: 2px solid var(--gold); }
.legal-page h2 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin: 32px 0 12px; }
.legal-page p { font-size: 0.95rem; color: #444; line-height: 1.8; margin-bottom: 12px; }
.legal-page a { color: var(--navy); }
.legal-page ul { padding-left: 20px; margin-bottom: 12px; }
.legal-page ul li { font-size: 0.95rem; color: #444; line-height: 1.8; }

@media (max-width: 900px) {
  nav.promiva-nav { padding: 0 20px; }
  .nav-links { display: none; }
  footer.promiva-footer { flex-direction: column; gap: 10px; text-align: center; }
  #cookie-banner { padding: 20px 24px; }
  .legal-page { padding: 100px 24px 60px; }
}
