/* =========================================================
   STOFFEN · TISSUS — Design System
   Palette : Lin & Encre
   Typo    : Cormorant Garamond (titres) + Inter (texte)
   ========================================================= */

:root {
  --cream:   #F4F0EA;
  --cream-2: #EDE7DB;
  --ink:     #1C1B17;
  --ink-2:   #2A2926;
  --terra:   #A85C3A;
  --celadon: #7B8C7C;
  --gold:    #C9A66B;
  --bordeaux: #74302F;
  --line:    rgba(28, 27, 23, 0.12);
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

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

/* ---------- Typography ---------- */
.display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.display-italic {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.body-text {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--ink);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 400ms var(--ease-out-quart), padding 400ms var(--ease-out-quart), color 300ms;
}
.header.is-scrolled {
  background: rgba(244, 240, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--line);
}
.header__brand {
  font-family: 'Jost', sans-serif;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 4px;
}
.header__brand .brand-mark {
  font-size: 19px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 0.34em;
}
.header__brand .brand-tag {
  font-size: 8.5px;
  letter-spacing: 0.58em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.6;
  padding-left: 0.58em;
}
.header__nav { display: flex; gap: 38px; }
.header__nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: currentColor;
  transition: width 400ms var(--ease-out-quart);
}
.header__nav a:hover::after { width: 100%; }
.header__right { display: flex; align-items: center; gap: 28px; }
.lang-toggle { font-size: 12px; letter-spacing: 0.18em; }
.lang-toggle a { opacity: 0.4; transition: opacity 300ms; }
.lang-toggle a.is-active { opacity: 1; }
.lang-toggle span { opacity: 0.3; padding: 0 6px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: var(--cream);
  padding: 13px 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--terra);
  transition: background 400ms var(--ease-out-quart), color 400ms var(--ease-out-quart), border-color 400ms;
}
.btn-primary:hover { background: var(--bordeaux); border-color: var(--bordeaux); color: var(--cream); }
.btn-primary .arrow { transition: transform 400ms var(--ease-out-quart); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  font-weight: 400;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 500ms var(--ease-in-out-quart);
}
.btn-ghost:hover::after { transform-origin: left; transform: scaleX(0); }
.btn-ghost:hover { color: var(--terra); }

