/*
Theme Name: Binôme Ateliers
Description: Thème enfant pour Binôme Ateliers, artisans créateurs de mobilier et objets en bois et acier.
Template: hello-elementor
Version: 1.3.0
Text Domain: binome-ateliers
Author: Binôme Ateliers
*/

/* =========================================================
   Binôme Ateliers — feuille de styles principale
   ========================================================= */

:root {
  --cream: #ECE3DA;
  --cream-deep: #E2D6C8;
  --cream-soft: #F4EEE7;
  --forest: #2D3C3D;
  --forest-soft: #3D4F50;
  --sand: #BB9F81;
  --sand-light: #D4BFA6;
  --white: #FFFFFF;
  --ink: #222222;
  --ink-soft: #4a4a48;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --font-display: "Josefin Sans", "Mostra Nuova", serif;
  --font-body: "Quicksand", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --t-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { max-width: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }

/* ---------- typographic primitives ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sand);
  display: inline-block;
}
.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sand);
}
.h-display {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--forest);
  margin: 0;
}
.h1 { font-size: clamp(44px, 7.6vw, 110px); font-weight: 300; }
.h2 { font-size: clamp(34px, 4.4vw, 60px); font-weight: 300; }
.h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 400; }
.lead {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
}
.italic-serif {
  font-family: "Cormorant Garamond", "Josefin Sans", serif;
  font-style: italic;
  font-weight: 400;
}

/* ---------- container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s var(--t-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn .arrow {
  width: 22px; height: 1px; background: currentColor; position: relative;
  transition: width 0.4s var(--t-out);
}
.btn .arrow::after {
  content: ""; position: absolute; right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 32px; }
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--ink); }
.btn-outline { background: transparent; color: var(--forest); border: 1px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); }
.btn-ghost { padding: 14px 0; color: var(--forest); }
.btn-ghost:hover { color: var(--sand); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.35s var(--t-out);
}
.nav.scrolled {
  border-bottom-color: rgba(45, 60, 61, 0.08);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
  gap: 40px;
}
.nav.scrolled .nav-inner { height: 68px; }
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--forest);
  position: relative;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--forest);
  transition: right 0.4s var(--t-out);
}
.nav-link:hover::after { right: 0; }
.nav-caret {
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s var(--t-out);
  opacity: 0.7;
}

/* ---------- nav dropdown ---------- */
.nav-item-with-menu {
  position: relative;
}
.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  min-width: 320px;
  background: var(--cream-soft);
  border: 1px solid rgba(45, 60, 61, 0.08);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.3s var(--t-out), transform 0.3s var(--t-out), visibility 0s linear 0.3s;
  box-shadow: 0 24px 48px -24px rgba(34, 34, 34, 0.18);
  z-index: 90;
}
.nav-item-with-menu:hover .nav-menu,
.nav-item-with-menu:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav-item-with-menu:hover .nav-caret { transform: rotate(225deg) translateY(-2px); }
.nav-menu::after {
  content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px;
}
.nav-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 14px;
  color: var(--forest);
  transition: background 0.25s var(--t-out);
  border-bottom: 1px solid rgba(45, 60, 61, 0.06);
}
.nav-menu-item:last-child { border-bottom: 0; }
.nav-menu-item:hover { background: var(--cream); }
.nav-menu-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--sand);
  flex-shrink: 0;
  margin-top: 4px;
  width: 18px;
}
.nav-menu-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--forest);
  letter-spacing: -0.005em;
}
.nav-menu-item em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.nav-menu-item-alt {
  background: var(--white);
  margin-top: 6px;
  border-bottom: 0;
  border-top: 1px dashed rgba(45, 60, 61, 0.18);
  padding-top: 16px;
}
.nav-menu-item-alt .nav-menu-num { color: var(--sand); font-size: 14px; }
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  color: var(--forest);
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s var(--t-out);
  text-decoration: none;
}
.nav-icon:hover,
.nav-icon:focus,
.nav-icon:active,
.nav-icon:focus-visible {
  color: var(--sand);
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
  background-color: transparent !important;
  -webkit-tap-highlight-color: transparent !important;
}
.nav-icon svg { display: block; flex-shrink: 0; }
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cart-count {
  position: absolute;
  top: -7px; right: -10px;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 10px;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  line-height: 1;
}
.brand-mark {
  display: block;
  width: 148px;
  height: 40px;
  background-color: currentColor;
  -webkit-mask-image: url("assets/logo-binome-vert.png");
          mask-image: url("assets/logo-binome-vert.png");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: opacity 0.3s var(--t-out);
}
.brand:hover .brand-mark { opacity: 0.78; }
.nav.scrolled .brand-mark { width: 132px; height: 36px; }
.footer-brand .brand-mark { width: 180px; height: 50px; }

