/* ══════════════════════════════════════════════════════════
   Campo & Grano — style.css
   ══════════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Mossy green palette ── */
  --cream:      #f2f4ee;          /* off-white with a green tint          */
  --cream-dk:   #e2e8d8;          /* slightly deeper green-tinted surface  */
  --tan:        #b8c9a0;          /* light mossy green (was warm tan)      */
  --terra:      #4a6741;          /* primary mossy green (CTAs, accents)   */
  --terra-dk:   #344d2e;          /* deep forest hover state               */
  --umber:      #1e2d1a;          /* near-black with green undertone       */
  --sage:       #8fa67e;          /* mid-tone moss (aisle dots, etc.)      */
  --gold:       #c8a84b;          /* golden wheat — second accent colour   */
  --gold-dk:    #a88934;          /* golden wheat hover                    */
  --white:      #f8faf5;          /* warm white with green breath          */
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Jost', system-ui, sans-serif;
  --ease-out:   cubic-bezier(.22,.61,.36,1);
  --ease-expo:  cubic-bezier(.19,1,.22,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--umber);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── GRAIN OVERLAY ────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .032;
  background-size: 180px;
}

/* ── ANIMATION HELPERS ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-expo), transform .8s var(--ease-expo);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }
.reveal.visible  { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s var(--ease-expo), transform .7s var(--ease-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ── HEADER / NAV ─────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(245,240,232,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(61,43,31,.08);
}

.logo {
  font-family: var(--ff-serif);
  font-size: 1.6rem; font-weight: 700; letter-spacing: .01em;
  color: var(--umber);
  display: flex; align-items: center; gap: .55rem;
}

.header-logo-img {
  height: 42px; width: auto;
  transition: opacity .4s;
}

nav { display: flex; gap: 2.4rem; align-items: center; }
nav a {
  font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--umber); opacity: .65;
  transition: color .3s, opacity .3s;
  position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0);
  transition: transform .3s var(--ease-out);
}
nav a:hover              { opacity: 1; }
nav a:hover::after       { transform: scaleX(1); }

/* ── MOBILE BURGER ────────────────────────────────────── */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--umber);
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--umber);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-serif); font-size: 2.4rem; font-weight: 600;
  color: var(--cream); letter-spacing: .02em;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--tan); }

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-color: var(--umber);
  background-image:
    linear-gradient(to bottom, rgba(30,45,26,.42) 0%, rgba(30,45,26,.62) 100%),
    url('img/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 6s ease;
}
#hero.visible .hero-bg { transform: scale(1); }

.hero-kicker {
  display: inline-block;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(16px);
  animation: heroFade .8s .3s var(--ease-expo) forwards;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem 1.4rem;
  background: rgba(20, 30, 18, 0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 6px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: heroFade .9s .5s var(--ease-expo) forwards;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 700; line-height: 1.05;
  color: var(--white); letter-spacing: -.01em;
  opacity: 0; transform: translateY(24px);
  animation: heroFade .9s .5s var(--ease-expo) forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  margin-top: 1.4rem;
  font-size: 1.05rem; font-weight: 300;
  color: rgba(253,251,247,.82);
  opacity: 0; transform: translateY(18px);
  animation: heroFade .9s .75s var(--ease-expo) forwards;
}
.hero-cta {
  margin-top: 2.2rem;
  display: inline-block; padding: .85rem 2.2rem;
  background: var(--terra); color: var(--white);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  border: none; cursor: pointer;
  border-radius: 8px;
  transition: background .25s, transform .25s;
  opacity: 0;
  animation: heroFade .8s 1s var(--ease-expo) forwards;
}
.hero-cta:hover { background: var(--terra-dk); transform: translateY(-2px); }

@keyframes heroFade { to { opacity: 1; transform: translateY(0); } }

.hero-badges {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(72,103,65,.92);
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: .6rem 2.4rem; padding: 1rem 2rem;
  opacity: 0;
  animation: heroFade .8s 1.2s var(--ease-expo) forwards;
}
.hero-badge {
  display: flex; align-items: center; gap: .6rem;
  font-size: .75rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white);
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(253,251,247,.5); flex-shrink: 0;
}

/* ── SECTIONS SHARED ──────────────────────────────────── */
section { padding: 6rem 3rem; }

.section-label {
  display: block; margin-bottom: .6rem;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--terra);
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.1; color: var(--umber);
}
.section-title em { font-style: italic; }
.section-sub {
  margin-top: .8rem;
  font-size: 1rem; color: rgba(61,43,31,.6); max-width: 48ch;
}
.container { max-width: 1140px; margin: 0 auto; }