/* ---------- Mobile menu ---------- */
.menu-btn { display: none; }
@media (max-width: 900px) {
  .header { padding: 16px 20px; }
  .header.is-scrolled { padding: 12px 20px; }
  .header__nav, .header__right .btn-primary, .lang-toggle { display: none; }
  .menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    color: inherit;
  }
  .menu-btn span {
    width: 24px; height: 1px; background: currentColor;
    transition: transform 400ms var(--ease-out-quart), opacity 200ms;
  }
  .menu-btn.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-btn.is-open span:nth-child(2) { opacity: 0; }
  .menu-btn.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--cream);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms var(--ease-out-quart);
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 300;
}
.mobile-menu .lang-toggle-m { margin-top: 40px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute; inset: 0;
  overflow: hidden;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
}
.hero__video,
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(1.05);
}
.hero__video { display: block; }
/* léger zoom sur l'image de secours (poster) pour garder de la profondeur si la vidéo est absente */
.hero__media img {
  transform: scale(1.04);
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.14) translate(-2%, -2%); }
}
/* Vidéo claire + texte sombre : voile crème doux concentré derrière le texte
   (les bords restent vifs/aériens) pour garantir le contraste du texte sombre. */
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 58% at 50% 47%, rgba(247,243,237,0.52) 0%, rgba(247,243,237,0.16) 55%, rgba(247,243,237,0) 80%),
    linear-gradient(180deg, rgba(247,243,237,0.34) 0%, rgba(247,243,237,0) 28%, rgba(247,243,237,0) 72%, rgba(247,243,237,0.30) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 104px 24px 24px;
  color: var(--ink);
  text-align: center;
  text-shadow: 0 1px 22px rgba(247, 243, 237, 0.7);
}
.hero__mini {
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 52px;
  opacity: 0.68;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(38px, 5.4vw, 82px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0 0 34px;
}
.hero__title span { display: block; overflow: hidden; }
.hero__title span > i { display: inline-block; font-style: italic; }
.hero__sub {
  max-width: 540px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  opacity: 0.82;
  margin: 0 0 58px;
}
.hero__ctas { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.hero__ctas .btn-primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.hero__ctas .btn-primary:hover { background: var(--terra); border-color: var(--terra); color: var(--cream); }
.hero__ctas .btn-ghost { color: var(--ink); }

.hero__scroll {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding-bottom: 26px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.7;
}
.hero__scroll::after {
  content: '';
  width: 1px; height: 42px;
  background: currentColor;
  animation: scrollLine 2s ease-in-out infinite;
}
/* Sur écran court, on masque l'indicateur pour laisser toute la place au contenu. */
@media (max-height: 720px) {
  .hero__scroll { display: none; }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.5; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* ---------- Marquee stats bar ---------- */
.stats-bar {
  padding: 26px 40px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 40px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}
.stats-bar > div { display: flex; align-items: center; gap: 10px; }
.stats-bar .num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 21px;
  font-weight: 300;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--terra);
}
.stats-bar .sep { width: 1px; height: 18px; background: var(--line); }
@media (max-width: 1080px) { .stats-bar { gap: 14px 28px; } }
@media (max-width: 760px) {
  .stats-bar { flex-direction: column; gap: 14px; padding: 24px; }
  .stats-bar .sep { display: none; }
}

/* ---------- Section base ---------- */
.section { padding: 140px 40px; position: relative; }
.section--tight { padding: 100px 40px; }
.section--dark { background: var(--ink); color: var(--cream); }
@media (max-width: 900px) { .section { padding: 80px 20px; } }

.section-num {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 20px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.section-title i { font-style: normal; color: var(--terra); }

.section-lead {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  max-width: 540px;
  opacity: 0.78;
}

/* ---------- Split section (text + image) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
}
.split__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease-out-quart); }
.split__media:hover img { transform: scale(1.04); }
.split__copy p { font-size: 17px; line-height: 1.75; font-weight: 300; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split--reverse .split__media { order: 0; } }

/* ---------- Categories : grille uniforme (rayons outlet) ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1500px;
  margin: 56px auto 0;
}
.cat-card { aspect-ratio: 4/5; }
@media (max-width: 1000px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.cat-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  display: block;
  isolation: isolate;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out-quart), filter 600ms;
  filter: brightness(0.92) saturate(1.12);
}
.cat-card:hover img { transform: scale(1.06); filter: brightness(0.75); }
.cat-card__label {
  position: absolute; left: 24px; bottom: 22px;
  z-index: 2;
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
}
.cat-card__tag {
  position: absolute; right: 18px; top: 18px;
  z-index: 2;
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(244, 240, 234, 0.5);
  padding: 6px 10px;
  background: rgba(28, 27, 23, 0.3);
  backdrop-filter: blur(4px);
}
.cat-card__arrow {
  position: absolute; right: 24px; bottom: 22px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 400ms, transform 400ms var(--ease-out-quart);
  z-index: 2;
}
.cat-card:hover .cat-card__arrow { opacity: 1; transform: translateX(0); }

/* Badge outlet (coin haut-gauche des cartes) — accent couleur, plat, élégant */
.cat-card__badge {
  position: absolute; left: 18px; top: 18px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 11px;
  color: var(--cream);
  background: var(--terra);
}
.cat-card__badge--bordeaux { background: var(--bordeaux); }
.cat-card__badge--sage     { background: var(--celadon); }
.cat-card__badge--ochre    { background: var(--gold); color: var(--ink); }

/* ---------- Section "Bonnes affaires" (signaux outlet) ---------- */
.outlet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1000px) { .outlet-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .outlet-grid { grid-template-columns: 1fr; } }
.outlet-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--terra);
  padding: 36px 30px 34px;
}
.outlet-card--bordeaux { border-top-color: var(--bordeaux); }
.outlet-card--sage     { border-top-color: var(--celadon); }
.outlet-card--ochre    { border-top-color: var(--gold); }
.outlet-card h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--terra);
}
.outlet-card--bordeaux h3 { color: var(--bordeaux); }
.outlet-card--sage h3     { color: var(--celadon); }
.outlet-card--ochre h3    { color: #9a7b34; }
.outlet-card p { margin: 0; font-size: 14px; line-height: 1.65; opacity: 0.72; }
.outlet-card__fine { font-size: 11px; letter-spacing: 0.04em; opacity: 0.5; margin-top: 14px; }

/* Pastille texte réutilisable (ex. "Prix outlet toute l'année") */
.tagline-pill {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--terra);
  background: rgba(168, 92, 58, 0.10);
  padding: 8px 16px;
  border-radius: 2px;
}

