/* ==========================================================================
   UNSUNG CLUB · Landing de pré-ouverture
   Mobile-first. Référence mobile 390 px, desktop 1280 px (handoff « Built in
   silence »). Paliers : 760 px (habillage desktop), 1080 px (piliers en
   grille), 1180 px (hero en deux colonnes).
   Règle de marque : le vert #64724E ne sert QU'AUX soulignements fins, jamais
   en aplat, en bouton ou en texte.
   ========================================================================== */

/* ── Polices auto-hébergées (SIL Open Font License) ───────────────────── */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/archivo-black-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/archivo-black-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Tokens ──────────────────────────────────────────────────────────── */
:root {
  --noir: #1A1A18;
  --charbon: #2B2B29;
  --surface: #232321;
  --ligne: #3A3936;
  --beton-f: #6E6A65;
  --beton: #8C8781;
  --beton-c: #A8A29B;
  --blanc: #F0EDE8;
  --vert: #64724E;          /* soulignements uniquement */
  --err: #D08A78;
  --display: 'Archivo Black', 'Arial Black', Impact, system-ui, sans-serif;
  --text: 'Archivo', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --gutter: 20px;
  --radius-card: 18px;
  --radius-btn: 12px;
  color-scheme: dark;
}

/* ── Reset ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  background: var(--noir);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blanc); }
a:hover { color: #FFFFFF; }
button, input { font: inherit; color: inherit; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--blanc); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0s !important; animation-duration: 0s !important; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 10;
  padding: 10px 14px; border-radius: 6px;
  background: var(--blanc); color: var(--noir);
  font-weight: 700; font-size: 14px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* Soulignement de marque (le seul usage du vert) */
.u-line { border-bottom: 1px solid var(--vert); }

/* ── Conteneur ───────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
}

/* ── En-tête : sticky en mobile ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  background: rgba(26, 26, 24, .86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--charbon);
}
.site-header__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: calc(18px + env(safe-area-inset-top, 0px)) 0 14px;
}
.brand { display: block; flex: 0 0 auto; }
.brand img { height: 28px; width: auto; }
.site-header__meta {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--beton-c);
  line-height: normal;
}
.site-header__loc { display: none; }
.site-header__open .u-line {
  color: var(--blanc);
  font-weight: 600;
  padding-bottom: 2px;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.hero { padding-top: 40px; }
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--beton);
  line-height: normal;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  /* 62 px dès 390 px de large ; en dessous, « SILENCE. » (≈ 5,1 em) doit tenir
     dans la largeur utile (écran − 2 × 20 px) : sinon il déborde à 320 px. */
  font-size: min(62px, calc((100vw - 40px) / 5.15));
  line-height: .88;
  letter-spacing: -.01em;
}
.hero__l1, .hero__l2 { display: block; }
.hero__l2 {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--beton);
}
.hero__l3 {
  display: inline-block;
  border-bottom: 3px solid var(--vert);
  padding-bottom: 6px;
}
.hero__pitch {
  font-size: 18px;
  line-height: 1.5;
  color: var(--beton-c);
  text-wrap: pretty;
}
.hero__pitch strong { color: var(--blanc); font-weight: 600; }

/* Ce qu'on trouve au club : étiquettes monochromes sous l'accroche */
.offer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -8px;           /* rapproche de l'accroche (gap du hero : 28 px) */
}
.offer__item {
  font-size: 11px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--beton-c);
  border: 1px solid var(--ligne);
  border-radius: var(--radius-btn);
  padding: 7px 11px 6px;
}

/* ── Cartes ──────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--ligne);
  border-radius: var(--radius-card);
}

/* ── Formulaire liste d'attente ──────────────────────────────────────── */
.signup {
  margin-top: 36px;
  padding: 24px 20px;
  scroll-margin-top: 96px;
}
.signup__panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.signup__head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.signup__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 21px;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.signup__sub {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--beton-c);
}
.signup__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.signup__email {
  width: 100%;
  min-width: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ligne);
  border-radius: 0;
  color: var(--blanc);
  font-family: var(--text);
  font-size: 18px;
  line-height: normal;
  padding: 12px 0;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.signup__email::placeholder { color: var(--beton-f); opacity: 1; }
.signup__email:focus { border-bottom-color: var(--vert); }
.signup__email:focus-visible { outline: none; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--beton);
  cursor: pointer;
}
.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--vert);
  cursor: pointer;
}
.consent a { color: var(--beton-c); text-underline-offset: 2px; }
.consent a:hover { color: var(--blanc); }

.signup__error {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--err);
}