/* ── FEATURES ─────────────────────────────────────────── */
#features { background: var(--cream); }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header .section-sub { margin-left: auto; margin-right: auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.feature-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(61,43,31,.07);
  display: flex;
  flex-direction: column;
}
.feature-card-img {
  height: 140px;
  overflow: hidden;
  background: var(--terra);
}
.feature-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease-out);
}
.feature-card:hover .feature-card-img img {
  transform: scale(1.08);
}
.feature-card-img--svg img {
  object-fit: contain;
  padding: 2.5rem;
}
.feature-card-body {
  padding: 1.6rem 1.8rem 2rem;
  flex: 1;
}
.feature-card-title {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .7rem;
}
.feature-card-title i {
  font-size: 1rem;
  color: var(--terra);
  flex-shrink: 0;
}
.feature-logo-flag {
  width: 22px; height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}
.feature-card-body h3 {
  font-family: var(--ff-serif); font-size: 1.2rem; font-weight: 600;
  color: var(--umber); margin-bottom: 0;
}
.feature-card-body p {
  font-size: .88rem; color: rgba(61,43,31,.6); line-height: 1.75;
  margin-top: .5rem;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .feature-banner,
  .feature-banner--reverse { flex-direction: column; }
  .feature-banner-icon,
  .feature-banner--reverse .feature-banner-icon { flex: none; min-height: 160px; border-radius: 16px 16px 0 0; }
  .feature-banner-icon i { font-size: 4rem; }
  .banner-occitanie { width: 80px; height: 80px; }
  .feature-banner-text { padding: 2rem 1.8rem; }
  .feature-banner-text h3 { font-size: 1.3rem; }
}

