/* ==========================================================================
   BAPA — Besançon Association Patinage Artistique
   Design system — Direction « Patinoire »
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Couleurs charte */
  --marine: #1F2C52;
  --ciel: #3658A4;
  --bleu-clair: #D4E4F3;
  --coquelicot: #D6341A;
  --or: #D1A96C;

  /* Neutres */
  --ivoire: #F5F2EC;
  --ivoire-warm: #EFEBE1;
  --blanc: #FFFFFF;
  --encre: #4A5373;
  --encre-clair: #7B84A0;
  --noir: #0B0E1C;
  --glace: #E8ECEF;

  /* Typographies — Montserrat seul, Bold pour le display */
  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;
  --sp-11: 160px;

  /* Grille */
  --container: 1320px;
  --gutter: 28px;
  --nav-h: 80px;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--noir);
  background: var(--ivoire);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv02";
}

img, svg, video { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { border: 0; background: 0; font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--marine); color: var(--ivoire); }

/* --- Container ---------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --- Typography utilities ---------------------------------------------- */
.display-xl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(54px, 8.6vw, 124px);
  line-height: .98;
  letter-spacing: -0.035em;
}

.display-l {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.subheading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: 0;
}

.lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--encre);
}

.body-text { font-size: 17px; line-height: 1.7; color: var(--encre); }
.body-text strong { color: var(--noir); font-weight: 600; }

.caption {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: var(--encre-clair);
  letter-spacing: 0.01em;
}

/* Tag mono-like — Montserrat SemiBold uppercase + tracking */
.tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag--or { color: var(--or); }
.tag--coquelicot { color: var(--coquelicot); }
.tag--marine { color: var(--marine); }
.tag--ivoire { color: var(--ivoire); }

/* Section number — typographique, pas gadget */
.section-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--or);
}
.section-number::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

/* --- Sections ----------------------------------------------------------- */
.section { padding-block: clamp(64px, 10vw, 160px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 96px); }

.section--marine { background: var(--marine); color: var(--ivoire); }
.section--marine .lead,
.section--marine .body-text,
.section--marine .caption { color: rgba(245, 242, 236, 0.74); }
.section--marine .body-text strong,
.section--marine .section-number { color: var(--or); }
.section--marine .tag--marine { color: var(--ivoire); }

.section--clair { background: var(--bleu-clair); color: var(--marine); }
.section--clair .body-text, .section--clair .lead { color: var(--marine); }

.section--ivoire { background: var(--ivoire); color: var(--noir); }

/* --- Navigation --------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .45s var(--ease), color .45s var(--ease), box-shadow .45s var(--ease);
  color: var(--ivoire);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.2;
}
.nav__logo img { width: 44px; height: 44px; }
.nav__logo span { display: block; opacity: .6; font-weight: 400; }
.nav__logo--dark { display: none; }
.nav.is-scrolled .nav__logo--light,
.nav.is-inverted .nav__logo--light { display: none; }
.nav.is-scrolled .nav__logo--dark,
.nav.is-inverted .nav__logo--dark { display: block; }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  transition: opacity .3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .4s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.nav__cta:hover {
  background: var(--coquelicot);
  border-color: var(--coquelicot);
  color: var(--ivoire);
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}

/* Nav scrolled state (fond ivoire) */
.nav.is-scrolled,
.nav.is-inverted {
  background: var(--ivoire);
  color: var(--marine);
  box-shadow: 0 1px 0 var(--glace);
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--marine);
  color: var(--ivoire);
  padding: 120px var(--gutter) 48px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); }
.drawer__link {
  display: block;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  border-top: 1px solid rgba(245, 242, 236, .14);
}
.drawer__link:last-of-type { border-bottom: 1px solid rgba(245, 242, 236, .14); }
.drawer__foot {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: rgba(245, 242, 236, .72);
}
.drawer__foot a { color: var(--or); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--coquelicot);
  color: var(--ivoire);
}
.btn--primary:hover { background: #BF2D14; }

.btn--outline {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}
.btn--outline:hover {
  background: var(--marine);
  color: var(--ivoire);
  border-color: var(--marine);
}
.section--marine .btn--outline:hover {
  background: var(--ivoire);
  color: var(--marine);
  border-color: var(--ivoire);
}

.btn--ghost {
  padding: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  position: relative;
}
.btn--ghost::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.btn--ghost:hover::after { transform: scaleX(0); transform-origin: right; }

/* --- Hero (Accueil) ----------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--marine);
  color: var(--ivoire);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: 64px;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.72) contrast(1.05);
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11, 14, 28, .55) 0%, rgba(11, 14, 28, .1) 35%, rgba(11, 14, 28, .75) 100%),
    linear-gradient(to right, rgba(31, 44, 82, .55) 0%, rgba(31, 44, 82, 0) 55%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
}

.hero__content { max-width: 780px; }
.hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero__meta .section-number { color: var(--or); }
.hero__meta .tag { color: rgba(245, 242, 236, .72); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 6.2vw, 92px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
}
.hero__title em {
  font-style: normal;
  color: var(--or);
}

.hero__sub {
  max-width: 560px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: rgba(245, 242, 236, .82);
  margin-bottom: 40px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__credit {
  align-self: end;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, .5);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* Filet sillon (arc discret) */
.sillon {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: .2;
  margin: 48px 0;
}
.sillon--arc {
  height: 80px;
  border: 1px solid currentColor;
  border-radius: 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  opacity: .22;
  background: none;
  transform: scaleY(.3);
  transform-origin: top;
}

/* --- Section intro éditoriale ----------------------------------------- */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.intro__text { max-width: 620px; }
.intro__text .section-number { margin-bottom: 28px; }
.intro__text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.028em;
  margin-bottom: 28px;
}
.intro__text h2 em {
  font-style: normal;
  color: var(--coquelicot);
}

