/* ============================================================
   PACE RUNNING — Ton rythme, notre chemin
   Palette : vert forêt profond + lime, crème éditoriale
   ============================================================ */

:root {
  --forest: #0b1d14;
  --forest-2: #10281c;
  --forest-3: #163826;
  --lime: #a4d233;
  --lime-bright: #c8f24e;
  --cream: #f3f0e7;
  --cream-2: #e9e5d8;
  --ink: #10231a;
  --ink-soft: #47584f;
  --on-dark: #eef2ea;
  --on-dark-soft: #9fb0a4;

  --font-display: "Archivo", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--forest);
  color: var(--on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; }

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* ---------- Labels & buttons ---------- */

.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.label::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.75rem;
  opacity: 0.6;
}
.label--lime { color: var(--lime); }

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: 100px;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn:hover { transform: translateY(-3px); }
.btn--lime {
  background: var(--lime);
  color: var(--forest);
}
.btn--lime:hover { background: var(--lime-bright); }
.btn--ghost {
  border: 1px solid rgba(238, 242, 234, 0.35);
  color: var(--on-dark);
}
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn--big { padding: 1.2rem 2.4rem; font-size: 0.95rem; }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1.5rem, 4vw, 3rem);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.is-scrolled {
  background: rgba(11, 29, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 0.8rem;
  box-shadow: 0 1px 0 rgba(164, 210, 51, 0.15);
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 115%;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav__brand-pace { color: var(--on-dark); }
.nav__brand-running { color: var(--lime); }
.nav__brand-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.nav__links {
  display: flex;
  gap: 2.2rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  color: var(--on-dark-soft);
  transition: color 0.3s;
}
.nav__links a:hover { color: var(--lime-bright); }

.nav__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--lime);
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s;
}
.nav__cta:hover { background: var(--lime-bright); transform: translateY(-2px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 26px; height: 2px;
  background: var(--on-dark);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__cta { color: var(--lime); }

/* ============================================================
   HERO — ouverture sur le logo "liquid glass", contenu au scroll
   ============================================================ */

.hero {
  position: relative;
  height: 200vh; /* piste de scroll : logo -> contenu */
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* --- Logo d'ouverture (SVG simple) --- */

.glass-logo {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  width: min(64vh, 82vw);
  aspect-ratio: 1 / 1; /* rendu 3D carré (1254×1254) */
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform, opacity;
  animation: glass-in 1.6s var(--ease-out) both;
}
@keyframes glass-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.glass-logo__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* mode "verre 3D" (Chromium) : le rendu 3D détouré reste visible (relief),
   et sa silhouette (canal alpha du PNG) masque le conteneur pour que la
   réfraction liquid-glass.js du dégradé n'agisse qu'à travers le logo */
.glass-logo--svg {
  -webkit-mask-image: url('../assets/logo_glass3d.png');
  mask-image: url('../assets/logo_glass3d.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.glass-logo--svg .glass-logo__img {
  /* légère translucidité : la réfraction du fond traverse le verre 3D */
  opacity: 0.92;
}

/* --- Indication scroll --- */

.hero__hint {
  position: absolute;
  z-index: 3;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--on-dark);
  will-change: opacity; /* opacité pilotée par le scroll (main.js) */
}
.hero__hint span {
  animation: glass-in 1.6s 0.7s var(--ease-out) both;
}
.hero__hint i {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--lime-bright), transparent);
  animation: hint-drop 1.8s ease-in-out infinite;
}
@keyframes hint-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero__shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  /* fallback pendant le chargement du shader */
  background: linear-gradient(160deg, #e2e9c7 0%, #98cf1a 55%, #32511a 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--forest) 0%, rgba(11, 29, 20, 0.5) 34%, rgba(11, 29, 20, 0.08) 70%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
  padding-bottom: 9rem;
  opacity: 0; /* piloté par le scroll (main.js) */
  transform: translateY(40px);
  will-change: opacity, transform;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--forest);
  margin-bottom: 1.6rem;
}

