/* Survival Zone — feuille de style commune pages légales */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #1A1A1A;
  color: #f0ede8;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
:root {
  --olive: #3B4A2A;
  --orange: #D4621A;
  --cream: #f0ede8;
  --muted: rgba(240, 237, 232, 0.65);
  --line: rgba(255, 255, 255, 0.08);
}
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  padding: 0 40px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.08em;
  color: var(--cream); text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.7);
}
.nav-link:hover { color: var(--cream); text-decoration: none; }

/* MAIN */
.legal-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 32px 64px;
}
.legal-header { margin-bottom: 56px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal-header .eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 12px;
}
.legal-header .eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--orange);
}
.legal-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 12px;
}
.legal-header .lead {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* SECTIONS */
section {
  margin-bottom: 40px;
}
section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 24px 0 12px;
}
section p, section li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}
section ul { padding-left: 24px; }
section strong { color: var(--cream); font-weight: 600; }

/* TABLES */
.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 14px;
}
.cookies-table th,
.cookies-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.cookies-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
}

/* BACK */
.legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* FOOTER */
.legal-footer {
  background: #0f0f0f;
  padding: 40px 32px;
  text-align: center;
  border-top: 1px solid var(--line);
  margin-top: 64px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 18px;
}
.footer-logo span { color: var(--orange); }
.footer-links {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 24px;
  margin-bottom: 18px;
}
.footer-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.5);
}
.footer-links a:hover { color: var(--cream); text-decoration: none; }
.footer-copy {
  font-size: 12px;
  color: rgba(240, 237, 232, 0.3);
}

/* RESPONSIVE */
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-links { gap: 16px; }
  .nav-link { font-size: 11px; }
  .legal-main { padding: 48px 20px 40px; }
  .cookies-table { font-size: 13px; }
}
