/* ================================================================
   LE BOUQUET — Refonte v2
   DM Serif Display · hero split · CTA WhatsApp terracotta
   Slim Centre, Sousse — 2026
   ================================================================ */

/* ================================================
   TOKENS
   ================================================ */
:root {
  /* Surfaces : crème chaude dominante */
  --cream:       #F7F1E3;
  --cream-soft:  #FBF6EA;
  --cream-deep:  #EDE2C8;
  --ivory:       #FAF5EA;

  /* Encre : noir chaud (jamais pur) */
  --ink:         #1F1A14;
  --ink-soft:    #6B5D48;
  --ink-mute:    #9C8E76;

  /* Or : accents */
  --gold:        #B89149;
  --gold-bright: #D4B26A;
  --gold-deep:   #8C6E2F;
  --gold-pale:   #DDC79A;

  /* Florals : vibrants */
  --sage:        #9FB28A;
  --sage-wash:   #E8EDDB;
  --rose:        #E89A8B;
  --rose-wash:   #FAE5DE;
  --terracotta:  #D38063;
  --terra-wash:  #F5E0D2;
  --wine:        #B2353B;
  --ochre:       #E2B656;
  --ochre-wash:  #F6E7C2;

  /* Moment sombre (footer + locate card) */
  --noir:        #1A1814;
  --noir-soft:   #25201A;

  /* WhatsApp green (gardé en variable si jamais on veut basculer) */
  --whatsapp:    #25D366;
}

/* ================================================
   BASE
   ================================================ */
* { -webkit-tap-highlight-color: transparent; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--rose); color: var(--ink); }

img { max-width: 100%; display: block; }

/* Grain papier — desktop uniquement (mix-blend-mode coûte cher au scroll sur mobile) */
@media (min-width: 768px) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  }
}

/* ================================================
   TYPOGRAPHIE — DM Serif Display
   ================================================ */