.signup__btn {
  width: 100%;
  height: 54px;
  margin: 0;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius-btn);
  background: var(--blanc);
  color: var(--noir);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .15s, transform .1s;
}
.signup__btn:hover { background: #FFFFFF; }
.signup__btn:active { transform: translateY(1px); }
.signup__btn[disabled] { opacity: .6; cursor: wait; }

/* reCAPTCHA v3 : le badge flottant de Google est masqué (autorisé par Google)
   et remplacé par la mention sous le bouton (règle du parc). */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-notice {
  font-size: 11px;
  line-height: 1.5;
  color: var(--beton);
}
.recaptcha-notice a { color: var(--beton-c); text-underline-offset: 2px; }
.recaptcha-notice a:hover { color: var(--blanc); }

.signup__done {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 6px 0;
  outline: none;
}
.signup__title--done { font-size: 24px; }
.signup__title--done .u-line { border-bottom-width: 2px; padding-bottom: 3px; }
.signup__done .signup__sub { margin-top: 6px; }

/* ── Photo de la salle ───────────────────────────────────────────────── */
.photo {
  margin-top: 40px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--charbon);
  aspect-ratio: 4 / 3;
  background: var(--surface);
}
.photo picture, .photo img { width: 100%; height: 100%; }
/* Photo 5:3 dans un cadre 4:3 : calée à gauche pour garder entier le
   panneau « Newtech × Olympia ». */
.photo img { object-fit: cover; object-position: 0% 50%; }

/* ── Le club : carrousel en mobile ───────────────────────────────────── */
.club { padding-top: 48px; }
.club__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding-bottom: 14px;
}
.club__list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 var(--gutter);
  padding-bottom: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.club__list::-webkit-scrollbar { display: none; }
.club__list::after { content: ''; flex: 0 0 8px; }
.pillar {
  flex: 0 0 286px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 24px 28px;
}
.pillar__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
}
.pillar__title span { display: block; }
.pillar__text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--beton-c);
}

/* ── Fournisseurs ────────────────────────────────────────────────────── */
.suppliers { padding-top: 40px; }
.suppliers__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding-bottom: 14px;
}
/* Filets de 1 px entre les cases : l'espace de la grille laisse voir le fond. */
.suppliers__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1px;
  background: var(--ligne);
  overflow: hidden;
}
.supplier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 104px;
  padding: 22px 14px;
  background: var(--surface);
  text-align: center;
}
.supplier:last-child:nth-child(odd) { grid-column: 1 / -1; }
/* Logos livrés en blanc sur transparent : aucune couleur de marque ne
   concurrence la charte. --logo-k (posé par supplier_logo) égalise leur poids
   visuel ; object-fit évite toute déformation si la case est trop étroite. */
.supplier {
  --logo-base: 28px;
}
.supplier__logo {
  display: block;
  height: calc(var(--logo-base) * var(--logo-k, 1));
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: .88;
}
.supplier__name {
  font-family: var(--display);
  font-size: 17px;
  line-height: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blanc);
}
.supplier__country {
  font-size: 10px;
  line-height: normal;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--beton);
}

/* ── Places Fondateurs ───────────────────────────────────────────────── */
.founders {
  margin-top: 40px;
  padding: 26px 22px;
  border-radius: var(--radius-card);
  background: linear-gradient(150deg, #9C968F, #8C8781 45%, #7A756F);
  color: var(--noir);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.founders__num {
  font-family: var(--display);
  font-size: 96px;
  line-height: .8;
  letter-spacing: -.02em;
}
.founders__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.founders__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
}
.founders__text {
  font-size: 15px;
  line-height: 1.5;
  color: #262624;
}
.founders__link { display: none; }
/* ── Compteur « Plus que X places Fondateurs » ───────────────────────── */
/* Horloge qui tic : l'aiguille avance d'un cran toutes les 0,5 s (2 crans par seconde). */
.tick-clock { flex: 0 0 auto; display: block; }
.tick-clock__s {
  transform-box: view-box;
  transform-origin: 12px 12px;
  animation: tick-clock 30s steps(60, end) infinite;
}
.tick-clock__m {
  transform-box: view-box;
  transform-origin: 12px 12px;
  animation: tick-clock 1800s linear infinite;
}
@keyframes tick-clock { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .tick-clock__s, .tick-clock__m { animation: none; }
}
/* Le chiffre qui change pendant la visite : petit à-coup, transform/opacity seulement. */
@keyframes places-tick {
  0%   { transform: translateY(-.18em); opacity: .35; }
  100% { transform: none; opacity: 1; }
}
[data-places-n].is-ticking { animation: places-tick .45s ease-out; }
[data-places-box].is-full .tick-clock { display: none; }

/* Ligne compacte dans la carte formulaire */
.signup__places {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 11px;
  line-height: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--beton-c);
}
.signup__places .tick-clock { width: 15px; height: 15px; color: var(--blanc); }
.signup__places strong { display: inline-block; color: var(--blanc); font-weight: 700; }   /* transform animable */