/* ---------- Nos spécialités (services / solutions) ---------- */
.specialties {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 1100px) { .specialties { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .specialties { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px)  { .specialties { grid-template-columns: 1fr; } }
.spec-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 3px solid var(--terra);
  padding: 30px 24px 26px;
  transition: transform 500ms var(--ease-out-quart), box-shadow 500ms var(--ease-out-quart);
}
.spec-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(28, 27, 23, 0.08); }
.spec-card--bordeaux { border-top-color: var(--bordeaux); }
.spec-card--sage     { border-top-color: var(--celadon); }
.spec-card--ochre    { border-top-color: var(--gold); }
.spec-card--ink      { border-top-color: var(--ink); }
.spec-card__icon { width: 40px; height: 40px; margin-bottom: 22px; color: var(--terra); }
.spec-card--bordeaux .spec-card__icon { color: var(--bordeaux); }
.spec-card--sage .spec-card__icon     { color: var(--celadon); }
.spec-card--ochre .spec-card__icon    { color: #9a7b34; }
.spec-card--ink .spec-card__icon      { color: var(--ink); }
.spec-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 10px;
}
.spec-card p { font-size: 13.5px; line-height: 1.6; opacity: 0.7; margin: 0 0 20px; flex: 1; }
.spec-card__cta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
}
.spec-card__cta .arrow { transition: transform 350ms var(--ease-out-quart); }
.spec-card:hover .spec-card__cta .arrow { transform: translateX(4px); }

/* ---------- Bande catégories cœur d'activité (sous le hero) ---------- */
.hero-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 900px) { .hero-cats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .hero-cats { grid-template-columns: 1fr; } }
.hero-cat {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 30px;
  color: var(--cream);
  background: var(--terra);
  overflow: hidden;
  transition: filter 500ms var(--ease-out-quart);
}
.hero-cat:hover { filter: brightness(1.07); }
.hero-cat--bordeaux { background: var(--bordeaux); }
.hero-cat--sage     { background: var(--celadon); }
.hero-cat--ochre    { background: var(--gold); color: var(--ink); }
.hero-cat__icon { position: absolute; top: 28px; left: 30px; width: 44px; height: 44px; opacity: 0.4; }
.hero-cat h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  max-width: 92%;
}
.hero-cat__cta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.92;
}
.hero-cat__cta .arrow { transition: transform 350ms var(--ease-out-quart); }
.hero-cat:hover .hero-cat__cta .arrow { transform: translateX(5px); }

