/* =========================================================
   ESKU — Fromagerie basque artisanale
   Site vitrine — feuille de style commune
   Couleurs : fond #FFFBEB · typo #1A4C31
   Typos : Mendl Sans (titres) · Outfit (textes / menu)
   ========================================================= */

/* ---------- POLICES ---------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../assets/fonts/BricolageGrotesque.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
/* Conservée pour le hero de l'accueil (harmonie avec le logo) */
@font-face {
  font-family: "Mendl Sans";
  src: url("../assets/fonts/MendlSansDawn-SemiBold.otf") format("opentype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../assets/fonts/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- VARIABLES ---------- */
:root {
  --cream: #FFFBEB;
  --green: #1A4C31;
  --green-dark: #133b25;
  --green-soft: rgba(26, 76, 49, 0.55);
  --sage: #9CC18E;
  --sage-tint: #EFF3E6;       /* fond doux dérivé du vert sauge */
  --line: rgba(26, 76, 49, 0.22);
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 88px;
  --ease: cubic-bezier(.22, .68, .28, 1);
  --font-title: "Bricolage Grotesque", "Outfit", sans-serif;
  --font-body: "Outfit", -apple-system, sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--green);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  font-size: clamp(15px, 1.05vw, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
picture { display: contents; }   /* wrapper AVIF transparent au layout */
picture source { display: none; } /* évite que <source> devienne un item de grille/flex */
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* Largeur de contenu : empêche le site d'être « trop grand » sur grand écran */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- EN-TÊTE (commun) ---------- */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px var(--gutter);
  max-width: 1340px;
  margin-inline: auto;
}
.site-header .nav {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
}
.site-header .nav a {
  font-family: var(--font-body);
  font-weight: 500;            /* Outfit medium */
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.04em;
  color: var(--green);
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s ease, opacity .2s ease;
}
.site-header .nav a:hover { border-color: var(--green); }
.site-header .nav a.is-active { border-color: var(--green); }
.site-header .brand {
  grid-column: 1;
  justify-self: start;
  transition: opacity .25s var(--ease);
}
.site-header .brand:hover { opacity: .72; }
.site-header .brand img {
  height: clamp(34px, 3.4vw, 46px);
  width: auto;
}

/* CTA "Nous contacter" — bouton contour vert (fond = couleur du site) */
.cta {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.02em;
  color: var(--green);
  background: var(--cream);
  border: 1.6px solid var(--green);
  padding: 0.7em 1.3em;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.cta:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 10px 22px rgba(26, 76, 49, 0.18);
}
.cta:active { transform: translateY(0); }
.cta.is-active { background: var(--green); color: var(--cream); }

/* Panneau nav : transparent au layout en desktop (nav + CTA = items de grille) */
.nav-panel { display: contents; }

/* Bouton burger (affiché seulement en mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- TITRES & MOTIFS ---------- */
.title-display {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-wrap: balance;
  margin: 0;
}
.cross {
  width: clamp(44px, 5.2vw, 68px);
  height: auto;
  margin: 0 auto;
  animation: spin-cross 11s linear infinite;   /* rotation du lauburu (vitesse unique) */
}
@keyframes spin-cross { to { transform: rotate(360deg); } }
.cross--lg { width: clamp(52px, 6vw, 78px); }

/* Bandeau « section centrale » : croix + phrase */
.statement {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(40px, 7vw, 88px) 0 clamp(28px, 4vw, 44px);
}
.statement p {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(22px, 3.4vw, 40px);
  line-height: 1.18;
  letter-spacing: 0.015em;
  max-width: 38ch;
  text-wrap: balance;
  margin: 0;
}

/* Photo pleine largeur (bandeau bas de page) */
.band {
  width: 100%;
  margin-top: clamp(20px, 3vw, 40px);
}
.band img {
  width: 100%;
  height: clamp(280px, 42vw, 540px);
  object-fit: cover;
}
.band--note { position: relative; }
/* Bandeau Foodflow : composition entière, peu agrandie (pas de gros zoom),
   posée sur le fond — le fromage reste naturellement décalé centre-droit. */
.band--offset {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.band--offset img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 3;       /* réserve la hauteur, évite l'effondrement à 0 */
  object-fit: contain;
  border-radius: 4px;
}

/* En-tête de page : titre centré + croix basque dessous */
.page-head {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2.4vw, 28px);
  padding: clamp(30px, 5vw, 66px) 0 clamp(18px, 3vw, 34px);
}
.page-head__title {
  font-size: clamp(24px, 3.7vw, 46px);
  max-width: 28ch;
}

/* Carte (Infos pratiques) — centrée, pas pleine largeur */
.map-band { padding: clamp(10px, 2vw, 24px) 0 clamp(24px, 3vw, 44px); }
.map-band img { width: 100%; max-width: 820px; margin-inline: auto; }

/* =========================================================
   ACCUEIL
   ========================================================= */
.hero {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(16px, 3vw, 50px);
  padding: clamp(10px, 2vw, 22px) 0;   /* symétrique : centrage vertical exact */
}
.hero__tagline {
  font-family: "Mendl Sans", var(--font-title);   /* ancienne police, harmonie avec le logo */
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(20px, 2.9vw, 38px);
  line-height: 1.12;
  letter-spacing: 0.015em;
  max-width: none;
}
.hero__tagline--left  { justify-self: end;   text-align: right; }
.hero__tagline--right { justify-self: start;  text-align: left;  }
.hero__cheese {
  width: clamp(240px, 36vw, 460px);
  filter: drop-shadow(0 24px 40px rgba(26,76,49,0.18));
}
.scroll-cue {
  display: grid;
  place-items: center;
  margin: clamp(6px, 1.5vw, 18px) 0 clamp(10px, 2vw, 24px);
}
.scroll-cue span {
  font-size: 26px;
  line-height: 1;
  color: var(--green);
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Premier écran de l'accueil : occupe la hauteur visible, avec un demi-trèfle
   basque qui tourne pile à la ligne de flottaison (moitié visible). */
.hero-screen {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  /* compense la hauteur du header pour centrer le bloc sur le VRAI centre
     de l'écran, sans déplacer le demi-trèfle (ancré au bas via bottom:0) */
  padding-bottom: var(--header-h);
}
.hero-screen > .container { width: 100%; }
.fold-cross {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);   /* centre du trèfle posé sur le bord bas = la ligne de flottaison */
  line-height: 0;
  pointer-events: none;
}
.fold-cross img {
  width: clamp(52px, 5.4vw, 72px);
  height: auto;
  animation: spin-cross 11s linear infinite;   /* même vitesse que les autres */
}
/* Flèche de défilement, juste au-dessus du demi-trèfle */
.hero-screen .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(76px, 13vh, 150px);   /* remontée : entre le fromage et le trèfle */
  transform: translateX(-50%);
  margin: 0;
}

