/* =============================================================================
   LES PARIGOTS — feuille de style
   Socle réutilisable pour les sites clients Saucisse Purée (vanilla, mobile-first).
   Couleurs & typo relevées sur l'original Webflow (styles calculés réels).
   ============================================================================= */

/* ----------------------------- Design tokens ----------------------------- */
:root {
  /* Palette (observée sur le rendu) */
  --brown:        #59381f;   /* fond principal (hero, équipe, contact, footer) */
  --brown-dark:   #3f2814;
  --red:          #af0906;   /* sections rouges, boutons, labels */
  --red-bright:   #ff4903;   /* accent vif / hover */
  --accent-warm:  #ffab6b;   /* orange clair — accents texte (contraste AA sur brun) */
  --cream:        #e7c9ab;   /* titres section, bouton menu, cartes */
  --cream-light:  #ecf0ef;   /* titre hero, texte clair */
  --cream-soft:   #ffd5c4;
  --yellow:       #faeb7b;   /* accent secondaire */
  --off-white:    #f9fafb;
  --ink:          #2b1a0d;
  --text-on-dark: #ecdccb;

  /* Typo */
  --font-title: "Montserrat", Arial, sans-serif;
  --font-body:  "Open Sans", Arial, sans-serif;
  --font-serif: "Vollkorn", Georgia, "Times New Roman", serif;

  --nav-h: 68px;

  /* Rythme */
  --container: 1200px;
  --gap: 1.5rem;
  --radius: 8px;
  --radius-lg: 24px;
  --section-pad: 5rem;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ----------------------------- Reset léger ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-on-dark);
  background: var(--brown);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Grain / texture papier subtil (ambiance « comptoir d'antan ») */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: .045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Ancrage : compenser la nav sticky lors des sauts d'ancre */
[id] { scroll-margin-top: calc(var(--nav-h) + 10px); }

/* Eyebrow serif (accent d'antan) */
.eyebrow {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--cream);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; opacity: .8; }
.eyebrow--cream { color: var(--cream); }

