/* ============================================================
   Spesa Italia — Le marché italien · « Mercato Riviera »
   Palette tirée du blason du client (bleu profond + crème)
   Signature : store banne festonné du marché italien
   ============================================================ */

:root {
  --blu: #1B3A6B;          /* bleu blason — encre principale */
  --blu-notte: #122A4F;    /* bleu nuit — sections sombres */
  --blu-soft: #2C4E85;
  --crema: #FAF5EA;        /* fond crème burrata */
  --burrata: #FFFDF6;      /* cartes */
  --sabbia: #EFE5D0;       /* surface alternative */
  --bordo: #E2D6BC;        /* traits, bordures */
  --verde: #2E7D4F;        /* vert italien — accents larges */
  --verde-scuro: #1E5C39;  /* vert lisible petit texte (AA) */
  --rosso: #C23A2B;        /* rouge italien — accents larges */
  --rosso-scuro: #A22F22;  /* rouge lisible petit texte */
  --limone: #F2C230;       /* citron des affiches — décor, étoiles */
  --ink-soft: #43537A;     /* texte secondaire sur crème (AA) */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Yellowtail", "Snell Roundhand", cursive;
  --header-h: 76px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(27, 58, 107, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--crema);
  color: var(--blu);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(1160px, 92%); margin-inline: auto; }

section[id], footer[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ---------- Reveal (gated par .js) ---------- */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in.d1 { transition-delay: .08s; }
.js .reveal.in.d2 { transition-delay: .16s; }
.js .reveal.in.d3 { transition-delay: .24s; }

/* ---------- Typo ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; letter-spacing: -.01em; }

.script { font-family: var(--font-script); font-weight: 400; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--rosso-scuro);
  margin-bottom: .35rem;
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.6rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.section-head p { color: var(--ink-soft); margin-top: .7rem; font-size: 1.04rem; }

/* ---------- Store banne festonné (signature) ---------- */
.awning { height: 30px; position: relative; pointer-events: none; }
.awning::before {
  /* bande rayée du store */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 12px;
  background: repeating-linear-gradient(90deg,
    var(--awn, var(--blu)) 0 26px, var(--crema) 26px 52px);
}
.awning::after {
  /* feston */
  content: ""; position: absolute; inset: 12px 0 0 0;
  background:
    radial-gradient(circle at 13px 0, var(--awn, var(--blu)) 0 12px, transparent 13px) repeat-x;
  background-size: 52px 18px;
}
.awning.alt::before {
  background: repeating-linear-gradient(90deg,
    var(--crema) 0 26px, var(--awn, var(--blu)) 26px 52px);
}
.awning--verde { --awn: var(--verde); }
.awning--rosso { --awn: var(--rosso); }
.awning--on-dark::before {
  background: repeating-linear-gradient(90deg,
    var(--awn, var(--blu)) 0 26px, var(--blu-notte) 26px 52px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 245, 234, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bordo);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; gap: 1.4rem;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.brand svg { height: 52px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-script); font-size: 1.5rem; color: var(--blu); }
.brand-sub { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rosso-scuro); font-weight: 700; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 1.5rem; white-space: nowrap; }
.main-nav a {
  text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--blu);
  padding: .3rem 0; border-bottom: 2px solid transparent; transition: border-color .2s;
}
.main-nav a:hover { border-bottom-color: var(--rosso); }

.lang-switch {
  display: flex; align-items: center; gap: .3rem; flex-shrink: 0;
  font-size: .85rem; font-weight: 700;
}
.lang-switch a { text-decoration: none; padding: .2rem .4rem; border-radius: 6px; color: var(--ink-soft); }
.lang-switch a:hover { background: var(--sabbia); }
.lang-switch .active { color: var(--crema); background: var(--blu); }
.lang-switch .sep { color: var(--bordo); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: .97rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blu); color: var(--crema); box-shadow: 0 6px 18px rgba(27,58,107,.25); }
.btn-primary:hover { background: var(--blu-soft); }
.btn-outline { border-color: var(--blu); color: var(--blu); background: transparent; }
.btn-outline:hover { background: var(--blu); color: var(--crema); }
.btn-light { background: var(--crema); color: var(--blu); }
.btn-outline-light { border-color: rgba(250,245,234,.55); color: var(--crema); }
.btn-outline-light:hover { background: rgba(250,245,234,.12); }
.btn-sm { padding: .5rem 1rem; font-size: .88rem; }
.header-cta { flex-shrink: 0; }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 24px; height: 2.5px; background: var(--blu); border-radius: 2px; transition: transform .25s, opacity .25s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); margin: .2rem 0 1.1rem; }
.hero h1 em { font-style: italic; color: var(--rosso-scuro); }
.hero-lead { color: var(--ink-soft); font-size: 1.12rem; max-width: 34rem; margin-bottom: 1.6rem; }

