/* =========================================================
   Candela Bougie — design system
   Atelier de Bourgogne · palette cire, sapin, miel, brique
   ========================================================= */

:root {
  /* Palette : ton cire chaude, sapin, miel, brique */
  --paper:        #f4ecdb;       /* fond principal, ivoire chaud */
  --paper-soft:   #f8f3e7;       /* sections claires */
  --paper-edge:   #ede2cd;       /* alt subtil */
  --ink:          #1a1410;       /* texte sombre chaud */
  --ink-soft:     #3a3026;
  --muted:        #87796a;
  --sapin:        #2c3e30;       /* vert sapin profond */
  --sapin-light:  #4f6b54;
  --brique:       #6f2a30;       /* rouge brique / bordeaux */
  --copper:       #b18653;       /* miel/cuivre, accent métallique */
  --copper-light: #e1c79a;
  --line:         rgba(26, 20, 16, .14);
  --line-soft:    rgba(26, 20, 16, .07);

  /* Typo */
  --display: "Italiana", "Cormorant Garamond", serif;
  --body:    "Manrope", system-ui, -apple-system, sans-serif;

  /* Mesures */
  --container: 1240px;
  --radius:    14px;
  --radius-sm: 6px;
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --shadow:    0 26px 60px -32px rgba(26, 20, 16, .35);
  --shadow-sm: 0 8px 22px -14px rgba(26, 20, 16, .3);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@supports (overflow-x: clip) { body { overflow-x: clip; overflow-y: visible; } }
section[id] { scroll-margin-top: 92px; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--sapin); color: var(--paper); }
:focus-visible { outline: 2.5px solid var(--copper); outline-offset: 3px; border-radius: 4px; }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.lucide, [data-lucide] { width: 1.05em; height: 1.05em; stroke-width: 1.6; vertical-align: -.16em; }

/* ---------- Typo réutilisable ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.005em;
  color: var(--ink);
  text-wrap: balance;
}
.display em { font-style: normal; color: var(--sapin); }

.overline {
  display: inline-block;
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.link-fine {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .9rem; font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s, gap .3s var(--ease);
}
.link-fine svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-fine:hover { color: var(--copper); border-color: var(--copper); gap: .55rem; }
.link-fine:hover svg { transform: translateX(3px); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.7rem;
  border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: .9rem;
  letter-spacing: .02em;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn--solid {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 10px 24px -16px rgba(26, 20, 16, .6);
}
.btn--solid:hover {
  background: var(--sapin);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -16px rgba(44, 62, 48, .6);
}
.btn--solid svg { width: 1em; height: 1em; }

.btn--line {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn--line:hover { border-color: var(--ink); }

/* ---------- Chips filtres boutique ---------- */
.chip {
  display: inline-flex; align-items: center;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--body); font-size: .85rem; font-weight: 500;
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
}
.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip.is-active {
  background: var(--ink); color: var(--paper); border-color: transparent;
}
.chip.is-active::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%; background: var(--copper);
  margin-right: .5rem;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 210;
  background: var(--ink); color: var(--paper);
  padding: .6rem 1rem; border-radius: 8px; font-size: .9rem; font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus-visible { top: 12px; }

/* ---------- STRIP (annonce sombre) ---------- */
.strip {
  background: var(--ink);
  color: rgba(244, 236, 219, .85);
  font-size: .78rem;
  letter-spacing: .04em;
}
.strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .55rem; gap: 1rem;
}
.strip__txt { font-family: var(--display); font-style: normal; font-size: .9rem; letter-spacing: .04em; color: var(--copper-light); }
.strip__links { display: flex; gap: 1rem; align-items: center; }
.strip__links a { display: inline-flex; align-items: center; gap: .35rem; transition: color .2s; }
.strip__links a:hover { color: var(--copper-light); }
.strip__links svg { width: 14px; height: 14px; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 236, 219, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, padding .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.1rem;
  gap: 1.2rem;
  transition: padding-block .3s var(--ease);
}
.nav.is-scrolled .nav__inner { padding-block: .75rem; }

.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--ink); }
.brand__flame {
  width: 22px; height: 30px;
  color: var(--copper);
  animation: flicker 4.2s ease-in-out infinite;
  transform-origin: 50% 100%;
}
@keyframes flicker {
  0%,100% { transform: scaleY(1) rotate(0); opacity: 1; }
  20% { transform: scaleY(1.05) rotate(-1deg); opacity: .92; }
  35% { transform: scaleY(.95) rotate(1deg); opacity: 1; }
  55% { transform: scaleY(1.04) rotate(-.5deg); opacity: .96; }
  72% { transform: scaleY(.98) rotate(0); opacity: 1; }
}
.brand__name {
  font-family: var(--display); font-weight: 400;
  font-size: 1.85rem; letter-spacing: -.005em;
  color: var(--ink);
}

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: .9rem; font-weight: 500; color: var(--ink);
  position: relative; padding-bottom: 3px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--copper);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--copper); }