.intro__text p + p { margin-top: 20px; }

.intro__aside {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

/* Stats éditoriales (pas de boîtes) */
.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--glace);
}
.stat:last-child { border-bottom: 1px solid var(--glace); }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--marine);
}
.stat__num--text {
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.01em;
  color: var(--marine);
  font-weight: 700;
}
.stat__plus {
  font-family: var(--font-display);
  font-size: 0.5em;
  color: var(--or);
  vertical-align: top;
  margin-left: 4px;
}
.stat__label {
  font-size: 13px;
  line-height: 1.45;
  color: var(--encre);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Mosaïque photo ---------------------------------------------------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: clamp(40px, 5vw, 72px);
}
.mosaic__item {
  position: relative;
  overflow: hidden;
  background: var(--noir);
}
.mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.mosaic__item:hover img { transform: scale(1.03); }

.mosaic__item--a { grid-column: 1 / span 5; aspect-ratio: 4/5; }
.mosaic__item--b { grid-column: 6 / span 4; aspect-ratio: 4/5; margin-top: 48px; }
.mosaic__item--c { grid-column: 10 / span 3; aspect-ratio: 3/4; }
.mosaic__item--d { grid-column: 1 / span 4; aspect-ratio: 3/2; margin-top: 16px; }
.mosaic__item--e { grid-column: 5 / span 7; aspect-ratio: 16/10; margin-top: 16px; }

.mosaic__caption {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, .52);
  margin-top: 20px;
  text-align: right;
}

/* --- Disciplines grid -------------------------------------------------- */
.disciplines {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 5vw, 80px);
}

.discipline {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  position: relative;
}
.discipline:nth-child(1) { grid-column: span 5; }
.discipline:nth-child(2) { grid-column: span 4; margin-top: 64px; }
.discipline:nth-child(3) { grid-column: span 3; }
.discipline:nth-child(4) { grid-column: span 4; margin-top: 48px; }
.discipline:nth-child(5) { grid-column: span 4; }
.discipline:nth-child(6) { grid-column: span 4; margin-top: 64px; }

.discipline__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--glace);
}
.discipline__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.discipline:hover .discipline__img img { transform: scale(1.04); }

.discipline__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.discipline__age {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-clair);
}
.discipline__level {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--coquelicot);
}
.discipline__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin-bottom: 10px;
}
.discipline__desc {
  font-size: 15px;
  color: var(--encre);
  line-height: 1.55;
}

/* --- Coach teaser ----------------------------------------------------- */
.coach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.coach__img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.coach__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.coach__text { max-width: 520px; }
.coach__text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.coach__quote {
  padding: 28px 0 24px;
  border-top: 1px solid var(--glace);
  border-bottom: 1px solid var(--glace);
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--marine);
  font-style: italic;
}
.coach__quote::before {
  content: "« ";
  color: var(--or);
}
.coach__quote::after {
  content: " »";
  color: var(--or);
}
.coach__signature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--encre);
}
.coach__signature strong { color: var(--marine); font-weight: 600; }
.coach__signature::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--or);
}

/* --- Gala teaser ------------------------------------------------------ */
.gala {
  position: relative;
  min-height: 92vh;
  color: var(--ivoire);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 96px var(--gutter) 80px;
}
.gala__bg {
  position: absolute; inset: 0; z-index: 0;
}
.gala__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.68) saturate(1.05);
}
.gala__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,14,28,.85), rgba(11,14,28,.1) 55%);
}
.gala__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.gala__text { max-width: 620px; }
.gala__text .section-number { color: var(--or); margin-bottom: 24px; }
.gala__text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6.2vw, 98px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.gala__text h2 em {
  font-style: normal;
  color: var(--or);
}
.gala__text p {
  max-width: 480px;
  color: rgba(245, 242, 236, .82);
  margin-bottom: 32px;
}
.gala__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.gala__date {
  text-align: right;
  border-left: 1px solid rgba(245, 242, 236, .3);
  padding-left: 36px;
  min-width: 200px;
}
.gala__date span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
}
.gala__date .gala__day { font-size: clamp(60px, 8vw, 96px); line-height: .9; }
.gala__date .gala__month { font-size: 18px; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; color: var(--or); }
.gala__date .gala__year { font-size: 14px; color: rgba(245, 242, 236, .6); margin-top: 4px; letter-spacing: 0.12em; }

/* --- CTA inscriptions ------------------------------------------------ */
.inscribe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.inscribe__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.inscribe__title em { font-style: normal; color: var(--coquelicot); }
.inscribe__text {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--marine);
}
.inscribe__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* --- Article (news) list ----------------------------------------------- */
.news {
  display: flex;
  flex-direction: column;
  margin-top: clamp(40px, 4vw, 64px);
}
.news__item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--glace);
  transition: padding-left .5s var(--ease);
}
.news__item:last-child { border-bottom: 1px solid var(--glace); }
.news__item:hover { padding-left: 12px; }
.news__date {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-clair);
}
.news__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: var(--noir);
}
.news__kicker {
  font-size: 13px;
  color: var(--coquelicot);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- Contact teaser --------------------------------------------------- */
.contact-teaser {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-teaser h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
}
.contact-teaser h2 em {
  font-style: normal;
  color: var(--or);
}

.contact-list { display: grid; gap: 24px; }
.contact-list__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,242,236,.15);
  align-items: baseline;
}
.contact-list__item .tag { color: var(--or); }
.contact-list__item a:hover { color: var(--or); }
.contact-list__item p { color: rgba(245,242,236,.82); }

.socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}
.socials a {
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245,242,236,.22);
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.socials a:hover {
  background: var(--or);
  border-color: var(--or);
  color: var(--marine);
}
.socials svg { width: 16px; height: 16px; }

/* --- Footer ----------------------------------------------------------- */
.footer {
  background: var(--noir);
  color: rgba(245, 242, 236, .74);
  padding-block: 80px 32px;
  font-size: 14px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2.5fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 242, 236, .1);
}
.footer__brand img { width: 80px; margin-bottom: 24px; }
.footer__brand p { color: rgba(245, 242, 236, .6); max-width: 280px; line-height: 1.55; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: rgba(245, 242, 236, .74);
  font-size: 14px;
  transition: color .3s var(--ease);
}
.footer__col a:hover { color: var(--ivoire); }

.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 242, 236, .48);
  text-transform: uppercase;
}
.footer__bottom a:hover { color: var(--ivoire); }

/* ==========================================================================
   PAGE : LE CLUB
   ========================================================================== */

/* Page header (réutilisable) */
.page-header {
  background: var(--marine);
  color: var(--ivoire);
  padding: calc(var(--nav-h) + 100px) 0 120px;
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(.95) contrast(1.05);
}
.page-header__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 44, 82, .94) 0%, rgba(31, 44, 82, .76) 42%, rgba(31, 44, 82, .4) 80%, rgba(31, 44, 82, .3) 100%),
    linear-gradient(180deg, rgba(11, 14, 28, .45) 0%, rgba(11, 14, 28, .05) 22%, rgba(11, 14, 28, 0) 45%, rgba(11, 14, 28, .55) 100%);
}
.page-header .wrap { width: 100%; }
.page-header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
}
.page-header__credit {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, .55);
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
}
.page-header__breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,236,.6);
  margin-bottom: 32px;
}
.page-header__breadcrumb a:hover { color: var(--or); }
.page-header__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.2vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 900px;
}
.page-header__title em { font-style: normal; color: var(--or); }
.page-header__lead {
  max-width: 520px;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(245,242,236,.78);
}

/* Histoire — récit narratif */
.story {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.story__visual {
  position: relative;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 16px;
}
.story__visual > * {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story__visual > *:nth-child(2) {
  margin-top: 80px;
}

.story__body { max-width: 620px; }
.story__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.story__body h2 em { font-style: normal; color: var(--coquelicot); }
.story__body p + p { margin-top: 18px; }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-top: clamp(48px, 5vw, 80px);
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0; right: 0;
  height: 1px;
  background: rgba(245,242,236,.2);
}
.timeline__step {
  grid-column: span 3;
  position: relative;
}
.timeline__step::before {
  content: "";
  position: absolute;
  top: 30px; left: 0;
  width: 12px; height: 12px;
  background: var(--or);
  border-radius: 50%;
}
.timeline__year {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--or);
  letter-spacing: 0.1em;
  padding-top: 56px;
  margin-bottom: 16px;
}
.timeline__text {
  font-size: 15px;
  color: rgba(245,242,236,.78);
  line-height: 1.55;
}
.timeline__text strong { color: var(--ivoire); font-weight: 600; }

/* Équipe — portraits */
.team {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 56px 32px;
  margin-top: clamp(48px, 5vw, 80px);
}
.team__member { grid-column: span 6; display: grid; grid-template-columns: 3fr 4fr; gap: 28px; align-items: start; }
.team__member--lead {
  grid-column: span 12;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glace);
  margin-bottom: 16px;
}
.team__member--lead .team__photo { aspect-ratio: 4/5; }
.team__member--lead .team__info h3 { font-size: clamp(32px, 3.4vw, 48px); }
.team__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team__photo img { width: 100%; height: 100%; object-fit: cover; }
.team__info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.team__role {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coquelicot);
  font-weight: 600;
  margin-bottom: 16px;
}
.team__bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--encre);
}

/* Valeurs — liste éditoriale, pas de cartes */
.values {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(40px, 6vw, 96px);
  margin-top: clamp(40px, 5vw, 72px);
}
.values__intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.values__intro h2 em { font-style: normal; color: var(--or); }
.values__list { display: flex; flex-direction: column; }
.values__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid rgba(245,242,236,.18);
}
.values__item:last-child { border-bottom: 1px solid rgba(245,242,236,.18); }
.values__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--or);
  letter-spacing: 0.1em;
}
.values__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.025em;
}
.values__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245,242,236,.72);
  max-width: 540px;
}

/* ==========================================================================
   COMPOSANT : LEVEL (page disciplines)
   ========================================================================== */
.levels { display: flex; flex-direction: column; gap: clamp(80px, 10vw, 160px); margin-top: clamp(48px, 5vw, 80px); }
.level {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.level--reverse .level__visual { order: 2; }
.level--reverse { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }

.level__visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.level__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.level:hover .level__visual img { transform: scale(1.03); }

.level__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 10vw, 160px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--or);
  opacity: .22;
  position: absolute;
  top: -24px;
  right: -8px;
  z-index: 0;
  pointer-events: none;
}
.level__content { position: relative; max-width: 560px; }