.rating-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--burrata); border: 1px solid var(--bordo); border-radius: 999px;
  padding: .45rem 1rem .45rem .6rem; text-decoration: none;
  font-size: .9rem; font-weight: 600; color: var(--blu);
  box-shadow: var(--shadow); margin-bottom: 1.4rem;
}
.rating-badge:hover { border-color: var(--blu); }
.rating-badge .g-badge { width: 26px; height: 26px; }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 15px; height: 15px; fill: var(--limone); }
.rating-badge small { color: var(--ink-soft); font-weight: 500; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.5rem; }

.hero-notes { display: flex; flex-wrap: wrap; gap: 1.1rem; color: var(--ink-soft); font-size: .9rem; font-weight: 600; }
.hero-notes span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-notes svg { width: 16px; height: 16px; stroke: var(--verde-scuro); flex-shrink: 0; }

/* Étal / carrousel de scènes */
.stall { position: relative; }
.stall-frame {
  background: var(--burrata); border: 1.5px solid var(--bordo); border-radius: 20px;
  box-shadow: var(--shadow); overflow: hidden;
}
.stall-awning { height: 34px; position: relative; }
.stall-awning::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 16px;
  background: repeating-linear-gradient(90deg, var(--blu) 0 24px, var(--burrata) 24px 48px);
}
.stall-awning::after {
  content: ""; position: absolute; inset: 16px 0 0 0;
  background: radial-gradient(circle at 12px 0, var(--blu) 0 11px, transparent 12px) repeat-x;
  background-size: 48px 16px;
}
.scenes { position: relative; aspect-ratio: 46 / 33; }
.scene { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.scene.is-active { opacity: 1; }
.scene svg { width: 100%; height: 100%; display: block; }
.scene-chip {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  background: var(--blu); color: var(--crema);
  font-weight: 700; font-size: .85rem; white-space: nowrap;
  padding: .4rem 1.05rem; border-radius: 999px; letter-spacing: .02em;
}
.scene-chip em { font-family: var(--font-script); font-style: normal; font-size: 1rem; color: var(--limone); margin-right: .35rem; }
.stall-dots { display: flex; justify-content: center; gap: .5rem; padding: .9rem 0 1rem; }
.stall-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 1.5px solid var(--blu);
  background: transparent; cursor: pointer; padding: 0; transition: background .2s, transform .2s;
}
.stall-dots button.on { background: var(--blu); transform: scale(1.15); }
.stall-dots button:hover { background: var(--blu-soft); }

/* Animations internes des scènes (rejouées à chaque activation) */
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes sway { 0%,100% { transform: rotate(-3deg); } 50% { transform: rotate(3deg); } }
@keyframes rise { 0% { transform: translateY(0); opacity: .9; } 100% { transform: translateY(-46px); opacity: 0; } }
@keyframes steam { 0% { transform: translateY(0) scaleX(1); opacity: 0; } 25% { opacity: .8; } 100% { transform: translateY(-26px) scaleX(1.4); opacity: 0; } }
@keyframes slideIn { 0% { transform: translateX(26px); opacity: 0; } 100% { transform: none; opacity: 1; } }
@keyframes popIn { 0% { transform: scale(.6); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
@keyframes tagSwing { 0%,100% { transform: rotate(-6deg); } 50% { transform: rotate(7deg); } }

.js .scene.is-active .a-bob { animation: bob 3.2s ease-in-out infinite; }
.js .scene.is-active .a-sway { animation: sway 3.6s ease-in-out infinite; transform-origin: top center; }
.js .scene.is-active .a-bubble { animation: rise 2.6s linear infinite; }
.js .scene.is-active .a-bubble.b2 { animation-delay: .9s; }
.js .scene.is-active .a-bubble.b3 { animation-delay: 1.7s; }
.js .scene.is-active .a-steam { animation: steam 3s ease-out infinite; }
.js .scene.is-active .a-steam.s2 { animation-delay: 1.4s; }
.js .scene.is-active .a-slide { animation: slideIn .9s ease both; }
.js .scene.is-active .a-pop { animation: popIn .7s ease both; }
.js .scene.is-active .a-pop.p2 { animation-delay: .18s; }
.js .scene.is-active .a-pop.p3 { animation-delay: .36s; }
.js .scene.is-active .a-tag { animation: tagSwing 3.4s ease-in-out infinite; transform-origin: top center; }

/* ---------- Bandeau réassurance ---------- */
.ribbon-strip { background: var(--blu); color: var(--crema); padding: .95rem 0; }
.ribbon-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.4rem; font-weight: 600; font-size: .95rem; }
.ribbon-strip span { display: inline-flex; align-items: center; gap: .5rem; }
.ribbon-strip svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ---------- Rayons ---------- */
.rayons { padding: clamp(3.4rem, 7vw, 5.6rem) 0 clamp(3rem, 6vw, 5rem); }
.rayons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.rayon-card {
  background: var(--burrata); border: 1.5px solid var(--bordo); border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.6rem; position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.rayon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blu); }
