/* ── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --ivory:     #e4dccc;
  --alabaster: #d4c9b8;
  --cream:     #c2b5a2;
  --stone:     #a8a095;
  --taupe:     #807870;
  --charcoal:  #2c2a27;
  --espresso:  #3a3330;
  --warm-grey: #5e5a56;
  --gold:      #7a6230;
  --gold-lt:   #b89a6a;
  --sky:       #94bed8;
  --blue-deep: #4a7a9a;
  --bg:        #f7f4ee;
  --white:     #fdfcfa;
}

/* ── RESET ──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }

/* ── GRAIN OVERLAY ──────────────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── SCROLL PROGRESS ────────────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 1000;
  height: 1px; width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  transition: width .1s linear;
}

/* ── CUSTOM CURSOR ──────────────────────────────────────────────────── */
#cursor-dot {
  position: fixed; z-index: 10000; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--charcoal);
  transform: translate(-50%, -50%);
  transition: transform .12s ease, width .3s ease, height .3s ease, border-radius .3s ease, background .3s ease;
}
#cursor-ring {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(44,42,39,.28);
  transform: translate(-50%, -50%);
  transition: transform .45s cubic-bezier(.16,1,.3,1), width .45s, height .45s, border-color .3s ease;
}
body.cursor-hover #cursor-dot { width: 0; height: 0; }
body.cursor-hover #cursor-ring { width: 56px; height: 56px; border-color: rgba(122,98,48,.5); }

/* ── PRELOADER ──────────────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--charcoal);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.pre-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300; font-size: clamp(32px, 6vw, 72px);
  letter-spacing: .45em; color: var(--ivory); overflow: hidden;
}
.pre-brand span { display: inline-block; transform: translateY(100%); animation: preReveal .8s cubic-bezier(.16,1,.3,1) forwards; }
.pre-brand span:nth-child(1) { animation-delay: .05s; }
.pre-brand span:nth-child(2) { animation-delay: .10s; }
.pre-brand span:nth-child(3) { animation-delay: .15s; }
.pre-brand span:nth-child(4) { animation-delay: .20s; }
.pre-brand span:nth-child(5) { animation-delay: .25s; }
.pre-brand span:nth-child(6) { animation-delay: .30s; }
.pre-sub {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 12px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-lt); margin-top: 16px;
  opacity: 0; animation: fadeIn .6s ease .6s forwards;
}
@keyframes preReveal { to { transform: translateY(0); } }
@keyframes fadeIn    { to { opacity: 1; } }

/* ── REVEAL ON SCROLL ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .22s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .52s; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-left.in  { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal-right.in { opacity: 1; transform: none; }

/* ── SPLIT TITLE ANIMATION ──────────────────────────────────────────── */
.split-line { overflow: hidden; }
.split-line .inner { display: block; transform: translateY(100%); transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.split-line.in .inner { transform: translateY(0); }
.split-line:nth-child(2) .inner { transition-delay: .12s; }
.split-line:nth-child(3) .inner { transition-delay: .24s; }

/* ── SECTION UTIL ───────────────────────────────────────────────────── */
.sec-label {
  font-family: 'Jost', sans-serif; font-weight: 400;
  font-size: 10px; letter-spacing: .45em; text-transform: uppercase;
  color: var(--espresso); display: flex; align-items: center; gap: 20px;
}
.sec-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(122,98,48,.35), transparent);
}
.sec-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(28px, 4vw, 52px); letter-spacing: .02em;
  line-height: 1.1; color: var(--charcoal);
}
.sec-title em { font-style: italic; color: var(--espresso); }

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn-primary {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  background: var(--charcoal); color: var(--ivory);
  padding: 14px 28px; border-radius: 999px;
  transition: background .3s, transform .3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--espresso); transform: translateY(-2px); }
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--charcoal); border: 1px solid rgba(44,42,39,.2);
  padding: 13px 24px; border-radius: 999px;
  transition: border-color .3s, color .3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════════════ */