.level__kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coquelicot);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.level__kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.level__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.level__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--glace);
  border-bottom: 1px solid var(--glace);
  margin-bottom: 24px;
}
.level__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre);
}
.level__meta span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--or);
}

.section--marine .level__meta { border-color: rgba(245,242,236,.18); }
.section--marine .level__meta span { color: rgba(245,242,236,.72); }
.section--marine .level__title { color: var(--ivoire); }
.section--marine .level__num { color: var(--or); opacity: .3; }

.level__desc { font-size: 16px; line-height: 1.65; color: var(--encre); margin-bottom: 26px; }
.section--marine .level__desc { color: rgba(245,242,236,.78); }

.level__points { display: grid; gap: 2px; }
.level__points li {
  padding: 14px 0;
  border-top: 1px solid var(--glace);
  font-size: 15px;
  line-height: 1.5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: baseline;
}
.level__points li:last-child { border-bottom: 1px solid var(--glace); }
.level__points li::before {
  content: "→";
  color: var(--coquelicot);
  font-weight: 700;
  font-size: 13px;
}
.section--marine .level__points li { border-color: rgba(245,242,236,.15); color: rgba(245,242,236,.9); }
.section--marine .level__points li::before { color: var(--or); }

/* Stages block — cartes empilées éditoriales */
.stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(40px, 5vw, 72px);
}
.stage-card {
  background: var(--ivoire-warm);
  padding: 32px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.stage-card:hover { transform: translateY(-4px); background: var(--bleu-clair); }
.stage-card__period {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coquelicot);
}
.stage-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--marine);
}
.stage-card__dates {
  font-size: 14px;
  color: var(--encre);
  padding-top: 16px;
  border-top: 1px solid rgba(31, 44, 82, .14);
  margin-top: auto;
}

/* ==========================================================================
   COMPOSANT : MEET (calendrier compétitions)
   ========================================================================== */
.meets { display: flex; flex-direction: column; margin-top: clamp(40px, 5vw, 72px); }
.meet {
  display: grid;
  grid-template-columns: 140px 80px minmax(0, 1fr) auto;
  gap: 36px;
  align-items: baseline;
  padding: 32px 0;
  border-top: 1px solid var(--glace);
  transition: padding-left .5s var(--ease), background .5s var(--ease);
}
.meet:last-child { border-bottom: 1px solid var(--glace); }
.meet:hover { padding-left: 16px; }
.section--marine .meet { border-color: rgba(245,242,236,.18); }
.meet__date {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--marine);
}
.section--marine .meet__date { color: var(--or); }
.meet__date small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-clair);
  margin-top: 6px;
}
.section--marine .meet__date small { color: rgba(245,242,236,.55); }
.meet__kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coquelicot);
}
.meet__info h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section--marine .meet__info h3 { color: var(--ivoire); }
.meet__info p {
  font-size: 14px;
  color: var(--encre);
  line-height: 1.5;
}
.section--marine .meet__info p { color: rgba(245,242,236,.72); }
.meet__cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marine);
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.section--marine .meet__cta { color: var(--or); }
.meet__cta::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.meet:hover .meet__cta::after { transform: scaleX(0); transform-origin: right; }

/* ==========================================================================
   COMPOSANT : PALMARES
   ========================================================================== */
.palmares {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 0;
  margin-top: clamp(40px, 5vw, 72px);
}
.palmares__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--or);
  padding: 32px 0;
  border-top: 1px solid rgba(245,242,236,.18);
  position: relative;
}
.palmares__year:last-of-type { border-bottom: 1px solid rgba(245,242,236,.18); }
.palmares__list {
  padding: 32px 0;
  border-top: 1px solid rgba(245,242,236,.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.palmares__list:last-of-type { border-bottom: 1px solid rgba(245,242,236,.18); }
.palmares__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
}
.palmares__medal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coquelicot);
}
.palmares__medal--or { color: var(--or); }
.palmares__item p { font-size: 15px; line-height: 1.55; color: rgba(245,242,236,.88); }
.palmares__item strong { color: var(--ivoire); font-weight: 700; }

/* ==========================================================================
   COMPOSANT : PROCESS (étapes numérotées)
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-top: clamp(48px, 5vw, 80px);
}
.process__step {
  grid-column: span 3;
  position: relative;
  padding-top: 56px;
}
.process__step::before {
  content: "";
  position: absolute;
  top: 18px; left: 0; right: 20px;
  height: 1px;
  background: var(--glace);
}
.section--marine .process__step::before { background: rgba(245,242,236,.2); }
.process__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coquelicot);
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ivoire);
  padding-right: 12px;
}
.section--marine .process__num { background: var(--marine); color: var(--or); }
.section--clair .process__num { background: var(--bleu-clair); }
.process__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.process__desc { font-size: 14px; line-height: 1.55; color: var(--encre); }
.section--marine .process__desc { color: rgba(245,242,236,.75); }

/* ==========================================================================
   COMPOSANT : REPORTAGE (page gala)
   ========================================================================== */
.report-hero {
  min-height: 100vh;
  background: var(--marine);
  color: var(--ivoire);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 80px) 0 72px;
}
.report-hero__bg { position: absolute; inset: 0; z-index: 0; }
.report-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.report-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,14,28,.55) 0%, rgba(11,14,28,.1) 35%, rgba(11,14,28,.9) 100%),
    linear-gradient(to right, rgba(31,44,82,.35) 0%, rgba(31,44,82,0) 60%);
}
.report-hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end;
}
.report-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}
.report-hero__title em { font-style: normal; color: var(--or); }

