/* P'tites Ondes — site statique sans JavaScript ni cookies */
:root {
  --bg: #fff9f4;
  --surface: #ffffff;
  --text: #2c2a33;
  --muted: #6f6877;
  --accent: #7558b8;
  --accent-soft: #eee7ff;
  --mint: #e8f7f0;
  --peach: #fff0e4;
  --border: #ece6ef;
  --shadow: 0 18px 50px rgba(55, 42, 70, 0.10);
}

* { box-sizing: border-box; }

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 8%, var(--mint) 0, transparent 28rem),
    radial-gradient(circle at 90% 3%, var(--peach) 0, transparent 26rem),
    var(--bg);
}

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

.page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 28px;
}

.hero {
  text-align: center;
  padding: 50px 20px 36px;
}

.brand-mark {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--accent-soft), #fff);
  box-shadow: var(--shadow);
  font-size: 42px;
  color: var(--accent);
  transform: rotate(-4deg);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.legal h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.lead {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--muted);
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.features span {
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  font-size: .92rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: clamp(24px, 5vw, 46px);
  box-shadow: var(--shadow);
}

.card > :first-child { margin-top: 0; }

.button {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.updated {
  color: var(--muted);
  margin-top: -2px;
}

.back {
  margin-bottom: 16px;
}

.back a {
  text-decoration: none;
  font-weight: 700;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  padding: 24px 0 4px;
}

footer p {
  margin: 4px 0;
}

@media (max-width: 600px) {
  .page { padding-top: 30px; }
  .hero { padding-top: 32px; }
  .card { border-radius: 20px; }
}