/* ── PRODUCTS ─────────────────────────────────────────── */
#products { background: var(--cream); }
.products-header { margin-bottom: 3.5rem; }
.product-category { margin-bottom: 4.5rem; }
.category-label {
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 600;
  color: var(--umber); margin-bottom: 2rem;
  padding-bottom: .6rem; border-bottom: 1px solid var(--tan);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.product-card { cursor: pointer; display: flex; flex-direction: column; }
.product-thumb {
  position: relative; overflow: hidden; aspect-ratio: 1;
  background: var(--cream-dk);
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-expo), filter .5s;
}
.product-card:hover .product-thumb img { transform: scale(1.06); }
.product-info { padding: .9rem 0; }
.product-info h3 {
  font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 600;
  color: var(--umber);
}
.product-info p { font-size: .82rem; color: rgba(61,43,31,.6); margin-top: .25rem; line-height: 1.5; }
.product-badges { margin-top: .6rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.product-badges--column { flex-direction: column; flex-wrap: nowrap; }
.badge {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .2rem .55rem;
  background: var(--cream-dk); color: var(--umber);
}
.badge--ble        { background: #c8c5c5; color: #3a3030; }
.badge--sarrasin   { background: #cfe8fb; color: #2a4a60; }
.badge--pois       { background: #ffd4d0; color: #5a2a26; }
.badge--epeautre   { background: #f0deff; color: #4a2a60; }
.badge--tomate     { background: #f87168; color: #fff; }
.badge--lentilles  { background: #c4ddb0; color: #2a4220; }

/* ── FABRICATION ──────────────────────────────────────── */
.fab-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--tan);
}
.fab-block:last-child { border-bottom: none; }
.fab-block .section-label { display: block; margin-bottom: .5rem; }
.fab-block .section-title { margin-bottom: 1rem; }
.fab-block p { color: rgba(61,43,31,.7); line-height: 1.8; margin-bottom: .8rem; }
.fab-block p:last-child { margin-bottom: 0; }
.fab-block--with-img { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.fab-block--with-img.fab-block--img-right { grid-template-columns: 1fr 1fr; }
.fab-block--with-img.fab-block--img-right .fab-img { order: 2; }
.fab-block--with-img.fab-block--img-right .fab-content { order: 1; }
.fab-img { width: 100%; height: 320px; object-fit: cover; border-radius: 4px; }
.fab-img--full { height: auto; object-fit: contain; }
@media (max-width: 768px) {
  .fab-block--with-img { grid-template-columns: 1fr; gap: 1.5rem; }
  .fab-block--with-img.fab-block--img-right .fab-img { order: 0; }
  .fab-block--with-img.fab-block--img-right .fab-content { order: 0; }
  .fab-img { height: 220px; }
}

/* ── STORY ────────────────────────────────────────────── */
.story-section { padding: 5rem 3rem; background: var(--cream); }
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--cream-dk);
}
.story-block:last-child { border-bottom: none; }
.story-block--reverse { direction: rtl; }
.story-block--reverse > * { direction: ltr; }
.story-block .story-img { border-radius: 10px; overflow: hidden; }
.story-block .story-img img {
  width: 100%; height: 360px;
  object-fit: cover; display: block;
}
.story-block .story-text .section-label { margin-bottom: .6rem; display: block; }
.story-block .story-text p {
  color: rgba(61,43,31,.65);
  margin-top: 1rem;
  line-height: 1.85;
  font-size: .95rem;
}

/* ── PRODUITS STRIP ───────────────────────────────────────── */
.produits-strip { background: var(--cream-dk); padding: 5rem 3rem; }
.produits-header { margin-bottom: 3rem; }
.produits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.produit-card {
  background: var(--white);
  padding: 2.4rem 2rem;
  border-bottom: 3px solid var(--tan);
  transition: border-color .3s, transform .3s;
}
.produit-card:hover { border-color: var(--terra); transform: translateY(-4px); }
.produit-card-icon {
  width: 48px; height: 48px; margin-bottom: 1.4rem;
  background: var(--terra); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.produit-card-icon i { font-size: 20px; color: var(--white); }
.produit-card h3 {
  font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 600;
  margin-bottom: .6rem; color: var(--umber);
}
.produit-card p { font-size: .9rem; color: rgba(61,43,31,.65); line-height: 1.7; margin-bottom: 1.4rem; }
.produit-card-link {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra);
  transition: gap .25s var(--ease-out);
}
.produit-card-link:hover { gap: .8rem; }

/* ── RECIPES ──────────────────────────────────────────── */
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.recipe-card { background: var(--white); overflow: hidden; }
.recipe-thumb { aspect-ratio: 4/3; overflow: hidden; }
.recipe-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-expo);
}
.recipe-card:hover .recipe-thumb img { transform: scale(1.05); }
.recipe-body { padding: 1.6rem; }
.recipe-meta { font-size: .72rem; color: var(--terra); letter-spacing: .1em; margin-bottom: .6rem; }
.recipe-body h3 {
  font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 600;
  color: var(--umber); margin-bottom: .5rem;
}
.recipe-body p { font-size: .85rem; color: rgba(61,43,31,.6); line-height: 1.6; }

/* ── STORES PAGE ──────────────────────────────────────── */
.stores-section { padding: 4rem 3rem; background: var(--cream); }
.stores-intro { margin-bottom: 3rem; text-align: center; }
.stores-intro .section-sub { display: block; margin-left: auto; margin-right: auto; }
.stores-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem; align-items: start;
}
.stores-list {
  display: flex; flex-direction: column; gap: .5rem;
  max-height: 680px; overflow-y: auto;
  padding-right: .5rem;
}
.stores-list::-webkit-scrollbar { width: 4px; }
.stores-list::-webkit-scrollbar-track { background: var(--cream-dk); }
.stores-list::-webkit-scrollbar-thumb { background: var(--tan); }

.store-card {
  background: var(--white);
  padding: .8rem 1rem;
  border-top: 3px solid var(--cream-dk);
  cursor: pointer;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.store-card:hover,
.store-card.active {
  border-color: var(--terra);
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--terra);
}
.store-tag {
  display: inline-block; margin-bottom: .6rem;
  font-size: .67rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--terra);
}
.store-card h3 {
  font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--umber); margin-bottom: .25rem;
}
.store-card p { font-size: .83rem; color: rgba(61,43,31,.6); }
.store-aisle {
  margin-top: .6rem; display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--sage); font-weight: 500;
}
.store-aisle::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0;
}

/* Map container */
#map {
  height: 680px; width: 100%;
  border: 1px solid var(--cream-dk);
  position: sticky; top: 100px;
}
/* Custom map popup */
.leaflet-popup-content-wrapper {
  border-radius: 0 !important;
  box-shadow: 0 4px 20px rgba(61,43,31,.15) !important;
  font-family: var(--ff-sans) !important;
}
.map-popup-title {
  font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 600;
  color: var(--umber); margin-bottom: .3rem;
}
.map-popup-tag {
  font-size: .65rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--terra); margin-bottom: .4rem;
}
.map-popup-address { font-size: .82rem; color: rgba(61,43,31,.65); }
.map-popup-aisle   { font-size: .78rem; color: var(--sage); margin-top: .3rem; }