.font-display {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.font-italic {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-ivory { color: var(--gold-bright); }
.eyebrow-ivory::before { background: var(--gold-bright); }

.eyebrow-sage::before  { background: var(--sage); }
.eyebrow-rose::before  { background: var(--rose); }
.eyebrow-terra::before { background: var(--terracotta); }
.eyebrow-wine::before  { background: var(--wine); }
.eyebrow-ochre::before { background: var(--ochre); }

.eyebrow-sage  { color: #5B7148; }
.eyebrow-rose  { color: var(--wine); }
.eyebrow-terra { color: #A0512F; }
.eyebrow-ochre { color: var(--gold-deep); }

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background 350ms ease, border-color 350ms ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled,
.nav.always-solid {
  /* Mobile : fond solide (pas de backdrop-filter qui ralentit le scroll) */
  background: rgba(247, 241, 227, 0.98);
  border-bottom-color: rgba(184, 145, 73, 0.22);
}
@media (min-width: 768px) {
  /* Desktop : on retrouve l'effet verre dépoli, le GPU le gère sans souci */
  .nav.scrolled,
  .nav.always-solid {
    background: rgba(247, 241, 227, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
  }
}

.nav-link {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 250ms ease;
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
}
.nav-link:hover { color: var(--terracotta); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.active { color: var(--terracotta); }
.nav-link.active::after { transform: scaleX(1); }

.logo-mark {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}
.logo-mark em {
  font-style: italic;
  color: var(--terracotta);
  font-size: 28px;
  margin-left: 1px;
}

.menu-btn {
  color: var(--ink);
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================================================
   CTA — Bouton WhatsApp terracotta + icône
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1.5px solid var(--terracotta);
  background: var(--terracotta);
  color: var(--cream);
  transition: background 350ms cubic-bezier(0.65, 0, 0.35, 1),
              border-color 350ms ease,
              transform 250ms ease;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
.btn:hover {
  background: var(--wine);
  border-color: var(--wine);
}
.btn:active { transform: translateY(1px); }

.btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

/* Variante compacte pour la nav (légèrement moins large) */
.btn-nav {
  padding: 12px 22px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
}

/* Variante secondaire (rare) : contour seulement, pour rappel discret */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Lien texte avec flèche */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  transition: color 300ms ease, gap 300ms ease;
  text-decoration: none;
}
.link-arrow:hover { color: var(--wine); gap: 18px; }

/* ================================================
   SECTIONS
   ================================================ */
.section {
  padding: 110px 24px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) { .section { padding: 160px 48px; } }
@media (min-width: 1280px) { .section { padding: 180px 96px; } }

.section-tight { padding: 80px 24px; }
@media (min-width: 768px) { .section-tight { padding: 120px 48px; } }

.container-wide   { max-width: 1440px; margin: 0 auto; }
.container-narrow { max-width: 1140px; margin: 0 auto; }
.container-tight  { max-width: 820px; margin: 0 auto; }

.bg-cream-soft { background: var(--cream-soft); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-sage-wash  { background: var(--sage-wash); }
.bg-rose-wash  { background: var(--rose-wash); }
.bg-terra-wash { background: var(--terra-wash); }
.bg-ochre-wash { background: var(--ochre-wash); }

/* ================================================
   HERO — Split éditorial (plus de full-bleed)
   ================================================ */
.hero {
  position: relative;
  background: var(--cream);
  padding: 130px 24px 80px;
  overflow: hidden;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero { padding: 150px 48px 100px; }
}
@media (min-width: 1024px) {
  .hero { padding: 170px 64px 120px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 80px;
    min-height: 72vh;
  }
}

.hero-text {
  order: 1;
}

.hero-photo-wrap {
  order: 2;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
  outline: 1px solid rgba(184, 145, 73, 0.32);
  outline-offset: 12px;
}
@media (min-width: 1024px) {
  .hero-photo-wrap {
    outline-offset: 16px;
    max-height: 78vh;
  }
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: heroIn 1800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: scale(1); }
}

.hero-logo {
  display: block;
  width: clamp(120px, 16vw, 168px);
  height: auto;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 800ms 200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Logo dans les en-têtes de sous-pages */
.header-logo {
  display: block;
  width: clamp(96px, 12vw, 128px);
  height: auto;
  margin-bottom: 28px;
}

/* Logo dans le footer (fond sombre — les ors ressortent) */
.footer-logo {
  display: block;
  width: 150px;
  height: auto;
  margin-bottom: 16px;
}

.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 700ms 400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}.hero-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(54px, 9vw, 116px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 900ms 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero-meta {
  margin-top: 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0;
  animation: fadeUp 700ms 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-meta .sep { color: var(--terracotta); margin: 0 0.9em; }

.hero-cta {
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 700ms 1400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   PAGE HEADER (sous-pages)
   ================================================ */
.page-header {
  padding: 180px 24px 90px;
  position: relative;
  z-index: 2;
  background: var(--cream-soft);
  border-bottom: 1px solid rgba(184, 145, 73, 0.2);
}
@media (min-width: 768px) {
  .page-header { padding: 220px 48px 130px; }
}
@media (min-width: 1280px) {
  .page-header { padding: 240px 96px 150px; }
}

.page-header h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 32px;
}
.page-header h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.page-header p.intro {
  margin-top: 40px;
  max-width: 60ch;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.page-header p.intro em {
  font-style: italic;
  color: var(--terracotta);
}

.page-header.header-rose  { background: var(--rose-wash); }
.page-header.header-sage  { background: var(--sage-wash); }
.page-header.header-terra { background: var(--terra-wash); }
.page-header.header-ochre { background: var(--ochre-wash); }

/* ================================================
   SECTION TITLES
   ================================================ */
.section-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}
.section-title.title-rose em  { color: var(--rose); }
.section-title.title-sage em  { color: var(--sage); }
.section-title.title-wine em  { color: var(--wine); }
.section-title.title-ochre em { color: var(--ochre); }

/* ================================================
   ATELIER
   ================================================ */
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .atelier-grid {
    grid-template-columns: 0.85fr 1fr;
    gap: 100px;
  }
}

.atelier-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
  outline: 1px solid rgba(184, 145, 73, 0.32);
  outline-offset: 12px;
}
@media (min-width: 1024px) {
  .atelier-image { aspect-ratio: 3 / 4; outline-offset: 16px; }
}
.atelier-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atelier-text p.lede {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 46ch;
}
.atelier-text p.lede em {
  font-style: italic;
  color: var(--terracotta);
}

.signature {
  font-family: 'Caveat', cursive;
  font-size: 50px;
  font-weight: 500;
  color: var(--terracotta);
  line-height: 1;
  display: inline-block;
  margin-top: 40px;
}
.signature-meta {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 10px;
}

/* ================================================
   CRÉATIONS
   ================================================ */
.creations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 16px;
}
@media (min-width: 768px) {
  .creations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
  }
}
@media (min-width: 1024px) {
  .creations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 48px;
  }
  /* 10 cartes en 3 colonnes : la dernière est seule sur sa rangée → on la centre */
  .creations-grid > .c-card:last-child:nth-child(3n - 2) {
    grid-column: 2;
  }
}
/* Compactage du texte des cartes en vue mobile 2 colonnes */
@media (max-width: 767px) {
  .creations-grid .c-card-meta { gap: 8px; }
  .creations-grid .c-card-num { font-size: 13px; }
  .creations-grid .c-card-title { font-size: 18px; line-height: 1.2; }
  .creations-grid .c-card-desc { font-size: 13px; line-height: 1.45; }
}

.c-card { display: block; text-decoration: none; }
.c-card-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}
.c-card-img::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.c-card:hover .c-card-img::after { transform: scaleX(1); }
.c-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}
.c-card:hover .c-card-img img { transform: scale(1.04); }

.c-card-meta {
  padding-top: 24px;
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.c-card-num {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.c-card-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 350ms ease;
}
.c-card:hover .c-card-title { color: var(--terracotta); }
.c-card-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.6;
  font-weight: 400;
}

.tones {
  display: flex;
  gap: 7px;
  margin-top: 16px;
}
.tone {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(31, 26, 20, 0.12);
}
.tone-sage   { background: var(--sage); }
.tone-rose   { background: var(--rose); }
.tone-wine   { background: var(--wine); }
.tone-terra  { background: var(--terracotta); }
.tone-ochre  { background: var(--ochre); }
.tone-gold   { background: var(--gold-bright); }
.tone-cream  { background: var(--cream-deep); }

/* ================================================
   SERVICES (list)
   ================================================ */
.service-list { border-top: 1px solid rgba(184, 145, 73, 0.32); }
.service-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(184, 145, 73, 0.32);
  align-items: start;
  transition: padding 400ms ease, background 400ms ease;
}
@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 80px 1.2fr 1fr 180px;
    gap: 48px;
    padding: 48px 24px;
    align-items: center;
    margin: 0 -24px;
  }
}
.service-row:hover { padding-left: 12px; }
@media (min-width: 768px) {
  .service-row:hover {
    padding-left: 36px;
    background: rgba(255, 255, 255, 0.5);
  }
}