/* Phrase « Esku — prononcé Echkou … » */
.lore {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(20px, 4vw, 48px) 0 clamp(40px, 7vw, 90px);
}
.lore p {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.45;
  letter-spacing: 0.005em;
  max-width: 56ch;
  text-wrap: balance;
  margin: 0;
}

/* =========================================================
   SECTION INTRO (Produits / Infos pratiques)
   titre + texte à gauche · photo à droite
   ========================================================= */
.intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(36px, 6vw, 80px) 0 clamp(20px, 3vw, 40px);
}
.intro__title {
  font-size: clamp(30px, 4.6vw, 60px);
  margin-bottom: clamp(18px, 2.5vw, 30px);
  text-wrap: balance;
}
.intro__lead {
  font-weight: 400;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  max-width: 52ch;
}
.intro__lead p { margin: 0 0 1em; }
.intro__lead p:last-child { margin-bottom: 0; }
.intro__lead strong { font-weight: 600; }
.intro__subtitle {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.35;
  max-width: 34ch;
  margin: 0 0 clamp(18px, 2.4vw, 28px);
}
.intro__photo {
  justify-self: center;
  width: 100%;
  max-width: 460px;
}
.intro__photo img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
  border-radius: 2px;
}

/* =========================================================
   GRILLE « PROCÉDÉ » (Notre fromagerie) — 6 photos, 2×3
   titre haut-gauche · photo · légende dessous
   ========================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.4vw, 50px) clamp(22px, 3vw, 44px);
  padding: clamp(24px, 4vw, 48px) 0;
}
.step__title {
  font-family: var(--font-title);
  font-weight: 500;                 /* Mendl Sans Dawn medium */
  text-transform: uppercase;
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}
.step__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.step__caption {
  font-weight: 300;                 /* Outfit light */
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  margin: 14px 0 0;
  color: var(--green);
}