/* Chapitre éditorial */
.chapter {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  padding-block: clamp(64px, 7vw, 120px);
}
.chapter__marker {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.chapter__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--coquelicot);
}
.section--marine .chapter__num { color: var(--or); }
.chapter__kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--encre-clair);
  margin-top: 14px;
  display: block;
}
.section--marine .chapter__kicker { color: rgba(245,242,236,.5); }

.chapter__body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
  max-width: 600px;
}
.chapter__body h2 em { font-style: normal; color: var(--coquelicot); }
.section--marine .chapter__body h2 em { color: var(--or); }
.chapter__body p { font-size: 16px; line-height: 1.7; max-width: 560px; }
.chapter__body p + p { margin-top: 18px; }
.chapter__body p { color: var(--encre); }
.section--marine .chapter__body p { color: rgba(245,242,236,.82); }

/* Full-bleed photo avec légende */
.bleed { position: relative; margin-block: clamp(48px, 6vw, 96px); }
.bleed__img { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.bleed__img img { width: 100%; height: 100%; object-fit: cover; }
.bleed__caption {
  max-width: var(--container);
  margin: 20px auto 0;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre-clair);
  font-weight: 600;
}
.section--marine .bleed__caption { color: rgba(245,242,236,.52); }
.bleed__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--encre);
  font-style: italic;
  max-width: 440px;
}
.section--marine .bleed__title { color: rgba(245,242,236,.8); }

/* Grille reportage éditoriale */
.report-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-block: clamp(48px, 5vw, 80px);
}
.report-grid__item { overflow: hidden; background: var(--noir); aspect-ratio: 4/5; }
.report-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.report-grid__item:hover img { transform: scale(1.04); }
.report-grid__item--wide { grid-column: span 8; aspect-ratio: 16/10; }
.report-grid__item--tall { grid-column: span 4; aspect-ratio: 3/5; }
.report-grid__item--sq { grid-column: span 4; aspect-ratio: 1/1; }
.report-grid__item--half { grid-column: span 6; aspect-ratio: 3/2; }

/* Quote large éditoriale */
.pullquote {
  padding: clamp(48px, 6vw, 96px) 0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--marine);
  position: relative;
}
.section--marine .pullquote blockquote { color: var(--ivoire); }
.pullquote blockquote::before {
  content: "«";
  display: block;
  font-size: clamp(60px, 6vw, 96px);
  color: var(--coquelicot);
  line-height: .5;
  margin-bottom: 24px;
}
.pullquote cite {
  display: block;
  margin-top: 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--encre-clair);
}
.section--marine .pullquote cite { color: rgba(245,242,236,.6); }

/* Archive gala — années */
.archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(40px, 5vw, 72px);
}
.archive-card { overflow: hidden; display: flex; flex-direction: column; }
.archive-card__img { aspect-ratio: 4/3; overflow: hidden; }
.archive-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.archive-card:hover .archive-card__img img { transform: scale(1.05); }
.archive-card__info { padding: 20px 0; display: flex; flex-direction: column; gap: 8px; }
.archive-card__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coquelicot);
}
.archive-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--marine);
}

/* ==========================================================================
   COMPOSANT : PRICING
   ========================================================================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: clamp(40px, 5vw, 72px);
}
.pricing__card {
  background: var(--ivoire);
  border: 1px solid var(--glace);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}
.pricing__card:hover { border-color: var(--coquelicot); transform: translateY(-4px); }
.pricing__card--featured { border-color: var(--marine); background: var(--marine); color: var(--ivoire); }
.pricing__card--featured .pricing__label,
.pricing__card--featured .pricing__price,
.pricing__card--featured .pricing__hour { color: var(--ivoire); }
.pricing__card--featured .pricing__hour { color: var(--or); }
.pricing__card--featured .pricing__items li { color: rgba(245,242,236,.82); border-color: rgba(245,242,236,.15); }
.pricing__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coquelicot);
}
.pricing__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--marine);
}
.pricing__card--featured .pricing__name { color: var(--ivoire); }
.pricing__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--marine);
  margin-top: 10px;
}
.pricing__price sup { font-size: .5em; margin-left: 4px; opacity: .7; font-weight: 500; }
.pricing__hour { font-size: 13px; color: var(--encre-clair); font-weight: 500; }
.pricing__items { display: flex; flex-direction: column; gap: 0; margin-top: 12px; }
.pricing__items li { padding: 12px 0; border-top: 1px solid var(--glace); font-size: 13px; line-height: 1.5; color: var(--encre); }
.pricing__items li:last-child { border-bottom: 1px solid var(--glace); }

/* ==========================================================================
   COMPOSANT : SCHEDULE (créneaux)
   ========================================================================== */
.schedule {
  margin-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--glace);
}
.schedule__row {
  display: grid;
  grid-template-columns: 140px 180px minmax(0, 1fr);
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--glace);
  align-items: baseline;
}
.schedule__day {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -0.02em;
  color: var(--marine);
}
.schedule__time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--coquelicot);
}
.schedule__group {
  font-size: 15px;
  line-height: 1.5;
  color: var(--encre);
}
.schedule__group strong { color: var(--noir); font-weight: 700; }

/* ==========================================================================
   COMPOSANT : DOCS
   ========================================================================== */
