/* ============================================================
   HÖUL — Feuille de style principale
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--f-detail);
  font-weight: 700;
  color: var(--noir);
  background: var(--blanc);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, textarea { font: inherit; color: inherit; }

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

/* ---------- Typo utilitaires ---------- */
.h-display { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; line-height: 1; }
.h-heading { font-family: var(--f-heading); font-weight: 400; text-transform: uppercase; line-height: 1.05; }
.t-action  { font-family: var(--f-action);  font-weight: 700; text-transform: uppercase; }
.t-detail  { font-family: var(--f-detail);  font-weight: 700; text-transform: uppercase; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 10px 28px;
  font-family: var(--f-action);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  text-transform: uppercase;
  color: var(--noir);
  background: var(--rouge);
  border: var(--stroke) solid var(--contour);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-sticker); }
.btn:active { transform: none; box-shadow: none; }
.btn--rouge { background: var(--rouge); }
.btn--jaune { background: var(--jaune); }
.btn--bleu  { background: var(--bleu); }
.btn--blanc { background: var(--blanc); }
.btn--contraste { background: var(--noir); color: var(--blanc); border-color: var(--blanc); }
.btn--block { width: 100%; }

/* ============================================================
   BADGES & ICÔNES
   ============================================================ */
.badge-consigne { width: clamp(72px, 9vw, 116px); height: auto; }
.badge-oceans   { width: clamp(96px, 11vw, 150px); height: auto; }
.badge-breton   { width: clamp(96px, 11vw, 150px); height: auto; }

