/* =============================================================
   KLEDA — Maison camerounaise de la chaussure
   Refonte « Grand Luxe » — édition 2026
   Inspirations : Hermès, Aimé Leon Dore, Lemaire, Le Mile
   ============================================================= */

:root {
  color-scheme: light only;
  /* ── Palette ──────────────────────────────────────────── */
  --cream:      #efe7d6;          /* ivoire chaud, support principal */
  --cream-2:    #e7decb;           /* ivoire plus dense */
  --cream-3:    #ddd1ba;           /* ton taupe pour zones produit */
  --ink:        #1a1612;          /* encre sépia profonde, pas de noir pur */
  --ink-2:      #2a221c;
  --cognac:     #8b4a24;          /* selle / cognac signature */
  --cognac-d:   #6b3617;
  --gold:       #b08a3e;          /* laiton, accents sceau */
  --burgundy:   #4a1d1b;          /* oxblood, rares accents */
  --line:       rgba(26, 22, 18, .14);
  --line-soft:  rgba(26, 22, 18, .08);
  --muted:      rgba(26, 22, 18, .55);
  --on-ink:     #e8dfcb;          /* texte sur fond encre */
  --on-ink-mut: rgba(232, 223, 203, .65);

  /* ── Typo ─────────────────────────────────────────────── */
  --ff-display: 'Italiana', 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --ff-sans:    'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Mesures ──────────────────────────────────────────── */
  --container: 1360px;
  --container-wide: 1560px;
  --gutter: 40px;
  --section: clamp(80px, 11vw, 160px);

  /* ── Ombres ───────────────────────────────────────────── */
  --shadow-md: 0 18px 40px -22px rgba(26, 22, 18, .35);
  --shadow-lg: 0 40px 90px -40px rgba(26, 22, 18, .45);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html, body {
  margin: 0; padding: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "kern", "liga";
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; touch-action: manipulation; background: none; border: none; color: inherit; }
a, button, [role="button"] { touch-action: manipulation; }

/* =============================================================
   TYPOGRAPHIE
   ============================================================= */

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  margin: 0;
  line-height: 1.02;
}
h1 { font-size: clamp(48px, 8vw, 132px); }
h2 { font-size: clamp(34px, 5.2vw, 76px); }
h3 { font-size: clamp(24px, 3.2vw, 44px); }
h4 { font-size: clamp(20px, 2.4vw, 30px); }
em { font-style: italic; }
.serif { font-family: var(--ff-serif); }
.display { font-family: var(--ff-display); font-weight: 400; letter-spacing: -0.006em; }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 10.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--cognac);
}
.eyebrow.on-dark { color: var(--on-ink); }
.eyebrow.on-dark::before { background: var(--gold); }
.eyebrow.plain::before { display: none; }

.roman {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.container       { max-width: var(--container);      margin: 0 auto; padding: 0 var(--gutter); }
.container-wide  { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.container-fluid { padding: 0 var(--gutter); }

/* =============================================================
   TOP BAR — bandeau marquee
   ============================================================= */
.topbar {
  background: var(--ink);
  color: var(--on-ink);
  font-family: var(--ff-sans);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  padding: 11px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 223, 203, .08);
}
.topbar-marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  gap: 0;
}
.topbar-marquee span {
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  opacity: .82;
}
.topbar-marquee span::after {
  content: "✦";
  margin-left: 28px;
  color: var(--gold);
  opacity: .8;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-right { display: flex; gap: 30px; opacity: .85; }
.topbar-right span { white-space: nowrap; }

/* =============================================================
   HEADER
   ============================================================= */
.header {
  background: var(--cream);
  position: sticky;
  top: 0; z-index: 100;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(8px);
}
.header .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.brand .crest {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand .wordmark {
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: 0.34em;
  padding-left: 0.34em;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.brand .since {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 11px;
  color: var(--muted);
  margin-left: 6px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 38px;
  font-size: 11px;
  letter-spacing: 0.32em;
  font-weight: 500;
  text-transform: uppercase;
}
.nav a {
  position: relative;
  padding: 8px 0;
  transition: color .25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  height: 1px; width: 0;
  background: var(--cognac);
  transition: width .3s ease, left .3s ease;
}
.nav a:hover { color: var(--cognac); }
.nav a:hover::after, .nav a.active::after { width: 100%; left: 0; }
.nav a.active { color: var(--cognac); }

.header-actions {
  justify-self: end;
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}
.header-actions a, .header-actions button {
  display: inline-flex; align-items: center; gap: 8px;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}
.header-actions a:hover, .header-actions button:hover { color: var(--cognac); }
.cart-count {
  position: absolute;
  top: -6px; right: -14px;
  background: var(--cognac);
  color: var(--cream);
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 9.5px;
  letter-spacing: 0;
  padding: 0 5px;
  font-family: var(--ff-sans);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  color: var(--ink);
  padding: 6px 8px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  line-height: 1;
}

/* Mobile drawer overlay */
.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26, 22, 18, .55);
  z-index: 98;
}
.nav-overlay.open { display: block; }

/* =============================================================
   HERO — pleine page cinématographique
   ============================================================= */
.hero {
  position: relative;
  min-height: clamp(620px, 88vh, 920px);
  background: var(--ink);
  color: var(--on-ink);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-rows: 1fr auto;
}
.hero-media {
  position: absolute; inset: 0; z-index: -1;
  background-color: var(--ink-2);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  opacity: .82;
  filter: saturate(.92) contrast(1.02);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 22, 18, .35) 0%,
    rgba(26, 22, 18, .1) 40%,
    rgba(26, 22, 18, .65) 100%);
}