.hero__title {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero__line { display: block; }
.hero__line--accent {
  color: var(--lime-bright);
  font-style: italic;
}

.hero__sub {
  max-width: 34rem;
  margin-top: 1.8rem;
  font-size: 1.1rem;
  color: var(--on-dark-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(164, 210, 51, 0.25);
  background: rgba(11, 29, 20, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding-block: 1rem;
  opacity: 0; /* piloté par le scroll (main.js) */
}
.hero__marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 24s linear infinite;
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--on-dark);
}
.hero__marquee-track i {
  font-style: normal;
  font-size: 0.5rem;
  color: var(--lime);
}
@keyframes marquee {
  to { transform: translateX(-33.333%); }
}

/* ============================================================
   SECTIONS — color zones
   ============================================================ */

.section--light { background: var(--cream); color: var(--ink); }
.section--dark { background: var(--forest); color: var(--on-dark); }
.section--forest { background: var(--forest-2); color: var(--on-dark); }

/* ============================================================
   APPROCHE
   ============================================================ */

.approche { padding: clamp(5rem, 10vw, 9rem) 0; }

.approche__head {
  max-width: 46rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.approche__title {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.approche__title em { color: #6d9b1f; }

.approche__intro {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

/* --- ScrollStack : les piliers s'empilent au scroll --- */

.approche__stack {
  width: min(860px, 100%);
  margin-inline: auto;
  /* marge de sortie : laisse la pile épinglée se relâcher proprement */
  padding-bottom: 22vh;
}

.scroll-stack-card {
  transform-origin: top center;
  will-change: transform, filter;
  backface-visibility: hidden;
  box-sizing: border-box;
  position: relative;
}

.scroll-stack-end {
  width: 100%;
  height: 1px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  min-height: 18rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(16, 35, 26, 0.1);
  box-shadow: 0 24px 60px -30px rgba(16, 35, 26, 0.35);
}
.pillar__num {
  font-family: var(--font-display);
  font-stretch: 118%;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1;
  color: var(--lime);
  -webkit-text-stroke: 1px #6d9b1f;
}
.pillar__body { flex: 1; }
.pillar h3 {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.9rem;
}
.pillar p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 32rem;
}

/* ============================================================
   POLES
   ============================================================ */

.poles { padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem); }

.poles__head { max-width: 46rem; margin-bottom: clamp(3.5rem, 7vw, 6rem); }

.poles__title {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.poles__title em { color: var(--lime); }

.poles__intro {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--on-dark-soft);
}

.pole {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid rgba(164, 210, 51, 0.18);
}
.pole--flip { grid-template-columns: 2fr minmax(180px, 1fr); }
.pole--flip .pole__letter { order: 2; text-align: right; }
.pole--flip .pole__body { order: 1; }

.pole__letter {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 800;
  font-size: clamp(7rem, 18vw, 15rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 2px rgba(164, 210, 51, 0.4);
  transition: color 0.5s var(--ease-out), -webkit-text-stroke-color 0.5s;
  user-select: none;
}
.pole:hover .pole__letter {
  color: var(--lime);
  -webkit-text-stroke-color: var(--lime);
}

.pole__tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.8rem;
}

.pole__name {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pole__desc {
  color: var(--on-dark-soft);
  max-width: 34rem;
  margin-bottom: 1.6rem;
}

.pole__list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.8rem;
  border-top: 1px dashed rgba(159, 176, 164, 0.25);
  font-size: 0.98rem;
}
.pole__list li:last-child { border-bottom: 1px dashed rgba(159, 176, 164, 0.25); }
.pole__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--lime);
}

/* Pace Learning */

.learning {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2.2rem 2.4rem;
  border: 1px solid rgba(164, 210, 51, 0.35);
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(164, 210, 51, 0.08), transparent 60%);
}
.learning__badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--lime);
  padding: 0.45rem 1rem;
  border-radius: 100px;
}
.learning__body { flex: 1 1 22rem; }
.learning__body h3 {
  font-family: var(--font-display);
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.learning__body p { color: var(--on-dark-soft); font-size: 0.98rem; }
.learning__items {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.learning__items span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(164, 210, 51, 0.4);
  border-radius: 100px;
  color: var(--lime-bright);
  white-space: nowrap;
}

/* ============================================================
   PUBLICS — accordion panels
   ============================================================ */

.publics { padding: clamp(5rem, 10vw, 9rem) 0; }

.publics__title {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.publics__title em { color: var(--lime); }

.publics__panels {
  display: flex;
  gap: 0.6rem;
  width: min(1400px, 100% - 3rem);
  margin-inline: auto;
  height: clamp(420px, 60vh, 560px);
}

.panel {
  position: relative;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: flex 0.75s var(--ease-out);
  display: flex;
  align-items: flex-end;
}
.panel.is-active { flex: 3.2; }

.panel__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 20, 14, 0.92) 0%, rgba(8, 20, 14, 0.25) 55%, rgba(8, 20, 14, 0.2) 100%);
  transition: background 0.5s;
}