.formats { display: flex; gap: 22px; align-items: flex-start; }
.formats img { height: clamp(54px, 6vw, 74px); width: auto; }
/* boutons format cliquables (bouteille / canette) */
.format {
  display: inline-flex;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  opacity: .42;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.format:hover { opacity: .8; transform: translateY(-2px); }
.format:focus-visible { outline: var(--stroke-thin) solid currentColor; outline-offset: 4px; }
.format.is-active { opacity: 1; }
.format img { pointer-events: none; }


/* ============================================================
   MARQUEE (bandeau défilant)
   ============================================================ */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  background: var(--noir);
  border-block: var(--stroke-thin) solid var(--contour);
  padding-block: 12px;
  rotate: 3deg;
  color: var(--blanc);
  margin-top: 40px;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding-left: 3rem;
  font-family: var(--f-detail);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  text-transform: uppercase;
  color: var(--blanc);
  will-change: transform;
  animation: marquee 26s linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee__track span { display: inline-block; color: var(--blanc); }
.marquee__track .star { color: var(--rouge); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  pointer-events: none;
}
.site-header img { pointer-events: auto; }
.site-header__logo { width: clamp(110px, 13vw, 190px); height: auto; background-color: black; border-radius: 50%; }
.site-header__emblem { width: clamp(58px, 7vw, 92px); height: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--blanc);
  background: var(--noir);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(177deg, rgba(0,18,25,.82) 6%, rgba(0,91,127,0) 70%),
              linear-gradient(0deg, rgba(0,18,25,.55), rgba(0,18,25,0) 40%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-family: var(--f-detail);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: .98;
  text-align: left;
  max-width: 13ch;
}
.hero__subtitle {
  font-family: var(--f-detail);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.1;
  text-align: center;
  padding: 10px 20px;
  border: 5px solid var(--blanc);
  position: relative;
  top: 20vh;
}
/* ============================================================
   PRODUITS
   ============================================================ */
.product {
  position: relative;
  overflow: visible;
  color: var(--blanc);
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.product--cola { background: #e52522; }
.product--zero { background: #1e1e1c; }
.product--tea  { background: #ffcc0c; color: var(--noir); }
.product--limo { background: #1db8d4; color: var(--noir); }

/* ----- Décor : scène en couches -----
   z 0 : MER (texture de vagues, lignes)  — parallax
   z 1 : rochers gauche/droite            — slide-in
   z 2 : VAGUE (écume pleine, devant)                         */
.product__scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

/* MER : texture de vagues dessinée, en fond, légèrement estompée.
   Plus haute que la zone visible pour laisser de la marge au parallax. */
.scene__sea {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  height: clamp(320px, 66%, 660px);
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  opacity: .4;
  will-change: transform;
}

/* rochers ancrés en bas, encadrant la section */
.scene__rock {
  position: absolute;
  bottom: 0;
  height: clamp(300px, 56%, 580px);
  width: auto;
  z-index: 1;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
  /* slide-in : démarrage doux marqué (easeInOutQuint) + petit délai pour déclencher plus tard */
  transition: transform 1.4s cubic-bezier(0.83, 0, 0.17, 1) 0.18s;
  will-change: transform;
}
.scene__rock--g { left: 0;  transform: translateX(-110%); }
.scene__rock--d { right: 0; transform: translateX(110%); }
/* position de repos quand la section entre dans le viewport */
.product.is-in .scene__rock--g { transform: translateX(-9%); }
.product.is-in .scene__rock--d { transform: translateX(9%); }

/* VAGUE : écume pleine largeur, devant tout le reste — peut déborder du viewport */
.scene__foam {
  position: absolute;
  left: 50%;
  bottom: -22%;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  object-fit: fill;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .scene__rock { transition: none; }
  .scene__rock--g { transform: translateX(-9%); }
  .scene__rock--d { transform: translateX(9%); }
}

/* overlay = canevas plein cadre : le stage est calé en haut, CONSIGNE/infos aux coins */
.product__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
}
.product__inner {
  width: 100%;
  padding-top: clamp(40px, 8vh, 110px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
}
.product--reverse .product__inner { direction: rtl; }
.product--reverse .product__inner > * { direction: ltr; }

/* Colonne visuel : cercle + wordmark + bouteille */
.product__stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(360px, 42vw, 620px);
}
.product__circle {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(260px, 34vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.85);
  z-index: 1;
}
.product__0 {
  position: absolute;
  top: 40vh;
  right: 10%;
  font-family: var(--f-detail);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  text-align: center;
  z-index: 2;
  padding: 20px;
  border: 10px solid  rgba(255,255,255,.85) !important;
  border-radius: 50%;
}
.product--tea .product__circle,
.product--limo .product__circle { border-color: rgba(255,255,255,.95); }
/* wordmark = image PNG (lettrage déformé + ombrage intégrés à l'asset) */
.product__wordmark {
  position: relative;
  z-index: 2;
  display: block;
  width: 63%;
  max-width: clamp(200px, 27vw, 400px);
  height: auto;
}
.product__bottle {
  position: absolute;
  z-index: 3;
  height: clamp(340px, 40vw, 560px);
  width: auto;
  right: -6%;
  bottom: -16%;
  transition: opacity .18s var(--ease);
}
/* format canette : plus court que la bouteille */
.product__bottle.is-can { height: clamp(250px, 30vw, 430px); bottom: -8%; }

.product_rotate_G {
  rotate: -5deg;
}
.product_rotate_D {
  rotate: 5deg;
}
.product--reverse .product__bottle { right: auto; left: -6%; }

/* couleurs cercle boissons*/
.cola { background-color: #E52522;}
.cola__zero { background-color: #1E1E1C;}
.tea { background-color: #FFCC0C;}
.limo { background-color: #1DB8D4;}

/* badge "sans sucre" — pastille ronde, texte sur 2 lignes */
/* la pastille déborde du cercle (sinon clippée) */
.product--zero .product__circle { overflow: visible; }
/* pastille "sans sucre" — collée au coin bas-droite du cercle */
.product--zero .product__0 {
  position: absolute;
  z-index: 4;
  left: 87%;
  top: 93%;
  transform: translate(-70%, -20%);
  display: grid;
  place-items: center;
  width: clamp(140px, 10vw, 140px);
  height: clamp(140px, 10vw, 140px);
  border-radius: 50%;
  background-color:  #1E1E1C;
  color: #E22B2B;
  border: var(--stroke) solid var(--contour);
  font-family: var(--f-heading);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .9;
  text-align: center;
  font-size: clamp(2rem, 1.4vw, 3rem);
}

/* Infos : bande basse, description et formats aux coins opposés (cf. maquette) */
.product__info {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(40px, 4%, 120px);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  z-index: 3;
}
/* sections inversées : description à droite, formats à gauche */
.product--reverse .product__info { flex-direction: row-reverse; }
.product__desc {
  font-family: var(--f-detail);
  font-size: clamp(1.05rem, 1.7vw, 1.6rem);
  text-transform: uppercase;
  line-height: 1.15;
  max-width: 19ch;
  margin-bottom: 0;
  color: var(--noir);
}
.product__consigne {
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: var(--gutter);
  z-index: 4;
}
.product--reverse .product__consigne { right: auto; left: var(--gutter); }

/* ============================================================
   CTA — Bouton magique
   ============================================================ */
.cta-bar {
  background: var(--blanc);
  display: flex;
  justify-content: center;
  padding-block: clamp(70px, 9vw, 130px);
}
.magic { position: relative; display: inline-grid; place-items: center; }
.magic .btn {
  grid-area: 1 / 1;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  padding: 16px 56px;
  border-width: 7px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), opacity var(--dur);
}
.magic .btn:nth-child(1) { transform: rotate(3deg)  translateY(-6px); }
.magic .btn:nth-child(2) { transform: rotate(-2.4deg); }
.magic .btn:nth-child(3) { transform: rotate(1.8deg) translateY(4px); }
.magic .btn:nth-child(4) { transform: rotate(0deg); z-index: 2; }
.magic:hover .btn:nth-child(1), .magic.is-open .btn:nth-child(1) { transform: rotate(7deg)  translate(-46px,-26px); }
.magic:hover .btn:nth-child(2), .magic.is-open .btn:nth-child(2) { transform: rotate(-7deg) translate(46px,-18px); }
.magic:hover .btn:nth-child(3), .magic.is-open .btn:nth-child(3) { transform: rotate(6deg)  translate(-40px,30px); }

/* ============================================================
   MANIFESTE
   ============================================================ */
.manifeste {
  position: relative;
  color: var(--noir);
  background: var(--blanc);
  overflow: hidden;
}
/* deux rangées alternées : image pleine bord / texte côté intérieur */
.manifeste__row {
  display: grid;
  grid-template-columns: 1fr clamp(300px, 32%, 460px);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
}
.manifeste__row--reverse { grid-template-columns: clamp(300px, 32%, 460px) 1fr; }
.manifeste__row + .manifeste__row { margin-top: clamp(56px, 8vw, 120px); }

/* colonne média : kicker au-dessus + image à fond perdu + badge */
.manifeste__media { min-width: 0; }
.manifeste__frame { position: relative; }
.manifeste__photo {
  display: block;
  width: 100%;
  height: clamp(300px, 38vw, 547px);
  object-fit: cover;
}
.manifeste__media--left  .manifeste__photo { border-radius: 0 var(--radius) var(--radius) 0; }
.manifeste__media--right .manifeste__photo { border-radius: var(--radius) 0 0 var(--radius); }
.manifeste__badge {
  position: absolute;
  bottom: clamp(16px, 2.4vw, 40px);
  width: clamp(104px, 12vw, 162px);
  height: auto;
}
.manifeste__media--left  .manifeste__badge { left: clamp(16px, 2.6vw, 48px); }
.manifeste__media--right .manifeste__badge { right: clamp(16px, 2.6vw, 48px); }

/* kicker (titre) aligné sur le bord extérieur, au-dessus de l'image */
.manifeste__kicker {
  font-family: var(--f-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 clamp(14px, 1.6vw, 22px);
  padding-inline: var(--gutter);
  margin-top: 48px;
}
.manifeste__kicker--right { text-align: right; }
.manifeste__num { text-transform: none; }

/* colonne texte */
.manifeste__copy { min-width: 0; padding-inline: var(--gutter); max-width: 48ch; }
.manifeste__copy--right { text-align: right; margin-left: auto; }
.manifeste__text {
  font-family: var(--f-detail);
  font-weight: 700;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  text-transform: uppercase;
  line-height: 1.32;
}
.manifeste__text + .manifeste__text { margin-top: clamp(14px, 1.6vw, 22px); }
/* liens partenaires (Cozigou, Drink Dong) dans le texte */
.manifeste__text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: color var(--dur) var(--ease);
}
.manifeste__text a:hover { color: var(--rouge); }

/* ============================================================
   CARTE / BOUTIQUE
   ============================================================ */
.carte__title-bar {
  position: relative;
  z-index: 1;
  background: var(--blanc);
  border-block: var(--stroke) solid var(--contour);
  text-align: center;
  padding: 16px;
}
.carte__title-bar h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.4rem);
  text-transform: uppercase;
}
.carte__main {
  position: relative;
  background: var(--rouge);
  color: var(--blanc);
  overflow: hidden;
  padding-block: clamp(50px, 7vw, 90px);
}
.carte__watermark {
  position: absolute;
  left: -2%; bottom: 4%;
  font-family: var(--f-display);
  font-size: 34vw;
  line-height: .8;
  color: rgba(255,255,255,.08);
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.carte__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}
.carte__map-bzh { width: 100%; height: auto; filter: drop-shadow(0 12px 18px rgba(0,0,0,.25)); }
.carte__text { text-align: center; }
.carte__kicker {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.carte__desc {
  font-family: var(--f-detail);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.35;
  max-width: 40ch;
  margin: 0 auto 24px;
}
.horaires {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--noir); color: var(--blanc);
  border-radius: var(--radius);
  padding: 12px 26px;
  font-family: var(--f-detail); font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}
.horaires .sep { opacity: .5; }
.carte__embed img { width: 100%; height: clamp(280px, 38vw, 460px); object-fit: cover; display: block; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--noir);
  color: var(--blanc);
  padding-block: clamp(70px, 9vw, 130px);
}
.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(18px, 2.6vw, 34px);
}
.contact__kicker {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: .9;
}
.contact__title {
  font-family: var(--f-heading);
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1.15;
  max-width: 26ch;
  margin: 0 auto;
  letter-spacing: 1px;
}
.contact__cta {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  padding: 16px 56px;
  border-width: var(--stroke-bold);
  margin-top: clamp(4px, 1vw, 12px);
}
.contact__cta:hover { box-shadow: 6px 6px 0 var(--blanc); }
.contact__mail {
  font-family: var(--f-detail);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  letter-spacing: .04em;
  border-bottom: var(--stroke-thin) solid currentColor;
  padding-bottom: 2px;
  transition: color var(--dur) var(--ease);
}
.contact__mail:hover { color: var(--rouge); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--noir);
  color: var(--blanc);
  border-top: var(--stroke-thin) solid rgba(247,254,255,.2);
  padding-block: 30px;
  text-align: center;
  font-family: var(--f-detail); font-weight: 700;
  text-transform: uppercase;
  font-size: .95rem;
  letter-spacing: .03em;
}
.site-footer img { width: 130px; margin: 0 auto 14px; }
.site-footer__links {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 8px 22px;
  margin-bottom: 14px;
}
.site-footer__links a {
  color: var(--blanc);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.site-footer__links a:hover { color: var(--jaune); }
/* icône Instagram (inline SVG, suit la couleur du lien) */
.site-footer__ig { display: inline-flex; align-items: center; }
.site-footer__ig svg { width: 24px; height: 24px; transition: transform var(--dur) var(--ease); }
.site-footer__ig:hover svg { transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  /* ===== PRODUITS : compo portrait plein écran (cf. maquette mobile) ===== */
  .product { height: 100svh; min-height: 600px; display: block; padding: 0; }
  .product__overlay { position: absolute; inset: 0; display: block; }
  .product__inner { display: block; height: 100%; padding: 0; max-width: none; }
  .product--reverse .product__inner { direction: ltr; }
  .product__stage { position: absolute; inset: 0; min-height: 0; display: block; margin: 0; }

  /* décor plein cadre derrière la compo — clippé pour ne pas déborder sur la section suivante */
  .product__scene { top: 0; bottom: 0; height: auto; overflow: hidden; }
  .scene__sea  { height: 100%; position: absolute; top: 100px; }
  .scene__rock { }
  .scene__foam { width: 150%; bottom: 15%; }
  .product.is-in .scene__rock--g { transform: translateX(-22%); }
  .product.is-in .scene__rock--d { transform: translateX(22%); }

  /* cercle + wordmark : haut-gauche (haut-droite si reverse) */
  .product__circle { top: 8vh; left: 2%; width: min(62vw, 310px); }
  .product--reverse .product__circle { left: auto; right: 2%; }
  .product__wordmark { width: 64%; }

  /* bouteille : grande, centrée-droite, par-dessus le cercle */
  .product__bottle { height: min(58vh, 470px); right: 6%; left: auto; bottom: 23%; }
  .product--reverse .product__bottle { right: auto; left: 6%; }
  .product__bottle.is-can { height: min(40vh, 320px); bottom: 23%; }

  /* infos : barre basse pleine largeur, description et formats répartis aux extrémités */
  .product__info {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 142px;
    background-color: white;
    color: var(--noir);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-inline: var(--gutter);
  }
  .product__desc {
    position: static;
    width: auto; max-width: 58%;
    margin: 0; padding: 0;
    text-align: left;
  }
  .product--reverse .product__desc { text-align: right; }
  .formats {
    position: static;
    transform: none;
    justify-content: flex-end;
    gap: 22px;
  }
  /* icônes lisibles sur la barre blanche (sinon blanc sur blanc pour le sans-sucre) */
  .product--zero .product__info .formats img { filter: none; }

  /* CONSIGNE en haut */
  .product__consigne { top: 18px; right: 16px; }
  .product--reverse .product__consigne { left: 16px; right: auto; }

  .hero__inner { justify-content: center; }
  .hero__title { text-align: center; font-size: 5rem; }

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

  /* manifeste : rangées empilées, image pleine largeur, texte centré */
  .manifeste__row,
  .manifeste__row--reverse { grid-template-columns: 1fr; gap: 22px; }
  .manifeste__copy,
  .manifeste__copy--right { text-align: center; max-width: none; margin-inline: auto; }
  .manifeste__kicker { margin-top: 48px; }
  .manifeste__kicker--right { text-align: center; }
  .carte__desc { margin-inline: auto; }

  .carte__watermark { font-size: 60vw; }
}

@media (max-width: 520px) {
  .product__wordmark { width: clamp(135px, 35vw, 300px); }
  .magic .btn { font-size: 1.5rem; padding: 12px 36px; border-width: 5px; }
  /* sur mobile, on n'éclate pas les cartes du bouton magique au survol */
  .magic .btn:nth-child(1),
  .magic .btn:nth-child(2),
  .magic .btn:nth-child(3) { display: none; }
}
