/* La bulle des couples — feuille de style unique. Thème clair/sombre automatique. */

:root {
  /* Ivoire chaud, rouge velours, or ancien : un salon intime à la lueur des bougies. */
  --bg: #fbf5ee;
  --bg-soft: #f4e9df;
  --surface: #fffdf9;
  --ink: #2b1519;
  --ink-soft: #6a4d53;
  --line: #e7d5c8;
  --brand: #8f1d2c;          /* rouge velours */
  --brand-hover: #731523;
  --brand-ink: #fff8f0;
  --accent: #8f1d2c;         /* mots mis en valeur dans les titres */
  --gold: #c19a49;           /* or ancien : filets, ornements */
  --gold-ink: #7a5813;       /* or foncé : petits textes lisibles */
  --link: #8f1d2c;
  --focus: #9a6a12;
  --ok: #2c6a3d;
  --warn: #8a5a00;
  --err: #a01d1d;
  --radius: 16px;
  --shadow: 0 6px 24px rgba(70, 20, 30, .09);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a0b0e;
    --bg-soft: #251116;
    --surface: #2a1318;
    --ink: #f7ece2;
    --ink-soft: #d0b6ae;
    --line: #4b272d;
    --brand: #b3243a;
    --brand-hover: #c9364c;
    --brand-ink: #fff8f0;
    --accent: #e3bb6c;
    --gold: #d9b45f;
    --gold-ink: #e6c77e;
    --link: #edc47c;
    --focus: #e6c77e;
    --ok: #74d39a;
    --warn: #ffc266;
    --err: #ff9a94;
    --shadow: 0 6px 24px rgba(0, 0, 0, .4);
  }
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 1rem/1.6 var(--font); min-height: 100vh; display: flex; flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; }
a { color: var(--link); }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 6px; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-top: 1.6em; }
h3 { font-size: 1.2rem; }
h1 em, .brand em { font-style: italic; color: var(--accent); }
p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }
.hint { font-size: .88rem; color: var(--ink-soft); margin: .4rem 0 0; }
.eyebrow { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: .4rem; font-weight: 600; }
.center { text-align: center; }
.big { font-family: var(--font-display); font-size: 2.6rem; margin: .2rem 0; }
.sr, .skip:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip:focus { position: fixed; top: 8px; left: 8px; z-index: 50; background: var(--surface); padding: .5rem 1rem; border-radius: 8px; }

.wrap { width: 100%; max-width: 1080px; margin-inline: auto; padding-inline: 16px; }
.page { padding-block: 2rem 3rem; }
.narrow { max-width: 680px; margin-inline: auto; }
.prose { max-width: 68ch; }
.prose p { font-size: 1.05rem; }

/* --- En-tête ------------------------------------------------------------ */
.site-header { border-bottom: 1px solid color-mix(in srgb, var(--gold) 55%, var(--line)); background: color-mix(in srgb, var(--bg) 92%, transparent); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(8px); }
.bar { display: flex; align-items: center; gap: .6rem 1.4rem; flex-wrap: wrap; padding-block: .6rem; }
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; }
.nav { display: flex; gap: .3rem 1.1rem; flex-wrap: wrap; }
.nav a { color: var(--ink); text-decoration: none; padding: .3rem 0; border-bottom: 2px solid transparent; }
.nav a:hover { border-bottom-color: var(--gold); }
.account { margin-left: auto; display: flex; align-items: center; gap: .6rem; }
.account form { margin: 0; }
.who { max-width: 22ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink-soft); text-decoration: none; font-size: .92rem; }
@media (max-width: 760px) {
  .nav { order: 3; width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: .2rem; }
  .nav a { white-space: nowrap; }
  .who { display: none; }
}

.flashes { padding-top: 1rem; }
.flash { margin: 0 0 .6rem; padding: .7rem 1rem; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); }
.flash.ok { border-color: var(--ok); }
.flash.erreur { border-color: var(--err); }
.flash.info { border-color: var(--focus); }

