:root {
  --creme: #F3F1E6;
  --foret: #286E44;
  --rouge: #C10328;
  --or: #F5C036;
  --encre: #1F2926;
  --sable: #E6E3D7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--encre);
  background:
    radial-gradient(ellipse at 12% -10%, rgba(40, 110, 68, 0.14), transparent 45%),
    radial-gradient(ellipse at 100% 60%, rgba(193, 3, 40, 0.07), transparent 40%),
    var(--creme);
  line-height: 1.55;
}

a { color: var(--foret); }

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 22px 72px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 14px;
}

.nav-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--encre);
  font-weight: 500;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(31, 41, 38, 0.65);
  font-weight: 600;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(31, 41, 38, 0.5);
  font-weight: 600;
  margin: 0 0 8px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 6vw, 2.6rem);
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.15;
}

.meta {
  font-size: 0.92rem;
  color: rgba(31, 41, 38, 0.5);
  margin: 0 0 28px;
}

.legal h2 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 28px 0 10px;
}

.legal p,
.legal li {
  color: rgba(31, 41, 38, 0.78);
  font-size: 1rem;
}

.legal ul {
  padding-left: 1.2em;
  margin: 8px 0 16px;
}

.legal li { margin: 6px 0; }

.card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(230, 227, 215, 0.95);
  border-radius: 18px;
  padding: 18px 20px;
  margin: 18px 0;
  box-shadow: 0 10px 28px rgba(31, 41, 38, 0.05);
}

.card strong { color: var(--encre); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--foret);
  color: var(--creme) !important;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--sable);
  font-size: 0.9rem;
  color: rgba(31, 41, 38, 0.45);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 12px;
}

.footer a {
  text-decoration: none;
  color: rgba(31, 41, 38, 0.55);
  font-weight: 600;
}
