/* ══════════════════════════════════════════════════════════════
   ATELIER MIRAGE — HOMEPAGE STYLES
   Extrait du <style> inline de index.html pour mise en cache.
   À charger APRÈS styles.css :
   <link rel="stylesheet" href="homepage.css" />
══════════════════════════════════════════════════════════════ */

/* --- HERO HOOK (Business tagline) — QW1: Contraste augmenté --- */
.hero-hook {
  margin-top: 1.8rem;
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
}

/* --- HERO REASSURANCE MICRO-TEXT (QW1) --- */
.hero-reassurance {
  margin-top: 1.2rem;
  font-family: 'Geometria', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
}

/* --- CONTEXTUAL CTA BLOCKS (QW3) --- */
.section-cta-contextual {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1rem;
}

/* --- HERO DOUBLE CTA --- */
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
/* Audit A11Y: min-height 48px, font-size 0.8rem pour conformité loi de Fitts */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.4rem;
  border-radius: 999px;
  font-family: 'Geometria', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(109,72,51,0.2);
  background: transparent;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform 0.55s var(--ease-out);
}
.btn-secondary:hover::before { transform: translateX(0); }
.btn-secondary:hover { color: var(--cream); border-color: var(--ink); }
.btn-secondary span { position: relative; z-index: 1; }
.btn-secondary .btn-arrow {
  position: relative; z-index: 1;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  border: 1px solid rgba(109,72,51,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}
.btn-secondary:hover .btn-arrow { transform: translateX(5px); border-color: rgba(255,255,255,0.4); }

/* --- HOME COLLECTION — Aperçu collection filtrable (style collection / YC) --- */
.home-collection {
  padding: clamp(3rem, 4.5vw, 4.5rem) clamp(1.2rem, 3vw, 4rem);
  background: var(--cream);
}
.hc-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  margin: 0 0 clamp(1.8rem, 3vw, 2.6rem);
}
.hc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}
.hc-tab {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Geometria', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(109,72,51,0.32);
  transition: color 0.3s var(--ease-out);
}
.hc-tab:hover { color: rgba(109,72,51,0.65); }
.hc-tab.is-active { color: var(--ink); }
.hc-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.hc-voir-tout {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Geometria', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(109,72,51,0.32);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
.hc-voir-tout:hover { color: var(--gold); }
.hc-voir-tout svg { transition: transform 0.3s var(--ease-out); }
.hc-voir-tout:hover svg { transform: translateX(3px); }
.hc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.4vw, 1.3rem) clamp(0.7rem, 1.1vw, 1rem);
}
.hc-card {
  display: block;
  text-decoration: none;
}
.hc-card.is-hidden { display: none; }
.hc-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.hc-card-img {
  overflow: hidden;
  background: var(--cream-2);
  aspect-ratio: 4 / 5;
  margin-bottom: 0.9rem;
  position: relative;
}
.hc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.hc-card:hover .hc-card-img img { transform: scale(1.04); }
.hc-card-name {
  font-family: 'Geometria', sans-serif;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 0.3rem;
  transition: color 0.3s var(--ease-out);
}
.hc-card:hover .hc-card-name { color: var(--gold); }
.hc-card-price {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-muted);
}
@media (max-width: 900px) {
  .hc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Bouton « Ajouter au panier » sur les cartes collection */
.hc-add {
  position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.7rem;
  padding: 0.75rem 1rem;
  background: var(--cream); color: var(--ink);
  font-family: 'Geometria', sans-serif; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  text-align: center; cursor: pointer; user-select: none;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
}
.hc-card:hover .hc-add,
.hc-card:focus-within .hc-add { opacity: 1; transform: translateY(0); }
.hc-add:hover { background: var(--tan); color: var(--cream); border: 1px solid var(--tan); }
.hc-add.is-added { background: var(--gold); color: var(--cream); }
@media (hover: none) {
  /* Tactile : pas de bouton en surimpression (on tape la carte pour ouvrir la fiche) */
  .hc-add { display: none; }
}

/* --- VIDEO REVEAL SECTION — Audit v4: paddings réduits pour continuité visuelle --- */
.video-reveal-section {
  padding: 4.5rem 0 3rem;
  text-align: center;
}
.video-reveal-header {
  padding: 0 6vw;
  max-width: 650px;
  margin: 0 auto 4rem;
}
.video-reveal-header .section-eyebrow { justify-content: center; }
.video-reveal-header h2 {
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.video-reveal-header h2 em { font-style: normal; color: inherit; }
.video-reveal-header p {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--ink-muted);
  max-width: 45ch;
  margin: 0 auto;
}
/* legacy frame hidden — replaced by social-phones */
.video-reveal-frame { display: none; }
.video-sound-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: white;
  font-family: 'Geometria', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
}
.video-sound-toggle:hover { background: rgba(163,120,27,0.6); }