/* announcement bar */
.announce {
  background: var(--forest);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
}
.announce span { opacity: 0.7; margin: 0 12px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(120px, 14vw, 200px) 0 clamp(120px, 14vw, 200px);
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(115deg, rgba(74,58,40,0.95) 0%, rgba(46,36,24,0.92) 55%, rgba(26,20,16,0.95) 100%);
  background-size: cover;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
/* Filtre sombre sur la photo hero pour lisibilité du texte — opacité 0.38 */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  position: relative;
  z-index: 1;
}
.hero-copy { padding-bottom: 0; }
.hero-copy .h-display { color: var(--cream); }
.hero-copy .eyebrow { color: var(--sand-light); }
.hero-copy .eyebrow::before { background: var(--sand-light); }
.hero-copy .h1 { margin-top: 32px; }
.hero-copy .h1 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--sand-light);
}
.hero-copy .lead { margin-top: 32px; color: rgba(236, 227, 218, 0.82); }
.hero-cta-row {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.hero .btn-primary { background: var(--cream); color: var(--forest); }
.hero .btn-primary:hover { background: var(--sand-light); }
.hero .btn-ghost { color: var(--cream); }
.hero .btn-ghost:hover { color: var(--sand-light); }
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(236, 227, 218, 0.22);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 227, 218, 0.78);
}
.hero-meta-item { display: flex; align-items: center; gap: 10px; }
.hero-meta-item svg { color: var(--sand-light); }
.hero-visual { min-height: 1px; }

/* =========================================================
   IMAGE PLACEHOLDERS
   ========================================================= */
