/* ===========================================================
   BuLu Design — feuille de style partagée (V4.0, sans framework)
   =========================================================== */

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

:root {
  --bg: oklch(97% 0.008 75);
  --bg-warm: oklch(94% 0.012 70);
  --bg-dark: oklch(16% 0.018 60);
  --text: oklch(18% 0.022 60);
  --text-mid: oklch(45% 0.018 60);
  --text-light: oklch(44% 0.016 70); /* assombri pour le contraste WCAG AA (petit texte secondaire) */
  --sage-strong: oklch(42% 0.11 150); /* vert accent assombri pour petits textes/boutons sur fond clair */
  --sage: oklch(52% 0.10 145);
  --sage-light: oklch(88% 0.06 145);
  --terra: oklch(62% 0.13 48);
  --terra-light: oklch(92% 0.06 48);
  --linen: oklch(90% 0.015 80);
  --border: oklch(85% 0.01 70);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
::selection { background: var(--sage-light); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* Accessibilité : focus clavier visible */
:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* Accessibilité : lien d'évitement « Aller au contenu » */
.skip-link { position: fixed; left: 16px; top: -64px; z-index: 600; background: var(--text); color: #fff; padding: 12px 22px; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 13px; letter-spacing: 0.06em; box-shadow: 0 6px 24px rgba(0,0,0,0.2); transition: top 0.25s ease; }
.skip-link:focus { top: 16px; }

/* Respect du réglage système « animations réduites » */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- Utilitaires ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 64px; }
.container--wide { max-width: 1280px; }
.section { padding: 120px 0; }
.bg-warm { background: var(--bg-warm); }

.tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-strong); font-weight: 500; display: block; margin-bottom: 20px;
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(38px, 3.3vw, 56px);
  font-weight: 300; line-height: 1.2; letter-spacing: -0.01em;
}
.section-title span { display: block; }
.section-title em, .hero h1 em { font-style: italic; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500;
  color: #fff; background: var(--text);
  padding: 16px 32px; border-radius: 2px;
  transition: background 0.3s; align-self: flex-start;
}
.btn-primary:hover { background: var(--sage); }
.btn-primary .arrow { font-size: 18px; font-family: serif; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  padding: 0 40px; border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 400; letter-spacing: 0.02em; color: var(--text); }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link { font-family: 'DM Sans', sans-serif; font-size: 13px; letter-spacing: 0.08em; color: var(--text-mid); font-weight: 400; transition: color 0.2s; }
.nav-link:hover { color: var(--text); }