.nav__actions { display: flex; align-items: center; gap: .5rem; }
.nav__phone {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  border-radius: 50%;
}
.nav__phone svg { width: 16px; height: 16px; }

.nav__toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
  padding: 12px;
  position: relative; z-index: 80;
}
.nav__toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- DRAWER mobile ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 70;
  background: var(--paper);
  display: grid; place-items: center;
  padding: 5rem 1.5rem 2rem;
  opacity: 0; pointer-events: none; transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .35s var(--ease);
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; pointer-events: auto; transform: none; }
.drawer__inner { width: 100%; max-width: 320px; display: flex; flex-direction: column; gap: 1.8rem; }
.drawer__title {
  font-family: var(--display); font-size: .9rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--copper); text-align: center;
}
.drawer__list { display: flex; flex-direction: column; gap: .15rem; text-align: center; }
.drawer__list a {
  display: block;
  font-family: var(--display); font-weight: 400;
  font-size: 1.7rem;
  color: var(--ink); padding: .5rem 0;
  transition: color .25s;
}
.drawer__list a:hover { color: var(--copper); }
.drawer__foot {
  display: flex; flex-direction: column; gap: .6rem; align-items: center;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
  text-align: center;
}
.drawer__foot a {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .9rem; font-weight: 500; color: var(--ink);
}
.drawer__foot svg { width: 14px; height: 14px; color: var(--copper); }

/* ============================================================
   HERO full-bleed
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(540px, 85vh, 820px);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--paper);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -8% 0 0 0; z-index: -1;
  background:
    url("https://static.wixstatic.com/media/1ffc31_8a5a645112db451a9394ef7dc08f2aa0~mv2.jpg") center/cover no-repeat;
  filter: brightness(.62) contrast(1.02);
  will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 25% 80%, rgba(177, 134, 83, .35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(26, 20, 16, .55) 0%, rgba(26, 20, 16, .15) 35%, rgba(26, 20, 16, .85) 95%);
}
.hero__content { padding-block: 5rem 7.5rem; max-width: 720px; }
.hero__eyebrow {
  font-family: var(--body); font-size: .78rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--copper-light); margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: 1.6rem;
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--copper-light); }
.hero__lead {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: rgba(244, 236, 219, .92);
  max-width: 38ch;
  margin-bottom: 2.2rem;
}
.hero__cta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero__cta .link-fine { color: var(--paper); border-color: rgba(244, 236, 219, .4); }
.hero__cta .link-fine:hover { color: var(--copper-light); border-color: var(--copper-light); }

.hero__sig {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex; gap: 1.2rem; justify-content: center; align-items: center;
  padding: 1.1rem 1.4rem;
  font-family: var(--display);
  font-size: clamp(.88rem, 1.1vw, 1.05rem);
  letter-spacing: .06em;
  color: var(--copper-light);
  background: linear-gradient(to top, rgba(0, 0, 0, .68), rgba(0, 0, 0, .1));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(244, 236, 219, .14);
  flex-wrap: wrap;
  text-align: center;
}
.hero__sig span:nth-child(even) {
  color: rgba(244, 236, 219, .4);
  font-size: .85em;
}

/* ============================================================
   PROMESSES (bandeau)
   ============================================================ */
.promises {
  background: var(--ink);
  color: rgba(244, 236, 219, .92);
  padding-block: 2.4rem;
  position: relative;
}
.promises__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.promises__item {
  display: flex; flex-direction: column; gap: .25rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(244, 236, 219, .15);
  position: relative;
}
.promises__item svg {
  width: 22px; height: 22px;
  color: var(--copper); margin-bottom: .55rem;
}
.promises__item strong {
  font-family: var(--display); font-weight: 400;
  font-size: 1.25rem; color: var(--paper);
}
.promises__item span { font-size: .82rem; color: rgba(244, 236, 219, .65); line-height: 1.5; }

/* ============================================================
   SHOP (grille + filtres)
   ============================================================ */
.shop {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--paper);
}
.shop__head { max-width: 720px; margin-bottom: 2.4rem; }
.shop__sub { color: var(--muted); margin-top: .8rem; font-size: 1.02rem; max-width: 52ch; }

.shop__filters {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 2.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

/* ----- Shop layout : index typographique + aperçu sticky ----- */
.shop__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding-top: 1.4rem;
}