.service-row-num {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--terracotta);
  letter-spacing: 0.04em;
}
.service-row-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color 350ms ease;
}
.service-row:hover .service-row-title { color: var(--terracotta); }
.service-row-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  grid-column: 2 / -1;
}
@media (min-width: 768px) {
  .service-row-desc { grid-column: auto; }
}
.service-row-cta {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  grid-column: 2 / -1;
  transition: color 250ms ease;
  text-decoration: none;
}
@media (min-width: 768px) {
  .service-row-cta { grid-column: auto; text-align: right; }
}
.service-row-cta:hover { color: var(--wine); }

/* ================================================
   INFO (visiter)
   ================================================ */
.info-line {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(184, 145, 73, 0.22);
}
@media (min-width: 768px) {
  .info-line { grid-template-columns: 120px 1fr; gap: 30px; }
}
.info-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding-top: 4px;
}
.info-value {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
}
.info-value a {
  color: var(--ink);
  transition: color 250ms ease;
  border-bottom: 1px solid var(--gold-pale);
  text-decoration: none;
}
.info-value a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.map-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: var(--cream-deep);
  overflow: hidden;
  border: 1px solid rgba(184, 145, 73, 0.32);
}
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: none;
}

/* ================================================
   HOME — Locate card (moment sombre signature)
   ================================================ */