.site-footer { border-top: 1px solid var(--line); padding-block: 1.6rem; color: var(--ink-soft); font-size: .92rem; }
.site-footer p { margin: 0 0 .3rem; }

/* --- Boutons ------------------------------------------------------------ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .7rem 1.25rem; border-radius: 999px; border: 1.5px solid transparent; font: inherit; font-weight: 600; text-decoration: none; cursor: pointer; line-height: 1.2; transition: background .15s, transform .15s; }
.btn:disabled { opacity: .6; cursor: default; }
.btn-primary { background: linear-gradient(180deg, var(--brand), var(--brand-hover)); color: var(--brand-ink); border-color: color-mix(in srgb, var(--gold) 70%, var(--brand)); box-shadow: 0 2px 10px rgba(80, 10, 25, .25); }
.btn-primary:hover { background: var(--brand-hover); border-color: var(--gold); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); }
.btn-small { padding: .4rem .9rem; font-size: .9rem; }
.btn-block { display: flex; width: 100%; margin-bottom: .6rem; }
.btn-danger { color: var(--err); }
.btn-link { background: none; border: 0; padding: 0; font: inherit; color: var(--link); text-decoration: underline; cursor: pointer; }
.cta-row { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; margin: 1.2rem 0; }

/* --- Mise en page générale ---------------------------------------------- */
.grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.stack { display: grid; gap: .8rem; margin-bottom: 1.6rem; }
.card { background: var(--surface); border: 1px solid color-mix(in srgb, var(--gold) 28%, var(--line)); border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow); }
.card h3 { margin-bottom: .4em; }
.card > :last-child { margin-bottom: 0; }
.row-card { display: flex; gap: 1rem; align-items: center; justify-content: space-between; }
.row-card h3 { margin: 0 0 .2rem; }
.row-card p { margin: 0; }
.row-actions { display: flex; gap: .5rem; align-items: center; }
.row-actions form { margin: 0; }
.page-head { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: center; }
.page-head .cta-row { margin: 0; }

/* --- Formulaires -------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; margin-block: 1.4rem; }
.field { display: grid; gap: .35rem; border: 0; padding: 0; margin: 0; min-width: 0; }
.field label, .field legend { font-weight: 600; padding: 0; }
input:not([type=checkbox]), select, textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--bg); border: 1.5px solid var(--line);
  border-radius: 12px; padding: .65rem .8rem;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--focus); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--focus) 30%, transparent); }
.two-cols { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.three-cols { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.check { display: flex; gap: .6rem; align-items: flex-start; }
.check input { margin-top: .3rem; width: 1.1rem; height: 1.1rem; accent-color: var(--brand); }
.inline-form { grid-template-columns: 1fr auto; align-items: end; }
.copyfield { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .9rem; }
.danger-zone { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; margin-top: 2rem; }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 .6rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span, .chip-link, .chip.static {
  display: inline-block; padding: .3rem .8rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--surface); font-size: .92rem; color: var(--ink); text-decoration: none;
}
.chip input:checked + span { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.chip input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.chip-link:hover { border-color: var(--gold); }
.chip-link.active { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }
.chip.static { padding: .15rem .65rem; font-size: .84rem; }
.chip.static.shared { border-color: var(--gold); color: var(--gold-ink); font-weight: 600; }
.filter { margin-bottom: 1.4rem; }

/* --- Bulles ------------------------------------------------------------- */
.bubble {
  position: absolute; left: var(--x); top: var(--y); width: var(--s); aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255,255,255,.9) 0 5%, rgba(255,255,255,.28) 6% 16%, transparent 17%),
    radial-gradient(circle at 50% 55%, transparent 52%, color-mix(in srgb, var(--h) 45%, transparent) 100%),
    color-mix(in srgb, var(--h) 14%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--h) 45%, transparent), 0 8px 28px color-mix(in srgb, var(--h) 28%, transparent);
  animation: drift var(--d, 10s) ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate(0, 0); } to { transform: translate(6px, -14px); } }