.docs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: clamp(40px, 5vw, 72px);
}
.doc {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--glace);
  transition: border-color .35s var(--ease), padding .45s var(--ease);
}
.doc:hover { border-color: var(--coquelicot); padding-left: 32px; }
.doc__icon {
  width: 44px; height: 54px;
  border: 1px solid var(--marine);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--marine);
  text-transform: uppercase;
}
.doc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--noir);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.doc__meta { font-size: 12px; color: var(--encre-clair); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.doc__arrow svg { width: 18px; height: 18px; color: var(--coquelicot); transition: transform .35s var(--ease); }
.doc:hover .doc__arrow svg { transform: translateX(4px); }

/* ==========================================================================
   COMPOSANT : FAQ
   ========================================================================== */
.faq { margin-top: clamp(40px, 5vw, 72px); }
.faq__item {
  border-top: 1px solid var(--glace);
  padding: 4px 0;
}
.faq__item:last-of-type { border-bottom: 1px solid var(--glace); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--marine);
  transition: color .3s var(--ease);
}
.faq__item summary:hover { color: var(--coquelicot); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  width: 32px;
  text-align: center;
  color: var(--coquelicot);
  transition: transform .35s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--encre);
  max-width: 800px;
}

/* ==========================================================================
   COMPOSANT : ARTICLES (page actualités)
   ========================================================================== */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0 0;
}
.filters button {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre);
  border: 1px solid var(--glace);
  background: transparent;
  transition: all .3s var(--ease);
}
.filters button:hover { border-color: var(--marine); color: var(--marine); }
.filters button.is-active { background: var(--marine); color: var(--ivoire); border-color: var(--marine); }

.featured-article {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(48px, 5vw, 80px) clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--glace);
}
.featured-article__img { aspect-ratio: 4/3; overflow: hidden; }
.featured-article__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.featured-article:hover .featured-article__img img { transform: scale(1.04); }
.featured-article__content { max-width: 540px; }
.featured-article__meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-clair);
}
.featured-article__kicker { color: var(--coquelicot); }
.featured-article__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--noir);
}
.featured-article__excerpt { font-size: 16px; line-height: 1.65; color: var(--encre); margin-bottom: 24px; }

.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: clamp(40px, 5vw, 64px);
}
.article-card { display: flex; flex-direction: column; gap: 18px; }
.article-card__img { aspect-ratio: 3/2; overflow: hidden; }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.article-card:hover .article-card__img img { transform: scale(1.05); }
.article-card__meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--encre-clair);
}
.article-card__kicker { color: var(--coquelicot); }
.article-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--noir);
}
.article-card__excerpt { font-size: 14px; line-height: 1.55; color: var(--encre); }

/* Revue de presse */
.press {
  display: flex;
  flex-direction: column;
  margin-top: clamp(40px, 5vw, 72px);
}
.press__item {
  display: grid;
  grid-template-columns: 140px 160px minmax(0, 1fr) auto;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 1px solid rgba(245,242,236,.18);
}
.press__item:last-child { border-bottom: 1px solid rgba(245,242,236,.18); }
.press__date {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,242,236,.6);
}
.press__source {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--or);
}
.press__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ivoire);
}
.press__cta { color: var(--or); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }

/* ==========================================================================
   COMPOSANT : FORM + MAP (page contact)
   ========================================================================== */
.form-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  margin-top: clamp(48px, 5vw, 80px);
  align-items: start;
}
.form-intro { max-width: 480px; }
.form-intro h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.form-intro h2 em { font-style: normal; color: var(--coquelicot); }

.contact-block {
  display: grid;
  gap: 28px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--glace);
}
.contact-block__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: baseline;
}
.contact-block__item p a:hover { color: var(--coquelicot); }

/* Form */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { position: relative; }
.form__group input, .form__group select, .form__group textarea {
  width: 100%;
  padding: 22px 16px 10px;
  background: transparent;
  border: 1px solid var(--glace);
  font-size: 15px;
  color: var(--noir);
  transition: border-color .35s var(--ease);
  appearance: none;
  border-radius: 0;
  font-family: var(--font-body);
}
.form__group textarea { min-height: 140px; padding-top: 26px; resize: vertical; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  outline: none;
  border-color: var(--marine);
}
.form__group label {
  position: absolute;
  left: 16px;
  top: 18px;
  font-size: 14px;
  color: var(--encre-clair);
  pointer-events: none;
  transition: transform .35s var(--ease), color .35s var(--ease), font-size .35s var(--ease);
  transform-origin: left top;
}
.form__group input:focus ~ label,
.form__group input:not(:placeholder-shown) ~ label,
.form__group select:focus ~ label,
.form__group select:valid ~ label,
.form__group textarea:focus ~ label,
.form__group textarea:not(:placeholder-shown) ~ label {
  transform: translateY(-10px) scale(.75);
  color: var(--coquelicot);
}
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--encre);
  padding-top: 8px;
}
.form__consent input { margin-top: 4px; accent-color: var(--coquelicot); }

.btn--submit {
  padding: 22px 32px;
  font-size: 13px;
  justify-self: start;
}

.map-block {
  margin-top: clamp(48px, 5vw, 80px);
  aspect-ratio: 16/7;
  background: var(--bleu-clair);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glace);
}
.map-block iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(.96); }

.hours {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--glace);
}
.hours__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--glace);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  padding-right: 48px;
}
.hours__item:nth-child(even) { padding-left: 48px; padding-right: 0; border-left: 1px solid var(--glace); }
.hours__day { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--marine); letter-spacing: -0.01em; }
.hours__time { font-size: 14px; color: var(--encre); }

/* Initiateurs bénévoles */
.initiators {
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid var(--glace);
  border-bottom: 1px solid var(--glace);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.initiators__head { display: flex; flex-direction: column; gap: 14px; }
.initiators__list { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.initiators__list h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
}
.initiators__list p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--encre);
  letter-spacing: 0.01em;
}