.locate-card {
  background: var(--noir);
  color: var(--cream);
  padding: 56px 32px;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--terracotta);
}
@media (min-width: 768px) {
  .locate-card { padding: 72px 64px; }
}
.locate-card .section-title { color: var(--cream); }
.locate-card .section-title em { color: var(--rose); }
.locate-card .eyebrow { color: var(--gold-bright); }
.locate-card .eyebrow::before { background: var(--terracotta); }
.locate-card .hours-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--gold-pale);
  max-width: 40ch;
}

/* ================================================
   IMPORT / GROS — section signature (fond sombre)
   ================================================ */
.import-section {
  background: var(--noir);
  color: var(--cream);
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 110px 24px;
}
@media (min-width: 768px) { .import-section { padding: 160px 48px; } }
@media (min-width: 1280px) { .import-section { padding: 180px 96px; } }

.import-section .eyebrow { color: var(--gold-bright); }
.import-section .eyebrow::before { background: var(--terracotta); }

.import-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.import-title em {
  font-style: italic;
  color: var(--rose);
}

.import-lede {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.55;
  color: var(--gold-pale);
  max-width: 52ch;
}
.import-lede em { font-style: italic; color: var(--rose); }

/* Bande de 3 photos */
.import-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .import-gallery { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.import-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(221, 199, 154, 0.22);
  aspect-ratio: 4 / 5;
}
.import-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.import-photo:hover img { transform: scale(1.05); }

/* Bande de chiffres-clés */
.import-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
  border-top: 1px solid rgba(221, 199, 154, 0.22);
  padding-top: 56px;
}
@media (min-width: 900px) {
  .import-stats { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.import-stat-num {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}
.import-stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-pale);
  margin-top: 14px;
  line-height: 1.5;
}

/* Trois piliers */
.import-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .import-pillars { grid-template-columns: repeat(3, 1fr); gap: 56px; }
}
.import-pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.import-pillar-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.015em;
  margin-bottom: 14px;
}
.import-pillar-title em { font-style: italic; color: var(--rose); }
.import-pillar-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gold-pale);
}

/* ================================================
   ACCROCHE GROS / IMPORT (home) — bloc compact
   ================================================ */
.import-teaser {
  background: var(--cream-deep);
  border-left: 4px solid var(--terracotta);
  padding: 48px 32px;
}
@media (min-width: 768px) {
  .import-teaser { padding: 64px 56px; }
}
.import-teaser-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 42ch;
}

/* ================================================
   GALERIE — carrousel maison (scroll-snap natif)
   ================================================ */
.gallery-section {
  padding: 110px 0;
  position: relative;
  z-index: 2;
  background: var(--cream-soft);
  overflow: hidden;
}
@media (min-width: 768px) { .gallery-section { padding: 160px 0; } }

.gallery-head {
  padding: 0 24px;
  margin: 0 auto 56px;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .gallery-head {
    padding: 0 48px;
    margin-bottom: 72px;
  }
}

/* ---- Marquee : défilement continu infini ---- */
/* ---- Base (mobile + repli) : carrousel que l'on fait défiler au doigt ----
   Toujours défilable manuellement. Si le JS de l'animation échoue ou est
   désactivé, on reste sur ce mode — jamais bloqué. */
.gallery-marquee {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-marquee::-webkit-scrollbar { display: none; }

.gallery-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 24px;
}

@keyframes gallery-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--gm-shift, -50%)); }
}

/* ---- Desktop + animations autorisées + JS prêt : défilement automatique ----
   N'est actif QUE si le JS a ajouté la classe .is-animating (clones en place
   + décalage mesuré). Sans ça, on garde le défilement manuel ci-dessus. */
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .gallery-marquee.is-animating {
    overflow: hidden;
    scroll-snap-type: none;
  }
  .gallery-marquee.is-animating .gallery-marquee-track {
    gap: 28px;
    padding: 0;
    animation: gallery-marquee-scroll var(--gm-duration, 60s) linear infinite;
    will-change: transform;
  }
  .gallery-marquee.is-animating:hover .gallery-marquee-track {
    animation-play-state: paused;
  }
}

.gallery-item {
  flex: 0 0 auto;
  width: 76vw;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
  border-radius: 4px;
  scroll-snap-align: center;
}
@media (min-width: 768px)  { .gallery-item { width: 320px; max-width: none; } }
@media (min-width: 1024px) { .gallery-item { width: 340px; } }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item:hover img { transform: scale(1.05); }