/* ---------- "Pourquoi choisir" — checkmarks ---------- */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1120px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .why-list { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } }
@media (max-width: 520px) { .why-list { grid-template-columns: 1fr; } }
.why-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
.why-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 18px;
  background: rgba(168, 92, 58, 0.10);
  color: var(--terra);
}
.why-list li:nth-child(2) .why-check { background: rgba(123, 140, 124, 0.16); color: var(--celadon); }
.why-list li:nth-child(3) .why-check { background: rgba(116, 48, 47, 0.10);  color: var(--bordeaux); }
.why-list li:nth-child(4) .why-check { background: rgba(201, 166, 107, 0.20); color: #9a7b34; }
.why-list li:nth-child(5) .why-check { background: rgba(168, 92, 58, 0.10);  color: var(--terra); }

/* (grille uniforme — voir .cat-grid ci-dessus) */

/* ---------- Journal ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  max-width: 1500px;
  margin: 60px auto 0;
  align-items: stretch;
}
@media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr; } }
.journal-cards { display: flex; flex-direction: column; gap: 32px; height: 100%; }
.j-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
/* hauteur plafonnée pour ne jamais dépasser l'écran sur grand moniteur */
.j-card--big { height: clamp(440px, 62vh, 660px); }
/* les 2 petites se partagent la hauteur de la grande, parfaitement alignées */
.j-card--small { flex: 1 1 0; min-height: 0; }
@media (max-width: 900px) {
  .journal-cards { height: auto; }
  .j-card--big { height: auto; aspect-ratio: 4/5; }
  .j-card--small { flex: none; aspect-ratio: 4/5; }
}
.j-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1200ms var(--ease-out-quart);
}
.j-card:hover img { transform: scale(1.04); }
.j-card__body {
  position: absolute;
  left: 32px; right: 32px; bottom: 28px;
  color: var(--cream);
  z-index: 2;
}
.j-card__body::before {
  content: '';
  position: absolute;
  inset: -100px -32px -28px -32px;
  background: linear-gradient(180deg, transparent, rgba(28,27,23,0.85));
  z-index: -1;
}
.j-card__cat {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  margin-bottom: 12px; opacity: 0.85;
}
.j-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.1;
  margin: 0 0 8px;
}
.j-card__date { font-size: 11px; opacity: 0.75; letter-spacing: 0.08em; }

/* ---------- Showroom feature ---------- */
.showroom-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
@media (max-width: 900px) { .showroom-feature { grid-template-columns: 1fr; min-height: auto; } }
.showroom-feature__media { position: relative; overflow: hidden; min-height: 60vh; }
.showroom-feature__media img { width: 100%; height: 100%; object-fit: cover; }
.showroom-feature__copy {
  background: var(--ink);
  color: var(--cream);
  padding: 90px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) { .showroom-feature__copy { padding: 60px 24px; } }
.showroom-feature__copy .section-num { color: var(--gold); }
/* taille réduite pour tenir sur 2 lignes max ("Venez." + "Le reste se passe ici.") */
.showroom-feature__copy .section-title { color: var(--cream); font-size: clamp(34px, 3.4vw, 52px); }