/* Bloc Fondateurs : « Plus que » + horloge au-dessus du grand chiffre */
.founders__count {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.founders__kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--noir);
}
.founders__kicker .tick-clock { width: 17px; height: 17px; }

/* Avantages Fondateurs : mis en valeur entre deux filets, en noir sur le dégradé. */
.perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid rgba(26, 26, 24, .28);
  border-bottom: 1px solid rgba(26, 26, 24, .28);
}
.perk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--noir);
}
.perk__ico { flex: 0 0 auto; margin-top: 1px; }
.perk__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.perk__text {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: #262624;
  margin-top: 2px;
}
.signup__sub strong { color: var(--blanc); font-weight: 600; }

/* Places Fondateurs toutes attribuées : tampon monochrome, pas de couleur. */
.founders__badge {
  align-self: flex-start;
  font-family: var(--display);
  font-size: 11px;
  line-height: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--noir);
  border: 1.5px solid var(--noir);
  border-radius: 2px;
  padding: 5px 9px 4px;
}

/* ── Pied de page ────────────────────────────────────────────────────── */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--charbon);
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 0 calc(48px + env(safe-area-inset-bottom, 0px));
}
.site-footer__main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer__base {
  font-family: var(--display);
  color: var(--beton);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  line-height: normal;
}
.site-footer__copy {
  color: var(--beton-f);
  font-size: 11.5px;
  letter-spacing: .06em;
  line-height: normal;
}
.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: .06em;
  line-height: 1.5;
  color: var(--beton);
}
.site-footer__links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.site-footer__legal a {
  color: var(--beton);
  text-decoration: none;
}
.site-footer__legal a:hover { color: var(--blanc); text-decoration: underline; text-underline-offset: 3px; }

/* ── Pages de contenu (mentions, confidentialité, 404) ───────────────── */
.page {
  padding-top: 40px;
  max-width: 820px;
}
.breadcrumb {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--beton);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--beton-c); text-decoration: none; }
.breadcrumb a:hover { color: var(--blanc); }
.breadcrumb span[aria-hidden] { margin: 0 6px; }
.page__title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 36px;
  line-height: .95;
  letter-spacing: -.005em;
  margin-bottom: 16px;
}
.page__lead { font-size: 14px; color: var(--beton); margin-bottom: 8px; }
.legal h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 40px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--charbon);
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--beton-c);
}
.legal p + p { margin-top: 12px; }
.legal ul { display: flex; flex-direction: column; gap: 6px; margin: 12px 0; }
.legal li { padding-left: 16px; position: relative; }
.legal li::before {
  content: '';
  position: absolute;
  left: 0; top: .72em;
  width: 6px; height: 1px;
  background: var(--beton);
}
.legal strong { color: var(--blanc); font-weight: 600; }
.legal a { text-underline-offset: 3px; overflow-wrap: anywhere; }
.todo { color: var(--err); font-weight: 600; }