.shop__index {
  border-top: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: 76px auto 1fr auto auto;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1rem 1rem 1.1rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding-left .35s var(--ease), background .3s var(--ease);
}
.row.is-hidden { display: none; }
.row::before {
  content: ""; position: absolute; left: -1rem; top: 50%; transform: translateY(-50%);
  width: 0; height: 2px; background: var(--copper);
  transition: width .35s var(--ease);
}
.row:hover, .row.is-active { padding-left: 1rem; }
.row:hover::before, .row.is-active::before { width: 1rem; }
.row.is-active .row__num { color: var(--copper); }
.row.is-active .row__title { color: var(--copper); font-style: italic; }

.row__thumb {
  width: 76px; height: 76px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--paper-edge);
  filter: saturate(.85) brightness(.98);
  transition: filter .35s var(--ease), transform .45s var(--ease), box-shadow .35s var(--ease);
  display: block;
}
.row:hover .row__thumb {
  filter: saturate(1.05) brightness(1);
  transform: scale(1.05);
  box-shadow: 0 8px 22px -12px rgba(26, 20, 16, .35);
}
.row.is-active .row__thumb {
  filter: saturate(1.1) brightness(1);
  box-shadow: 0 0 0 2px var(--copper), 0 10px 26px -14px rgba(26, 20, 16, .4);
}

.row__num {
  font-family: var(--display);
  font-size: .9rem;
  color: var(--muted);
  letter-spacing: .04em;
  width: 32px;
  transition: color .3s var(--ease);
}

.row__main { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.row__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  line-height: 1; color: var(--ink);
  text-wrap: balance;
  transition: color .3s var(--ease);
}
.row__sub {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .82rem; color: var(--muted); letter-spacing: .02em;
}
.row__sub i {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--dot, var(--copper));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 1px 2px rgba(0,0,0,.08) inset;
  transition: transform .35s var(--ease);
}
.row:hover .row__sub i, .row.is-active .row__sub i { transform: scale(1.5); }

.row__price {
  font-family: var(--display); font-size: 1.15rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.row__add {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 50%; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
}
.row__add:hover { background: var(--ink); color: var(--paper); border-color: transparent; transform: rotate(90deg); }
.row__add svg { width: 16px; height: 16px; }

/* ----- Aperçu sticky ----- */
.shop__preview {
  position: sticky;
  top: 100px;
  align-self: start;
}
.preview {
  background: var(--paper-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.preview__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-edge);
  overflow: hidden;
}
.preview__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .4s var(--ease), transform 8s var(--ease);
  will-change: opacity;
}
.preview.is-changing .preview__media img { opacity: 0; }
.preview__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--copper); color: var(--ink);
  font-family: var(--body); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .4rem .75rem; border-radius: 999px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease) .15s;
}
.preview__tag.is-visible { opacity: 1; }

.preview__body { padding: 1.5rem 1.8rem 1.8rem; }
.preview__num {
  display: inline-block;
  font-family: var(--display); font-size: .82rem;
  color: var(--copper); letter-spacing: .14em;
  margin-bottom: .4rem;
}
.preview__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.8rem, 2.6vw, 2.2rem); line-height: 1;
  color: var(--ink);
  margin-bottom: .35rem;
}
.preview__sub {
  display: block;
  font-size: .92rem; color: var(--muted);
  margin-bottom: 1.4rem;
}
.preview__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  gap: 1rem;
}
.preview__price {
  font-family: var(--display); font-size: 1.9rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   MOODS — Les ambiances (chaque couleur, un instant)
   ============================================================ */
.moods {
  position: relative;
  padding-block: clamp(5rem, 10vw, 7.5rem);
  background: var(--paper);
  overflow: hidden;
}

/* Ornements botaniques en filigrane */
.moods__sprig {
  position: absolute;
  color: var(--sapin);
  opacity: .07;
  pointer-events: none;
  user-select: none;
}
.moods__sprig--tl {
  width: 90px; height: 180px;
  top: 1rem; left: 2.5%;
  transform: rotate(-12deg);
}
.moods__sprig--br {
  width: 120px; height: 120px;
  bottom: 4rem; right: 3%;
  color: var(--copper);
  opacity: .12;
  transform: rotate(15deg);
}

.moods__head {
  max-width: 720px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.moods__sub {
  color: var(--muted);
  margin-top: .9rem;
  font-size: 1.05rem;
  max-width: 52ch;
  line-height: 1.6;
}

/* Grille verticale, max 760px centrée — chaque carte est un mini spread éditorial */
.moods__grid {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 880px;
  margin-inline: auto;
}

.mood {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--paper-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .35s;
}
.mood::before {
  /* Trait coloré en bas — signature de l'ambiance */
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--mood);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .6s var(--ease);
  z-index: 3;
}
.mood:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px -28px rgba(26, 20, 16, .35);
  border-color: color-mix(in srgb, var(--mood) 25%, var(--line));
}
.mood:hover::before { transform: scaleX(1); }