.nav-outer {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 20px 24px 0;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-pill {
  display: flex; align-items: center;
  background: rgba(253,252,250,0.82);
  border: 1px solid rgba(212,201,184,.9);
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  width: 100%; max-width: 760px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: all;
  box-shadow: 0 2px 24px rgba(44,42,39,.06);
  transition: box-shadow .4s ease;
}
.nav-pill:hover { box-shadow: 0 4px 32px rgba(44,42,39,.1); }
.nav-brand {
  display: flex; align-items: baseline; gap: 10px; margin-right: auto;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 18px; letter-spacing: .38em; color: var(--charcoal);
}
.nav-links {
  display: flex; gap: 28px; margin-right: 24px;
}
.nav-links a {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--warm-grey);
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid rgba(44,42,39,.25);
  border-radius: 999px; padding: 8px 18px;
  transition: background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }
@media (max-width: 680px) { .nav-links { display: none; } }

/* ══════════════════════════════════════════════════════════════════════
   PAGE HEADER — intérieur
══════════════════════════════════════════════════════════════════════ */
.page-header {
  padding: clamp(140px, 16vw, 210px) clamp(24px, 6vw, 80px) clamp(64px, 8vw, 100px);
  background:
    radial-gradient(ellipse 120% 80% at 20% 60%, rgba(194,181,162,.18) 0%, transparent 60%),
    linear-gradient(160deg, #f5f0e8 0%, #ede5d5 100%);
  position: relative;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: clamp(24px, 6vw, 80px); right: clamp(24px, 6vw, 80px);
  height: 1px; background: linear-gradient(to right, rgba(122,98,48,.3), transparent);
}
.page-header-label {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 9px; letter-spacing: .55em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.page-header-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); opacity: .5; }
.page-header-h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(40px, 6vw, 80px); letter-spacing: .06em; line-height: .95;
  color: var(--charcoal);
}
.page-header-h1 em { font-style: italic; color: var(--taupe); }
.page-header-desc {
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 300;
  color: var(--warm-grey); max-width: 460px; margin-top: 24px; line-height: 1.85;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO — accueil
══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; overflow: hidden;
}

/* ── two panels ────────────────────────────────────────────────────── */
.hero-panel { flex: 1; position: relative; overflow: hidden; }

.hero-panel--left {
  background:
    radial-gradient(ellipse 130% 80% at 20% 65%, rgba(194,181,162,.28) 0%, transparent 65%),
    linear-gradient(160deg, #f5f0e8 0%, #ede5d5 100%);
  display: flex; align-items: center; justify-content: center;
}

.hero-marble-vein {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}

.hero-shirt-wrap {
  position: relative; z-index: 2;
  width: clamp(160px, 22vw, 290px);
  filter: drop-shadow(0 28px 72px rgba(0,0,0,.11));
  animation: heroShirtFloat 6s ease-in-out infinite;
}
@keyframes heroShirtFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.hero-tag {
  position: absolute; bottom: 40px; left: 40px; z-index: 3;
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 8px; letter-spacing: .45em; text-transform: uppercase;
  color: var(--warm-grey);
}

.hero-panel--right { /* photo */ }

.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: saturate(.88) brightness(.97);
}

.hero-photo-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(245,240,232,.4) 0%, transparent 55%),
    linear-gradient(to top, rgba(44,42,39,.06) 0%, transparent 65%);
}

/* ── center overlay ─────────────────────────────────────────────────── */
.hero-center {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  pointer-events: none;
}

.hero-center-label {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 8px; letter-spacing: .6em; text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 18px;
  opacity: 0; animation: fadeIn .7s ease 1.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(76px, 13.5vw, 190px);
  letter-spacing: .42em; text-indent: .42em;
  line-height: 1; color: var(--charcoal);
  opacity: 0; transform: translateY(22px);
  animation: heroTitleIn 1.4s cubic-bezier(.16,1,.3,1) .5s forwards;
}
@keyframes heroTitleIn { to { opacity: 1; transform: translateY(0); } }

.hero-center-rule {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(122,98,48,.15) 100%);
  margin: 26px 0;
  opacity: 0; animation: fadeIn .5s ease 1.7s forwards;
}

.hero-center-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(15px, 1.5vw, 20px); letter-spacing: .07em;
  color: var(--taupe);
  opacity: 0; animation: fadeIn .5s ease 1.9s forwards;
}