.rayon-card .icon { width: 64px; height: 64px; margin-bottom: 1rem; }
.rayon-card h3 { font-size: 1.22rem; margin-bottom: .45rem; }
.rayon-card h3 em { display: block; font-family: var(--font-script); font-style: normal; font-size: 1.02rem; color: var(--rosso-scuro); font-weight: 400; }
.rayon-card p { color: var(--ink-soft); font-size: .93rem; }
.rayon-card .badge-cadeau {
  position: absolute; top: 14px; right: 14px;
  background: var(--rosso); color: #fff; font-size: .7rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; padding: .25rem .6rem; border-radius: 999px;
}
.rayons-note { text-align: center; margin-top: 1.8rem; color: var(--ink-soft); font-size: .95rem; }
.rayons-note strong { color: var(--verde-scuro); }

/* ---------- Boutiques ---------- */
.boutiques { background: var(--sabbia); padding: clamp(3.4rem, 7vw, 5.6rem) 0 clamp(3.6rem, 7vw, 5.8rem); }
.boutiques-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.shop-card {
  background: var(--burrata); border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--bordo); display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.shop-awning { height: 26px; position: relative; flex-shrink: 0; }
.shop-awning::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 12px;
  background: repeating-linear-gradient(90deg, var(--awn) 0 22px, var(--burrata) 22px 44px);
}
.shop-awning::after {
  content: ""; position: absolute; inset: 12px 0 0 0;
  background: radial-gradient(circle at 11px 0, var(--awn) 0 10px, transparent 11px) repeat-x;
  background-size: 44px 14px;
}
.shop-card--port { --awn: var(--blu); }
.shop-card--nord { --awn: var(--verde); }
.shop-card--antibes { --awn: var(--rosso); }
.shop-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.shop-tag {
  align-self: flex-start; font-size: .72rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .8rem;
}
.shop-card--port .shop-tag { background: rgba(27,58,107,.1); color: var(--blu); }
.shop-card--nord .shop-tag { background: rgba(46,125,79,.13); color: var(--verde-scuro); }
.shop-card--antibes .shop-tag { background: rgba(194,58,43,.12); color: var(--rosso-scuro); }
.shop-card h3 { font-size: 1.45rem; }
.shop-card h3 small { display: block; font-family: var(--font-script); font-size: 1.05rem; color: var(--ink-soft); font-weight: 400; margin-top: .1rem; }
.shop-rating {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .55rem;
  font-size: .86rem; font-weight: 700; color: var(--blu); text-decoration: none;
}
.shop-rating:hover { text-decoration: underline; }
.shop-rating small { color: var(--ink-soft); font-weight: 500; }
.shop-new { margin-top: .55rem; font-size: .86rem; font-weight: 700; color: var(--rosso-scuro); }
.shop-addr { margin: .9rem 0 .2rem; color: var(--ink-soft); font-size: .95rem; font-style: normal; }
.shop-addr strong { color: var(--blu); }
.shop-hours { margin: .8rem 0 1.2rem; font-size: .88rem; color: var(--ink-soft); border-top: 1px dashed var(--bordo); padding-top: .8rem; }
.shop-hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .12rem 0; }
.shop-hours .open7 { color: var(--verde-scuro); font-weight: 700; }
.shop-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: .6rem; }
.shop-actions .btn { flex: 1 1 auto; }
.shop-actions svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Avis ---------- */
.avis { padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  background: var(--burrata); border: 1.5px solid var(--bordo); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem; display: flex; flex-direction: column; gap: .8rem;
  position: relative;
}
.review-card .stars svg { width: 16px; height: 16px; }
.review-card blockquote { font-size: .96rem; color: var(--blu); font-style: italic; flex: 1; }
.review-meta { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: var(--ink-soft); }
.review-meta .g-badge { width: 22px; height: 22px; flex-shrink: 0; }
.review-meta strong { color: var(--blu); }
.review-shop {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: .22rem .55rem; border-radius: 999px; background: var(--sabbia); color: var(--ink-soft);
}
.avis-links { text-align: center; margin-top: 2.2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; }