.mood__photo {
  position: relative;
  background: var(--mood-soft);
  overflow: hidden;
}
.mood__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.mood:hover .mood__photo img { transform: scale(1.05); }
.mood__photo::after {
  /* Voile coloré subtil pour lier le visuel à la couleur d'ambiance */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, color-mix(in srgb, var(--mood) 12%, transparent) 100%);
  pointer-events: none;
}

.mood__ico {
  position: absolute; bottom: .8rem; left: .8rem; z-index: 2;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: rgba(244, 236, 219, .94);
  backdrop-filter: blur(6px);
  color: var(--mood);
  border-radius: 50%;
  transition: transform .5s var(--ease);
}
.mood__ico svg { width: 18px; height: 18px; stroke-width: 1.5; }
.mood:hover .mood__ico { transform: rotate(-10deg) scale(1.06); }

.mood__body {
  padding: 1.6rem 1.8rem 1.6rem;
  display: flex; flex-direction: column;
}

.mood__index {
  display: inline-block;
  font-family: var(--display); font-style: italic;
  font-size: .82rem; color: var(--copper);
  letter-spacing: .08em;
  margin-bottom: .4rem;
}

.mood__color {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--body);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .55rem;
}
.mood__color i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--dot, var(--mood));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 1px 2px rgba(0,0,0,.08) inset;
}

.mood__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  line-height: 1.05; letter-spacing: -.005em;
  color: var(--ink);
  margin-bottom: .7rem;
  text-wrap: balance;
}

.mood p {
  font-family: var(--display); font-style: italic;
  font-size: 1.02rem; line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  flex: 1;
}

.mood__moment {
  display: block;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
  font-family: var(--display); font-style: italic;
  font-size: .92rem; color: var(--mood);
  letter-spacing: .02em;
  font-weight: 500;
}

/* Petite guirlande symbolique en bas de section */
.moods__garland {
  display: flex; align-items: center; justify-content: center;
  gap: 1.2rem;
  margin-top: 3.5rem;
  color: var(--copper);
  opacity: .6;
}
.moods__garland svg { width: 22px; height: 22px; }
.moods__garland-line {
  display: inline-block;
  width: clamp(40px, 12vw, 90px);
  height: 1px;
  background: currentColor;
  opacity: .4;
}

/* ============================================================
   SPOTLIGHT (coup de cœur — split)
   ============================================================ */
.spot {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--paper-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.spot__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.spot__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--paper-edge);
}
.spot__media img { width: 100%; height: 100%; object-fit: cover; }
.spot__badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(244, 236, 219, .94);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 236, 219, .6);
  color: var(--ink);
  font-family: var(--body); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .45rem .85rem; border-radius: 999px;
}
.spot__badge svg { width: 13px; height: 13px; color: var(--copper); }

.spot__title { margin: .4rem 0 1.4rem; }
.spot__lede {
  font-family: var(--display); font-size: 1.18rem;
  color: var(--ink-soft); line-height: 1.5;
  max-width: 44ch; margin-bottom: 2rem;
}

.spot__specs {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: 1rem 2rem;
  padding-block: 1.4rem;
  border-block: 1px solid var(--line);
  margin-bottom: 1.8rem;
}
.spot__specs li { display: flex; flex-direction: column; gap: .2rem; }
.spot__specs strong {
  font-family: var(--body); font-size: .68rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--copper); font-weight: 600;
}
.spot__specs span { font-family: var(--display); font-size: 1.15rem; color: var(--ink); }

