body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 5%, rgba(255, 157, 46, .08), transparent 28rem),
    radial-gradient(circle at 85% 15%, rgba(255, 77, 95, .06), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  padding-bottom: 88px;
}

body.no-player { padding-bottom: 0; }
.wrap { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
main { overflow: clip; }
section { padding: 88px 0; }

h1, h2, h3 { line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p + p { margin-top: 1rem; }
.lead { font-size: clamp(1.12rem, 2vw, 1.45rem); color: #e7e1d8; max-width: 760px; }
.muted { color: var(--muted); }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 800; margin-bottom: 16px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border: 1px solid var(--border); border-radius: 999px;
  background: rgba(255,255,255,.04); transition: .2s ease; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); }
.btn.primary { background: var(--accent); color: #111; border-color: transparent; font-weight: 800; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.page-hero { padding-top: calc(var(--header-height) + 80px); padding-bottom: 55px; border-bottom: 1px solid var(--border); }
.page-hero h1 { max-width: 980px; }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:32px; }

.card { background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow); }
.card img { width:100%; aspect-ratio:16/10; object-fit:cover; }
.card-body { padding:24px; }
.card-body p { margin-top:10px; }
.card-body a { display:inline-block; color:var(--accent); margin-top:18px; font-weight:700; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.split { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr); align-items:center; gap:48px; }
.split > img { border-radius:var(--radius-lg); box-shadow:var(--shadow); width:100%; max-height:650px; object-fit:cover; }
.quote { font-size:clamp(1.7rem,4vw,3.4rem); line-height:1.12; letter-spacing:-.035em; margin-bottom:1rem; }

.prose { max-width:920px; }
.timeline { display:grid; gap:18px; margin-top:34px; }
.timeline article { position:relative; padding:28px 28px 28px 34px; background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md); }
.timeline article::before { content:""; position:absolute; inset:24px auto 24px 0; width:4px; border-radius:4px; background:linear-gradient(var(--accent),var(--accent-2)); }
.timeline p { margin-top:12px; color:var(--muted); }

.trophy { display:grid; grid-template-columns:90px 1fr; gap:24px; padding:34px 0; border-top:1px solid var(--border); }
.trophy .num { font-size:2.6rem; font-weight:900; color:var(--accent); }
.trophy p { margin-top:8px; }

.gallery { display:grid; grid-template-columns:repeat(12,1fr); gap:16px; }
.gallery figure { grid-column:span 4; border-radius:var(--radius-md); overflow:hidden; background:var(--surface); cursor:zoom-in; }
.gallery figure:nth-child(1), .gallery figure:nth-child(5) { grid-column:span 8; }
.gallery img { width:100%; height:100%; min-height:280px; object-fit:cover; transition:transform .35s ease; }
.gallery figure:hover img { transform:scale(1.025); }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity:1; transform:none; }

@media (max-width: 860px) {
  section { padding:64px 0; }
  .grid-3, .split { grid-template-columns:1fr; }
  .section-head { align-items:start; flex-direction:column; }
  .gallery figure, .gallery figure:nth-child(1), .gallery figure:nth-child(5) { grid-column:span 6; }
}
@media (max-width: 560px) {
  .wrap { width:min(calc(100% - 28px),var(--container)); }
  .gallery figure, .gallery figure:nth-child(1), .gallery figure:nth-child(5) { grid-column:1/-1; }
  .trophy { grid-template-columns:55px 1fr; }
  .actions .btn { width:100%; }
}

/* Repères clavier, contenu lisible sans JavaScript et respect des préférences de mouvement. */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 500; padding: 12px 20px; background: var(--accent); color: #111; transform: translateY(-200%); }
.skip-link:focus { transform: none; }
.footer-links { display:flex; flex-wrap:wrap; gap:12px 24px; padding-bottom:32px; }
.footer-links button { background:transparent; color:inherit; padding:0; cursor:pointer; text-decoration:underline; }
.footer-links a, .legal-copy a, .contact-form a { text-decoration: underline; }
.legal-copy h2 { font-size:clamp(1.5rem,4vw,2.2rem); margin:32px 0 16px; }
.legal-copy p, h1, h2, h3 { overflow-wrap:anywhere; }
img { height:auto; }
.reveal { opacity:1; transform:none; }
.reveal.reveal-pending { opacity:0; transform:translateY(22px); }
.reveal.reveal-pending.is-visible { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation:none !important; transition:none !important; }
  .reveal.reveal-pending { opacity:1; transform:none; }
}
@media(max-width:560px) { .trophy { gap:12px; } .trophy > div { min-width:0; } }
/* Les boutons secondaires héritent de la couleur claire, comme les liens de même style. */
.btn { color:inherit; }
.btn.primary { color:#111; }