/* --- HERO BASELINE — Brand narrative tagline --- */
.hero-baseline {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-top: 1.2rem;
  opacity: 0;
  transform: translateY(16px);
}


/* --- PRODUCT GRID (replaces carousel on desktop) --- */
.shop-grid {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr) !important;
  gap: 3rem 2rem !important;
  overflow: visible !important;
  padding: 0 !important;
}
@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .shop-grid .shop-card { grid-column: span 2 !important; }
  .shop-grid .shop-card:nth-child(1),
  .shop-grid .shop-card:nth-child(2) { grid-column: span 2 !important; }
}
@media (max-width: 640px) {
  .shop-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem !important;
    padding: 0 5vw 1rem !important;
    scroll-padding: 5vw;
  }
  .shop-grid::-webkit-scrollbar { display: none; }
  .shop-grid { scrollbar-width: none; }
  .shop-grid .shop-card {
    flex: 0 0 80vw;
    scroll-snap-align: center;
    min-width: 0;
  }
}

/* --- LEAD MAGNET — Audit v5: breathing room between conversion blocks --- */
.lead-magnet {
  padding: 3.5rem 6vw;
  margin: 2rem 6vw 3rem;
  background: var(--ink);
  border-radius: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(163,120,27,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lead-magnet-content { position: relative; z-index: 1; }
.lead-magnet-eyebrow {
  font-family: 'Geometria', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.lead-magnet h3 {
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.lead-magnet h3 em { font-style: normal; color: inherit; }
.lead-magnet p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(253,250,247,0.5);
  max-width: 40ch;
}
.lead-magnet-form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.lead-magnet-input {
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none; /* base reset — :focus-visible below restores a11y ring */
  min-width: 220px;
  transition: border-color 0.3s;
}
.lead-magnet-input::placeholder { color: rgba(253,250,247,0.35); }
.lead-magnet-input:focus { border-color: var(--gold); }
.lead-magnet-input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.lead-magnet-submit {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  font-family: 'Geometria', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  white-space: nowrap;
}
.lead-magnet-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.lead-magnet-submit:active { transform: scale(0.96); }
.lead-magnet-success {
  display: none;
  color: var(--gold);
  font-family: 'Geometria', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 0;
}
@media (max-width: 900px) {
  .lead-magnet {
    grid-template-columns: 1fr;
    margin: 0 5vw 2rem;
    padding: 3rem 1.8rem;
  }
}
@media (max-width: 640px) {
  .lead-magnet-input { min-width: 100%; }
  .lead-magnet-submit { width: 100%; }
}

/* --- SOCIAL LINKS IN FOOTER --- */
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(109,72,51,0.1);
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(163,120,27,0.08);
}
.footer-social a svg { color: var(--ink-muted); transition: color 0.3s; }
.footer-social a:hover svg { color: var(--gold); }

/* --- HIDE MOBILE SWIPE HINT ON DESKTOP --- */
@media (min-width: 769px) {
  body .mobile-swipe-hint { display: none; }
}

/* --- B2B ARGUMENTS BREAKPOINT TABLETTE --- */
@media (max-width: 1024px) {
  .b2b-list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- UTILITY CLASSES (replaces inline styles) --- */
.catalogue-cta-wrap { text-align: center; margin-top: 3rem; }
.catalogue-cta-btn { display: inline-flex; }
.atelier-cta-wrap { padding: 0 7vw; margin-top: 2rem; }
.engagements-sub {
  font-size: clamp(0.85rem, 2.5vw, 1.3rem);
  font-style: normal;
  opacity: 0.7;
  display: block;
  margin-top: 1.2rem;
}

/* --- ATELIER TEASER --- */
.atelier-teaser {
  padding: 0 6vw;
}
.atelier-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 0;
}
.atelier-teaser-desc {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  max-width: 45ch;
}
.atelier-teaser-img {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.atelier-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.atelier-teaser-img:hover img {
  transform: scale(1.04);
}

/* --- SCARCITY / SEASONAL BADGES --- */
.shop-card-badge-season {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: 'Geometria', sans-serif; font-size: 0.5rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 999px;
  z-index: 2;
  background: rgba(109,72,51,0.85); color: var(--cream);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(109,72,51,0.2);
}
.shop-card-badge-limited {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: 'Geometria', sans-serif; font-size: 0.5rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 999px;
  z-index: 2;
  background: linear-gradient(135deg, #6D4833 0%, #A3781B 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(139,69,19,0.3);
}

/* ── Section CTA Link — Inline navigation link with arrow ── */
.section-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Geometria', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(109,72,51,0.15);
  transition: color 0.4s var(--ease-out), border-color 0.4s, gap 0.4s var(--ease-spring);
  margin-top: 1.5rem;
}
.section-cta-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 1rem;
}
.section-cta-link svg {
  transition: transform 0.4s var(--ease-spring);
}
.section-cta-link:hover svg {
  transform: translateX(3px);
}

/* ── Filter Pills — Clean ── */
.filter-pill {
  transition: all 0.4s var(--ease-out);
}
.filter-pill.active {
  box-shadow: none;
}

/* ── Guarantees — No hover effects (Salur style) ── */

/* --- PRESS SECTION — Enhanced visual treatment (Audit) --- */
.press-section {
  padding: 2rem 6vw;
  text-align: center;
}
.press-section .section-eyebrow { justify-content: center; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.press-card {
  background: var(--white);
  border-radius: var(--radius-lg, 2rem);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(109,72,51,0.04);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(109,72,51,0.06));
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
  text-align: left;
  position: relative;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md, 0 4px 24px rgba(109,72,51,0.08));
  border-color: rgba(163,120,27,0.1);
}
.press-source-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-2);
  margin-bottom: 1.2rem;
  color: var(--gold);
  transition: background 0.3s;
}
.press-card:hover .press-source-logo {
  background: rgba(163,120,27,0.1);
}
.press-source {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.press-quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.press-date {
  font-family: 'Geometria', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 640px) {
  .press-grid { grid-template-columns: 1fr; }
}

/* --- LEAD MAGNET PRIVACY NOTE --- */
.lead-magnet-privacy {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(253,250,247,0.3);
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}

/* --- TABLET LANDSCAPE BREAKPOINT (769–1024) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .lead-magnet { grid-template-columns: 1fr; margin: 2rem 4vw 3rem; padding: 3rem 2rem; }
  .atelier-teaser-inner { gap: 2.5rem; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .video-luxe-bottom { padding: 1.2rem; }
}

@media (max-width: 768px) {
  .atelier-teaser { padding: 0 5vw; }
  .atelier-teaser-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .atelier-teaser-img { aspect-ratio: 16/9; }

  /* Paddings mobile serrés */
  .atelier { padding: 2.5rem 0 2rem !important; }
  .philosophy { padding: 2.5rem 5vw !important; }
  .boutique { padding: 2.5rem 5vw 2rem !important; }
  .video-reveal-section { padding: 2rem 0 !important; }

  /* CTA banner mobile: full width, single column, compact */
  .cta-banner {
    grid-template-columns: 1fr !important;
    text-align: center;
    margin: 0 !important;
    padding: 4rem 6vw !important;
    gap: 1.5rem !important;
    border-radius: 0 !important;
  }
  .cta-banner-h { font-size: clamp(2.2rem, 8vw, 3rem) !important; }
  .cta-banner-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .cta-banner-action .btn-gold-filled,
  .cta-banner-action .btn-outline {
    padding: 0.85rem 1.8rem;
    font-size: 0.65rem;
  }
}

