/* Pages légales — feuille de style minimaliste (typo lisible, fond clair). */
:root {
    --red: #EF4555;
    --red-deep: #C83543;
    --ink: #0A0B0E;
    --ink-soft: #2A2D33;
    --ink-mute: #6B7280;
    --bg: #FAFAFB;
    --surface: #FFFFFF;
    --border: #E5E7EB;
}

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

html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px 96px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.04em;
    color: var(--red);
    text-decoration: none;
}

.back-link {
    color: var(--ink-mute);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}
.back-link:hover { color: var(--red); }

h1 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.subtitle {
    color: var(--ink-mute);
    font-size: 14px;
    margin-bottom: 32px;
}

h2 {
    font-size: 20px;
    font-weight: 800;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--red);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--ink);
}

p {
    margin-bottom: 14px;
    color: var(--ink-soft);
}

ul, ol {
    margin: 0 0 14px 22px;
    color: var(--ink-soft);
}

li { margin-bottom: 6px; }

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

a { color: var(--red); text-decoration: underline; }
a:hover { color: var(--red-deep); }

.placeholder {
    background: #FFF3CD;
    color: #7A4F01;
    padding: 1px 6px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.92em;
}

.notice {
    background: #FEF3F4;
    border-left: 4px solid var(--red);
    padding: 14px 18px;
    margin: 24px 0;
    border-radius: 4px;
    font-size: 14px;
    color: var(--ink-soft);
}

.legal-nav {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

.legal-nav a {
    color: var(--ink-mute);
    text-decoration: none;
    font-weight: 600;
}
.legal-nav a:hover { color: var(--red); }

.footer {
    margin-top: 32px;
    color: var(--ink-mute);
    font-size: 12px;
    text-align: center;
}

@media (max-width: 600px) {
    .container { padding: 24px 16px 64px; }
    h1 { font-size: 24px; }
    h2 { font-size: 18px; }
}