.ph-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}
.ph-img::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--ph-bg, linear-gradient(135deg, #d8c5ad 0%, #b8966f 60%, #8e6d49 100%));
}
.ph-img::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0 0.1 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
  mix-blend-mode: overlay;
  opacity: 0.9;
  pointer-events: none;
}
.ph-img.ph-wood { --ph-bg: linear-gradient(120deg, #e0c8a8 0%, #b89570 50%, #8a6745 100%); }
.ph-img.ph-walnut { --ph-bg: linear-gradient(135deg, #8a6647 0%, #5e3f28 60%, #3a2517 100%); }
.ph-img.ph-oak { --ph-bg: linear-gradient(115deg, #d8bd96 0%, #a98860 60%, #7a5d3a 100%); }
.ph-img.ph-steel { --ph-bg: linear-gradient(140deg, #4a4a48 0%, #2c2c2a 50%, #1a1a18 100%); }
.ph-img.ph-cream { --ph-bg: linear-gradient(135deg, #f4eee7 0%, #e2d6c8 60%, #c8b8a4 100%); }
.ph-img.ph-forest { --ph-bg: linear-gradient(135deg, #3d4f50 0%, #2D3C3D 50%, #1c2728 100%); }
.ph-img.ph-atelier { --ph-bg: linear-gradient(160deg, #5a4f42 0%, #3a322a 50%, #1e1a16 100%); }
.ph-img-label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.78);
  background: rgba(0,0,0,0.32);
  padding: 6px 10px;
  text-transform: lowercase;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.ph-img-label::before { content: "▸ "; opacity: 0.6; }

/* =========================================================
   PILLARS
   ========================================================= */
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head-meta {
  display: flex; align-items: center; justify-content: space-between;
  grid-column: 1 / -1;
  margin-bottom: 24px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 56px);
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 200;
  color: var(--sand);
  line-height: 1;
  border-bottom: 1px solid rgba(45, 60, 61, 0.18);
  padding-bottom: 22px;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--forest);
  margin: 0;
  line-height: 1.2;
}
.pillar p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}
.pillar .badge {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  border: 1px solid var(--sand);
  padding: 8px 14px;
  align-self: flex-start;
}

/* =========================================================
   COLLECTIONS
   ========================================================= */
.collections-bg { background: var(--cream-soft); }
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.coll-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  cursor: pointer;
  transition: transform 0.5s var(--t-out);
}
.coll-card:hover { transform: translateY(-6px); }
.coll-card .ph-img { aspect-ratio: 4/5; }
.coll-card img { aspect-ratio: 4/5; width: 100%; object-fit: cover; display: block; }
.coll-body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.coll-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
}
.coll-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  margin: 0;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.coll-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}
.coll-cta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-top: 4px;
}
.coll-cta .arrow {
  width: 24px; height: 1px; background: currentColor; position: relative;
  transition: width 0.4s var(--t-out);
}
.coll-cta .arrow::after {
  content: ""; position: absolute; right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.coll-card:hover .coll-cta { color: var(--sand); }
.coll-card:hover .coll-cta .arrow { width: 36px; }

/* =========================================================
   STORYTELLING / ATELIERS — dark
   ========================================================= */
.dark-section {
  background: var(--forest);
  color: var(--cream);
}
.dark-section .h-display { color: var(--cream); }
.dark-section .lead { color: rgba(236, 227, 218, 0.78); }
.dark-section .eyebrow { color: var(--sand-light); }
.dark-section .eyebrow::before { background: var(--sand-light); }
.dark-section .section-num { color: var(--sand-light); }
.dark-section .btn-outline { color: var(--cream); border-color: var(--sand); }
.dark-section .btn-outline:hover { background: var(--sand); color: var(--forest); border-color: var(--sand); }
.dark-section .btn-primary { background: var(--sand); color: var(--forest); }
.dark-section .btn-primary:hover { background: var(--cream); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.story-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(187, 159, 129, 0.25);
}
.story-value { display: flex; flex-direction: column; gap: 6px; }
.story-value-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--sand-light);
}
.story-value-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin: 0;
}
.story-value-desc {
  font-size: 13px;
  color: rgba(236, 227, 218, 0.6);
  line-height: 1.55;
}
.story-visual {
  position: relative;
  aspect-ratio: 5/6;
}
.story-visual .ph-img { height: 100%; }
.story-quote {
  position: absolute;
  bottom: -36px; left: -36px;
  background: var(--cream);
  color: var(--forest);
  padding: 28px 32px;
  max-width: 320px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  font-weight: 400;
  margin: 0;
}
.story-quote cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--sand);
  margin-top: 16px;
  text-transform: uppercase;
}
.workshops { margin-top: clamp(80px, 9vw, 130px); }
.workshops-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(187, 159, 129, 0.25);
}
.workshops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.workshop-card {
  background: var(--forest-soft);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--t-out);
}
.workshop-card:hover { background: #4a5d5e; }
.workshop-card .ph-img { aspect-ratio: 16/10; margin-bottom: 8px; }
.workshop-card-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-light);
}
.workshop-card-meta span { display: flex; align-items: center; gap: 6px; }
.workshop-card h4 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 300;
  color: var(--cream);
  margin: 0;
  line-height: 1.15;
}
.workshop-card p {
  margin: 0;
  color: rgba(236, 227, 218, 0.7);
  font-size: 14.5px;
  line-height: 1.65;
}
.workshop-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(187, 159, 129, 0.2);
}
.workshop-card-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--sand-light);
}
.workshop-card-price small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  display: block;
  color: rgba(236, 227, 218, 0.5);
  margin-top: 2px;
}
.wcd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin-bottom: 10px;
}
.wcd-badge::before {
  content: "✱";
  font-size: 14px;
  color: var(--sand);
}

/* =========================================================
   SUR-MESURE
   ========================================================= */
.sur-mesure-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.sur-mesure-bullets {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 14px;
}
.sur-mesure-bullets li {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(45, 60, 61, 0.18);
  font-size: 15.5px;
  color: var(--ink-soft);
}
.sur-mesure-bullets li:last-child { border-bottom: 0; }
.sur-mesure-bullets li::before {
  content: "—";
  color: var(--sand);
  font-weight: 600;
  margin-top: 2px;
}
.sur-mesure-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1/1;
}
.sur-mesure-visual .ph-img { height: 100%; }
.sur-mesure-visual .ph-img:nth-child(1) { grid-row: span 2; }