/* ---------- Carnet (signature feature) ---------- */
.carnet {
  background: var(--cream-2);
  padding: 140px 40px;
  text-align: center;
}
.carnet__inner { max-width: 760px; margin: 0 auto; }
.carnet__illu {
  margin: 60px auto 0;
  width: 100%;
  max-width: 460px;
  height: 220px;
  position: relative;
}
.swatch {
  position: absolute;
  width: 84px; height: 110px;
  box-shadow: 0 14px 30px rgba(28,27,23,0.18);
  border: 6px solid var(--cream);
  transform-origin: center top;
}
.swatch--1 { left: 20%; top: 0; background: linear-gradient(135deg, #5C1A1B, #7a2425); transform: rotate(-8deg); }
.swatch--2 { left: 42%; top: 12px; background: linear-gradient(135deg, #C9A66B, #ad8a52); transform: rotate(3deg); }
.swatch--3 { left: 64%; top: 6px; background: linear-gradient(135deg, #7B8C7C, #5e6e60); transform: rotate(-2deg); }

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 140px 40px;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial {
  max-width: 920px;
  margin: 0 auto;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(23px, 3vw, 38px);
  line-height: 1.32;
  letter-spacing: -0.015em;
  margin: 0 0 48px;
}
.testimonial__sig {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.testimonial__sig img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1);
}
.testimonial__sig div { text-align: left; }
.testimonial__sig strong { font-weight: 500; display: block; margin-bottom: 2px; }
.testimonial__sig span { opacity: 0.6; font-size: 12px; }
.testimonial__dots {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 56px;
}
.testimonial__dots span {
  width: 24px; height: 1px;
  background: var(--ink);
  opacity: 0.3;
  transition: opacity 400ms, width 400ms;
  cursor: pointer;
}
.testimonial__dots span.is-active { opacity: 1; width: 40px; }

/* ---------- Visit / Map ---------- */
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
@media (max-width: 900px) { .visit { grid-template-columns: 1fr; min-height: auto; } }
.visit__map {
  position: relative;
  background: var(--cream-2);
  min-height: 500px;
  overflow: hidden;
}
.visit__map svg { width: 100%; height: 100%; }
.visit__pin {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
}
.visit__pin::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--terra);
  animation: pinPulse 2.5s ease-out infinite;
}
.visit__pin::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--terra);
  z-index: 2;
}
@keyframes pinPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3.5); opacity: 0; }
}
.visit__copy {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
}
@media (max-width: 900px) { .visit__copy { padding: 60px 24px; } }
.visit__copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  margin: 0;
}
.visit__copy h2 i { font-style: italic; }
.info-block { display: flex; flex-direction: column; gap: 12px; }
.info-block .label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
}
.info-block .value { font-size: 16px; font-weight: 300; line-height: 1.5; }
.info-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.visit__ctas { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 40px 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1500px;
  margin: 0 auto 80px;
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr; gap: 40px; } }
.footer__brand {
  font-family: 'Jost', sans-serif;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 5px;
  margin-bottom: 22px;
}
.footer__brand .brand-mark {
  font-size: 22px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 0.34em;
}
.footer__brand .brand-tag {
  font-size: 9px;
  letter-spacing: 0.58em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.55;
  padding-left: 0.58em;
}
.footer__col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 24px;
  opacity: 0.7;
}
.footer__col a, .footer__col p { display: block; font-size: 14px; line-height: 1.9; opacity: 0.85; }
.footer__col a:hover { opacity: 1; color: var(--terra); }
.footer__newsletter input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(244,240,234,0.3);
  padding: 14px 0;
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color 300ms;
}
.footer__newsletter input::placeholder { color: rgba(244,240,234,0.5); }
.footer__newsletter input:focus { border-color: var(--terra); }
.footer__newsletter button {
  margin-top: 18px;
  background: transparent;
  border: none;
  color: var(--cream);
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
}
.footer__newsletter button::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--cream);
  transition: background 300ms;
}
.footer__newsletter button:hover::after { background: var(--terra); }
.footer__bottom {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(244,240,234,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: 0.65;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__bottom a { margin-left: 24px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 200px 40px 100px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .page-hero { padding: 140px 20px 60px; } }
.page-hero .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  opacity: 0.65;
}
.page-hero .eyebrow::before, .page-hero .eyebrow::after {
  content: ''; width: 36px; height: 1px; background: currentColor;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.page-hero h1 i { font-style: normal; color: var(--terra); }
.page-hero p { font-size: 18px; max-width: 620px; margin: 0 auto; font-weight: 300; opacity: 0.8; line-height: 1.6; }

/* ---------- Matières grid (inner page) ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 40px 20px;
  border-bottom: 1px solid var(--line);
}
.filter-pill {
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: background 300ms, color 300ms, border-color 300ms;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
}
.filter-pill:hover, .filter-pill.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.matiere-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  padding: 80px 40px;
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 600px) { .matiere-grid { padding: 60px 20px; gap: 20px; } }
.matiere {
  display: flex;
  flex-direction: column;
  position: relative;
}
.matiere__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 18px;
  background-color: var(--cream-2);
  /* reflet + ombre + tissage fin pour un rendu d'échantillon de tissu */
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.20) 0%, rgba(255,255,255,0) 46%),
    linear-gradient(315deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 42%),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.05) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px);
  transition: filter 600ms var(--ease-out-quart);
}
.matiere:hover .matiere__media { filter: brightness(1.05) saturate(1.06); }
/* conservé : si une vraie photo de tissu est ajoutée plus tard, elle recouvre l'échantillon */
.matiere__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1000ms var(--ease-out-quart);
}
.matiere:hover .matiere__media img { transform: scale(1.05); }