/* ═══════════════════════════════════════════════════════
   HOME · DIAPORAMA « À LA UNE » — plein cadre (façon YC)
   Volet 1 = livraison · Volets 2-4 = sélection du moment
═══════════════════════════════════════════════════════ */
.home-feature {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
.hf-viewport { position: absolute; inset: 0; overflow: hidden; }
.hf-track {
  display: flex; height: 100%;
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}
.hf-slide {
  position: relative; flex: 0 0 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hf-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.18);
  transition: transform 8s linear;
}
.hf-slide.is-active .hf-bg { transform: scale(1.09); }
.hf-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 56% 52% at 50% 48%, rgba(20,15,10,0.46), transparent 78%),
    linear-gradient(180deg, rgba(20,15,10,0.26), rgba(20,15,10,0.46));
}
.hf-inner {
  position: relative; z-index: 2; padding: 0 6vw;
  max-width: 1180px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.9s ease 0.15s, transform 0.9s var(--ease-out) 0.15s;
}
.hf-slide.is-active .hf-inner { opacity: 1; transform: translateY(0); }
.hf-eyebrow {
  font-family: 'Geometria', sans-serif; font-weight: 500;
  font-size: clamp(0.68rem, 0.95vw, 0.86rem);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--tan-deep); margin: 0 0 1.4rem;
}
.hf-title {
  font-family: 'Geometria', sans-serif; font-weight: 300;
  font-size: clamp(1.85rem, 3.4vw, 3.6rem);
  line-height: 1.1; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--cream); margin: 0;
}
.hf-text {
  font-family: var(--sans);
  font-size: 0.95rem; line-height: 1.85;
  color: rgba(252,249,243,0.82);
  max-width: 46ch; margin: 1.5rem 0 0;
}
.hf-text sup { color: var(--gold-light); }
.hf-note {
  position: absolute; left: 3vw; bottom: 1.5rem; z-index: 3;
  font-family: var(--sans);
  font-size: 0.78rem; line-height: 1.5; letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--cream);
  max-width: none; margin: 0; text-align: left;
}
.hf-btn {
  margin-top: 2.4rem;
  font-family: 'Geometria', sans-serif; font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(252,249,243,0.55);
  padding: 1.05rem 2.6rem;
  text-decoration: none; display: inline-block;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out), border-color 0.35s;
}
.hf-btn:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hf-btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