.hero-content {
  align-self: center;
  text-align: center;
  padding: 80px 32px 60px;
  display: grid;
  gap: 28px;
  justify-items: center;
}
.hero-content .eyebrow { color: var(--on-ink); }
.hero-content .eyebrow::before { background: var(--gold); }
.hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(64px, 11vw, 188px);
  line-height: .94;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.012em;
  max-width: 14ch;
}
.hero-content h1 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.hero-content p {
  max-width: 540px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-ink-mut);
  margin: 0;
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 24px 40px 36px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--on-ink-mut);
  gap: 20px;
}
.hero-foot .center {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--cream);
}
.hero-foot .center::before {
  content: "";
  width: 1px; height: 36px;
  background: var(--gold);
  animation: drop 2.2s ease-in-out infinite;
}
@keyframes drop {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50%      { transform: scaleY(.4); transform-origin: top; }
}
.hero-foot .right { text-align: right; }
.hero-foot strong {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  display: block;
  margin-bottom: 4px;
}

/* =============================================================
   HERITAGE STRIP — sceau
   ============================================================= */
.heritage {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 48px 0;
  text-align: center;
}
.heritage .crest {
  margin: 0 auto 18px;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  color: var(--cognac);
}
.heritage p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink);
}
.heritage .meta {
  margin-top: 18px;
  font-size: 10.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 36px;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s;
  text-align: center;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn::after {
  content: "→";
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  transition: transform .25s;
}
.btn:hover::after { transform: translateX(4px); }
.btn.no-arrow::after { display: none; }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--cognac); border-color: var(--cognac); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); }
.btn-cognac { background: var(--cognac); color: var(--cream); border-color: var(--cognac); }
.btn-cognac:hover { background: var(--cognac-d); border-color: var(--cognac-d); }
.btn-block { width: 100%; }
.btn-sm { padding: 12px 22px; font-size: 10px; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; justify-content: center; }

/* =============================================================
   LINKS
   ============================================================= */
.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  transition: color .25s;
}
.link::after {
  content: "→";
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  transition: transform .25s;
}
.link:hover { color: var(--cognac); }
.link:hover::after { transform: translateX(4px); }
.link.on-dark { color: var(--cream); }
.link.on-dark:hover { color: var(--gold); }

/* =============================================================
   SECTION HEADERS — éditorial
   ============================================================= */
.section { padding: var(--section) 0; }
.section-tight { padding: clamp(48px, 7vw, 88px) 0; }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.section-head .num {
  font-family: var(--ff-display);
  font-size: clamp(36px, 6vw, 88px);
  line-height: .8;
  color: var(--cognac);
  font-weight: 400;
}
.section-head h2 {
  font-family: var(--ff-serif);
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1;
  padding-bottom: 6px;
}
.section-head .right {
  align-self: end;
  padding-bottom: 12px;
}