/* ==========================================================================
   COMPOSANT : EMERGENCY (page engagements)
   ========================================================================== */
.emergency {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(40px, 5vw, 72px);
}
.emergency__card {
  padding: 28px 24px 28px;
  background: rgba(245, 242, 236, .04);
  border: 1px solid rgba(245, 242, 236, .14);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.emergency__card:hover {
  border-color: var(--or);
  background: rgba(209, 169, 108, .07);
}
.emergency__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--or);
}
.emergency__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, .62);
}
.emergency__desc { font-size: 13px; line-height: 1.5; color: rgba(245, 242, 236, .82); }

.section--ivoire .emergency__card { background: var(--ivoire-warm); border-color: var(--glace); }
.section--ivoire .emergency__card:hover { border-color: var(--coquelicot); background: #F4E6E2; }
.section--ivoire .emergency__num { color: var(--coquelicot); }
.section--ivoire .emergency__label { color: var(--encre-clair); }
.section--ivoire .emergency__desc { color: var(--encre); }

/* Liens ressources */
.resources {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: clamp(40px, 5vw, 72px);
  background: var(--glace);
  padding: 1px;
}
.resources a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--ivoire);
  transition: background .35s var(--ease), color .35s var(--ease);
  font-size: 14px;
  line-height: 1.4;
}
.resources a:hover { background: var(--marine); color: var(--ivoire); }
.resources a strong { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; display: block; margin-bottom: 4px; }
.resources a span { color: var(--encre-clair); font-size: 12px; }
.resources a:hover span { color: rgba(245, 242, 236, .7); }
.resources a svg { width: 14px; height: 14px; flex-shrink: 0; opacity: .5; transition: opacity .3s, transform .3s var(--ease); }
.resources a:hover svg { opacity: 1; transform: translateX(4px); }

/* Sponsors block */
.sponsors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--glace);
  border-bottom: 1px solid var(--glace);
}
.sponsors__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--encre-clair);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px dashed var(--glace);
  aspect-ratio: 3/1.3;
  text-align: center;
}

/* --- Animations ------------------------------------------------------ */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
[data-animate][data-delay="1"] { transition-delay: .08s; }
[data-animate][data-delay="2"] { transition-delay: .16s; }
[data-animate][data-delay="3"] { transition-delay: .24s; }
[data-animate][data-delay="4"] { transition-delay: .32s; }
[data-animate][data-delay="5"] { transition-delay: .4s; }

/* Split word reveal — titres qui s'assemblent */
.split-word {
  display: inline-flex;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: .14em;
  margin-bottom: -.14em;
}
.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease);
  will-change: transform;
}
.split-word > span[data-delay="1"] { transition-delay: .06s; }
.split-word > span[data-delay="2"] { transition-delay: .12s; }
.split-word > span[data-delay="3"] { transition-delay: .18s; }
.split-word > span[data-delay="4"] { transition-delay: .24s; }
.split-word > span[data-delay="5"] { transition-delay: .3s; }
.split-word > span[data-delay="6"] { transition-delay: .36s; }
.is-visible .split-word > span,
.split-title.is-visible .split-word > span { transform: translateY(0); }

/* Curtain reveal — un voile coquelicot qui se retire */
.curtain {
  position: relative;
  overflow: hidden;
}
.curtain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--coquelicot);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.1s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.curtain.is-visible::after { transform: scaleX(0); }
.curtain img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .6s var(--ease) .5s, transform 1.8s var(--ease) .2s;
}
.curtain.is-visible img { opacity: 1; transform: scale(1); }

/* Sillon — trace de lame qui se dessine */
.sillon-svg {
  display: block;
  width: 100%;
  height: 120px;
  margin: 0;
  overflow: visible;
}
.sillon-svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: var(--sillon-len, 9999);
  stroke-dashoffset: var(--sillon-len, 9999);
  transition: stroke-dashoffset 2.4s cubic-bezier(.6,.04,.2,1);
  opacity: .6;
}
.sillon-svg.is-visible path { stroke-dashoffset: 0; }
.sillon-block {
  padding-block: clamp(32px, 5vw, 72px);
}
.sillon-block--marine { background: var(--marine); color: var(--or); }
.sillon-block--ivoire { background: var(--ivoire); color: var(--marine); }
.sillon-block--clair  { background: var(--bleu-clair); color: var(--marine); }

/* Hero parallax léger — image qui dérive doucement */
.hero__image { will-change: transform; }

/* Stat count-up — empêche le jump quand on met la valeur finale */
.stat__num[data-count] { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1; transform: none; transition: none; }
  .split-word > span { transform: none; transition: none; }
  .curtain::after { display: none; }
  .curtain img { opacity: 1; transform: none; transition: none; }
  .sillon-svg path { stroke-dashoffset: 0; transition: none; }
  html { scroll-behavior: auto; }
}