.panel__meta {
  position: relative;
  z-index: 2;
  padding: 1.8rem;
  width: 100%;
}
.panel__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.5rem;
  white-space: nowrap;
}
.panel__name {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.05;
  white-space: nowrap;
}
.panel__desc {
  max-width: 26rem;
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: rgba(238, 242, 234, 0.85);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s 0.15s, transform 0.5s 0.15s;
}
.panel.is-active .panel__desc { opacity: 1; transform: none; }

/* ============================================================
   EQUIPE
   ============================================================ */

.equipe { padding: clamp(5rem, 10vw, 9rem) 0; }

.equipe__title {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.equipe__title em { color: #6d9b1f; }

.equipe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.member {
  background: #fff;
  border: 1px solid rgba(16, 35, 26, 0.12);
  border-radius: 18px;
  padding: 2.4rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.member:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -24px rgba(16, 35, 26, 0.35);
}

.member__mono {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--lime);
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
}

.member__name {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.member__role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6d9b1f;
  margin: 0.4rem 0 1.1rem;
}
.member__bio { color: var(--ink-soft); margin-bottom: 1.5rem; }

.member__creds li {
  border-top: 1px solid rgba(16, 35, 26, 0.1);
  padding: 0.9rem 0;
  font-size: 0.93rem;
  color: var(--ink);
}
.member__creds li span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact {
  position: relative;
  padding: clamp(6rem, 12vw, 11rem) 0;
  overflow: hidden;
  text-align: center;
}

.contact__logo {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 560px);
  opacity: 0.35;
  mix-blend-mode: lighten;
  pointer-events: none;
}

.contact__inner { position: relative; z-index: 2; }
.contact .label { justify-self: center; }

.contact__title {
  font-family: var(--font-display);
  font-stretch: 118%;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.98;
  text-transform: uppercase;
}
.contact__title em { color: var(--lime); }

.contact__sub {
  max-width: 32rem;
  margin: 1.6rem auto 2.6rem;
  color: var(--on-dark-soft);
  font-size: 1.05rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #07130d;
  padding: 3.5rem 0 2rem;
}

.footer__acronym {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(164, 210, 51, 0.15);
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}
.footer__acronym span {
  font-family: var(--font-display);
  font-stretch: 115%;
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.footer__acronym b { color: var(--lime); font-weight: 800; }

.footer__bottom {
  width: min(1200px, 100% - 3rem);
  margin: 1.8rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(159, 176, 164, 0.7);
}

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

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .pillar { flex-direction: column; gap: 1.2rem; min-height: 15rem; }

  .pole, .pole--flip { grid-template-columns: 1fr; gap: 1rem; }
  .pole--flip .pole__letter { order: 0; text-align: left; }
  .pole--flip .pole__body { order: 1; }
  .pole__letter { font-size: clamp(5rem, 22vw, 9rem); }

  .publics__panels {
    flex-direction: column;
    height: auto;
  }
  .panel {
    min-height: 120px;
    flex: none;
    transition: min-height 0.6s var(--ease-out);
  }
  .panel.is-active { min-height: 340px; flex: none; }
  .panel__name { white-space: normal; }

  .equipe__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }

  .contact__logo { opacity: 0.15; }
}

@media (max-width: 560px) {
  .pillar { border-radius: 20px; }
  .hero__content { padding-bottom: 7rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__marquee-track { animation: none; }
}