/* ----------------------------- Nav sticky -------------------------------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--brown) 82%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231, 201, 171, .14);
}
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--nav-h); gap: 1rem; }
.site-nav__brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-title); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--cream-light); font-size: .95rem; }
.site-nav__brand img { width: 34px; height: 34px; }
.site-nav__links { display: flex; align-items: center; gap: 1.75rem; }
.site-nav__links > a:not(.btn) {
  font-family: var(--font-title); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: .8rem; color: var(--text-on-dark); position: relative;
}
.site-nav__links > a:not(.btn):hover { color: var(--cream-light); }
.site-nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--red-bright); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.site-nav__links > a:not(.btn):hover::after { transform: scaleX(1); }
.btn--sm { padding: .62rem 1.15rem; font-size: .78rem; border-radius: 6px; }
@media (max-width: 767px) {
  :root { --nav-h: 58px; }
  .site-nav__links > a:not(.btn) { display: none; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* Accessibilité : skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--cream); color: var(--brown); padding: .75rem 1rem; border-radius: var(--radius);
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ----------------------------- Layout ------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }

.section-title {
  font-family: var(--font-title);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: .01em;
  font-size: clamp(2.25rem, 6vw, 4rem);
}

/* ----------------------------- Boutons ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .95rem;
  padding: 1.15rem 2.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-bright); }
.btn--cream { background: var(--cream); color: var(--brown); }
.btn--cream:hover { background: var(--cream-soft); }
.btn--block { display: flex; width: 100%; }

/* ============================================================ HERO ======== */
.hero {
  background: var(--brown);
  padding-block: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero__title {
  font-family: var(--font-title);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--cream-light);
  line-height: 1.1;
  letter-spacing: .005em;
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  max-width: 20ch;
}
.hero__text {
  margin-top: 1.5rem;
  max-width: 46ch;
  color: var(--text-on-dark);
  font-size: 1.05rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero__aside { display: grid; gap: 2rem; justify-items: center; }
/* Mascotte (verre + « P ») — animée dès le chargement puis idle vivant */
.hero__illustration {
  width: min(440px, 86%); height: auto;
  transform-origin: 50% 92%;
  animation: mascot-in 1.15s var(--ease) both, mascot-idle 5.5s ease-in-out 1.25s infinite;
}
@keyframes mascot-in {
  0%   { opacity: 0; transform: translateY(36px) rotate(-5deg) scale(.92); }
  55%  { opacity: 1; transform: translateY(-6px) rotate(3deg) scale(1.015); }
  75%  { transform: translateY(0) rotate(-1.5deg) scale(1); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
}
@keyframes mascot-idle {
  0%, 100% { transform: translateY(0) rotate(-1.6deg); }
  50%      { transform: translateY(-7px) rotate(1.6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__illustration { animation: none; }
}

/* ============================================================ ÉQUIPE ====== */
.team { background: var(--brown); padding-block: var(--section-pad); }
.team__title { color: var(--cream); }
.team__intro { margin-top: 1.5rem; max-width: 70ch; color: var(--text-on-dark); }

/* Carrousel */
.carousel { margin-top: 2.5rem; position: relative; }
.carousel__track {
  display: flex;
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.team-card { flex: 0 0 76%; scroll-snap-align: start; }
.team-card__img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); background: var(--brown-dark);
}
.team-card__name {
  font-family: var(--font-title); font-weight: 800; text-transform: uppercase;
  color: var(--cream-light); font-size: 1.5rem; margin-top: 1rem; line-height: 1;
}
.team-card__role { color: var(--text-on-dark); font-size: .95rem; margin-top: .35rem; text-transform: uppercase; letter-spacing: .02em; }

.carousel__nav { display: flex; gap: .75rem; justify-content: flex-end; margin-top: 1.25rem; }
.carousel__btn {
  width: 3rem; height: 3rem; border-radius: 50%;
  border: 2px solid var(--cream); background: transparent; color: var(--cream);
  font-size: 1.1rem; display: grid; place-items: center;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.carousel__btn:hover { background: var(--cream); color: var(--brown); }

/* ============================================================ MENU (contraste inversé : fond beige, écriture marron) ======== */
.menu { background: #f2e8d5; padding-block: var(--section-pad); }
.menu .eyebrow { color: var(--brown); }
.menu .menu__title { color: var(--brown-dark); }
.menu__intro { margin-top: 1rem; max-width: 60ch; color: var(--brown); }
.menu__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 3.5rem;
}
.menu__cat-title {
  font-family: var(--font-title);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--brown);
  font-size: 1.3rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid rgba(89, 56, 31, .3);
}
.menu__list { margin-top: 1.25rem; display: grid; gap: 1.1rem; }
.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.menu-item__main { display: flex; flex-direction: column; gap: .15rem; }
.menu-item__name { color: var(--brown-dark); font-weight: 600; line-height: 1.3; }
.menu-item__en { color: #785636; font-size: .82rem; font-style: italic; }
.menu-item__price {
  flex: 0 0 auto;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--brown-dark);
  white-space: nowrap;
}
.menu__cat--suggestion .menu__suggestion {
  margin-top: 1.25rem; color: var(--brown-dark); font-weight: 600;
  display: flex; flex-direction: column; gap: .15rem;
}
.menu__actions {
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
/* Bouton « Télécharger » : brun foncé pour rester lisible sur beige */
.menu .btn--cream { background: var(--brown-dark); color: var(--cream-light); }
.menu .btn--cream:hover { background: var(--brown); }

/* ============================================================ LA BOBINE (galerie cinématique) ==== */
.bobine {
  --line: rgba(231, 201, 171, .28);
  --pad-x: clamp(18px, 4vw, 64px);
  --frame-gap: clamp(10px, 1.4vw, 22px);
  --shadow-frame: 0 30px 70px -30px rgba(0, 0, 0, .75);
  --ease-b: cubic-bezier(.22, .61, .36, 1);
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.5rem, 4vw, 3rem);
  background: radial-gradient(120% 120% at 50% -10%, #4a2e18 0%, var(--brown-dark) 55%, #2c1a0d 100%);
  color: var(--cream);
}

/* En-tête */
.bobine__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 0 var(--pad-x); margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.bobine__kicker {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-title); font-weight: 800;
  letter-spacing: .28em; text-transform: uppercase; font-size: 11px; color: var(--cream-soft);
}
.bobine__kicker::before { content: ""; width: 34px; height: 2px; background: var(--red); display: inline-block; }
.bobine__title {
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase;
  letter-spacing: .02em; line-height: .92; margin: 12px 0 0;
  font-size: clamp(34px, 6.2vw, 72px); color: var(--cream-light);
}
.bobine__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 600;
  text-transform: none; letter-spacing: 0; color: var(--cream);
  display: inline-block; font-size: .58em; margin-left: .12em;
}
.bobine__note {
  max-width: 34ch; text-align: right;
  font-family: var(--font-serif); font-style: italic; font-size: clamp(14px, 1.5vw, 17px);
  color: var(--cream); opacity: .85; line-height: 1.5;
}

/* Piste horizontale */
.bobine__viewport { position: relative; }
.bobine__track {
  display: flex; gap: var(--frame-gap);
  padding: 6px var(--pad-x) 4px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth; scrollbar-width: none;
}
.bobine__track::-webkit-scrollbar { display: none; }

.bobine .frame {
  position: relative; flex: 0 0 auto; scroll-snap-align: center;
  height: min(74vh, 660px); border-radius: 6px; overflow: hidden;
  background: #2a190c; box-shadow: var(--shadow-frame);
  outline: 1px solid var(--line); outline-offset: -1px;
}
.bobine .frame.landscape { aspect-ratio: 3 / 2; }
.bobine .frame.portrait { aspect-ratio: 2 / 3; }
.bobine .frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.06); filter: saturate(1.02) contrast(1.02);
  transition: transform 1.1s var(--ease-b), filter .8s var(--ease-b);
}
.bobine .frame:hover img { transform: scale(1.11); }
.bobine .frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(20,10,4,.82) 0%, rgba(20,10,4,.34) 26%, rgba(20,10,4,0) 52%);
  opacity: .96; transition: opacity .6s var(--ease-b);
}
.bobine .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(16px, 2.4vw, 30px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  transform: translateY(6px); opacity: .94;
  transition: transform .6s var(--ease-b), opacity .6s var(--ease-b);
}
.bobine .frame:hover .cap { transform: none; opacity: 1; }
.bobine .cap-txt { max-width: 80%; }
.bobine .cap-role {
  font-family: var(--font-title); font-weight: 800; text-transform: uppercase;
  letter-spacing: .26em; font-size: 10px; color: var(--cream-soft);
  display: flex; align-items: center; gap: 9px; margin-bottom: 8px;
}
.bobine .cap-role::before { content: ""; width: 16px; height: 1.5px; background: var(--red); }
.bobine .cap-title {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  color: var(--off-white); line-height: 1.15; font-size: clamp(19px, 2.4vw, 30px);
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.bobine .cap-no {
  font-family: var(--font-title); font-weight: 800; font-size: 11px; letter-spacing: .16em;
  color: var(--cream); white-space: nowrap; opacity: .8;
  border: 1px solid var(--line); border-radius: 99px; padding: 5px 11px;
}

/* Carte de fin */
.bobine .frame.endcard {
  display: grid; place-items: center; text-align: center;
  aspect-ratio: 3 / 2; padding: clamp(24px, 4vw, 52px);
  background: radial-gradient(120% 130% at 50% 0%, #6a3f20 0%, var(--brown) 60%, var(--brown-dark) 100%);
  outline-color: rgba(231,201,171,.4);
}
.bobine .frame.endcard::after { display: none; }
.bobine .end-in { max-width: 30ch; }
.bobine .end-k { font-family: var(--font-title); font-weight: 800; letter-spacing: .3em; text-transform: uppercase; font-size: 11px; color: var(--cream-soft); margin: 0; }
.bobine .end-h { font-family: var(--font-title); font-weight: 900; text-transform: uppercase; line-height: .95; margin: 14px 0 16px; font-size: clamp(26px, 3.2vw, 42px); color: var(--cream-light); }
.bobine .end-p { font-family: var(--font-serif); font-style: italic; color: var(--cream); line-height: 1.55; font-size: clamp(15px, 1.6vw, 18px); margin: 0; }
.bobine .end-line { display: block; width: 44px; height: 2px; background: var(--red); margin: 18px auto 0; }

/* Pied : progression + flèches + hint */
.bobine__foot { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 28px); padding: clamp(1.1rem, 3vw, 1.9rem) var(--pad-x) 0; }
.bobine__progress { position: relative; flex: 1; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.bobine__bar { position: absolute; inset: 0 auto 0 0; width: 12%; background: var(--red); border-radius: 2px; transition: width .18s linear; }
.bobine__counter { font-family: var(--font-title); font-weight: 800; letter-spacing: .14em; font-size: 12px; color: var(--cream); white-space: nowrap; }
.bobine__counter b { color: var(--cream-light); }
.bobine__counter .sep { opacity: .5; margin: 0 4px; }
.bobine__arrows { display: flex; gap: 8px; }
.bobine__arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(231,201,171,.05);
  color: var(--cream); cursor: pointer; display: grid; place-items: center;
  transition: background .3s var(--ease-b), border-color .3s var(--ease-b), transform .3s var(--ease-b), color .3s var(--ease-b);
}
.bobine__arrow:hover { background: var(--red); border-color: var(--red); color: var(--off-white); transform: translateY(-2px); }
.bobine__arrow:active { transform: translateY(0); }
.bobine__arrow:disabled { opacity: .32; cursor: default; transform: none; background: rgba(231,201,171,.05); border-color: var(--line); color: var(--cream); }
.bobine__arrow svg { width: 18px; height: 18px; display: block; }
.bobine__hint { display: flex; align-items: center; gap: 9px; font-family: var(--font-title); font-weight: 600; text-transform: uppercase; letter-spacing: .22em; font-size: 10px; color: var(--cream-soft); opacity: .8; white-space: nowrap; }
.bobine__hint .drag { width: 26px; height: 12px; border: 1px solid var(--line); border-radius: 8px; position: relative; }
.bobine__hint .drag::before { content: ""; position: absolute; top: 1.5px; left: 2px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: bobine-slide 2.4s var(--ease-b) infinite; }
@keyframes bobine-slide { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(13px); } }