/* =========================================================
   AVIS
   ========================================================= */
.avis-section { background: var(--cream-soft); }
.avis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.avis-card {
  background: var(--white);
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.avis-stars {
  display: flex; gap: 3px;
  color: var(--sand);
  font-size: 14px;
}
.avis-card blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 21px;
  line-height: 1.45;
  color: var(--forest);
  font-weight: 400;
  flex: 1;
}
.avis-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(45, 60, 61, 0.1);
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.avis-card-foot strong { color: var(--forest); font-weight: 600; }
.avis-card-foot span { color: var(--sand); }
.avis-summary {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid rgba(45, 60, 61, 0.08);
}
.avis-score {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.avis-summary-text { font-size: 14px; color: var(--ink-soft); }
.avis-summary-text strong { color: var(--forest); display: block; font-weight: 600; font-size: 15px; }

/* =========================================================
   HISTOIRE
   ========================================================= */
.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.histoire-portrait {
  position: relative;
  aspect-ratio: 4/5;
}
.histoire-portrait .ph-img { height: 100%; }
.histoire-caption {
  position: absolute;
  bottom: 20px; right: -40px;
  padding: 12px 18px;
  background: var(--sand);
  color: var(--forest);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.histoire-body p {
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  max-width: 56ch;
}
.histoire-signatures {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(45, 60, 61, 0.15);
}
.histoire-sig {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 28px;
  color: var(--forest);
  line-height: 1;
}
.histoire-sig small {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 8px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.faq-list {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(45, 60, 61, 0.18);
}
.faq-item { border-bottom: 1px solid rgba(45, 60, 61, 0.18); width: 100%; min-width: 0; }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -0.005em;
}
.faq-q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--forest);
  border-radius: 50%;
  position: relative;
  transition: all 0.4s var(--t-out);
}
.faq-q-icon::before, .faq-q-icon::after {
  content: ""; position: absolute;
  background: var(--forest);
  transition: transform 0.4s var(--t-out);
}
.faq-q-icon::before { width: 12px; height: 1px; }
.faq-q-icon::after { width: 1px; height: 12px; }
.faq-item.open .faq-q-icon { background: var(--forest); border-color: var(--forest); }
.faq-item.open .faq-q-icon::before,
.faq-item.open .faq-q-icon::after { background: var(--cream); }
.faq-item.open .faq-q-icon::after { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--t-out);
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner {
  padding: 0 0 32px;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: min(60ch, 100%);
  word-break: break-word;
  overflow-wrap: break-word;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(72px, 8vw, 110px) 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(187, 159, 129, 0.25);
}
.footer-brand .brand { color: var(--cream); text-align: left; }
.footer-brand p {
  margin-top: 24px;
  color: rgba(236, 227, 218, 0.6);
  font-size: 14px;
  line-height: 1.7;
  max-width: 38ch;
}
.footer-newsletter {
  margin-top: 28px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(187, 159, 129, 0.4);
  padding: 4px 4px 4px 16px;
}
.footer-newsletter input {
  background: transparent;
  border: 0;
  color: var(--cream);
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  padding: 12px 0;
  outline: 0;
}
.footer-newsletter input::placeholder { color: rgba(236, 227, 218, 0.45); }
.footer-newsletter button {
  background: var(--sand);
  color: var(--forest);
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s var(--t-out);
  border: none;
  cursor: pointer;
}
.footer-newsletter button:hover { background: var(--cream); }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-light);
  margin: 0 0 24px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-col a {
  font-size: 14px;
  color: rgba(236, 227, 218, 0.78);
  transition: color 0.3s var(--t-out);
}
.footer-col a:hover { color: var(--sand-light); }
.footer-pro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(187, 159, 129, 0.25);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-pro a { display: flex; align-items: center; gap: 12px; color: var(--sand-light); }
.footer-pro a:hover { color: var(--cream); }
.footer-trust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(187, 159, 129, 0.15);
}
.footer-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 227, 218, 0.7);
}
.footer-trust-item svg { color: var(--sand); flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(236, 227, 218, 0.5);
}
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--cream); }
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(187, 159, 129, 0.4);
  color: var(--sand-light);
  transition: all 0.3s var(--t-out);
}
.footer-socials a:hover { background: var(--sand); color: var(--forest); border-color: var(--sand); }