.lang-switch { display: flex; gap: 2px; background: var(--linen); border-radius: 20px; padding: 3px 4px; }
.lang-link {
  font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 400; padding: 4px 10px; border-radius: 16px;
  color: var(--text-light); transition: all 0.2s;
}
.lang-link[aria-current="page"] { font-weight: 500; background: #fff; color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }

.hamburger { display: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: transparent; padding: 0; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; display: block; }
.nav--open .hamburger span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav--open .hamburger span:nth-child(2) { opacity: 0; }
.nav--open .hamburger span:nth-child(3) { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr; grid-template-areas: 'text img';
  position: relative;
}
.hero-text { grid-area: text; display: flex; flex-direction: column; justify-content: center; padding: 120px 64px 80px; background: var(--bg); }
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(48px, 4.5vw, 72px);
  font-weight: 300; line-height: 1.15; color: var(--text);
  margin-bottom: 32px; letter-spacing: -0.01em;
}
.hero h1 span { display: block; }
.hero-sub { font-size: 17px; color: var(--text-mid); max-width: 400px; line-height: 1.7; margin-bottom: 48px; font-weight: 300; }
.hero-tagline { margin-top: auto; padding-top: 60px; border-top: 1px solid var(--border); }
.hero-tagline span { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: var(--text-light); letter-spacing: 0.04em; }
.hero-img { grid-area: img; position: relative; overflow: hidden; }
.hero-img::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to right, rgba(250,248,244,0.15) 0%, transparent 40%); }
.scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-indicator .line { width: 1px; height: 48px; background: var(--border); transform-origin: top; animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- À propos ---------- */
.about-grid { max-width: 1200px; margin: 0 auto; padding: 0 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; }
.about-img img { transform: scale(1.05); transition: transform 0.8s ease; }
.about-img:hover img { transform: scale(1); }
.badge { position: absolute; bottom: -24px; right: -24px; background: #fff; padding: 20px 24px; border-radius: 2px; box-shadow: 0 4px 32px rgba(0,0,0,0.08); }
.badge-1 { font-family: 'Cormorant Garamond', serif; font-size: 13px; color: var(--text-light); }
.about-text p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.about-text .section-title { margin-bottom: 40px; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.value { border-top: 1px solid var(--border); padding-top: 20px; }
.value-n { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 300; color: var(--terra); line-height: 1; }
.value-l { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }

/* ---------- Collection ---------- */
.collection-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; gap: 0; }
.filter-tabs { display: flex; gap: 4px; background: var(--linen); border-radius: 20px; padding: 4px; }
.filter-tab { font-family: 'DM Sans', sans-serif; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 18px; border-radius: 16px; font-weight: 500; color: var(--text-light); background: transparent; transition: all 0.2s; }
.filter-tab.active { background: #fff; color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { display: flex; flex-direction: column; border-radius: 2px; overflow: hidden; background: var(--bg-warm); }
.card[hidden] { display: none; }
.card-img { height: 340px; position: relative; overflow: hidden; cursor: pointer; flex-shrink: 0; width: 100%; padding: 0; display: block; text-align: left; font: inherit; color: inherit; }
.card-img img { transform: scale(1); transition: transform 0.7s ease; }
.card-img:hover img { transform: scale(1.05); }
.card-img-overlay { position: absolute; inset: 0; pointer-events: none; background: rgba(18,14,10,0.12); opacity: 0; transition: opacity 0.3s; }
.card-img:hover .card-img-overlay { opacity: 1; }
.photo-count { position: absolute; bottom: 16px; right: 18px; pointer-events: none; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 15px; font-weight: 400; color: #fff; letter-spacing: 0.02em; text-shadow: 0 1px 8px rgba(0,0,0,0.4); opacity: 0; transform: translateY(4px); transition: opacity 0.35s ease, transform 0.35s ease; }
.card-img:hover .photo-count { opacity: 1; transform: translateY(0); }
.card-caption { padding: 14px 18px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.card-caption-text { min-width: 0; }
.card-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; color: var(--text); margin-bottom: 2px; line-height: 1.25; }
.card-type { font-family: 'DM Sans', sans-serif; font-size: 10px; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; }
.card-desc { font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.6; color: var(--text-mid); margin-top: 8px; font-weight: 300; }
.inquire-btn { font-family: 'DM Sans', sans-serif; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-strong); border: 1px solid var(--sage-strong); padding: 7px 12px; border-radius: 1px; font-weight: 500; flex-shrink: 0; background: transparent; transition: all 0.2s; }
.inquire-btn:hover { background: var(--sage-strong); color: #fff; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(18,14,10,0.94); display: flex; align-items: center; justify-content: center; padding: 24px; animation: lbFadeIn 0.25s ease; }
.lightbox[hidden] { display: none; }
@keyframes lbFadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes lbImgIn { from { opacity: 0; transform: scale(0.98) } to { opacity: 1; transform: scale(1) } }
.lb-close { position: fixed; top: 24px; right: 28px; z-index: 501; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 20px; display: flex; align-items: center; justify-content: center; line-height: 1; transition: background 0.2s; }
.lb-close:hover { background: rgba(255,255,255,0.22); }
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); z-index: 501; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 22px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-stage { display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 1100px; max-height: 92vh; gap: 18px; animation: lbImgIn 0.3s ease; }
.lb-img-wrap { flex: 1 1 auto; min-height: 0; display: flex; align-items: center; justify-content: center; width: 100%; }
.lb-img { width: auto; height: auto; max-width: 100%; max-height: 70vh; object-fit: contain; border-radius: 2px; box-shadow: 0 24px 80px rgba(0,0,0,0.5); animation: lbImgIn 0.3s ease; }
.lb-caption { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.lb-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: #fff; line-height: 1.2; text-align: center; }
.lb-type { font-family: 'DM Sans', sans-serif; font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 6px; text-align: center; }
.lb-inquire { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; padding: 11px 22px; border-radius: 2px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); transition: all 0.2s; }
.lb-inquire:hover { background: #fff; color: var(--text); }
.lb-thumbs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 100%; }
.lb-thumb { width: 64px; height: 64px; padding: 0; border-radius: 2px; overflow: hidden; border: 2px solid rgba(255,255,255,0.15); opacity: 0.55; background: transparent; transition: all 0.2s; flex-shrink: 0; }
.lb-thumb.active { border-color: #fff; opacity: 1; }
.lb-thumb:hover { opacity: 0.9; }
.lb-hidden { display: none; }

/* ---------- Équipe ---------- */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.team-member { display: flex; flex-direction: column; gap: 28px; }
.team-photo { aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; background: var(--bg-warm); }
.team-namerow { display: flex; align-items: baseline; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.team-name { font-family: 'Manrope', sans-serif; font-size: 28px; font-weight: 300; letter-spacing: -0.01em; }
.team-role { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-strong); font-weight: 500; }
.team-bio { font-size: 15px; color: var(--text-mid); line-height: 1.85; font-weight: 300; }

/* ---------- Presse ---------- */
.press { background: var(--bg-dark); padding: 100px 0; }
.press .tag { color: oklch(80% 0.08 150); }
.press h2 { font-family: 'Manrope', sans-serif; font-size: clamp(34px, 2.8vw, 48px); font-weight: 300; color: oklch(92% 0.01 70); margin-bottom: 56px; letter-spacing: -0.01em; }
.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px; justify-items: center; align-items: start; max-width: 1140px; margin: 0 auto; }
.press-card { width: 100%; max-width: 420px; aspect-ratio: 2/3; border-radius: 4px; overflow: hidden; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5); }
.insta-loader { width: 100%; max-width: 420px; aspect-ratio: 2/3; border-radius: 4px; overflow: hidden; background: #fff; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 32px; text-align: center; cursor: pointer; }
.insta-loader .insta-glyph { width: 56px; height: 56px; border-radius: 16px; border: 2px solid var(--text); display: flex; align-items: center; justify-content: center; }
.insta-loader .insta-glyph::after { content: ''; width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--text); }
.insta-loader .insta-title { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 500; color: var(--text); }
.insta-loader .insta-note { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--text-mid); line-height: 1.5; max-width: 280px; }
.insta-loader .insta-cta { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--sage); }
.insta-embed { width: 100%; max-width: 420px; aspect-ratio: 2/3; border-radius: 4px; overflow: hidden; background: #fff; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5); position: relative; display: flex; align-items: center; justify-content: center; }
.insta-fallback { display: inline-flex; align-items: center; gap: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; letter-spacing: 0.04em; font-weight: 500; color: var(--text); padding: 14px 22px; border: 1px solid var(--border); border-radius: 2px; margin: 24px; text-align: center; }
.insta-fallback:hover { border-color: var(--text); }
.instagram-media { margin: 0 !important; }
.cannes-caption { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; font-weight: 300; color: oklch(88% 0.01 70); line-height: 1.6; margin-top: 48px; text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.press-item { max-width: 540px; margin: 72px auto 0; }
.press-divider { width: 100%; height: 1px; background: oklch(35% 0.01 60); margin: 0 auto 56px; }
.press-aaf { border-radius: 2px; overflow: hidden; margin-bottom: 28px; }
.press-aaf img { width: 100%; height: auto; display: block; }
.press-quote { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; font-weight: 300; color: oklch(88% 0.01 70); line-height: 1.6; margin-bottom: 20px; text-align: center; }

/* ---------- FAQ ---------- */
.faq .container { max-width: 860px; padding: 0 32px; }
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head .section-title { font-size: clamp(32px, 2.6vw, 44px); }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; text-align: left; padding: 26px 4px; background: none; cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 25px; font-weight: 400; color: var(--text); line-height: 1.35; }
.faq-icon { flex-shrink: 0; position: relative; width: 20px; height: 20px; margin-top: 6px; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; top: 50%; left: 0; width: 20px; height: 1.5px; background: var(--sage); transform: translateY(-50%); }
.faq-icon::after { transform: translateY(-50%) rotate(90deg); transition: transform 0.3s ease; }
.faq-item.open .faq-icon::after { transform: translateY(-50%) rotate(0deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.8; margin: 0; padding: 0 4px 30px; max-width: 720px; }

/* ---------- Contact ---------- */
.contact-grid { max-width: 1200px; margin: 0 auto; padding: 0 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-sub { font-size: 16px; color: var(--text-mid); line-height: 1.8; font-weight: 300; max-width: 400px; }
.contact h2 { margin-bottom: 32px; }
.contact-sep { margin-top: 64px; display: flex; flex-direction: column; gap: 8px; }
.contact-sep i { display: block; height: 1px; }
.contact-sep i:nth-child(1) { width: 48px; background: var(--sage); }
.contact-sep i:nth-child(2) { width: 24px; background: var(--terra); }
.contact-sep i:nth-child(3) { width: 12px; background: var(--border); }
.contact-deco { margin-top: 48px; width: 80%; aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.form { display: flex; flex-direction: column; gap: 36px; }
.field label { font-family: 'DM Sans', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 300;
  border: none; border-bottom: 1px solid var(--border); background: transparent;
  padding: 14px 0; color: var(--text); outline: none; transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); }
.field textarea { resize: none; }
.field select { cursor: pointer; appearance: none; -webkit-appearance: none; padding-right: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23a8a29a' fill='none' stroke-width='1.3'/></svg>");
  background-repeat: no-repeat; background-position: right center; background-size: 12px;
}
.field select:invalid { color: var(--text-light); }
.consent { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 13px; line-height: 1.6; color: var(--text-mid); font-weight: 300; }
.consent input { width: auto; margin-top: 4px; flex-shrink: 0; accent-color: var(--sage); }
.rgpd { font-family: 'DM Sans', sans-serif; font-size: 12px; line-height: 1.6; color: var(--text-light); font-weight: 300; }
.rgpd a { color: var(--sage); text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { padding: 14px 18px; background: #fbeae6; border: 1px solid #e6b4a8; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 13px; color: #8a3a2a; line-height: 1.5; }
.btn-submit { font-family: 'DM Sans', sans-serif; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; padding: 18px 40px; background: var(--text); color: #fff; border-radius: 2px; transition: background 0.3s; align-self: flex-start; }
.btn-submit:hover { background: var(--sage); }
.btn-submit[disabled] { background: var(--text-light); cursor: wait; opacity: 0.7; }
.form-sent { padding: 40px; background: var(--sage-light); border-radius: 2px; text-align: center; }
.form-sent span { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--sage); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-warm); border-top: 1px solid var(--border); padding: 40px 64px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { font-family: 'Manrope', sans-serif; font-size: 19px; font-weight: 400; letter-spacing: 0.02em; color: var(--text); }
.footer-made { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: var(--text-light); }
.footer-links { font-family: 'DM Sans', sans-serif; font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 16px; }
.footer-links a { color: var(--text-light); border-bottom: 1px solid transparent; transition: border-color 0.25s, color 0.25s; }
.footer-links a:hover { color: var(--text); border-bottom-color: var(--text-light); }
.footer-sep { opacity: 0.5; }

/* ===========================================================
   Responsive — bascule mobile (≤ 768px), remplace useIsMobile
   =========================================================== */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .nav { padding: 0 20px; }
  .nav--open { background: rgba(250,248,244,0.95); backdrop-filter: blur(12px); }
  .nav-inner { height: 60px; }
  .logo { font-size: 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: flex; flex-direction: column; position: absolute; top: 60px; right: 20px;
    min-width: 188px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px;
    overflow: hidden; box-shadow: 0 14px 36px rgba(30,22,14,0.16);
    transform-origin: top right; transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform 0.28s ease, opacity 0.22s ease; z-index: 99;
  }
  .nav--open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-link { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 400; color: var(--text); text-align: left; padding: 13px 22px; white-space: nowrap; background: transparent; letter-spacing: 0.01em; }
  .mobile-link:nth-child(even) { background: var(--bg-warm); }
  .mobile-lang { padding: 13px 22px; border-top: 1px solid var(--border); display: flex; justify-content: flex-start; }

  .hero { min-height: auto; grid-template-columns: 1fr; grid-template-areas: 'img' 'text'; }
  .hero-text { padding: 48px 20px 56px; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px); margin-bottom: 24px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-img { height: 55vh; min-height: 360px; }
  .hero-tagline, .scroll-indicator { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; padding: 0 20px; }
  .badge { display: none; }
  .values { margin-top: 36px; }
  .value-n { font-size: 34px; }

  .section-title { font-size: clamp(30px, 8vw, 38px); }

  .collection-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .grid { grid-template-columns: 1fr; gap: 20px; }
  .card-img { height: 280px; }

  .lb-close { top: 16px; right: 16px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }

  .team-grid { grid-template-columns: 1fr; gap: 56px; }
  .team-name { font-size: 24px; }
  .team-namerow { gap: 10px; }

  .press { padding: 70px 0; }
  .press h2 { font-size: clamp(28px, 7vw, 36px); margin-bottom: 40px; }
  .press-grid { gap: 32px; }
  .cannes-caption { font-size: 18px; margin-top: 36px; }
  .press-quote { font-size: 18px; }

  .faq .container { padding: 0 20px; }
  .faq-head { margin-bottom: 40px; }
  .faq-head .section-title { font-size: clamp(28px, 7vw, 34px); }
  .faq-q { font-size: 21px; padding: 22px 0; }
  .faq-icon { margin-top: 4px; }
  .faq-a p { font-size: 15px; padding: 0 0 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 56px; padding: 0 20px; }
  .contact h2 { margin-bottom: 24px; }
  .contact-sep { margin-top: 40px; }
  .contact-deco { display: none; }

  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