/* ---------- Galerie teaser + page ---------- */
.galerie-teaser { background: var(--sabbia); padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
.teaser-grid a, .teaser-grid .video-tile { display: block; border-radius: 14px; overflow: hidden; border: 1.5px solid var(--bordo); position: relative; }
.teaser-grid img, .teaser-grid video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; display: block; transition: transform .35s ease; }
.teaser-grid a:hover img { transform: scale(1.05); }
.video-tile .video-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(18, 42, 79, .82); color: var(--crema);
  font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: .28rem .65rem; border-radius: 999px;
}
.video-tile .video-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--rosso); }
.teaser-cta { text-align: center; }

.page-hero { padding: clamp(2.6rem, 5vw, 4rem) 0 clamp(1.6rem, 3vw, 2.4rem); text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .7rem; }
.page-hero p { color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin: 1.8rem 0 2.4rem; }
.filters .chip {
  border: 1.5px solid var(--blu); background: transparent; color: var(--blu);
  font-weight: 700; font-size: .9rem; font-family: var(--font-body);
  padding: .5rem 1.1rem; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s;
}
.filters .chip:hover { background: rgba(27,58,107,.08); }
.filters .chip.on { background: var(--blu); color: var(--crema); }
.filters .chip small { font-weight: 600; opacity: .75; }

/* Galerie masonry — ratios naturels, colonnes CSS */
.gallery-grid { columns: 3 300px; column-gap: 1.1rem; padding-bottom: 3.5rem; }
.gallery-grid figure {
  break-inside: avoid; position: relative; margin: 0 0 1.1rem;
  animation: galFade .45s ease both;
}
.gallery-grid figure[hidden] { display: none; }
@keyframes galFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.galerie-btn {
  display: block; width: 100%; padding: 0; border: 0;
  background: var(--blu-notte); cursor: zoom-in;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 28px -18px rgba(27, 58, 107, .55);
}
.galerie-btn img { width: 100%; height: auto; display: block; transition: transform .35s ease; }
.galerie-btn:hover img, .galerie-btn:focus-visible img { transform: scale(1.045); }
.gallery-grid figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem .95rem .75rem;
  font-size: .88rem; font-weight: 700; color: var(--crema);
  text-shadow: 0 1px 3px rgba(18, 42, 79, .6);
  background: linear-gradient(to top, rgba(18, 42, 79, .82), rgba(18, 42, 79, 0));
  border-radius: 0 0 16px 16px; pointer-events: none;
}

/* Lightbox — margin:auto obligatoire (le reset * { margin:0 } écrase le centrage natif du dialog) */
.lightbox {
  margin: auto; border: 0; padding: 0; background: transparent;
  max-width: min(94vw, 1000px);
}
.lightbox::backdrop { background: rgba(18, 42, 79, .88); backdrop-filter: blur(4px); }
.lightbox-inner { position: relative; background: var(--burrata); border-radius: 18px; overflow: hidden; }
.lightbox-inner img { width: 100%; max-height: 80vh; object-fit: contain; background: var(--blu-notte); display: block; }
.lightbox-caption { padding: .85rem 3.5rem .85rem 1.2rem; font-size: .95rem; color: var(--blu); }
.lightbox-close, .lightbox-nav {
  position: absolute; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%; border: 0;
  background: rgba(250, 245, 234, .92); color: var(--blu);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: background-color .15s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--sabbia); }
.lightbox-close { top: .7rem; right: .7rem; }
.lightbox-nav.prev { top: 50%; left: .7rem; transform: translateY(-50%); }
.lightbox-nav.next { top: 50%; right: .7rem; transform: translateY(-50%); }