.hero-center-actions {
  pointer-events: all;
  margin-top: 44px;
  opacity: 0; animation: fadeIn .5s ease 2.1s forwards;
}

.btn-explorer {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 9px; letter-spacing: .48em; text-transform: uppercase;
  color: var(--charcoal);
  padding: 15px 40px; border-radius: 999px;
  border: 1px solid rgba(44,42,39,.22);
  background: rgba(247,244,238,.58);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .4s, color .4s, border-color .4s, transform .45s cubic-bezier(.16,1,.3,1), gap .45s;
}
.btn-explorer:hover {
  background: var(--charcoal); color: var(--ivory);
  border-color: var(--charcoal); transform: translateY(-3px); gap: 26px;
}
.btn-explorer-line {
  width: 22px; height: 1px; background: currentColor;
  transition: width .45s cubic-bezier(.16,1,.3,1);
  flex-shrink: 0;
}
.btn-explorer:hover .btn-explorer-line { width: 36px; }

/* ══════════════════════════════════════════════════════════════════════
   MOTS — séquence typographique
══════════════════════════════════════════════════════════════════════ */
.words-sec {
  padding: 28px 0; background: var(--charcoal);
  position: relative; overflow: hidden;
}
.words-sec::before, .words-sec::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,154,106,.2), transparent);
}
.words-sec::before { top: 0; }
.words-sec::after  { bottom: 0; }
.words-composition {
  position: relative; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.words-item {
  position: absolute;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(20px, 3.2vw, 36px); color: var(--ivory); letter-spacing: .05em;
  opacity: 0; transition: opacity 1.6s cubic-bezier(.4,0,.2,1);
  text-align: center; white-space: nowrap; user-select: none;
}
.words-item.visible { opacity: 1; }

/* ══════════════════════════════════════════════════════════════════════
   COLLECTION
══════════════════════════════════════════════════════════════════════ */
.collection-sec {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  background: var(--bg);
}
.collection-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.collection-header-right {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--stone);
}
.collection-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
}
@media (max-width: 900px) { .collection-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .collection-grid { grid-template-columns: 1fr; } }

.product-card { display: flex; flex-direction: column; cursor: pointer; position: relative; }
.product-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  background: linear-gradient(145deg, #f0ebe1 0%, #e8e2d5 100%);
}
.product-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.02) 0, rgba(0,0,0,.02) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.016) 0, rgba(0,0,0,.016) 1px, transparent 1px, transparent 3px);
  background-size: 3px 3px;
}
.product-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(44,42,39,.55), transparent);
  transform: translateY(100%); transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .product-overlay { transform: translateY(0); }
.product-overlay-btn {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ivory); display: flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid rgba(228,220,204,.4); padding: 10px 20px;
  transition: background .3s;
}
.product-overlay-btn:hover { background: rgba(228,220,204,.15); }
.product-info { padding: 16px 4px 0; display: flex; flex-direction: column; gap: 5px; }
.product-name { font-size: 16px; font-weight: 400; letter-spacing: .04em; color: var(--charcoal); }
.product-fabric {
  font-family: 'Jost', sans-serif; font-weight: 400;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--warm-grey);
}
.product-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; }
.product-price { font-size: 15px; font-weight: 300; color: var(--charcoal); }
.product-colors { display: flex; gap: 5px; margin-top: 8px; }
.product-color-dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(44,42,39,.08); cursor: pointer; transition: transform .25s;
}
.product-color-dot:hover { transform: scale(1.3); }
.product-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform .9s cubic-bezier(.16,1,.3,1);
  display: block; z-index: 1;
}
.product-card:hover .product-photo { transform: scale(1.05); }
.product-edition {
  margin-top: 14px; padding-top: 12px;
  border-top: .5px solid rgba(122,98,48,.18);
  display: flex; flex-direction: column; gap: 4px;
}
.product-edition-color {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 13px; font-weight: 300; color: var(--warm-grey);
}
.product-edition-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: 18px; letter-spacing: .04em; color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════════════
   MATIÈRES