/* =========================================================
   GRILLE PRODUITS — 6 familles, 2×3
   ========================================================= */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 60px) clamp(26px, 3vw, 48px);
  padding: clamp(24px, 4vw, 48px) 0 clamp(8px, 2vw, 20px);
}
.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product__img-box {
  width: 100%;
  height: clamp(200px, 18vw, 264px);
  margin-bottom: 18px;
}
.product__img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 26px rgba(26,76,49,0.16));
}
.product__title {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(15px, 1.2vw, 18px);
  margin: 0 0 12px;
}
.product__desc {
  font-weight: 300;
  font-size: clamp(13px, 0.98vw, 14.5px);
  line-height: 1.55;
  margin: 0 0 16px;
  max-width: 34ch;
}
.product__list {
  font-weight: 300;
  font-size: clamp(13px, 0.98vw, 14.5px);
  line-height: 1.7;
  margin: 0 0 16px;
}
.product__list li::before {
  content: "•";
  margin-right: 7px;
  color: var(--green);
}
.product__format {
  margin-top: auto;            /* aligne les formats sur la même ligne */
  padding-top: 14px;
  min-height: 4.2em;           /* hauteur uniforme : les filets s'alignent même si le texte passe sur 2 lignes */
  font-weight: 300;
  font-size: clamp(12.5px, 0.95vw, 14px);
  letter-spacing: 0.01em;
  border-top: 1px solid var(--line);
  width: 100%;
}

/* =========================================================
   PIED DE PAGE (commun)
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--green);
  margin-top: clamp(40px, 6vw, 80px);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 4vw, 46px) var(--gutter);
  max-width: 1340px;
  margin-inline: auto;
  font-weight: 400;
  font-size: clamp(13px, 1vw, 14.5px);
  line-height: 1.7;
}
.site-footer__col p { margin: 0; }
.site-footer__col a:hover { text-decoration: underline; }
.site-footer__col--left  { justify-self: start; text-align: left; }
.site-footer__col--right { justify-self: end;   text-align: right; }
.site-footer__brand { grid-column: 2; justify-self: center; }
.site-footer__brand img { height: clamp(40px, 4vw, 56px); width: auto; }
.site-footer__col .site-footer__social { display: flex; gap: 14px; align-items: center; margin-top: 10px; }
.site-footer__social a { display: inline-flex; color: var(--green); transition: opacity .2s ease; }
.site-footer__social a:hover { opacity: 0.55; }
.site-footer__social svg { width: 22px; height: 22px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 920px) {
  .intro { grid-template-columns: 1fr; gap: 28px; }
  .intro__photo { order: -1; max-width: 380px; }
  .products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  /* En-tête mobile : logo + burger ; le menu s'ouvre en plein écran */
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand toggle";
    align-items: center;
    padding: 13px var(--gutter);
    position: relative;
  }
  /* logo + burger au-dessus de l'overlay (cliquables pour fermer) */
  .site-header .brand { grid-area: brand; justify-self: start; position: relative; z-index: 60; }
  .nav-toggle { display: flex; grid-area: toggle; justify-self: end; position: relative; z-index: 60; }

  /* Menu plein écran */
  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 5vh, 44px);
    padding: 96px var(--gutter) 56px;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s var(--ease);
  }
  .site-header.nav-open .nav-panel { opacity: 1; visibility: visible; }

  .nav-panel .nav {
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 2.4vh, 20px);
  }
  .nav-panel .nav a {
    font-family: var(--font-title);
    font-size: clamp(30px, 9vw, 48px);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    border: 0;
    /* entrée en cascade */
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s var(--ease), transform .45s var(--ease);
  }
  .site-header.nav-open .nav-panel .nav a { opacity: 1; transform: none; }
  .site-header.nav-open .nav-panel .nav a:nth-child(1) { transition-delay: .12s; }
  .site-header.nav-open .nav-panel .nav a:nth-child(2) { transition-delay: .18s; }
  .site-header.nav-open .nav-panel .nav a:nth-child(3) { transition-delay: .24s; }

  .nav-panel .cta {
    font-size: 16px;
    padding: 0.9em 1.9em;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s var(--ease) .3s, transform .45s var(--ease) .3s;
  }
  .site-header.nav-open .nav-panel .cta { opacity: 1; transform: none; }

  /* Hero : empilé et centré */
  .hero-screen { min-height: auto; }
  .hero {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    text-align: center;
  }
  .hero__cheese { order: -1; width: min(72vw, 340px); }
  .hero__tagline--left, .hero__tagline--right {
    justify-self: center; text-align: center; max-width: 18ch;
  }
  /* La flèche (positionnée en absolu) chevauche les taglines quand le hero
     s'empile en mobile → on la retire ; le demi-trèfle reste comme accent. */
  .hero-screen .scroll-cue { display: none; }

  .process { grid-template-columns: repeat(2, 1fr); gap: 28px 22px; }

  /* Pied de page empilé et centré */
  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 22px;
  }
  .site-footer__col--left, .site-footer__col--right { justify-self: center; text-align: center; }
  .site-footer__social { justify-content: center; }
  .site-footer__brand { grid-column: 1; order: -1; }
}