/* Indice "faites glisser" — masqué dès que l'animation auto tourne (desktop) */
.gallery-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.gallery-hint svg { width: 16px; height: 16px; }
@media (min-width: 768px) and (prefers-reduced-motion: no-preference) {
  .gallery-hint { display: none; }
}


.footer {
  padding: 80px 24px 40px;
  background: var(--noir);
  color: var(--cream);
  position: relative;
  z-index: 2;
  border-top: 4px solid var(--terracotta);
}
@media (min-width: 768px) {
  .footer { padding: 100px 48px 48px; }
}
.footer .nav-link { color: var(--cream); }
.footer .nav-link::after { background: var(--gold-bright); }
.footer .nav-link:hover { color: var(--gold-bright); }

.footer-signature {
  font-family: 'Caveat', cursive;
  font-weight: 500;
  font-size: 60px;
  color: var(--rose);
  line-height: 1;
  display: inline-block;
}
.footer-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--gold-pale);
  letter-spacing: 0.04em;
  margin-top: 12px;
}

.footer-line {
  border-top: 1px solid rgba(221, 199, 154, 0.22);
}
.footer-line span {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: var(--gold-pale);
  letter-spacing: 0.06em;
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .reveal {
    transform: translateY(44px) scale(0.985);
    transition: opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1), transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
  }
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (min-width: 768px) {
  .reveal.visible { transform: translateY(0) scale(1); }
}
.reveal-d1 { transition-delay: 120ms; }
.reveal-d2 { transition-delay: 240ms; }
.reveal-d3 { transition-delay: 360ms; }

/* ================================================
   MOBILE MENU
   ================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 350ms ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu .menu-link {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 38px;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.mobile-menu .menu-link:hover { color: var(--terracotta); }
.mobile-menu .menu-link.active {
  color: var(--terracotta);
  font-style: italic;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--ink);
  cursor: pointer;
  padding: 12px;
  background: none;
  border: none;
}

/* ================================================
   PLACEHOLDERS
   ================================================ */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--rose-wash) 60%, var(--terra-wash) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(232, 154, 139, 0.42) 0%, transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(159, 178, 138, 0.28) 0%, transparent 50%);
  pointer-events: none;
}
.img-placeholder::after {
  content: "le Bouquet";
  position: relative;
  z-index: 1;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--terracotta);
  opacity: 0.5;
  letter-spacing: 0.01em;
}

.c-card-img .img-placeholder,
.atelier-image .img-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 320px;
}

/* ================================================
   UTILITAIRES
   ================================================ */
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-stretch { align-items: stretch; }
.justify-between { justify-content: space-between; }
.self-start { align-self: flex-start; }
.w-full { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-\[1440px\] { max-width: 1440px; }
.text-center { text-align: center; }
.text-sm { font-size: 14px; line-height: 1.5; }
.text-xs { font-size: 12px; line-height: 1.5; }

.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-8 { gap: 32px; }
.gap-9 { gap: 36px; }
.gap-10 { gap: 40px; }
.gap-12 { gap: 48px; }
.gap-x-10 { column-gap: 40px; }
.gap-y-3 { row-gap: 12px; }

.px-6 { padding-left: 24px; padding-right: 24px; }
.py-5 { padding-top: 20px; padding-bottom: 20px; }
.pt-8 { padding-top: 32px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-12 { margin-top: 48px; }
.mt-32 { margin-top: 128px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-14 { margin-bottom: 56px; }
.mb-20 { margin-bottom: 80px; }

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:inline-flex { display: inline-flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:self-end { align-self: flex-end; }
  .md\:px-12 { padding-left: 48px; padding-right: 48px; }
  .md\:mt-40 { margin-top: 160px; }
  .md\:mb-28 { margin-bottom: 112px; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:gap-20 { gap: 80px; }
  .lg\:gap-24 { gap: 96px; }
  .lg\:items-end { align-items: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-photo-wrap img { opacity: 1; transform: none; }
  .hero-eyebrow, .hero-title, .hero-meta, .hero-cta { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}