══════════════════════════════════════════════════════════════════════ */
.matieres-sec { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg); overflow: hidden; }
.matieres-header { padding: 0 clamp(24px, 6vw, 80px); margin-bottom: 48px; }
.matieres-scroll {
  display: flex; gap: 3px; overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(24px, 6vw, 80px) 20px;
  scrollbar-width: none; cursor: grab;
}
.matieres-scroll:active { cursor: grabbing; }
.matieres-scroll::-webkit-scrollbar { display: none; }
.fabric-card {
  flex-shrink: 0; width: 200px; display: flex; flex-direction: column;
  scroll-snap-align: start; transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.fabric-card:hover { transform: translateY(-12px); z-index: 2; }
.fabric-body { height: 240px; position: relative; overflow: hidden; }
.fabric-info {
  background: var(--white); padding: 14px 12px;
  border-top: 1px solid rgba(44,42,39,.04);
}
.fabric-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 400; letter-spacing: .04em;
  color: var(--charcoal); margin-bottom: 2px;
}
.fabric-origin {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 7px; letter-spacing: .25em; text-transform: uppercase; color: var(--stone);
}
.ft-poplin    { background: #f2ede6; background-image: repeating-linear-gradient(0deg,rgba(0,0,0,.03) 0,rgba(0,0,0,.03) 1px,transparent 1px,transparent 3px),repeating-linear-gradient(90deg,rgba(0,0,0,.025) 0,rgba(0,0,0,.025) 1px,transparent 1px,transparent 3px); background-size:3px 3px; }
.ft-seaisland { background: radial-gradient(ellipse 80% 60% at 40% 40%,#f8f4ee 0%,#f0ebe0 100%); background-image: repeating-linear-gradient(0deg,rgba(0,0,0,.018) 0,rgba(0,0,0,.018) 1px,transparent 1px,transparent 2px),repeating-linear-gradient(90deg,rgba(0,0,0,.015) 0,rgba(0,0,0,.015) 1px,transparent 1px,transparent 2px); background-size:2px 2px; }
.ft-linen     { background: #d8cfc0; background-image: repeating-linear-gradient(0deg,rgba(0,0,0,.04) 0,rgba(0,0,0,.04) 1px,transparent 1px,transparent 4px),repeating-linear-gradient(90deg,rgba(0,0,0,.03) 0,rgba(0,0,0,.03) 1px,transparent 1px,transparent 4px); background-size:4px 4px; }
.ft-twill     { background: #c4beb4; background-image: repeating-linear-gradient(45deg,rgba(255,255,255,.08) 0,rgba(255,255,255,.08) 1px,transparent 1px,transparent 4px),repeating-linear-gradient(-45deg,rgba(0,0,0,.04) 0,rgba(0,0,0,.04) 1px,transparent 1px,transparent 4px); background-size:4px 4px; }
.ft-oxford    { background: #e4dfd6; background-image: repeating-linear-gradient(0deg,rgba(0,0,0,.055) 0,rgba(0,0,0,.055) 2px,transparent 2px,transparent 6px),repeating-linear-gradient(90deg,rgba(0,0,0,.04) 0,rgba(0,0,0,.04) 2px,transparent 2px,transparent 6px); background-size:6px 6px; }
.ft-flannel   { background: #9c9288; background-image: radial-gradient(circle,rgba(255,255,255,.06) 1px,transparent 1px); background-size:4px 4px; }
.ft-cashmere  { background: radial-gradient(ellipse at 50% 40%,#c8bfb0 0%,#b8af9e 100%); background-image: radial-gradient(circle,rgba(255,255,255,.1) 1px,transparent 1px); background-size:3px 3px; }
.fabric-stitch {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 28px;
  background: repeating-linear-gradient(to bottom, var(--gold-lt) 0,var(--gold-lt) 3px, transparent 3px, transparent 6px);
  opacity: .4;
}

/* ══════════════════════════════════════════════════════════════════════
   PHILOSOPHIE
══════════════════════════════════════════════════════════════════════ */
.phil-sec {
  background: var(--cream);
  padding: clamp(100px, 12vw, 160px) clamp(24px, 6vw, 80px);
  position: relative; overflow: hidden;
}
.phil-sec::before {
  content: 'C'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif; font-size: min(60vw, 800px);
  font-weight: 300; color: rgba(44,42,39,.025); line-height: 1;
  pointer-events: none; user-select: none;
}
.phil-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px); max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
@media (max-width: 768px) { .phil-inner { grid-template-columns: 1fr; } }
.phil-quote {
  font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.8vw, 36px); line-height: 1.65;
  color: var(--charcoal); position: relative; padding-left: 32px;
}
.phil-quote::before {
  content: '"'; position: absolute; left: 0; top: -8px;
  font-size: 60px; line-height: 1; color: var(--gold); opacity: .35;
}
.phil-tenets { display: flex; flex-direction: column; gap: 0; }
.phil-tenet {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid rgba(44,42,39,.07);
  font-size: 15px; font-weight: 300; letter-spacing: .02em;
  color: var(--espresso); line-height: 1.7;
}
.phil-num {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 8px; letter-spacing: .2em; color: var(--gold);
  flex-shrink: 0; margin-top: 5px;
}

/* ══════════════════════════════════════════════════════════════════════
   À PROPOS — histoire de la maison
══════════════════════════════════════════════════════════════════════ */
.about-story {
  padding: clamp(80px, 10vw, 140px) clamp(24px, 6vw, 80px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px); max-width: 1200px; margin: 0 auto;
}
@media (max-width: 768px) { .about-story { grid-template-columns: 1fr; } }
.about-story-lead {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(22px, 3vw, 38px); font-weight: 300;
  line-height: 1.55; color: var(--charcoal);
  position: sticky; top: 120px; align-self: start;
}
.about-story-body { display: flex; flex-direction: column; gap: 28px; }
.about-story-p {
  font-size: 16px; font-weight: 300; line-height: 1.95; color: var(--warm-grey);
}
.about-story-p strong { font-weight: 400; color: var(--charcoal); }
.about-figures {
  display: flex; gap: clamp(24px, 5vw, 64px); flex-wrap: wrap;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 80px);
  background: var(--charcoal);
}
.about-figure { display: flex; flex-direction: column; gap: 6px; }
.about-figure-num {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(36px, 5vw, 60px); letter-spacing: .04em; color: var(--gold-lt); line-height: 1;
}
.about-figure-label {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(228,220,204,.5);
}

/* ══════════════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════════════ */
.contact-wrap {
  padding: clamp(80px, 10vw, 120px) clamp(24px, 6vw, 80px);
  display: grid; grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 8vw, 100px); max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 40px; padding-top: 8px; }
.contact-info-item { display: flex; flex-direction: column; gap: 6px; }
.contact-info-label {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 8px; letter-spacing: .45em; text-transform: uppercase; color: var(--gold);
}
.contact-info-value {
  font-size: 17px; font-weight: 300; color: var(--charcoal); letter-spacing: .03em;
}
.contact-info-sub {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 11px; letter-spacing: .1em; color: var(--warm-grey); line-height: 1.6;
}
.contact-form { display: flex; flex-direction: column; gap: 28px; }
.contact-field { display: flex; flex-direction: column; gap: 8px; }
.contact-label {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 9px; letter-spacing: .35em; text-transform: uppercase; color: var(--warm-grey);
}
.contact-input, .contact-textarea {
  font-family: 'Jost', sans-serif; font-weight: 200; font-size: 15px;
  color: var(--charcoal); background: transparent; border: none;
  border-bottom: 1px solid rgba(44,42,39,.15);
  padding: 10px 0; outline: none; width: 100%; transition: border-color .3s;
}
.contact-input:focus, .contact-textarea:focus { border-color: var(--gold); }
.contact-input::placeholder, .contact-textarea::placeholder { color: var(--stone); font-size: 14px; }
.contact-textarea { resize: none; height: 110px; }
.contact-submit {
  align-self: flex-start;
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  background: var(--charcoal); color: var(--ivory);
  padding: 15px 36px; border: none; border-radius: 999px;
  cursor: pointer; transition: background .3s, transform .3s;
}
.contact-submit:hover { background: var(--espresso); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════════════════ */
.newsletter-sec {
  background: var(--charcoal);
  padding: clamp(80px, 10vw, 120px) clamp(24px, 6vw, 80px);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.newsletter-eyebrow {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 9px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 24px;
}
.newsletter-h2 {
  font-weight: 300; font-size: clamp(28px, 4vw, 52px);
  letter-spacing: .04em; color: var(--ivory); margin-bottom: 12px;
}
.newsletter-h2 em { font-style: italic; color: var(--gold-lt); }
.newsletter-sub {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 13px; color: rgba(228,220,204,.55); margin-bottom: 40px;
}
.newsletter-form {
  display: flex; gap: 0; max-width: 460px; width: 100%;
  border: 1px solid rgba(180,154,106,.3); border-radius: 999px;
  overflow: hidden; background: rgba(255,255,255,.04);
}
.newsletter-input {
  flex: 1; padding: 14px 22px; background: transparent; border: none; outline: none;
  font-family: 'Jost', sans-serif; font-weight: 200; font-size: 13px; color: var(--ivory);
}
.newsletter-input::placeholder { color: rgba(228,220,204,.3); }
.newsletter-btn {
  background: var(--gold); border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--charcoal); padding: 0 24px; transition: background .3s;
}
.newsletter-btn:hover { background: var(--gold-lt); }
.newsletter-note {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 9px; letter-spacing: .15em; color: rgba(180,154,106,.4); margin-top: 16px;
}

/* ══════════════════════════════════════════════════════════════════════
   MOSAÏQUE COLLECTION — index
══════════════════════════════════════════════════════════════════════ */
.mosaic-sec {
  padding: clamp(80px,10vw,140px) clamp(24px,6vw,80px);
  background: var(--bg);
}

/* mosaïque éditoriale — placement explicite par zone */
.mosaic-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  grid-template-rows: 260px 220px 90px 80px;
  grid-template-areas:
    "c1 b1 o1"
    "c1 b1 o2"
    "c2 bl o2"
    "cl bl ol";
  gap: 4px;
}

.mc-c1 { grid-area: c1; }
.mc-c2 { grid-area: c2; }
.mc-cl { grid-area: cl; }
.mc-b1 { grid-area: b1; }
.mc-bl { grid-area: bl; }
.mc-o1 { grid-area: o1; }
.mc-o2 { grid-area: o2; }
.mc-ol { grid-area: ol; }

.mc { position: relative; overflow: hidden; }
.mc img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.16,1,.3,1);
}
.mc:hover img { transform: scale(1.05); }

/* ── étiquettes de série ─────────────────── */
.mc-label {
  background: var(--charcoal);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 22px 24px; gap: 4px;
}
.mc-label-serie {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 8px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-lt);
}
.mc-label-num {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: clamp(18px, 2vw, 28px); letter-spacing: .05em;
  color: var(--ivory);
}
.mc-label-sub {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 7px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--stone);
}
.mc-label--or .mc-label-serie { color: var(--gold); }
.mc-label--or .mc-label-num   { color: var(--gold-lt); }

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════ */
.footer { background: #1e1c1a; padding: clamp(60px, 8vw, 100px) clamp(24px, 6vw, 80px) 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px); margin-bottom: 64px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: 22px; letter-spacing: .45em; color: var(--ivory); margin-bottom: 8px;
}
.footer-brand-sub {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold-lt); opacity: .6; margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: rgba(228,220,204,.42); max-width: 260px;
}
.footer-col-title {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 20px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 12px; letter-spacing: .08em; color: rgba(228,220,204,.38);
  transition: color .3s;
}
.footer-col-links a:hover { color: var(--ivory); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-legal {
  font-family: 'Jost', sans-serif; font-weight: 200;
  font-size: 9px; letter-spacing: .2em; color: rgba(228,220,204,.2);
}
.footer-origin {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 12px; color: rgba(180,154,106,.3); letter-spacing: .1em;
}

/* ── DIVIDER BAR ─────────────────────────────────────────────────────── */
.div-bar {
  height: 52px; background: var(--stone);
  display: flex; align-items: center; gap: 24px; padding: 0 80px;
}
.div-line { flex: 1; height: 1px; background: rgba(44,42,39,.08); }
.div-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; color: rgba(122,98,48,.45); letter-spacing: .3em;
}

/* ── ANIMATIONS ──────────────────────────────────────────────────────── */
@keyframes veinDraw {
  from { stroke-dashoffset: 1200; }
  to   { stroke-dashoffset: 0; }
}