.bubble-xl { --h: #d9b05a; --s: min(78vw, 330px); position: relative; left: auto; top: auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; font-family: var(--font-display); font-size: 1.3rem; color: #5a1a25; }
.bubble-xl .heart { animation: beat 2.6s ease-in-out infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* --- Accueil : le ciel s'assombrit de section en section ------------------ */
.sky { padding-block: clamp(2.5rem, 7vw, 5rem); position: relative; overflow: hidden; }
.sky h2:first-child { margin-top: 0; }
.sky-day, .sky-host { background: linear-gradient(180deg, #fff9f0, #f8ead9); color: #2b1519; --ink: #2b1519; --ink-soft: #6a4d53; --gold-ink: #7a5813; --accent: #8f1d2c; --link: #8f1d2c; --line: #e3cfc0; --surface: #fffdf9; }
.sky-dawn { background: linear-gradient(180deg, #f8ead9, #e9cdb6); color: #2b1519; --ink: #2b1519; --ink-soft: #5c3f45; --gold-ink: #6e4f10; --accent: #8f1d2c; --link: #8f1d2c; --line: #d9bda9; --surface: #fffaf3e6; }
.sky-night { background: linear-gradient(180deg, #2f0d15, #12060a); }
.sky-night {
  color: #f8ece0; --ink: #f8ece0; --ink-soft: #e8d2c6; --gold-ink: #e8ca84; --accent: #e8c675; --link: #f0cf8a; --line: rgba(232,202,132,.28); --surface: rgba(255,240,225,.07); --shadow: none;
}
.sky-night .lead, .on-dark-soft { color: #e8d2c6; }
.sky-night h2 { color: #f3d99a; }
.on-dark-btn { color: #f8ece0; border-color: rgba(232,202,132,.5); }
@media (prefers-color-scheme: dark) {
  .sky-day, .sky-host { background: linear-gradient(180deg, #23100f, #33161c); color: #f7ece2; --ink: #f7ece2; --ink-soft: #d8beb5; --gold-ink: #e6c77e; --accent: #e8c675; --link: #f0cf8a; --line: rgba(232,202,132,.25); --surface: rgba(255,240,225,.06); }
  .sky-dawn { background: linear-gradient(180deg, #33161c, #4f1a27); color: #f7ece2; --ink: #f7ece2; --ink-soft: #e0c8bd; --gold-ink: #e6c77e; --accent: #e8c675; --link: #f0cf8a; --line: rgba(232,202,132,.28); --surface: rgba(255,240,225,.07); }
  .bubble-xl { color: #fbe9d0; }
}

.hero-grid { display: grid; gap: 2rem; align-items: center; grid-template-columns: 1.1fr .9fr; }
.hero-art { position: relative; min-height: 380px; display: grid; place-items: center; }
.hero h1 { font-size: clamp(2.4rem, 7vw, 4rem); }
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 320px; order: -1; }
}

.invite { margin-top: 3.5rem; text-align: center; }

/* --- Événements --------------------------------------------------------- */
.event-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; position: relative; transition: transform .15s, box-shadow .15s; }
.event-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(70, 20, 30, .22); }
.event-card h3 a::after { content: ""; position: absolute; inset: 0; }   /* toute la vignette est cliquable */
.event-card:has(a:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
.event-card h3 a:focus-visible { outline: none; }
.event-thumb { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.event-card-body { padding: 1.1rem 1.25rem 1.25rem; }
.event-card h3 a { color: var(--ink); text-decoration: none; }
.event-card h3 a:hover { color: var(--link); text-decoration: underline; }
.event-card .price { font-weight: 700; margin: .4rem 0 0; }
.past .event-card { opacity: .75; }
.event-layout { display: grid; gap: 2rem; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; }
.event-hero { width: 100%; border-radius: var(--radius); margin-bottom: 1.2rem; max-height: 380px; object-fit: cover; }
.event-side { position: sticky; top: 5rem; }
@media (max-width: 860px) { .event-layout { grid-template-columns: 1fr; } .event-side { position: static; } }
.facts { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1rem; margin: 0 0 1.2rem; }
.facts dt { color: var(--ink-soft); font-weight: 600; }
.facts dd { margin: 0; }
.action { margin-bottom: 1rem; }
.action .hint { margin-bottom: .9rem; }
.card > h2:first-child { margin-top: 0; }
.action form { margin: 0; }
.status { padding: .6rem .9rem; border-radius: 12px; font-weight: 600; margin-bottom: .8rem; border: 1px solid var(--line); }
.status.ok { border-color: var(--ok); color: var(--ok); }
.status.warn { border-color: var(--warn); color: var(--warn); }
.steps { padding-left: 1.2rem; margin: 0 0 1rem; }
.steps .done { color: var(--ok); }
.tick { font-size: .85rem; font-weight: 700; border: 1px solid currentColor; border-radius: 999px; padding: 0 .5rem; margin-left: .3rem; }
.share { border-top: 1px solid var(--line); padding-top: 1rem; }
.share-label { font-weight: 600; margin-bottom: .5rem; }
.share-row { display: flex; gap: .4rem; flex-wrap: wrap; }
.couple-card .affinity { color: var(--gold-ink); font-weight: 700; margin-bottom: .4rem; }

/* --- Salons ------------------------------------------------------------- */
.chat { display: grid; gap: .8rem; }
.chat-log { list-style: none; margin: 0; padding: .2rem; height: min(56vh, 480px); overflow-y: auto; display: flex; flex-direction: column; gap: .6rem; }
.msg { max-width: min(85%, 520px); padding: .5rem .85rem; border-radius: 14px; background: var(--bg-soft); align-self: flex-start; }
.msg.mine { align-self: flex-end; background: color-mix(in srgb, var(--brand) 14%, var(--surface)); }
.msg-head { display: flex; gap: .6rem; align-items: baseline; font-size: .85rem; color: var(--ink-soft); flex-wrap: wrap; }
.msg-head strong { color: var(--ink); }
.msg-body { margin: .1rem 0 0; white-space: pre-wrap; overflow-wrap: anywhere; }
.msg-del { font-size: .8rem; margin-left: auto; }
.chat-empty { text-align: center; margin: 0; }
.chat-form { display: grid; grid-template-columns: 1fr auto; gap: .6rem; align-items: end; }
.chat-error { color: var(--err); margin: 0; }

/* --- Tableaux d'administration ------------------------------------------ */
.table-wrap { overflow-x: auto; margin: 1rem 0 2rem; border: 1px solid var(--line); border-radius: var(--radius); }
.table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.table th, .table td { padding: .65rem .9rem; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.table th { background: var(--bg-soft); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); }
.table tr:last-child td { border-bottom: 0; }
.table .num { text-align: right; }
.table form { margin: 0; }
.muted-row { color: var(--ink-soft); text-decoration: line-through; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* --- Déroulement d'un événement -------------------------------------------- */
.callout {
  margin: 1rem 0 1.4rem; padding: .9rem 1.1rem; max-width: 68ch;
  border-left: 4px solid var(--gold); border-radius: 0 12px 12px 0;
  background: color-mix(in srgb, var(--gold) 12%, var(--surface));
}
.journey-block { margin-top: 2.2rem; }
.journey-block > h2:first-child { margin-top: 0; }
.home-journey { margin-top: 3rem; }
.journey { list-style: none; margin: 1.4rem 0 1rem; padding: 0; max-width: 68ch; position: relative; }
.journey li { display: grid; grid-template-columns: 2.4rem 1fr; gap: 0 1rem; position: relative; padding-bottom: 1.4rem; }
.journey li:not(:last-child)::before {   /* le fil doré qui relie les étapes */
  content: ""; position: absolute; left: 1.15rem; top: 2.4rem; bottom: 0; width: 2px;
  background: linear-gradient(var(--gold), color-mix(in srgb, var(--gold) 25%, transparent));
}
.journey-dot {
  width: 2.4rem; height: 2.4rem; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: var(--brand-ink);
  background: radial-gradient(circle at 32% 28%, color-mix(in srgb, var(--brand) 70%, #fff), var(--brand) 70%);
  border: 2px solid var(--gold); box-shadow: 0 2px 8px rgba(70, 20, 30, .25);
}
.journey-when { margin: .1rem 0 .1rem; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; color: var(--gold-ink); }
.journey h3 { margin: 0 0 .25em; }
.journey p:last-child { margin-bottom: 0; }
.journey li.done .journey-dot { background: var(--bg-soft); color: var(--ink-soft); box-shadow: none; }
.journey li.done .journey-body { opacity: .72; }
.hint.due { color: var(--warn); font-weight: 600; margin: 0 0 .8rem; }
.hint.due strong { font-weight: 800; }

/* --- Impressions et convivialité --------------------------------------------- */
.rate-row { display: grid; gap: .3rem; grid-template-columns: 1fr; margin-bottom: .8rem; }
@media (min-width: 640px) { .rate-row { grid-template-columns: 1fr minmax(240px, 320px); align-items: center; } }
.rate-row label { font-weight: 500; }
.conv { color: var(--gold-ink); font-weight: 600; margin: .2rem 0 .6rem; }
.feedback { margin-bottom: 1rem; }
.feedback p:last-child { margin-bottom: 0; }

/* --- Qui sommes-nous (accueil) ------------------------------------------------ */
.sky-host { background: #f8ead9; }   /* prolonge le bas du ciel clair, sans couture */
@media (prefers-color-scheme: dark) { .sky-host { background: #33161c; } }
.host-grid { display: grid; gap: 2.5rem; align-items: center; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.host-photo { margin: 0; }
.host-photo img {
  display: block; width: 100%; border-radius: 24px; border: 2px solid var(--gold);
  box-shadow: 0 10px 34px rgba(70, 20, 30, .28); transform: rotate(-1.5deg);
}
.host-copy h2 { margin: 0 0 .5em; }
.host-copy h2 em { color: var(--gold-ink); }
.host-motto {
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  border-left: 4px solid var(--gold); padding-left: 1rem; margin-block: 1.2rem;
}
@media (max-width: 860px) { .host-grid { grid-template-columns: 1fr; gap: 1.6rem; } .host-photo img { transform: none; } }

/* --- Accès rapide à l'administration ------------------------------------------- */
.btn-admin { background: linear-gradient(180deg, #e8c97e, #c9a24f); color: #2b1519; border-color: #a07a2c; box-shadow: 0 2px 8px rgba(70, 20, 30, .2); }
.btn-admin:hover { background: linear-gradient(180deg, #f0d48c, #d4ad58); border-color: #7a5813; }
.admin-bar {
  margin: 0 0 1.4rem; padding: .6rem 1rem; font-size: .92rem; color: var(--ink);
  border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0;
  background: color-mix(in srgb, var(--gold) 14%, var(--surface));
}

/* --- Sujets de discussion ------------------------------------------------------- */
.topic {
  margin: 0 0 1.2rem; padding: 1rem 1.25rem; max-width: 68ch;
  border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0;
  background: color-mix(in srgb, var(--gold) 12%, var(--surface));
}
.topic p:last-child { margin-bottom: 0; }
.topic .eyebrow { margin-bottom: .3rem; }
.tag { font: 600 .72rem/1 var(--font); letter-spacing: .06em; text-transform: uppercase; padding: .25rem .55rem; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft); vertical-align: middle; }

/* --- Le coffret (jeux, guides, vidéos) ------------------------------------ */
.coffret-kind { margin-top: 2.2rem; }
.coffret-kind h2 { margin-top: 0; }
.coffret-item .chips { margin-bottom: .8rem; }
.tag-adults { border-color: color-mix(in srgb, var(--accent) 55%, var(--line)); color: var(--accent); }
.coffret-soon { padding: 1rem 1.2rem; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--ink-soft); font-style: italic; }
.coffret-levels { margin-block: 1.6rem 0; }
.coffret-rules { padding-left: 1.2rem; max-width: 70ch; }
.coffret-rules li { margin-bottom: .6rem; }
.adults-notice { margin-top: 2rem; }
.adults-notice p:last-child { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 0; }