.bobine .frame:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.bobine__arrow:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.bobine__track:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }

@media (max-width: 767px) {
  .bobine__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bobine__note { text-align: left; max-width: 40ch; }
  .bobine .frame { height: auto; width: min(86vw, 420px); }
  .bobine .frame.landscape { aspect-ratio: 4 / 5; }
  .bobine .frame.portrait { aspect-ratio: 3 / 4; }
  .bobine .frame.endcard { aspect-ratio: 4 / 5; }
  .bobine__track { padding-left: calc((100vw - min(86vw, 420px)) / 2); padding-right: calc((100vw - min(86vw, 420px)) / 2); gap: 14px; }
  .bobine .cap { transform: none; opacity: 1; }
  .bobine .frame::after { opacity: 1; }
  .bobine__hint, .bobine__arrows { display: none; }
  .bobine__foot { padding-top: 1.1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .bobine .frame img { transform: none; }
  .bobine .frame:hover img { transform: scale(1.03); }
  .bobine__track { scroll-behavior: auto; }
  .bobine__hint .drag::before { animation: none; }
}

/* ============================================================ CTA BAND ==== */
.cta-band { background: var(--red); padding-block: clamp(2rem, 5vw, 4rem); }
.cta-card {
  background: var(--cream);
  color: var(--brown);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  text-align: center;
  max-width: 820px; margin-inline: auto;
}
.cta-card__title {
  font-family: var(--font-title); font-weight: 900; text-transform: uppercase;
  color: var(--red); font-size: clamp(2rem, 5vw, 3rem); line-height: 1.1;
}
.cta-card__text { margin: 1.25rem auto 2rem; max-width: 52ch; color: var(--brown-dark); }

/* ============================================================ FAQ ========= */
.faq { background: var(--brown); padding-block: var(--section-pad); }
.faq__title { color: var(--cream-light); }
.faq__list { margin-top: 2.5rem; max-width: 820px; display: grid; gap: .85rem; }
.faq__item {
  background: rgba(231, 201, 171, .05);
  border: 1px solid rgba(231, 201, 171, .16);
  border-radius: var(--radius);
  padding: 0 1.25rem;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.faq__item[open] { border-color: rgba(231, 201, 171, .34); background: rgba(231, 201, 171, .08); }
.faq__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-title); font-weight: 700; font-size: 1.02rem;
  color: var(--cream-light);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: ""; flex: 0 0 auto; width: 12px; height: 12px;
  border-right: 2px solid var(--cream); border-bottom: 2px solid var(--cream);
  transform: rotate(45deg); transition: transform .25s var(--ease); margin-right: 4px;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__q:hover { color: #fff; }
.faq__a { padding: 0 0 1.2rem; color: var(--text-on-dark); max-width: 68ch; }
.faq__a p { margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq__q::after { transition: none; } }

/* ============================================================ CONTACT ===== */
.contact { background: var(--brown); padding-block: var(--section-pad); }
.contact__inner { display: grid; gap: 3rem; grid-template-columns: 1fr; }
.section-title { color: var(--cream-light); }
.contact .section-title { color: var(--cream-light); }
.contact__lead { margin-top: 1rem; color: var(--text-on-dark); }
.contact__addr { margin-top: .75rem; color: var(--text-on-dark); max-width: 46ch; }

.contact__list { display: grid; gap: 1.5rem; align-content: start; }
.contact__item { display: flex; gap: 1rem; align-items: center; }
.contact__icon {
  flex: 0 0 auto; width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center; font-size: 1.1rem;
}
.contact__label { font-family: var(--font-title); font-weight: 700; text-transform: uppercase; color: var(--cream); font-size: 1rem; }
.contact__value { color: var(--text-on-dark); word-break: break-word; }
.contact__value:hover { color: #fff; text-decoration: underline; }

/* ============================================================ FOOTER ====== */
.footer { background: var(--brown-dark); border-top: 3px solid var(--red); padding-block: 2rem; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer__social, .footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.footer__social a:hover, .footer__legal a:hover { color: var(--cream); text-decoration: underline; }
.footer__brand { font-size: .8rem; letter-spacing: .04em; opacity: .7; }
.footer__brand a { font-size: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer a, .footer span { font-size: .9rem; }

/* =============================================================================
   RESPONSIVE — breakpoints alignés sur l'original (Webflow standard)
   ============================================================================= */

/* Tablette ≥ 768px */
@media (min-width: 768px) {
  .contact__inner { grid-template-columns: 1.1fr 1fr; align-items: start; }
  .team-card { flex-basis: 40%; }
  .menu__grid { grid-template-columns: 1fr 1fr; }
}

/* Desktop ≥ 992px */
@media (min-width: 992px) {
  .hero__inner { grid-template-columns: 1.15fr .85fr; }
  .hero__aside { justify-items: end; }

  /* le carrousel affiche ~3 cartes, scroll pour le reste */
  .team-card { flex-basis: calc((100% - 2 * var(--gap)) / 3); }
}

/* Grand desktop ≥ 1280px */
@media (min-width: 1280px) {
  :root { --section-pad: 6rem; }
}

/* Mobile ≤ 479px : ajustements fins */
@media (max-width: 479px) {
  .hero__actions .btn { flex: 1 1 auto; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* Préférence utilisateur : réduire les animations */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Reveal au scroll (progressif) — état caché UNIQUEMENT si JS actif (html.js),
   sinon le contenu reste visible (SEO + robustesse + no-JS). */
html.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