@media (max-width: 460px) {
  .products { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .process  { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
}

/* =========================================================
   ANIMATIONS LÉGÈRES & MICRO-INTERACTIONS
   ========================================================= */
/* Révélation au défilement — pilotée par IntersectionObserver (js/reveal.js),
   fiable sur TOUS les navigateurs, mobile inclus (Brave, Safari…).
   IMPORTANT : le FONDU s'applique MÊME en mode « réduire les animations »
   (un fondu d'opacité est sans risque) ; seul le léger glissement vertical est
   réservé aux utilisateurs sans préférence de réduction. L'état caché n'est posé
   QUE si le JS tourne (.reveal-ready sur <html>) → sans JS, le contenu est visible. */
html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Flottement doux du fromage (accueil) — joué quel que soit le réglage du
   téléphone (voir note plus bas : vitrine de marque, animations volontairement
   maintenues même en mode réduction d'animations). */
.hero__cheese { animation: float 6.5s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* Cartes produits : élévation + léger zoom du packshot */
.product { transition: transform .3s var(--ease); }
.product:hover { transform: translateY(-6px); }
.product__img-box img { transition: transform .45s var(--ease); }
.product:hover .product__img-box img { transform: scale(1.05); }

/* Photos procédé : zoom contenu dans un cadre */
.step .media { overflow: hidden; border-radius: 2px; }
.step .media .step__img { transition: transform .55s var(--ease); }
.step:hover .media .step__img { transform: scale(1.06); }

/* Bandeaux photo : zoom très doux au survol */
.band { overflow: hidden; }
.band img { transition: transform 1.2s var(--ease); }
.band:hover img { transform: scale(1.04); }

/* NB : volontairement PAS de coupure en prefers-reduced-motion. Le propriétaire
   veut que sa vitrine s'anime TOUJOURS, y compris quand le téléphone est en mode
   économie d'énergie / « réduire les animations » (sinon Safari et Brave mobile
   restent muets). Les animations restent douces : fondus au défilement, léger
   flottement du fromage, rotation lente des trèfles. Réversible si besoin. */

/* =========================================================
   APPEL À L'ACTION AVANT LE PIED DE PAGE
   ========================================================= */
.cta-band {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: clamp(18px, 2.4vw, 26px);
  padding: clamp(46px, 7vw, 96px) 0;
}
.cta-band h2 {
  font-family: var(--font-title);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(22px, 3.4vw, 40px);
  line-height: 1.14;
  letter-spacing: 0.015em;
  text-wrap: balance;
  max-width: 18ch;
  margin: 0;
}
.cta-band .cta { grid-column: auto; justify-self: center; font-size: clamp(14px, 1.1vw, 16px); padding: 0.85em 1.7em; }

/* =========================================================
   PAGE CONTACT
   ========================================================= */
.contact { align-items: center; }
.contact__intro {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto clamp(30px, 4vw, 52px);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  text-wrap: balance;
}
.contact-card {
  background: var(--sage-tint);
  border-radius: 16px;
  padding: clamp(24px, 3.4vw, 42px);
}
.contact-list { display: grid; gap: clamp(16px, 2vw, 22px); }
.contact-item {
  display: grid;
  gap: 4px;
  padding-bottom: clamp(16px, 2vw, 22px);
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-item .label {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 12px;
  color: var(--green-soft);
}
.contact-item a, .contact-item p {
  margin: 0;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--green);
}
.contact-item a { transition: opacity .2s var(--ease); width: fit-content; }
.contact-item a:hover { opacity: .65; }
.contact-map { width: 100%; }
.contact-map img { width: 100%; border-radius: 16px; }

@media (max-width: 920px) {
  .contact .contact-map { order: 0; max-width: 520px; margin-inline: auto; }
}

/* =========================================================
   INTRO PLEINE LARGEUR 50/50 (Nos produits, Infos pratiques)
   Texte à gauche · image plein bord à droite
   ========================================================= */
.intro--split {
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0;
  min-height: min(82vh, 720px);
  margin-bottom: clamp(10px, 3vw, 40px);
}
.intro--split .intro__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(44px, 6vw, 80px);
  padding-inline-end: clamp(28px, 4vw, 56px);
  padding-inline-start: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
}
.intro--split .intro__title { max-width: 16ch; }
.intro--split .intro__lead { max-width: 32rem; }
.intro--split .intro__photo {
  position: relative;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  min-height: 320px;
}
/* le <picture> (et non l'<img>) sert de cadre absolu : évite le bug de rendu
   "position:absolute dans un parent display:contents" */
.intro--split .intro__photo picture {
  display: block;
  position: absolute;
  inset: 0;
}
.intro--split .intro__photo img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 980px) {
  .intro--split { grid-template-columns: 1fr; min-height: 0; }
  .intro--split .intro__photo { order: -1; min-height: 46vh; }
  .intro--split .intro__text {
    padding-inline: var(--gutter);
    padding-block: clamp(28px, 7vw, 52px);
  }
}