/* ---------- Slider par matière (une image à la fois, avec points) ---------- */
.matiere__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.matiere__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 700ms var(--ease-out-quart);
}
.matiere__slide.is-active { opacity: 1; z-index: 1; }
.matiere__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1000ms var(--ease-out-quart);
}
.matiere:hover .matiere__slide.is-active img { transform: scale(1.05); }
.matiere__slider-nav {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.matiere__dot {
  width: 6px; height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 300ms var(--ease-out-quart), transform 300ms var(--ease-out-quart);
}
.matiere__dot.is-active { background: #fff; transform: scale(1.35); }
.matiere__dot:hover { background: rgba(255,255,255,0.85); }
.matiere__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease-out-quart), background 250ms var(--ease-out-quart);
}
.matiere__slider:hover .matiere__arrow {
  opacity: 1;
  pointer-events: auto;
}
.matiere__arrow:hover { background: rgba(0,0,0,0.6); }
.matiere__arrow--prev { left: 10px; }
.matiere__arrow--next { right: 10px; }
.matiere__name {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  /* réserve 2 lignes pour que la ligne prix s'aligne sur toute la rangée */
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}
.matiere__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  letter-spacing: 0.05em;
  opacity: 0.65;
  margin-top: auto;
}
.matiere__price { color: var(--terra); font-weight: 500; }

/* ---------- Reveal animation defaults ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1000ms var(--ease-out-quart), transform 1000ms var(--ease-out-quart);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-mask {
  overflow: hidden;
}
.reveal-mask > * {
  display: block;
  transform: translateY(110%);
  transition: transform 1100ms var(--ease-out-quart);
}
.reveal-mask.is-visible > * { transform: translateY(0); }

/* ---------- Services list ---------- */
.services-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
.service-row {
  display: grid;
  grid-template-columns: 100px 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  transition: padding 400ms var(--ease-out-quart);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { padding-left: 16px; padding-right: 16px; background: var(--cream-2); }
.service-row__num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--terra);
}
.service-row__title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}
.service-row__desc { font-size: 15px; opacity: 0.75; line-height: 1.6; }
.service-row__arrow {
  font-size: 22px;
  transition: transform 400ms var(--ease-out-quart);
}
.service-row:hover .service-row__arrow { transform: translateX(8px); color: var(--terra); }
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .service-row__arrow { display: none; }
}

/* ---------- Responsive grids (cards alignées, hauteurs cohérentes) ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}
.grid-3 > * { display: flex; flex-direction: column; }
@media (max-width: 980px) { .grid-3 { grid-template-columns: 1fr; gap: 48px; } }

.grid-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 980px) { .grid-cards-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .grid-cards-3 { grid-template-columns: 1fr; } }

.faq-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.faq-row:last-of-type { border-bottom: 1px solid var(--line); }
@media (max-width: 760px) { .faq-row { grid-template-columns: 1fr; gap: 12px; } }

.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 620px) { .form-2col { grid-template-columns: 1fr; } }

/* ---------- Formulaire de contact / demande d'offre ---------- */
.cform { max-width: 860px; margin: 0 auto; display: grid; gap: 44px; }
.cform__group { display: flex; flex-direction: column; gap: 16px; }
.cform__label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 400;
}
.cform__label .opt { text-transform: none; letter-spacing: 0.04em; opacity: 0.7; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 14px; }
.cform__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 620px) { .cform__row { grid-template-columns: 1fr; } }
.cform input,
.cform textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink);
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 300ms var(--ease-out-quart);
}
.cform input::placeholder,
.cform textarea::placeholder { color: rgba(28, 27, 23, 0.38); }
.cform input:focus,
.cform textarea:focus { border-color: var(--terra); }
.cform textarea { resize: vertical; min-height: 84px; }
.cform__submit { text-align: center; margin-top: 8px; }
.cform__note { font-size: 13px; opacity: 0.6; text-align: center; line-height: 1.6; }

/* message de confirmation après envoi */
.cform-success {
  display: none;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 20px;
}
.cform-success.is-visible { display: block; }
.cform-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 20px;
}
.cform-success p { font-size: 16px; opacity: 0.75; line-height: 1.7; }

/* ---------- Utility ---------- */
.container { max-width: 1500px; margin: 0 auto; }
.container--narrow { max-width: 1100px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-l { margin-top: 60px; }
.mb-l { margin-bottom: 60px; }
.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  max-width: 1500px;
  margin: 0 auto;
}
