/* Mise en page commune : marges de page, sections, titres, aplats bruns. */

.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }
.section { margin-top: var(--section-gap); }
.section--sm { margin-top: var(--section-gap-sm); }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }
.medium { max-width: 1000px; margin-left: auto; margin-right: auto; }
.wide { max-width: 1100px; margin-left: auto; margin-right: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--color-primary); color: var(--color-on-primary); padding: 10px 16px;
}
.skip-link:focus { left: 0; }

/* ── Titres ───────────────────────────────────────────────────────────── */

.display { font-family: var(--font-display); font-weight: 400; line-height: 0.9; text-wrap: balance; }
.display--page { font-size: clamp(52px, 9vw, 140px); }
.display--hero { font-size: clamp(42px, 7.6vw, 116px); line-height: 0.96; }
.display--section { font-size: clamp(30px, 4vw, 56px); line-height: 1.05; }
.display--block { font-size: clamp(28px, 3vw, 40px); line-height: 1.1; }
.display em { font-style: normal; color: var(--color-primary); }
.on-primary .display em { color: var(--color-highlight); }

.kicker {
  display: block;
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--color-primary); text-wrap: balance;
}
.on-primary .kicker, .kicker--light { color: var(--color-highlight); }
.kicker--sm { font-size: 11px; letter-spacing: var(--track-label-wide); }

.lead { font-size: 15px; font-weight: 300; line-height: 1.75; max-width: 520px; }
.lead--wide { max-width: 640px; }
.note { font-size: 12px; font-weight: 300; }
.quote {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.3; max-width: 26ch;
}

/* Libellé petit, espacé, en capitales : liens « Tous les artistes → », méta. */
.label {
  font-size: 12px; letter-spacing: var(--track-label-wide); text-transform: uppercase;
}
.label--xs { font-size: 11px; letter-spacing: 0.2em; }
.label--tight { letter-spacing: 0.14em; }
.label a, a.label { color: var(--color-primary); }
.on-primary .label a, .on-primary a.label { color: var(--color-highlight); }
.label--plain, .label--plain a { letter-spacing: 0.04em; text-transform: none; font-size: 13px; }

/* En-tête de section : titre à gauche, lien à droite. */
.section-head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 12px 24px; padding-bottom: 32px;
}
.section-head--ruled { border-bottom: 1px solid var(--line-on-primary); padding-bottom: 18px; }
.section-head--center { justify-content: center; text-align: center; }

/* ── Tête de page : titre à gauche, texte à droite, ou centrée ───────── */

.page-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 20px 40px; padding-top: clamp(48px, 9vh, 110px);
}
.page-head--tight { padding-top: clamp(40px, 6vh, 72px); }
.page-head__title { display: flex; flex-direction: column; gap: 18px; }
.page-head__intro { max-width: 400px; margin-bottom: 8px; }
.page-head--center { flex-direction: column; align-items: center; text-align: center; gap: 22px; padding-top: clamp(40px, 7vh, 80px); }

/* ── Aplats bruns ─────────────────────────────────────────────────────── */

.on-primary { background: var(--color-primary); color: var(--color-on-primary); }
.on-primary a { color: var(--color-on-primary); }
.on-primary a:hover { color: var(--color-highlight); }

/* Bloc brun posé dans la page, coin supérieur droit arrondi. */
.block-primary {
  margin: var(--section-gap-sm) var(--gutter) 0;
  padding: clamp(40px, 7vh, 80px) clamp(20px, 4vw, 56px);
  border-radius: 0 var(--radius-corner-sm) 0 0;
}

/* Page qui s'ouvre sur un bandeau brun : le corps ivoire le recouvre avec un
   grand coin arrondi en haut à gauche. */
.hero-primary { position: relative; overflow: hidden; }
.hero-primary__glow {
  position: absolute; left: -10%; top: -30%; width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(closest-side, var(--glow-strong), rgba(215, 122, 30, 0));
  pointer-events: none;
}
.hero-primary > :not(.hero-primary__glow) { position: relative; }
.body-under { background: var(--color-primary); }
.body-ivory {
  background: var(--color-bg); color: var(--color-text);
  border-radius: var(--radius-corner) 0 0 0; padding-bottom: 1px;
}

/* Halo ambré discret derrière un titre sur fond ivoire. */
.glow-ivory {
  position: absolute; left: -15%; bottom: -30%; width: 50vw; height: 50vw; border-radius: 50%;
  background: radial-gradient(closest-side, var(--glow), rgba(215, 122, 30, 0));
  pointer-events: none;
}

/* ── Divers ───────────────────────────────────────────────────────────── */

.muted { color: color-mix(in srgb, var(--color-text) 65%, transparent); }
.hr-primary { border: 0; border-top: 1px solid var(--line-strong); margin: 0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media print {
  .site-header, .site-footer, .menu, .carousel-nav, .pagination, .ext-toggle { display: none !important; }
  body, .on-primary { background: #fff; color: #000; }
}
