/* Actual — site public (politique de confidentialité, support)
   Design « Édition » : papier & encre, rouge éditorial, serif Newsreader.
   Tokens repris de constants/theme.ts de l'app. */

@font-face {
  font-family: 'Newsreader';
  src: url('/fonts/Newsreader-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('/fonts/Newsreader-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('/fonts/Newsreader-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/HankenGrotesk-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/HankenGrotesk-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/HankenGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/HankenGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  --paper: #F6F1E8;
  --ink: #1C1A17;
  --ink-soft: #3A352F;
  --accent: #C13B2B;
  --accent-soft: rgba(193, 59, 43, 0.10);
  --accent-border: rgba(193, 59, 43, 0.4);
  --text-secondary: #6F6862;
  --text-muted: #9A938B;
  --counter: #C0B8AD;
  --border: #E7DFD2;
  --card-border: #ECE4D6;
  --row-border: #F0E9DD;
  --white: #FFFFFF;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.7;
}

.page {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- En-tête ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 20px;
  border-bottom: 1px solid var(--border);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  text-decoration: none;
}
.wordmark-text {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: -0.2px;
  color: var(--ink);
}
.wordmark-square {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: translateY(-2px);
}

.site-nav {
  display: flex;
  gap: 20px;
}
.site-nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a.active { color: var(--accent); font-weight: 600; }

/* ---------- Corps d'article ---------- */

main { padding: 44px 0 20px; }

.kicker {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 14px;
}

.meta-line {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 36px;
}

section { margin-bottom: 40px; }

.section-num {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  color: var(--counter);
  margin-bottom: 6px;
}

h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: -0.2px;
  color: var(--ink);
  margin-bottom: 14px;
}

h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin: 22px 0 8px;
}

p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: #9E2F22; }

strong { font-weight: 600; color: var(--ink); }

/* Listes à puces carrées rouges, comme la marque */
ul { list-style: none; margin-bottom: 14px; }
ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

/* ---------- Cartes ---------- */

.card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 36px;
}
.card .card-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.card ul { margin-bottom: 0; }
.card ul li { margin-bottom: 9px; }
.card ul li:last-child { margin-bottom: 0; }

/* Cartes-liens de la page d'accueil */
.link-cards { display: grid; gap: 14px; margin: 36px 0; }
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 24px;
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.link-card:hover { border-color: var(--accent-border); }
.link-card .lc-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.link-card .lc-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.link-card .lc-arrow {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Bouton contact (style « Suivre » de l'app) */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 10px 22px;
  text-decoration: none;
}
.btn:hover { background: rgba(193, 59, 43, 0.16); color: var(--accent); }

/* Chips « bientôt » */
.store-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.store-chip {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  background: transparent;
}

/* ---------- FAQ (page support) ---------- */

.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--row-border); }
.faq summary {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  padding: 18px 30px 18px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 22px;
  color: var(--accent);
}
.faq details[open] summary::after { content: '–'; }
.faq details p { padding-bottom: 18px; }

/* ---------- Pied de page ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 24px 0 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }
.footer-note {
  width: 100%;
  font-size: 12.5px;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  main { padding-top: 34px; }
  .card { padding: 20px; }
  .link-card { padding: 18px 20px; }
}