/* Contrôles — bas droite : barres de progression + lecture/pause */
.hf-controls {
  position: absolute; right: 3vw; bottom: 2.2rem; z-index: 6;
  display: flex; align-items: center; gap: 0.85rem;
}
.hf-dots { display: flex; gap: 0.45rem; }
.hf-dot {
  position: relative; overflow: hidden;
  width: 30px; height: 2px; padding: 0; border: 0;
  background: rgba(252,249,243,0.3); cursor: pointer;
}
.hf-dot-bar {
  position: absolute; left: 0; top: 0; height: 100%; width: 0;
  background: var(--cream);
}
.hf-dot:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 5px; }
.hf-toggle {
  flex-shrink: 0; padding: 3px;
  display: flex; align-items: center; justify-content: center;
  border: 0; background: transparent; color: var(--cream); cursor: pointer;
  opacity: 0.85; transition: opacity 0.3s;
}
.hf-toggle:hover { opacity: 1; }
.hf-toggle:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.hf-toggle .hf-ic-play { display: none; }
.hf-toggle[data-state="paused"] .hf-ic-pause { display: none; }
.hf-toggle[data-state="paused"] .hf-ic-play { display: block; }

/* ═══════════════════════════════════════════════════════
   HOME · CRÉATIONS SUR-MESURE — texte sticky + mosaïque légendée
═══════════════════════════════════════════════════════ */
.home-bespoke {
  background: var(--cream);
  display: grid; grid-template-columns: 0.92fr 0.933fr;
  gap: 3rem; align-items: center;
  padding: 0.5rem;
}
.home-bespoke-text {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 2rem 2vw;
}
.home-bespoke-eyebrow {
  font-family: 'Geometria', sans-serif; font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #8A6D3B; margin: 0 0 1.8rem;
}
.home-bespoke-title {
  font-family: 'Geometria', sans-serif; font-weight: 300;
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  line-height: 1.16; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--tan-deep); margin: 0 0 2.6rem; max-width: 15ch;
}
.home-bespoke-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 1.6rem; flex-wrap: wrap;
}
.hb-btn {
  font-family: 'Geometria', sans-serif; font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream); background: var(--tan); border: 1px solid var(--tan);
  padding: 1.05rem 2.5rem; text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}