/* simple variant (centré) */
.section-center {
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-center h2 { max-width: 18ch; }

/* =============================================================
   CATÉGORIES — bandeau couture
   ============================================================= */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cat-card {
  position: relative;
  padding: 36px 28px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .3s;
  overflow: hidden;
  isolation: isolate;
}
.cat-card:last-child { border-right: none; }
.cat-card:hover { background: var(--cream-2); }
.cat-card .roman-n {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}
.cat-card .label {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
  letter-spacing: -.005em;
}
.cat-card .sub {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.cat-card .arrow {
  margin-top: 12px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cognac);
  transition: transform .3s;
  align-self: flex-start;
}
.cat-card:hover .arrow { transform: translateX(8px); }

/* =============================================================
   PRODUCT GRID & CARDS
   ============================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 56px) clamp(20px, 2vw, 32px);
}
.products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.products-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.product-card .media {
  aspect-ratio: 4/5;
  background: var(--cream-3);
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
.product-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s ease, opacity .4s;
}
.product-card:hover .media img { transform: scale(1.04); }
.product-card .media .img-alt {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
}
.product-card:hover .media .img-alt { opacity: 1; }
.product-card .tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--cream);
  background: var(--ink);
  padding: 6px 10px;
  text-transform: uppercase;
}
.product-card .tag.new   { background: var(--cognac); }
.product-card .tag.lim   { background: var(--burgundy); }
.product-card .quick {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 12px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.product-card:hover .quick { transform: translateY(0); }

.product-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.product-card .name {
  font-family: var(--ff-serif);
  font-size: 22px;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -.005em;
}
.product-card .name em { color: var(--cognac); }
.product-card .sub {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}
.product-card .price {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 18px;
  white-space: nowrap;
  color: var(--ink);
}

/* =============================================================
   EDITORIAL SPLITS
   ============================================================= */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--cream);
}
.editorial.invert { background: var(--ink); color: var(--on-ink); }
.editorial-text {
  padding: clamp(60px, 7vw, 110px) clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.editorial-text h3 {
  font-family: var(--ff-serif);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 400;
  margin: 0;
}
.editorial-text h3 em { color: var(--cognac); }
.editorial.invert .editorial-text h3 em { color: var(--gold); }
.editorial-text p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 480px;
  opacity: .82;
}
.editorial-image {
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.editorial-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.editorial-image:hover img { transform: scale(1.03); }
.editorial-image .caption {
  position: absolute;
  bottom: 28px; left: 28px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--cream);
  background: rgba(26, 22, 18, .55);
  padding: 8px 14px;
  backdrop-filter: blur(4px);
}

/* Editorial big quote */
.quote-block {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
}
.quote-block .mark {
  font-family: var(--ff-display);
  font-size: clamp(80px, 14vw, 200px);
  line-height: .6;
  color: var(--cognac);
  display: block;
  margin-bottom: 32px;
}
.quote-block blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 58px);
  line-height: 1.18;
  max-width: 22ch;
  margin: 0 auto 32px;
  font-weight: 400;
}
.quote-block cite {
  font-family: var(--ff-sans);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* =============================================================
   SERVICES STRIP
   ============================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 10px;
}
.service:last-child { border-right: none; }
.service .num {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--cognac);
  margin-bottom: 10px;
}
.service .title {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.1;
}
.service .sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 4px;
}

/* legacy support: .trust */
.trust { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-item { padding: 48px 32px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-item .title { font-family: var(--ff-serif); font-size: 26px; }
.trust-item .sub { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--ink);
  color: var(--on-ink);
  padding: 80px 0 0;
  border-top: 1px solid rgba(232, 223, 203, .08);
}
.footer .footer-wordmark {
  text-align: center;
  padding: 0 0 60px;
}
.footer .footer-wordmark span {
  font-family: var(--ff-display);
  font-size: clamp(80px, 16vw, 240px);
  letter-spacing: 0.28em;
  padding-left: 0.28em;
  color: var(--cream);
  display: inline-block;
  line-height: .85;
  font-weight: 400;
  opacity: .96;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 56px;
  align-items: start;
  padding-top: 56px;
  border-top: 1px solid rgba(232, 223, 203, .08);
}
.footer .col-brand p {
  font-size: 13px;
  color: var(--on-ink-mut);
  margin-top: 18px;
  line-height: 1.7;
  max-width: 280px;
}
.footer .col-title {
  font-family: var(--ff-sans);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer .col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  font-family: var(--ff-serif);
}
.footer .col ul a {
  opacity: .75;
  transition: opacity .25s, color .25s;
}
.footer .col ul a:hover { opacity: 1; color: var(--gold); }

.footer .newsletter input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232, 223, 203, .25);
  padding: 12px 0;
  color: var(--cream);
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 15px;
}
.footer .newsletter input::placeholder { color: rgba(232, 223, 203, .4); }
.footer .newsletter input:focus { outline: none; border-bottom-color: var(--gold); }
.footer .newsletter p {
  font-size: 12px;
  color: var(--on-ink-mut);
  line-height: 1.6;
  margin: 14px 0 18px;
}
.footer .newsletter button {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.footer .newsletter button:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(232, 223, 203, .08);
  margin-top: 64px;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-ink-mut);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom .made { font-family: var(--ff-serif); font-style: italic; letter-spacing: 0.04em; text-transform: none; font-size: 13px; }