.spot__foot { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.spot__price {
  font-family: var(--display); font-size: 2.4rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   ATELIER (story spread)
   ============================================================ */
.atelier {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--paper);
}
.atelier__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.atelier__text p { margin-top: 1rem; color: var(--ink-soft); max-width: 50ch; }
.atelier__keys {
  margin-top: 2.2rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.atelier__keys > div { display: flex; flex-direction: column; gap: .15rem; }
.atelier__keys strong {
  font-family: var(--display); font-size: 1.3rem; color: var(--ink);
}
.atelier__keys span { font-size: .78rem; color: var(--muted); letter-spacing: .03em; }

.atelier__visual {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.atelier__shot { border-radius: var(--radius); overflow: hidden; background: var(--paper-edge); }
.atelier__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.atelier__shot:hover img { transform: scale(1.05); }
.atelier__shot--a { grid-column: 1 / 2; grid-row: 1 / 3; aspect-ratio: 4 / 5; }
.atelier__shot--b { grid-column: 2 / 3; grid-row: 1 / 2; aspect-ratio: 1; }
.atelier__shot--c { grid-column: 2 / 3; grid-row: 2 / 3; aspect-ratio: 1; }

/* ============================================================
   INSTAGRAM mosaïque
   ============================================================ */
.ig { padding-block: clamp(4rem, 9vw, 7rem); background: var(--paper-soft); }
.ig__head { margin-bottom: 2.4rem; }
.ig__row {
  display: flex; align-items: end; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.ig__row .display { font-style: italic; }

/* Marquee infini, défilement horizontal en boucle */
.ig__marquee {
  overflow: hidden;
  position: relative;
  /* Fade des bords pour effet "infini" */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.ig__track {
  display: inline-flex;
  gap: .9rem;
  width: max-content;
  animation: ig-scroll 55s linear infinite;
  will-change: transform;
}
.ig__marquee:hover .ig__track { animation-play-state: paused; }
@keyframes ig-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ig__cell {
  position: relative; display: block;
  flex-shrink: 0;
  width: clamp(180px, 22vw, 290px);
  aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--paper-edge);
}
.ig__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .35s var(--ease);
  filter: saturate(.95);
}
.ig__cell:hover img { transform: scale(1.07); filter: saturate(1.1); }
.ig__overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(26, 20, 16, .55);
  color: var(--paper);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.ig__cell:hover .ig__overlay, .ig__cell:focus-visible .ig__overlay { opacity: 1; }
.ig__overlay svg { width: 28px; height: 28px; }

/* ============================================================
   WORDS (témoignages simples)
   ============================================================ */
.words { padding-block: clamp(4rem, 8vw, 6rem); background: var(--paper); border-top: 1px solid var(--line-soft); }
.words__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
.words__one { position: relative; padding-left: 1.6rem; }
.words__mark {
  position: absolute; top: -.6rem; left: 0;
  font-family: var(--display); font-size: 3.4rem; line-height: 1;
  color: var(--copper); opacity: .55;
}
.words__one p {
  font-family: var(--display); font-size: 1.2rem; line-height: 1.45;
  color: var(--ink-soft);
}
.words__one footer { margin-top: 1rem; font-size: .8rem; color: var(--muted); letter-spacing: .04em; }
.words__one footer strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   ORDER (commander + carte cadeau)
   ============================================================ */
.order {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--ink); color: var(--paper);
}
.order .overline { color: var(--copper-light); }
.order .display { color: var(--paper); }
.order__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.order__lede {
  font-family: var(--display); font-size: 1.18rem;
  color: rgba(244, 236, 219, .85);
  max-width: 48ch; margin: 1.2rem 0 2rem;
}

.order__list { display: grid; gap: 1.1rem; margin-bottom: 0; }
.order__list li {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 1rem; align-items: start;
}
.order__list svg { width: 18px; height: 18px; color: var(--copper); margin-top: 4px; }
.order__list strong { display: block; font-family: var(--display); font-size: 1.05rem; color: var(--paper); margin-bottom: .15rem; }
.order__list div { color: rgba(244, 236, 219, .72); font-size: .92rem; overflow-wrap: anywhere; }
.order__list a:hover { color: var(--copper-light); }

.copy {
  align-self: center;
  font-family: var(--body); font-size: .72rem; font-weight: 600;
  background: transparent; color: rgba(244, 236, 219, .9);
  border: 1px solid rgba(244, 236, 219, .25);
  border-radius: 999px;
  padding: .35rem .8rem;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.copy:hover { background: var(--copper); color: var(--ink); border-color: transparent; }
.copy.is-copied { background: var(--copper); color: var(--ink); border-color: transparent; }

.order__card {
  background: rgba(244, 236, 219, .07);
  border: 1px solid rgba(244, 236, 219, .14);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.order__card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--paper); margin: .3rem 0 1rem;
}
.order__card p { color: rgba(244, 236, 219, .8); margin-bottom: 1.4rem; }
.order__amounts {
  display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.6rem;
}
.order__amounts span {
  display: inline-flex; align-items: center;
  font-family: var(--display); font-size: 1.1rem; color: var(--paper);
  padding: .55rem 1rem;
  background: rgba(244, 236, 219, .07);
  border: 1px solid rgba(244, 236, 219, .18);
  border-radius: 999px;
}
.order__card .btn--solid {
  background: var(--copper); color: var(--ink);
}
.order__card .btn--solid:hover { background: var(--copper-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--paper-edge); color: var(--ink-soft); padding-top: 3.5rem; }
.foot__top {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.foot__sig {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-size: 2rem;
  color: var(--ink);
}
.foot__sig .brand__flame { width: 22px; height: 30px; color: var(--copper); }
.foot__brand p { margin-top: .8rem; font-size: .92rem; max-width: 36ch; color: var(--muted); }

.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.foot__cols h4 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.2rem; color: var(--ink); margin-bottom: 1rem;
}
.foot__cols a {
  display: block; font-size: .9rem; margin-bottom: .55rem;
  color: var(--ink-soft); transition: color .2s;
}
.foot__cols a:hover { color: var(--copper); }

.foot__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: 1.4rem;
  font-size: .78rem; color: var(--muted); gap: 1rem; flex-wrap: wrap;
}
.foot__credit { font-style: italic; }
.foot__top-link { display: inline-flex; align-items: center; gap: .4rem; transition: color .2s; }
.foot__top-link:hover { color: var(--copper); }
.foot__top-link svg { width: 14px; height: 14px; }

/* ============================================================
   SHEET — fiche produit modale (mobile)
   ============================================================ */
.sheet {
  position: fixed; inset: 0; z-index: 220;
  background: rgba(26, 20, 16, .85);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: end center;
  padding: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  overflow-y: auto;
}
.sheet.is-open { opacity: 1; visibility: visible; }

.sheet__panel {
  position: relative;
  background: var(--paper);
  border-radius: 22px 22px 0 0;
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(40px);
  transition: transform .4s var(--ease);
}
.sheet.is-open .sheet__panel { transform: none; }

.sheet__close {
  position: absolute; top: .8rem; right: .8rem; z-index: 3;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(244, 236, 219, .92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  border: 0;
  border-radius: 50%; cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background .25s, color .25s, transform .3s var(--ease);
}
.sheet__close:hover { background: var(--ink); color: var(--paper); transform: rotate(90deg); }
.sheet__close svg { width: 20px; height: 20px; }

.sheet__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--paper-edge);
  overflow: hidden;
  border-radius: 22px 22px 0 0;
}
.sheet__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheet__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--copper); color: var(--ink);
  padding: .35rem .75rem; border-radius: 999px;
  font-family: var(--body); font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.sheet__tag.is-visible { opacity: 1; }