/* ── CTA BAND ─────────────────────────────────────────── */
.cta-band {
  background: var(--terra); padding: 4rem 3rem; text-align: center;
}
.cta-band h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white); margin-bottom: .8rem;
}
.cta-band p { color: rgba(253,251,247,.75); margin-bottom: 2rem; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-block; padding: .85rem 2.4rem;
  font-family: var(--ff-sans);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1.5px solid; cursor: pointer;
  border-radius: 8px;
  transition: background .25s, color .25s, transform .25s;
}
.btn-white   { background: var(--white); color: var(--terra); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--umber); border-color: var(--umber); }
.btn-outline:hover { background: var(--umber); color: var(--white); transform: translateY(-2px); }
.btn-terra   { background: var(--terra); color: var(--white); border-color: var(--terra); }
.btn-terra:hover { background: var(--terra-dk); transform: translateY(-2px); }

/* Gold button variant */
.btn-gold    { background: var(--gold); color: var(--umber); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-2px); }

/* ── CONTACT FORM ─────────────────────────────────────── */
.contact-section { padding: 4rem 3rem; background: var(--cream); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-top: 3rem; align-items: start;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem; margin-bottom: 4rem;
}
.contact-col h4 {
  font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--cream); margin-bottom: .8rem;
}
.contact-col p, .contact-col a {
  font-size: .88rem; color: rgba(245,240,232,.55); line-height: 1.9;
}
.contact-col a:hover { color: var(--tan); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
label {
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(245,240,232,.5);
}
input, textarea {
  background: rgba(245,240,232,.07);
  border: 1px solid rgba(245,240,232,.15);
  color: var(--cream); padding: .75rem 1rem;
  font-family: var(--ff-sans); font-size: .9rem; font-weight: 300;
  outline: none; resize: vertical;
  transition: border-color .25s;
}
input:focus, textarea:focus { border-color: var(--tan); }
input::placeholder, textarea::placeholder { color: rgba(245,240,232,.25); }
.form-success {
  display: none; margin-top: 1rem;
  padding: .8rem 1rem;
  background: var(--sage); color: var(--white);
  font-size: .88rem;
}

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--umber); color: var(--cream);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-col h4 {
  font-family: var(--ff-serif); font-size: 1rem; font-weight: 600;
  color: var(--cream); margin-bottom: .6rem;
}
.footer-col p, .footer-col a {
  font-size: .85rem; color: rgba(245,240,232,.55); line-height: 1.7;
}
.footer-col a:hover { color: var(--tan); }
.footer-col .footer-logo { display: block; margin-bottom: .6rem; }
.footer-col > p { color: rgba(245,240,232,.45); font-size: .82rem; }
.footer-socials {
  display: flex; gap: .8rem; margin-top: .4rem;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245,240,232,.08);
  border: 1px solid rgba(245,240,232,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,.7);
  font-size: .85rem;
  transition: background .25s, color .25s, border-color .25s;
}
.footer-social:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}

.footer-bar {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--cream);
}
.footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: .4rem; }
.footer-logo-img { display: block; width: 130px; flex-shrink: 0; background: #fff; padding: .6rem; border-radius: 6px; }
.footer-brand-text { font-size: .82rem; color: rgba(245,240,232,.55); line-height: 1.6; max-width: 160px; }
.footer-bar p { font-size: .75rem; color: rgba(245,240,232,.3); }

/* ── PAGE SYSTEM ──────────────────────────────────────── */
.page          { display: none; }
.page.active   { display: block; }
.page-top-bar  { height: 80px; background: var(--umber); }

/* ── SCROLL TO TOP ────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 44px; height: 44px; background: var(--terra);
  color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover   { transform: translateY(-3px); }
#scrollTop svg     { width: 18px; height: 18px; stroke: var(--white); fill: none; stroke-width: 2; }

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .story-block { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .story-block .story-img img { height: 240px; }
  .stores-section { padding: 2rem 1.2rem; }
  .stores-intro { margin-bottom: 1.5rem; }
  .stores-layout { grid-template-columns: 1fr; }
  #map { position: static !important; height: 350px; }
  .stores-list { max-height: 420px; overflow-y: auto; }
}
@media (max-width: 768px) {
  header { padding: 1.2rem 1.5rem; }
  nav    { display: none; }
  .burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .contact-section { padding: 3rem 1.4rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .reveal, .reveal.delay-1, .reveal.delay-2, .reveal.delay-3, .reveal.delay-4 { opacity: 1; transform: none; transition: none; }
  section   { padding: 4rem 1.4rem; }
  .cta-band { padding: 3rem 1.4rem; }
  .site-footer { padding: 3rem 1.4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .produits-strip  { padding: 4rem 1.4rem; }
  .produits-cards  { grid-template-columns: 1fr; }
  html, body { overflow-x: hidden; }
  .hero-content { display: flex; max-width: 90vw; box-sizing: border-box; }
  .hero-subtitle { font-size: .9rem; }
}