/* =============================================================
   PAGE HEADERS
   ============================================================= */
.page-hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(50px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.page-hero .container { display: grid; gap: 24px; justify-items: center; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 9vw, 152px);
  line-height: .98;
  font-weight: 400;
  max-width: 14ch;
}
.page-hero h1 em {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--cognac);
}
.page-hero .lead {
  max-width: 580px;
  opacity: .75;
  font-size: 15.5px;
  line-height: 1.75;
}

/* =============================================================
   BOUTIQUE — filtres
   ============================================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  padding: clamp(48px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
}
.filters .filter-group { margin-bottom: 40px; }
.filters h4 {
  font-family: var(--ff-sans);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
}
.filters ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.filters li a {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--ff-serif);
  font-size: 17px;
  padding: 8px 0;
  cursor: pointer;
  color: var(--ink);
  opacity: .72;
  transition: opacity .2s, color .2s, padding-left .2s;
}
.filters li a.active, .filters li a:hover {
  opacity: 1;
  color: var(--cognac);
  padding-left: 8px;
}
.filters li a.active::before {
  content: "—";
  position: absolute;
  margin-left: -22px;
  color: var(--cognac);
}
.filters li { position: relative; }
.filters li .count {
  font-family: var(--ff-sans);
  font-size: 11px;
  opacity: .5;
  font-style: normal;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  font-size: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.shop-toolbar #result-count {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
}
.shop-toolbar select {
  border: none;
  background: transparent;
  padding: 8px 0 8px 14px;
  font-family: var(--ff-sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
}

/* =============================================================
   PRODUIT — fiche
   ============================================================= */