/* ---------- Histoire ---------- */
.histoire { padding: clamp(3.6rem, 7vw, 6rem) 0; text-align: center; position: relative; }
.histoire .lemon-divider { width: 190px; margin: 0 auto 1.6rem; }
.histoire h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); max-width: 780px; margin-inline: auto; }
.histoire p { color: var(--ink-soft); max-width: 640px; margin: 1.1rem auto 0; font-size: 1.05rem; }
.histoire .mission {
  font-family: var(--font-display); font-style: italic; font-size: 1.18rem; color: var(--blu);
  max-width: 620px; margin: 1.8rem auto 0; padding: 1.4rem 1.8rem;
  border-left: 3px solid var(--limone); background: var(--burrata); border-radius: 0 14px 14px 0;
  text-align: left;
}
.histoire .mission footer { font-family: var(--font-body); font-style: normal; font-size: .85rem; color: var(--ink-soft); margin-top: .6rem; }

/* ---------- Contact ---------- */
.contact { background: var(--blu-notte); color: var(--crema); padding: clamp(3.6rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 4.6rem); }
.contact .section-head h2, .contact .section-head { color: var(--crema); }
.contact .section-head p { color: rgba(250,245,234,.75); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2.4rem; }
.contact-card {
  background: rgba(250,245,234,.07); border: 1px solid rgba(250,245,234,.16);
  border-radius: var(--radius); padding: 1.5rem;
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.contact-card h3 span { color: var(--limone); }
.contact-card p { color: rgba(250,245,234,.8); font-size: .93rem; }
.contact-card .tel-line { margin-top: .7rem; }
.contact-card .tel-line a { color: var(--crema); font-weight: 700; text-decoration: none; font-size: 1.05rem; }
.contact-card .tel-line a:hover { color: var(--limone); }
.contact-card .maps-link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem;
  color: var(--limone); font-weight: 700; font-size: .9rem; text-decoration: none;
}
.contact-card .maps-link:hover { text-decoration: underline; }
.contact-card .maps-link svg { width: 15px; height: 15px; }
.contact-extra { text-align: center; color: rgba(250,245,234,.8); font-size: .95rem; }
.contact-extra .btn { margin-top: 1.2rem; }
.contact-extra .hours-line { margin-bottom: .4rem; }
.contact-extra strong { color: var(--crema); }

/* ---------- Footer ---------- */
.site-footer { background: var(--blu-notte); color: rgba(250,245,234,.72); border-top: 1px solid rgba(250,245,234,.14); padding: 2.4rem 0 5.6rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; }
.footer-brand svg { height: 56px; width: auto; }
.footer-brand .brand-name { color: var(--crema); }
.footer-brand .brand-sub { color: var(--limone); }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.3rem; font-size: .88rem; }
.footer-links a { color: rgba(250,245,234,.72); text-decoration: none; }
.footer-links a:hover { color: var(--crema); }
.footer-insta { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--crema) !important; }
.footer-insta svg { width: 17px; height: 17px; }
.footer-note { width: 100%; font-size: .78rem; color: rgba(250,245,234,.45); text-align: center; margin-top: .6rem; }

/* ---------- Bouton flottant ---------- */
.float-btn {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--rosso); color: #fff; text-decoration: none;
  font-weight: 800; font-size: .92rem;
  padding: .85rem 1.35rem; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(194,58,43,.4);
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.float-btn.show { opacity: 1; transform: none; pointer-events: auto; }
.float-btn svg { width: 17px; height: 17px; }
.float-btn:hover { background: var(--rosso-scuro); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav ul { gap: 1.05rem; }
  .main-nav a { font-size: .88rem; }
  .header-cta { display: none; }
}

@media (max-width: 950px) {
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--crema); border-bottom: 1px solid var(--bordo);
    padding: 1rem 4%; margin: 0;
    display: none; box-shadow: 0 18px 30px rgba(27,58,107,.12);
  }
  .site-header.nav-open .main-nav { display: block; }
  .main-nav ul { flex-direction: column; gap: .1rem; }
  .main-nav a { display: block; padding: .8rem .2rem; font-size: 1.05rem; border-bottom: 1px solid var(--bordo); }
  .main-nav li:last-child a { border-bottom: 0; }
  .burger { display: inline-flex; margin-left: auto; }
  .lang-switch { margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .rayons-grid { grid-template-columns: repeat(2, 1fr); }
  .boutiques-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .avis-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

@media (max-width: 560px) {
  .rayons-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .brand-text { display: none; }
  .hero-ctas .btn { width: 100%; }
  .ribbon-strip .container { flex-direction: column; align-items: center; gap: .35rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .js .scene.is-active [class*="a-"] { animation: none !important; }
  .scene { transition-duration: 1.6s; }
  .gallery-grid figure { animation: none; }
  .btn:hover, .rayon-card:hover, .teaser-grid a:hover img, .galerie-btn:hover img { transform: none; }
}