/* =========================================================
   CART DRAWER
   ========================================================= */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(34,34,34,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s var(--t-out);
  z-index: 200;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--cream);
  z-index: 210;
  transform: translateX(100%);
  transition: transform 0.5s var(--t-out);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(45,60,61,0.12);
}
.cart-head h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  margin: 0;
  color: var(--forest);
}
.cart-empty {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; padding: 32px;
  text-align: center;
}
.cart-empty p { color: var(--ink-soft); margin: 0; }

/* =========================================================
   MOBILE NAV — burger + tiroir
   ========================================================= */

/* burger button — caché sur desktop */
.nav-burger {
  display: none;
  width: 34px; height: 34px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-burger,
.nav-burger:hover,
.nav-burger:focus,
.nav-burger:active,
.nav-burger:focus-visible {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: var(--forest) !important;
  -webkit-tap-highlight-color: transparent !important;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--forest);
  transition: transform 0.4s var(--t-out), opacity 0.3s var(--t-out);
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* tiroir mobile */
.mobile-drawer {
  position: fixed;
  inset: 84px 0 0 0;
  background: rgba(34, 34, 34, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--t-out);
  z-index: 70;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-panel {
  background: var(--cream);
  height: 100%;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.45s var(--t-out), opacity 0.35s var(--t-out);
  padding: 8px 0 32px;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateY(0); opacity: 1; }
.mobile-drawer-section {
  display: flex;
  flex-direction: column;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(45, 60, 61, 0.12);
}
.mobile-drawer-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mobile-drawer-link {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--forest);
  padding: 10px 0;
  display: block;
  letter-spacing: -0.005em;
  line-height: 1.25;
  text-decoration: none;
}
.mobile-drawer-link:hover,
.mobile-drawer-link:focus,
.mobile-drawer-link:active,
.mobile-drawer-link:visited { color: var(--sand) !important; outline: none; }
.mobile-drawer-link-accent { color: var(--sand); font-weight: 400; }
.mobile-drawer-link-accent:visited { color: var(--sand) !important; }
.mobile-drawer-section-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  padding: 24px 28px;
  border-bottom: 0;
}
.mobile-drawer-utility {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  padding: 12px 14px;
  border: 1px solid rgba(45, 60, 61, 0.18);
  text-decoration: none;
}
.mobile-drawer-utility:hover { background: var(--sand); border-color: var(--sand); color: var(--forest); }
.mobile-drawer-utility svg { color: var(--sand); }
.mobile-drawer-foot-meta {
  margin-top: 8px;
  padding: 0 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* =========================================================
   OVERRIDES HELLO ELEMENTOR — neutralise les couleurs parasites
   ========================================================= */

/* Liens globaux : reset couleur rose Elementor */
.faq-item a,
.faq-q,
.footer-legal a,
.footer-legal a:hover,
.footer-bottom a,
.nav a,
.mobile-drawer a,
.footer-col a,
.footer-col ul li a,
.footer-brand a,
.footer-pro a,
.story-quote a,
.histoire-body a,
.sur-mesure-bullets a {
  color: inherit;
  text-decoration: none;
}

/* FAQ — supprime toute bordure rose éventuelle du thème parent */
.faq-item,
.faq-q,
.faq-a,
.faq-a-inner {
  border-color: rgba(45, 60, 61, 0.12) !important;
  color: var(--forest) !important;
  outline: none;
}
.faq-q { background: transparent !important; }
.faq-q:focus { outline: 2px solid var(--sand); outline-offset: 2px; }

/* Footer liens légaux */
.footer-legal a {
  color: rgba(236, 227, 218, 0.55) !important;
}
.footer-legal a:hover {
  color: var(--cream) !important;
}
.footer-bottom span {
  color: rgba(236, 227, 218, 0.55);
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(45, 60, 61, 0.22);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  background: var(--sand);
}
@media (max-width: 600px) {
  #back-to-top { bottom: 20px; right: 20px; }
}

/* =========================================================
   ADMIN BAR COMPATIBILITY
   ========================================================= */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}

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