.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(40px, 5vw, 64px) 0 clamp(60px, 8vw, 120px);
}
.gallery { display: grid; grid-template-columns: 88px 1fr; gap: 20px; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 12px; }
.gallery-thumbs .thumb {
  aspect-ratio: 1/1;
  background: var(--cream-2);
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .2s;
}
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs .thumb.active { border-color: var(--ink); }
.gallery-main {
  background: var(--cream-2);
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding-top: 8px; }
.product-info .breadcrumbs {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.product-info .breadcrumbs a:hover { color: var(--cognac); }
.product-info h1 {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 400;
}
.product-info h1 em { color: var(--cognac); }
.product-info .ref {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.product-info .price-line {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.product-info .desc {
  font-size: 14.5px;
  line-height: 1.8;
  opacity: .82;
  margin-bottom: 32px;
  max-width: 50ch;
}

.size-row { margin-bottom: 28px; }
.size-row label {
  display: flex; justify-content: space-between;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.size-row .guide {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cognac);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-options button {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 14px 18px;
  min-width: 60px;
  font-size: 13.5px;
  font-family: var(--ff-serif);
  transition: all .15s;
}
.size-options button:hover { border-color: var(--ink); }
.size-options button.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.qty-row { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.qty-row label { font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 500; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--ink); }
.qty button { width: 42px; height: 42px; font-size: 18px; color: var(--ink); }
.qty span { width: 42px; text-align: center; font-family: var(--ff-serif); font-size: 17px; }

.product-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.product-meta { border-top: 1px solid var(--line); padding-top: 12px; }
.product-meta-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: baseline;
}
.product-meta-item strong {
  font-family: var(--ff-sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.product-meta-item span { color: var(--muted); line-height: 1.6; }

/* =============================================================
   CART
   ============================================================= */
.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(40px, 5vw, 64px) 0 clamp(60px, 8vw, 120px);
}
.cart-items { display: flex; flex-direction: column; }
.cart-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-row .img { aspect-ratio: 4/5; background: var(--cream-2); overflow: hidden; }
.cart-row .img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row .meta .name { font-family: var(--ff-serif); font-size: 26px; margin: 0 0 6px; font-weight: 400; }
.cart-row .meta .sub { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.cart-row .meta .size { font-family: var(--ff-serif); font-style: italic; font-size: 14px; margin-top: 12px; }
.cart-row .actions { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-row .actions .price { font-family: var(--ff-serif); font-size: 20px; }
.cart-row .actions .remove {
  font-size: 10.5px; letter-spacing: 0.28em;
  color: var(--muted); text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}
.cart-row .actions .remove:hover { color: var(--cognac); }

.cart-summary {
  background: var(--cream-2);
  padding: 40px;
  height: fit-content;
  position: sticky;
  top: 120px;
}
.cart-summary h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  margin-bottom: 24px;
  font-size: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.summary-row.total {
  border-top: 1px solid var(--ink);
  margin-top: 14px; padding-top: 20px;
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 400;
}
.cart-empty { text-align: center; padding: 100px 0; }
.cart-empty h2 { margin-bottom: 14px; }
.cart-empty p { color: var(--muted); margin-bottom: 36px; }

/* =============================================================
   CHECKOUT
   ============================================================= */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(40px, 5vw, 64px) 0 clamp(60px, 8vw, 120px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  padding: 14px 0;
  font-family: var(--ff-serif);
  font-size: 17px;
  color: var(--ink);
  transition: border-color .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); opacity: .65; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--cognac);
}
.field textarea { min-height: 90px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }

.checkout-summary {
  background: var(--cream-2);
  padding: 40px;
  height: fit-content;
  position: sticky; top: 120px;
}
.checkout-summary > h3 {
  font-family: var(--ff-serif);
  font-weight: 400;
  margin-bottom: 22px;
  font-size: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}
.checkout-line {
  display: flex; gap: 16px; padding: 14px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.checkout-line img { width: 64px; height: 80px; object-fit: cover; background: var(--cream); }
.checkout-line .l-meta { flex: 1; font-size: 13px; }
.checkout-line .l-meta .nm { font-family: var(--ff-serif); font-size: 18px; }
.checkout-line .l-meta .sb { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.checkout-line .l-price { font-family: var(--ff-serif); font-style: italic; font-size: 14px; }

.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-group label {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  cursor: pointer;
  font-family: var(--ff-serif);
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  transition: border-color .2s, background .2s;
}
.radio-group label:hover { border-color: var(--ink); }
.radio-group input { accent-color: var(--cognac); }
.radio-group label.active, .radio-group label:has(input:checked) {
  border-color: var(--ink); background: var(--cream);
}

/* =============================================================
   TOAST
   ============================================================= */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transform: translateY(40px);
  opacity: 0;
  transition: all .35s ease;
  display: inline-flex; gap: 12px; align-items: center;
  border-left: 2px solid var(--gold);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .accent { color: var(--gold); font-family: var(--ff-serif); font-style: italic; letter-spacing: 0; text-transform: none; font-size: 15px; }

/* =============================================================
   UTILS
   ============================================================= */
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.about-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }

/* Lang switcher */
.lang-switcher { display: inline-flex; align-items: center; gap: 6px; }
.lang-btn {
  font-family: var(--ff-sans);
  font-size: 10.5px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 2px 0;
  transition: color .15s;
}
.lang-btn:hover { color: var(--cognac); }
.lang-btn.active { color: var(--ink); }
.lang-btn + .lang-sep { color: var(--muted); font-size: 10px; opacity: .5; }
/* On dark topbar contexts */
.topbar .lang-btn { color: rgba(232,223,203,.5); }
.topbar .lang-btn:hover { color: rgba(232,223,203,.85); }
.topbar .lang-btn.active { color: var(--cream); }
.topbar .lang-btn + .lang-sep { color: rgba(232,223,203,.35); }

/* Captcha */
.captcha-row { margin-top: 24px; }
.captcha-label { display: block; font-size: 10.5px; font-weight: 500; letter-spacing: .32em; text-transform: uppercase; margin-bottom: 10px; }
.captcha-widget { display: flex; align-items: center; gap: 12px; }
.captcha-question { font-family: var(--ff-serif); font-size: 18px; font-style: italic; min-width: 60px; }
.captcha-equals { font-size: 16px; color: var(--muted); }
.captcha-input { width: 80px; padding: 10px; border: 1px solid var(--line); border-bottom: 1px solid var(--ink); background: transparent; font-family: var(--ff-serif); font-size: 16px; text-align: center; }
.captcha-input:focus { outline: none; border-color: var(--cognac); }
.captcha-refresh { width: 38px; height: 38px; border: 1px solid var(--line); font-size: 16px; color: var(--muted); display: flex; align-items: center; justify-content: center; transition: color .15s, border-color .15s; }
.captcha-refresh:hover { color: var(--cognac); border-color: var(--cognac); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer .grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer .newsletter { grid-column: 1 / -1; margin-top: 24px; max-width: 480px; }
}
@media (max-width: 960px) {
  :root { --gutter: 24px; }
  .header .container { grid-template-columns: 1fr auto; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0; padding: 12px 24px 24px;
    border-bottom: 2px solid var(--ink);
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 16px 0; border-bottom: 1px solid var(--line);
    font-size: 13px; letter-spacing: 0.24em;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-actions { gap: 16px; font-size: 10px; }
  .topbar-right { display: none; }
  .topbar .container { justify-content: center; }

  .hero { min-height: 600px; }
  .hero-foot { padding: 20px 24px 28px; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
  .hero-foot .right { text-align: center; }

  .categories { grid-template-columns: repeat(2, 1fr); }
  .cat-card:nth-child(2) { border-right: none; }
  .cat-card:nth-child(1), .cat-card:nth-child(2) { border-bottom: 1px solid var(--line); }

  .products-grid, .products-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }

  .editorial { grid-template-columns: 1fr; }
  .editorial-image { min-height: 320px; aspect-ratio: 4/3; }
  .editorial-text { padding: 56px 28px; }

  .services, .trust { grid-template-columns: repeat(2, 1fr); }
  .service, .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .service:nth-child(odd), .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .service:last-child, .trust-item:last-child { border-bottom: none; }

  .footer .grid { grid-template-columns: 1fr 1fr; }
  .footer .col-brand, .footer .newsletter { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .shop-layout { grid-template-columns: 1fr; gap: 24px; }
  .filters { display: flex; flex-wrap: wrap; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
  .filters .filter-group { margin-bottom: 0; flex: 1; min-width: 160px; }

  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .gallery { grid-template-columns: 1fr; gap: 12px; }
  .gallery-thumbs { flex-direction: row; overflow-x: auto; gap: 10px; }
  .gallery-thumbs .thumb { width: 72px; flex-shrink: 0; }

  .cart-layout { grid-template-columns: 1fr; gap: 28px; }
  .cart-row { grid-template-columns: 100px 1fr; gap: 18px; }
  .cart-row .actions { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
  .cart-summary, .checkout-summary { position: static; }

  .checkout-layout { grid-template-columns: 1fr; gap: 28px; }
  .checkout-summary { order: -1; }
  .form-grid { grid-template-columns: 1fr; gap: 18px; }

  .two-col, .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .section-head .right { justify-self: start; }

  .quote-block blockquote { font-size: clamp(26px, 6vw, 40px); }
}
@media (max-width: 600px) {
  :root { --gutter: 18px; }
  h1 { font-size: clamp(40px, 14vw, 64px); }
  .hero-content h1 { font-size: clamp(56px, 17vw, 92px); }
  .page-hero h1 { font-size: clamp(44px, 14vw, 80px); }
  .footer .footer-wordmark span { font-size: clamp(56px, 22vw, 96px); letter-spacing: 0.2em; padding-left: 0.2em; }
  .categories { grid-template-columns: 1fr; }
  .cat-card { border-right: none; border-bottom: 1px solid var(--line); }
  .cat-card:last-child { border-bottom: none; }
  .products-grid, .products-grid.cols-3 { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .services, .trust { grid-template-columns: 1fr; }
  .service, .trust-item { border-right: none !important; border-bottom: 1px solid var(--line); padding: 32px 20px; }
  .service:last-child, .trust-item:last-child { border-bottom: none; }
  .footer .grid { grid-template-columns: 1fr; gap: 36px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
  .cart-row { grid-template-columns: 80px 1fr; }
  .cart-row .meta .name { font-size: 22px; }
  .toast { left: 18px; right: 18px; bottom: 18px; }
}