.sheet__body { padding: 1.5rem 1.7rem 1.8rem; }
.sheet__num {
  display: inline-block;
  font-family: var(--display); font-size: .8rem;
  color: var(--copper); letter-spacing: .14em;
  margin-bottom: .5rem;
}
.sheet__title {
  font-family: var(--display); font-weight: 400;
  font-size: 1.9rem; line-height: 1;
  color: var(--ink);
  margin-bottom: .55rem;
}
.sheet__color {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-size: .8rem;
  color: var(--muted); letter-spacing: .04em;
}
.sheet__color i {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--dot, var(--copper));
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 1px 2px rgba(0,0,0,.08) inset;
}
.sheet__desc {
  margin: 1.1rem 0 1.4rem;
  font-family: var(--display); font-style: italic;
  font-size: 1.05rem; line-height: 1.55;
  color: var(--ink-soft);
}
.sheet__specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .8rem 1rem;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
  margin-bottom: 0;
}
.sheet__specs li { display: flex; flex-direction: column; gap: .15rem; }
.sheet__specs strong {
  font-family: var(--body); font-size: .62rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper); font-weight: 600;
}
.sheet__specs span {
  font-family: var(--display); font-size: .9rem;
  color: var(--ink);
}
.sheet__foot {
  margin-top: 1.6rem; padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.sheet__price {
  font-family: var(--display); font-size: 1.85rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* Sur desktop, on prefère un panel centré plutôt que bottom-sheet */
@media (min-width: 901px) {
  .sheet { place-items: center; padding: 2rem; }
  .sheet__panel { border-radius: 20px; transform: scale(.96) translateY(10px); }
  .sheet.is-open .sheet__panel { transform: none; }
  .sheet__media { border-radius: 20px 20px 0 0; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26, 20, 16, .94);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lb.is-open { opacity: 1; visibility: visible; }
.lb figure { max-width: 92vw; max-height: 88vh; text-align: center; }
.lb img { max-width: 92vw; max-height: 78vh; border-radius: var(--radius-sm); box-shadow: 0 40px 80px -30px rgba(0,0,0,.7); }
.lb figcaption {
  margin-top: 1rem; font-family: var(--display); font-style: italic;
  color: rgba(244, 236, 219, .85); font-size: .95rem;
}
.lb__close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(244, 236, 219, .08); color: var(--paper);
  border: 1px solid rgba(244, 236, 219, .25);
  border-radius: 50%; cursor: pointer;
  transition: background .25s, transform .3s var(--ease);
}
.lb__close:hover { background: var(--copper); color: var(--ink); transform: rotate(90deg); }
.lb__close svg { width: 22px; height: 22px; }

/* ============================================================
   TOAST (panier)
   ============================================================ */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 90;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--ink); color: var(--paper);
  border: 1px solid rgba(244, 236, 219, .2);
  border-radius: 999px;
  padding: .7rem 1.2rem;
  font-size: .88rem; font-weight: 500;
  box-shadow: 0 20px 40px -22px rgba(26, 20, 16, .6);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .35s var(--ease);
}
.toast.is-open { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--copper-light); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .85s var(--ease), transform .85s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper-soft); }
::-webkit-scrollbar-thumb { background: var(--copper-light); border-radius: 6px; border: 3px solid var(--paper-soft); }
::-webkit-scrollbar-thumb:hover { background: var(--copper); }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
  .promises__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2rem; }
  .promises__item { border-left-color: rgba(244, 236, 219, .12); }
  .shop__layout { grid-template-columns: 1.05fr 1fr; gap: 2.2rem; }
  .row__title { font-size: 1.4rem; }
  /* Moods : on resserre les colonnes du spread sur tablette */
  .mood { grid-template-columns: 180px 1fr; }
  .moods__grid { max-width: 760px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__phone { display: inline-flex; }
  .nav__toggle { display: inline-flex; }
  .brand__name { font-size: 1.55rem; }

  .strip__txt { font-size: .78rem; }

  .hero__content { padding-block: 4rem 3rem; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 4rem); }
  .hero__sig { padding: .85rem 1.2rem; font-size: .78rem; gap: .6rem; }
  .hero__sig span:nth-child(2),
  .hero__sig span:nth-child(4) { display: none; }

  .spot__grid, .atelier__grid, .order__grid {
    grid-template-columns: 1fr;
  }
  .spot__specs { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.4rem; }

  /* Atelier : bento simplifié — grande image en haut, 2 carrés en bas */
  .atelier__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: .7rem;
  }
  .atelier__shot--a {
    grid-column: 1 / -1;
    grid-row: 1;
    aspect-ratio: 16 / 10;
  }
  .atelier__shot--b {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    aspect-ratio: 1;
  }
  .atelier__shot--c {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 1;
  }

  /* ----- Boutique : on cache l'aperçu sticky, grille de CARTES (image visible) ----- */
  .shop__layout { grid-template-columns: 1fr; padding-top: .5rem; }
  .shop__preview { display: none; }

  .shop__index {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    border-top: 0;
  }

  .row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "image image"
      "main  main"
      "price add";
    gap: 0;
    padding: 0;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--paper-soft);
    position: relative;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  }
  .row::before { display: none; }
  .row:hover, .row.is-active { padding-left: 0; }
  .row:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px -16px rgba(26, 20, 16, .35);
  }
  .row.is-active { border-color: var(--copper); }
  .row.is-active .row__title { font-style: normal; color: var(--ink); }

  .row__thumb {
    grid-area: image;
    width: 100%; height: auto;
    aspect-ratio: 1;
    border-radius: 0;
    object-fit: cover;
    filter: saturate(1) brightness(1);
    box-shadow: none;
    transition: transform .8s var(--ease);
  }
  .row:hover .row__thumb { transform: scale(1.05); box-shadow: none; }
  .row.is-active .row__thumb { box-shadow: none; }

  /* Numéro 01 en pastille discrète sur l'image */
  .row__num {
    position: absolute;
    top: .6rem; left: .65rem;
    z-index: 2;
    width: auto; margin: 0;
    padding: .25rem .55rem;
    background: rgba(244, 236, 219, .9);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    color: var(--ink);
    border-radius: 999px;
    font-size: .65rem; letter-spacing: .1em;
    font-family: var(--display);
  }

  /* Tag (Best-seller, À offrir, Noël, Nouveau) en haut à droite si présent */
  .row[data-tag]::after {
    content: attr(data-tag);
    position: absolute;
    top: .55rem; right: .65rem;
    z-index: 2;
    background: var(--copper); color: var(--ink);
    padding: .28rem .6rem;
    border-radius: 999px;
    font-family: var(--body); font-size: .62rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
  }

  .row__main {
    grid-area: main;
    padding: .9rem 1rem .35rem;
    min-width: 0;
  }
  .row__title {
    font-size: 1.15rem; line-height: 1.05;
    margin-bottom: .35rem;
  }
  .row__sub {
    font-size: .72rem; letter-spacing: .03em;
  }

  .row__price {
    grid-area: price;
    padding: 0 0 .95rem 1rem;
    align-self: center;
    font-size: 1.05rem;
  }

  .row__add {
    grid-area: add;
    align-self: center;
    width: 36px; height: 36px;
    margin: 0 .85rem .85rem .65rem;
  }

  .words__grid { grid-template-columns: 1fr; gap: 2rem; }

  .foot__top { grid-template-columns: 1fr; gap: 2rem; }
  .foot__cols { grid-template-columns: 1fr 1fr; }

  /* Moods : spread compact sur tablette/mobile portrait */
  .moods__grid { gap: 1rem; }
  .moods__sprig--tl { display: none; }
  .moods__sprig--br { width: 80px; height: 80px; right: 1rem; bottom: 1rem; opacity: .08; }
  .mood { grid-template-columns: 150px 1fr; }
  .mood__body { padding: 1.3rem 1.4rem 1.3rem; }
  .mood__title { font-size: 1.45rem; }
  .mood p { font-size: .96rem; line-height: 1.5; }
  .mood__index { font-size: .75rem; margin-bottom: .35rem; }
  .mood__ico { width: 32px; height: 32px; }
  .mood__ico svg { width: 15px; height: 15px; }

  /* Instagram : grille statique 3 cols au lieu de marquee (plus propre, pas de jank) */
  .ig__marquee {
    overflow: visible;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .ig__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .55rem;
    width: 100%;
    padding-inline: clamp(20px, 4vw, 56px);
    animation: none;
  }
  .ig__cell {
    width: auto;
    flex-shrink: initial;
  }
  /* On masque les doublons utilisés pour la boucle infinie (devenue inutile) */
  .ig__cell[aria-hidden="true"] { display: none; }