/* ---------- tablette large : 1180px ---------- */
@media (max-width: 1180px) {
  .nav-inner { gap: 24px; }
  .nav-left, .nav-right { gap: 18px; }
  .nav-link { font-size: 12px; }
  .nav-link-desktop { display: none; }
}

/* ---------- mobile + tablette : 980px ---------- */
@media (max-width: 980px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    height: 72px;
    gap: 16px;
  }
  .nav.scrolled .nav-inner { height: 64px; }
  .mobile-drawer { inset: 72px 0 0 0; }
  .nav.scrolled .mobile-drawer { inset: 64px 0 0 0; }

  .nav-burger { display: flex; }
  .nav-left { display: none; }
  .brand { justify-content: flex-start; }
  .brand-mark { width: 124px; height: 34px; }
  .nav.scrolled .brand-mark { width: 112px; height: 32px; }
  .nav-right { gap: 14px; }
  .nav-icon-desktop { display: none; }

  .pillars { grid-template-columns: 1fr; gap: 36px; }
  .coll-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .workshops-grid { grid-template-columns: 1fr; }
  .workshops-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .sur-mesure-grid { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .histoire-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  .section { padding: clamp(64px, 12vw, 110px) 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .h1 { font-size: clamp(40px, 11vw, 80px); }
  .h2 { font-size: clamp(30px, 6vw, 48px); }
  .lead { font-size: 15px; }

  .hero { padding: clamp(72px, 16vw, 130px) 0; }
  .hero::after { background: rgba(0, 0, 0, 0.52); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 14px 22px; margin-top: 40px; padding-top: 22px; }
  .hero-meta-item { font-size: 10px; }

  .story-quote {
    position: static; max-width: 100%;
    margin-top: 20px; padding: 22px 24px;
    font-size: 17px;
  }
  .story-visual { aspect-ratio: 5/5; }
  .story-values { grid-template-columns: 1fr; gap: 18px; }

  .sur-mesure-visual { aspect-ratio: 4/4; }
  .histoire-portrait { aspect-ratio: 4/4.5; max-width: 480px; }
  .histoire-caption { right: auto; left: 16px; bottom: 16px; }
  .histoire-signatures { gap: 28px; }

  .avis-summary { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 24px; }

  .footer-trust { gap: 16px; }
  .footer-trust-item { font-size: 10px; }
  .footer-pro { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .workshop-card { padding: 26px; }
  .workshop-card-foot { flex-direction: column; align-items: flex-start; gap: 18px; }
  .workshop-card-foot .btn { width: 100%; justify-content: center; }
}

/* ---------- téléphone : 600px ---------- */
@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .announce { font-size: 9px; padding: 8px 12px; letter-spacing: 0.12em; }
  .announce span { margin: 0 6px; }

  .container { padding-inline: var(--gutter); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .h1 { font-size: clamp(38px, 13vw, 60px); line-height: 1.05; }
  .h2 { font-size: clamp(28px, 8vw, 40px); }

  .btn { padding: 14px 22px; font-size: 12px; }
  .hero-cta-row { gap: 12px; flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { justify-content: center; }
  .hero-meta { gap: 10px 18px; }

  .pillar-num { font-size: 48px; padding-bottom: 18px; }
  .pillar h3 { font-size: 22px; }

  .coll-card h3 { font-size: 26px; }
  .coll-body { padding: 22px 22px 26px; }

  .workshop-card h4 { font-size: 24px; }

  .avis-card { padding: 26px 24px; }
  .avis-card blockquote { font-size: 18px; }

  .faq-q { font-size: 16px; padding: 22px 0; gap: 16px; }
  .faq-a-inner { font-size: 14.5px; padding-bottom: 26px; }

  .footer { padding: 64px 0 28px; }
  .footer-trust { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mobile-drawer-link { font-size: 22px; }
  .mobile-drawer-section-foot { grid-template-columns: 1fr; }
}