.hb-btn:hover { background: var(--tan-deep); border-color: var(--tan-deep); }
.hb-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.hb-link {
  font-family: 'Geometria', sans-serif; font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  transition: color 0.3s;
}
.hb-link:hover { color: var(--tan-deep); }
.hb-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.home-bespoke-imgs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem; padding: 0;
}
.hb-cell {
  position: relative; margin: 0; overflow: hidden;
  background: var(--cream-deep); aspect-ratio: 4 / 5;
}
.hb-cell--wide { grid-column: 1 / -1; aspect-ratio: 3 / 2; }
.hb-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s var(--ease-out);
}
.hb-cell:hover img { transform: scale(1.04); }
.hb-cell figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2.4rem 1rem 1.1rem;
  font-family: 'Geometria', sans-serif; font-size: 0.6rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream); text-align: center;
  background: linear-gradient(to top, rgba(20,15,10,0.6), transparent);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .home-feature { height: 100vh; height: 100svh; }
  .hf-title { white-space: normal; }
  .hf-note { max-width: 26ch; font-size: 0.7rem; bottom: 1.6rem; }
  .hf-controls { bottom: 1.8rem; }
  .home-bespoke {
    grid-template-columns: 1fr; gap: 0; padding: 0 5vw;
  }
  .home-bespoke-text {
    position: static; min-height: auto; padding: 4.5rem 2vw 2.5rem;
  }
  .home-bespoke-imgs { grid-template-columns: 1fr; padding: 0 0 4rem; }
  .hb-cell--wide { grid-column: auto; aspect-ratio: 4 / 5; }
}
@media (max-width: 480px) {
  .home-bespoke-imgs { gap: 0.35rem; }
  .hf-controls { right: 5vw; }
}
@media (prefers-reduced-motion: reduce) {
  .hf-bg { transition: none; }
  .hf-track { transition: transform 0.25s linear; }
  .hf-inner { transition: opacity 0.2s linear; }
}

/* Volet livraison — fond clair (boîtes blanches) : voile renforcé pour le texte */
.hf-slide--cta .hf-scrim {
  background:
    radial-gradient(ellipse 60% 56% at 50% 48%, rgba(18,13,9,0.60), transparent 80%),
    linear-gradient(180deg, rgba(18,13,9,0.40) 0%, rgba(18,13,9,0.60) 100%);
}

/* Volet livraison — sur-titre « Maintenant disponible » en brun chaud (tan-deep) */
.hf-slide--cta .hf-eyebrow { color: var(--tan-deep); }
/* Section partenaires — force le tan-deep pour matcher « La sélection du moment » */
#partners .hf-eyebrow { color: var(--tan-deep); }