@media (max-width: 580px) {
  .strip__inner { gap: .6rem; }
  .strip__txt { font-size: .72rem; }
  .strip__links a:first-child { display: none; }

  .hero { min-height: 75vh; }
  .hero__title { font-size: clamp(2.2rem, 12vw, 3.4rem); margin-bottom: 1.2rem; }
  .hero__lead { font-size: 1rem; margin-bottom: 1.6rem; }
  .hero__cta { gap: 1rem; }

  .promises { padding-block: 1.8rem; }
  .promises__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .promises__item { padding-left: 1.2rem; }

  .shop__filters { gap: .45rem; }
  .chip { padding: .45rem .9rem; font-size: .78rem; }

  /* Mobile small : on garde la grille 2 cols mais cartes plus compactes */
  .shop__index { gap: .75rem; }
  .row__main { padding: .75rem .85rem .25rem; }
  .row__title { font-size: 1rem; }
  .row__sub { font-size: .68rem; }
  .row__price { padding: 0 0 .8rem .85rem; font-size: .98rem; }
  .row__add { width: 32px; height: 32px; margin: 0 .65rem .75rem .5rem; }
  .row[data-tag]::after { font-size: .58rem; padding: .22rem .5rem; }
  .row__num { font-size: .6rem; padding: .2rem .45rem; }

  .spot__media { aspect-ratio: 1; }
  .spot__specs { gap: .8rem 1.2rem; }
  .spot__price { font-size: 2rem; }

  .atelier__keys { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .atelier__visual { gap: .6rem; }

  /* Instagram : grille 2 cols sur mobile */
  .ig__track { grid-template-columns: repeat(2, 1fr); gap: .5rem; padding-inline: 16px; }

  /* Moods : très petits écrans → image au-dessus, texte en-dessous (vertical) */
  .moods { padding-block: 3.5rem; }
  .mood {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .mood__photo {
    aspect-ratio: 16 / 10;
    width: 100%;
  }
  .mood__photo img { aspect-ratio: 16 / 10; }
  .mood__body { padding: 1.4rem 1.3rem 1.3rem; }
  .mood__title { font-size: 1.4rem; }
  .moods__sprig { display: none; }
  .moods__garland { margin-top: 2.5rem; gap: .8rem; }
  .moods__garland svg { width: 18px; height: 18px; }

  .words__one p { font-size: 1.1rem; }

  .order__list li { grid-template-columns: 22px 1fr; }
  .copy { grid-column: 2; justify-self: start; margin-top: .3rem; }

  .order__card { padding: 1.6rem 1.4rem; }
  .order__amounts span { font-size: 1rem; padding: .45rem .85rem; }

  .foot__cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .foot__bottom { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .brand__flame { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