.error404 { padding-top: 64px; padding-bottom: 24px; }
.error404__code {
  font-family: var(--display);
  font-size: 120px;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--beton);
  margin-bottom: 24px;
}
.error404 .page__lead { font-size: 17px; color: var(--beton-c); max-width: 40ch; margin-bottom: 32px; }
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 28px;
  border-radius: var(--radius-btn);
  background: var(--blanc);
  color: var(--noir);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-light:hover { background: #FFFFFF; color: var(--noir); }

/* ==========================================================================
   ≥ 760 px : habillage desktop (en-tête non sticky, rayons 6/3, typo desktop)
   ========================================================================== */
@media (min-width: 760px) {
  :root {
    --gutter: 56px;
    --radius-card: 6px;
    --radius-btn: 3px;
  }
  .wrap { max-width: 1232px; }

  .site-header {
    position: static;
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 0;
  }
  .site-header__bar {
    padding: 28px 0;
    border-bottom: 1px solid var(--charbon);
  }
  .brand img { height: 36px; }
  .site-header__meta {
    font-size: 11px;
    letter-spacing: .28em;
    color: var(--beton);
  }
  .site-header__loc { display: inline; }
  .site-header__open .u-line { padding-bottom: 3px; }

  .eyebrow { display: none; }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
    padding-top: 80px;
    padding-bottom: 72px;
  }
  .hero__text { gap: 40px; }
  .offer { margin-top: -16px; gap: 10px; }      /* 24 px sous l'accroche */
  /* Réglé pour tenir sur une ligne dans la colonne du hero (582 px dès 1232 px). */
  .offer__item { font-size: 11.5px; letter-spacing: .14em; padding: 8px 10px 7px; }
  .hero__title {
    font-size: clamp(62px, 12vw, 110px);
    line-height: .86;
  }
  .hero__l3 { border-bottom-width: 4px; padding-bottom: 10px; }
  .hero__pitch {
    max-width: 34ch;
    font-size: 21px;
    line-height: 1.45;
  }

  .signup {
    margin-top: 0;
    padding: 34px;
    max-width: 620px;
    scroll-margin-top: 40px;
  }
  .signup__panel { gap: 22px; }
  .signup__head { gap: 8px; }
  .signup__title { font-size: 24px; }
  .signup__sub { font-size: 15px; }
  .signup__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "email btn" "consent consent";
    column-gap: 16px;
    row-gap: 22px;
    align-items: end;
  }
  .signup__email {
    grid-area: email;
    height: 50px;
    font-size: 17px;
  }
  .consent { grid-area: consent; }
  .consent input { width: 16px; height: 16px; }
  .signup__error { grid-column: 1 / -1; font-size: 14px; }
  .recaptcha-notice { grid-column: 1 / -1; }
  .signup__btn {
    grid-area: btn;
    width: auto;
    height: 50px;
    font-size: 13px;
  }
  .signup__done { padding: 0; }
  .signup__title--done { font-size: 26px; }
  .signup__done .signup__sub { margin-top: 10px; }

  .photo {
    margin-top: 0;
    margin-bottom: 72px;
    aspect-ratio: 16 / 8;
  }
  /* Cadre 2:1 : on garde les suspensions hexagonales du haut. */
  .photo img { object-position: 50% 30%; }

  .club { padding-top: 0; }

  .suppliers { padding-top: 56px; }
  .suppliers__list { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .supplier:last-child:nth-child(odd) { grid-column: auto; }
  .supplier { min-height: 128px; }
  .supplier { --logo-base: 32px; }

  .founders {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 56px;
    align-items: end;
    margin: 40px 0 88px;
    padding: 48px;
  }
  .founders__num { font-size: clamp(96px, 12.5vw, 150px); }
  .founders--nocount { grid-template-columns: minmax(0, 1fr); }
  .founders__count { gap: 16px; }
  .founders__kicker { font-size: 13px; }
  .perks { flex-direction: row; gap: 32px; margin: 6px 0; }
  .perk { flex: 1 1 0; }
  .perk__title { font-size: 15px; }
  .founders__body { gap: 10px; }
  .founders__title { font-size: 26px; }
  .founders__text { font-size: 15.5px; max-width: 48ch; }
  .founders__link {
    display: inline-block;
    align-self: flex-start;
    margin-top: 8px;
    color: var(--noir);
    font-weight: 700;
    font-size: 13px;
    line-height: normal;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid var(--noir);
    padding-bottom: 2px;
  }
  .founders__link:hover { color: #000000; border-bottom-color: #000000; }
  .founders__link:focus-visible { outline-color: var(--noir); }

  .site-footer {
    margin-top: 0;
    border-top: 0;
  }
  .site-footer__inner {
    border-top: 1px solid var(--charbon);
    padding: 30px 0 calc(40px + env(safe-area-inset-bottom, 0px));
    gap: 18px;
  }
  .site-footer__main {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px 28px;
    flex-wrap: wrap;
  }
  .site-footer__base { font-size: 13px; }
  .site-footer__copy { font-size: 12px; }
  .site-footer__legal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 28px;
  }

  .page { padding-top: 72px; }
  .page__title { font-size: 56px; }
  .legal h2 { margin-top: 48px; }
  .is-page .site-footer__inner,
  .is-404 .site-footer__inner { margin-top: 88px; }
  .error404 { padding-top: 96px; }
  .error404__code { font-size: 180px; }
}

/* ==========================================================================
   ≥ 1080 px : piliers en trois colonnes
   ========================================================================== */
@media (min-width: 1080px) {
  .club__title {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0);
    white-space: nowrap; border: 0;
  }
  .club__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  .club__list::after { content: none; }
  .pillar { padding: 32px 32px 36px; }
  .pillar__title { font-size: 32px; }
  .pillar__text { font-size: 15px; line-height: 1.55; max-width: 32ch; }
}

/* ==========================================================================
   ≥ 1180 px : hero en deux colonnes. En dessous, la carte formulaire serait
   trop étroite pour garder le champ email et le bouton sur une même ligne.
   ========================================================================== */
@media (min-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 72px;
    align-items: end;
    padding-top: 96px;
    padding-bottom: 88px;
  }
  .hero__title { font-size: clamp(80px, 8.9vw, 110px); }
  .signup { max-width: none; }
}