/* Fallback sans JavaScript — tout reste visible */
html.no-js [data-animate],
html.no-js .split-word > span {
  opacity: 1;
  transform: none;
}
html.no-js .curtain::after { display: none; }
html.no-js .curtain img { opacity: 1; transform: none; }
html.no-js .sillon-svg path { stroke-dashoffset: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 960px) {
  :root { --gutter: 22px; --nav-h: 70px; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero {
    min-height: 92vh;
    padding-bottom: 56px;
  }
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero__credit { display: none; }
  .hero__image img { object-position: center; }

  .intro { grid-template-columns: 1fr; gap: 48px; }

  .mosaic { grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .mosaic__item--a { grid-column: 1 / span 4; aspect-ratio: 4/5; }
  .mosaic__item--b { grid-column: 5 / span 2; aspect-ratio: 3/5; margin-top: 0; }
  .mosaic__item--c { grid-column: 1 / span 2; aspect-ratio: 3/4; }
  .mosaic__item--d { grid-column: 3 / span 4; aspect-ratio: 3/2; margin-top: 0; }
  .mosaic__item--e { grid-column: 1 / span 6; aspect-ratio: 16/10; margin-top: 0; }

  .disciplines { grid-template-columns: 1fr; gap: 48px; }
  .discipline, .discipline:nth-child(n) { grid-column: span 1; margin-top: 0 !important; }
  .discipline__img { aspect-ratio: 4/5; }

  .coach { grid-template-columns: 1fr; }
  .coach__img { aspect-ratio: 3/4; max-height: 540px; }

  .gala { min-height: 80vh; }
  .gala__inner { grid-template-columns: 1fr; }
  .gala__date { border-left: 0; border-top: 1px solid rgba(245,242,236,.3); padding-left: 0; padding-top: 20px; text-align: left; }

  .inscribe { grid-template-columns: 1fr; gap: 24px; }

  .news__item { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .news__item .btn--ghost { justify-self: start; }

  .contact-teaser { grid-template-columns: 1fr; }
  .contact-list__item { grid-template-columns: 80px 1fr; }

  .footer__top { grid-template-columns: 1fr; gap: 48px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }

  .page-header { padding: calc(var(--nav-h) + 64px) 0 80px; min-height: 68vh; }
  .page-header__inner { grid-template-columns: 1fr; }
  .page-header__bg img { object-position: center 35%; }
  .page-header__bg::after {
    background:
      linear-gradient(180deg, rgba(31, 44, 82, .75) 0%, rgba(31, 44, 82, .55) 40%, rgba(11, 14, 28, .85) 100%);
  }
  .page-header__credit { display: none; }

  .story { grid-template-columns: 1fr; gap: 48px; }
  .story__visual > *:nth-child(2) { margin-top: 0; }

  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { top: 0; bottom: 0; left: 0; right: auto; width: 1px; height: auto; }
  .timeline__step { grid-column: span 1; padding-left: 36px; padding-bottom: 28px; }
  .timeline__step::before { top: 0; left: -6px; }
  .timeline__year { padding-top: 0; }

  .team { gap: 40px 20px; }
  .team__member, .team__member:nth-child(3n) { grid-column: span 12; grid-template-columns: 1fr 1.4fr; gap: 20px; }

  .values { grid-template-columns: 1fr; gap: 32px; }

  .sponsors { grid-template-columns: repeat(2, 1fr); }

  .initiators { grid-template-columns: 1fr; gap: 28px; }
  .initiators__list { grid-template-columns: 1fr; gap: 20px; }

  .level { grid-template-columns: 1fr; gap: 32px; }
  .level--reverse { grid-template-columns: 1fr; }
  .level--reverse .level__visual { order: initial; }
  .level__visual { aspect-ratio: 4/5; }
  .level__num { font-size: clamp(60px, 16vw, 100px); top: -12px; }

  .stages { grid-template-columns: repeat(2, 1fr); }

  .meet { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .meet:hover { padding-left: 8px; }
  .meet__cta { justify-self: start; }

  .palmares { grid-template-columns: 1fr; }
  .palmares__year { border-bottom: 0; padding-bottom: 12px; }
  .palmares__list { padding-top: 0; border-top: 0; }

  .process { grid-template-columns: 1fr; gap: 28px; }
  .process__step { grid-column: 1; padding-top: 44px; }

  .chapter { grid-template-columns: 1fr; gap: 32px; padding-block: 72px; }
  .chapter__marker { position: static; display: flex; align-items: baseline; gap: 18px; }
  .chapter__num { font-size: clamp(48px, 12vw, 72px); }

  .report-grid { grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .report-grid__item--wide { grid-column: span 6; aspect-ratio: 16/10; }
  .report-grid__item--tall { grid-column: span 3; aspect-ratio: 3/5; }
  .report-grid__item--sq { grid-column: span 3; aspect-ratio: 1/1; }
  .report-grid__item--half { grid-column: span 6; aspect-ratio: 3/2; }

  .archive { grid-template-columns: 1fr; gap: 32px; }

  .report-hero { min-height: 90vh; }
  .report-hero__inner { grid-template-columns: 1fr; }

  .pricing { grid-template-columns: 1fr; gap: 14px; }
  .pricing__card { padding: 28px 24px; }

  .schedule__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }

  .docs { grid-template-columns: 1fr; }

  .faq__item summary { padding: 20px 0; font-size: 16px; }

  .featured-article { grid-template-columns: 1fr; gap: 24px; }
  .articles { grid-template-columns: 1fr; gap: 40px; }

  .press__item { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .press__cta { justify-self: start; }

  .form-block { grid-template-columns: 1fr; gap: 48px; }
  .form__row { grid-template-columns: 1fr; }
  .hours { grid-template-columns: 1fr; }
  .hours__item:nth-child(even) { padding-left: 0; border-left: 0; padding-right: 0; }
  .hours-wrap { grid-template-columns: 1fr !important; gap: 32px !important; }

  .emergency { grid-template-columns: 1fr; }
  .resources { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .btn { padding: 16px 22px; font-size: 12px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__cols { grid-template-columns: 1fr; }
}
