/* ════════════════════════════════════════════════════════════
   DENYAJAT EXPOSITIONS — Luxe éditorial v4
   Logo XL · Vidéos · Bords ronds · For Her/For Him · Arabe RTL
   ════════════════════════════════════════════════════════════ */

:root {
  /* Palette luxe */
  --bg:           #FAF7F3;
  --bg-warm:      #F4EEE7;
  --bg-stone:    #E7DDD2;
  --ink:          #1A1A1A;
  --ink-espresso: #3B2C24;
  --ink-warm:    #6F655D;
  --line:        #D9CEC2;
  --line-soft:   rgba(217, 206, 194, .5);

  /* Accents (5% fuchsia signature) */
  --fuchsia:     #C5006F;
  --fuchsia-2:   #E94FB3;
  --gold:        #C8A15A;

  /* Ombres luxe */
  --shadow-xs:   0 4px 12px -4px rgba(26, 26, 26, .06);
  --shadow-sm:   0 20px 40px -20px rgba(26, 26, 26, .12);
  --shadow-md:   0 30px 60px -28px rgba(26, 26, 26, .18);
  --shadow-lg:   0 60px 120px -45px rgba(26, 26, 26, .25);

  /* Bords ronds — système cohérent */
  --r-sm:  10px;   /* badges, petits éléments */
  --r-md:  16px;   /* boutons, tags */
  --r-lg:  24px;   /* photos, vidéos, cards */
  --r-xl:  32px;   /* grandes cards (For Her/For Him) */
  --r-pill: 999px; /* pilules, ronds parfaits */

  /* Système */
  --max:        1440px;
  --max-narrow: 1200px;
  --pad:        clamp(1.25rem, 4vw, 4rem);
  --section:    clamp(5rem, 10vw, 10rem);

  /* Typo */
  --serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --sans:   'Inter Tight', 'Helvetica Neue', system-ui, sans-serif;
  --arabic: 'Noto Naskh Arabic', serif;

  /* Easing */
  --ease:      cubic-bezier(.22, .8, .22, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--fuchsia); color: var(--bg); }


/* ════════════════════════ ANNOUNCE BAR ════════════════════════ */

.announce {
  background: var(--ink);
  color: var(--bg);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  overflow: hidden;
  padding: 12px 0;
  font-weight: 300;
}
.announce__track {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  padding-left: 100%;
}
.announce__dot {
  color: var(--gold);
  opacity: .8;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ════════════════════════ NAVIGATION ════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 243, .92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
}
/* LOGO DOUBLÉ : de 64px à 130px */
.nav__logo img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity .3s var(--ease);
}
.nav__logo:hover img { opacity: .85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%; right: 50%; bottom: -2px;
  height: 1px;
  background: var(--fuchsia);
  transition: all .4s var(--ease);
}
.nav__links a:hover { color: var(--fuchsia); }
.nav__links a:hover::after { left: 0; right: 0; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switch { position: relative; }
.lang-switch__current {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 500;
  color: var(--ink);
  transition: all .3s var(--ease);
  background: var(--bg);
}
.lang-switch__current:hover { border-color: var(--ink); }
.lang-switch__menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.lang-switch.open .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switch__menu li button {
  width: 100%;
  padding: 10px 20px;
  text-align: left;
  font-size: 12.5px;
  letter-spacing: .03em;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.lang-switch__menu li button:hover {
  background: var(--bg-warm);
  color: var(--fuchsia);
}

.nav__cta {
  padding: 13px 26px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-pill);
  transition: all .4s var(--ease);
}
.nav__cta:hover {
  background: var(--fuchsia);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(197, 0, 111, .4);
}


/* ════════════════════════ HERO ════════════════════════ */

.hero {
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad) clamp(4rem, 9vw, 8rem);
  position: relative;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 70%; height: 80%;
  background: radial-gradient(circle at 70% 30%,
    rgba(200, 161, 90, .12) 0%,
    rgba(200, 161, 90, 0) 50%);
  pointer-events: none;
}

.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  min-height: 78vh;
  position: relative;
}

.hero__text { padding: 1rem 0; }
.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--ink-warm);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  position: relative;
  padding-left: 38px;
}
.hero__eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 26px;
  height: 1px;
  background: var(--ink-warm);
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.4rem, 7.8vw, 6.8rem);
  line-height: .9;
  letter-spacing: -.022em;
  color: var(--ink);
  margin-bottom: 2.25rem;
  text-transform: uppercase;
}
.hero__title-line { display: block; }
.hero__divider {
  width: 64px;
  height: 1px;
  background: var(--ink-espresso);
  margin-bottom: 2rem;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-warm);
  max-width: 460px;
  margin-bottom: 2.75rem;
  font-weight: 300;
}
.hero__cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero__meta-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-espresso);
}
.hero__meta-label {
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-warm);
  font-weight: 500;
}

/* Hero visual avec vidéo */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 82vh;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-stone);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 26, 26, 0) 0%,
    rgba(26, 26, 26, 0) 50%,
    rgba(26, 26, 26, .2) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__photo-tag {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: var(--bg);
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 220px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.hero__photo-tag-label {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-warm);
  font-weight: 500;
}
.hero__photo-tag-price {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

/* Cartouche "Fait main" (remplace l'arabe) */
.hero__photo-handmade {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  background: var(--ink-espresso);
  padding: 11px 22px;
  letter-spacing: .04em;
  font-weight: 500;
  border-radius: var(--r-pill);
}


/* ════════════════════════ BUTTONS ════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 16px 36px;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .4s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-pill);
}
.btn--primary {
  background: var(--fuchsia);
  color: var(--bg);
  box-shadow: 0 12px 28px -12px rgba(197, 0, 111, .4);
}
.btn--primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(26, 26, 26, .35);
}
.btn--dark {
  background: var(--ink);
  color: var(--bg);
}
.btn--dark:hover {
  background: var(--fuchsia);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--lg {
  padding: 19px 44px;
  font-size: 12px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding: 4px 0;
  border-bottom: 1px solid var(--ink);
  transition: all .35s var(--ease);
}
.link-arrow:hover {
  gap: 1.4rem;
  color: var(--fuchsia);
  border-color: var(--fuchsia);
}


/* ════════════════════════ PILIERS ════════════════════════ */

.pillars {
  background: var(--bg-warm);
  padding: clamp(2rem, 4vw, 3rem) var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.pillar__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-espresso);
  color: var(--ink-espresso);
  border-radius: var(--r-pill);
}
.pillar__text h3 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}
.pillar__text p {
  font-size: 12px;
  color: var(--ink-warm);
  line-height: 1.45;
}


/* ════════════════════════ ÉDITORIAL ════════════════════════ */

.editorial {
  padding: var(--section) var(--pad);
  background: var(--bg);
}
.editorial--alt {
  background: var(--bg-warm);
}
.editorial__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.editorial--right .editorial__inner {
  grid-template-columns: 1.15fr 1fr;
}

.editorial__text { max-width: 500px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--ink-warm);
  font-weight: 500;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 30px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 1px;
  background: var(--ink-warm);
}

.editorial__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  line-height: .96;
  letter-spacing: -.018em;
  color: var(--ink);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.editorial__title span { display: block; }
.editorial__title em {
  display: block;
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  color: var(--ink-espresso);
  letter-spacing: -.008em;
}
.editorial__divider {
  width: 56px;
  height: 1px;
  background: var(--fuchsia);
  margin-bottom: 1.75rem;
}

.editorial__lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-warm);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.editorial__body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-warm);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Media (vidéo OU photo) */
.editorial__media {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-stone);
}
.editorial__video,
.editorial__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial__photo {
  background-color: var(--bg-stone);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Stats */
.editorial__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  color: var(--ink-espresso);
  letter-spacing: -.02em;
}
.stat__lbl {
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-warm);
  font-weight: 500;
}


/* ════════════════════════ POUR ELLE / POUR LUI ════════════════════════ */

.forhim {
  padding: var(--section) var(--pad);
  background: var(--bg);
}
.forhim__head {
  max-width: var(--max-narrow);
  margin: 0 auto 4rem;
  text-align: center;
}
.forhim__head .section-label {
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 1.75rem;
}
.forhim__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: -.012em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.forhim__title em {
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  color: var(--ink-espresso);
  margin-left: .25em;
}
.forhim__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-warm);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 300;
}

.forhim__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.forhim__card {
  display: block;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-warm);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  box-shadow: var(--shadow-sm);
}
.forhim__card:not(.forhim__card--soon):hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.forhim__card--soon { cursor: default; }
.forhim__card--soon .forhim__card-photo { filter: grayscale(.4) brightness(.92); }

.forhim__card-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-stone);
}
.forhim__card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .8s var(--ease);
}
.forhim__card:hover .forhim__card-photo {
  transform: scale(1.04);
}
.forhim__card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, .35) 100%);
  pointer-events: none;
}
.forhim__card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: var(--ink-espresso);
  color: var(--gold);
  padding: 8px 18px;
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--r-pill);
}
.forhim__card-content {
  padding: 2rem 2rem 2.5rem;
}
.forhim__card-cat {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-warm);
  font-weight: 500;
  margin-bottom: 1rem;
}
.forhim__card-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.forhim__card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-warm);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.forhim__card-cta {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fuchsia);
  transition: all .3s var(--ease);
}
.forhim__card:not(.forhim__card--soon):hover .forhim__card-cta {
  letter-spacing: .35em;
}
.forhim__card--soon .forhim__card-cta {
  color: var(--ink-warm);
  font-style: italic;
  font-family: var(--serif);
  text-transform: none;
  letter-spacing: .04em;
  font-size: 14px;
}


/* ════════════════════════ CATÉGORIES ════════════════════════ */

.categories {
  background: var(--bg-warm);
  padding: var(--section) var(--pad);
}
.categories__head {
  max-width: var(--max-narrow);
  margin: 0 auto 4rem;
  text-align: center;
}
.categories__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.012em;
  color: var(--ink);
  text-transform: uppercase;
  max-width: 800px;
  margin: 0 auto;
}
.categories__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.cat-card {
  display: block;
  transition: transform .5s var(--ease);
}
.cat-card:hover { transform: translateY(-8px); }

.cat-card__photo {
  aspect-ratio: 4/5;
  background-color: var(--bg-stone);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .5s var(--ease);
  border-radius: var(--r-lg);
}
.cat-card:hover .cat-card__photo {
  box-shadow: var(--shadow-md);
}
.cat-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 26, .25) 100%);
  pointer-events: none;
  border-radius: var(--r-lg);
}

.cat-card__info {
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid transparent;
  transition: border-color .35s var(--ease);
  padding-left: .5rem;
  padding-right: .5rem;
}
.cat-card:hover .cat-card__info {
  border-top-color: var(--fuchsia);
}
.cat-card__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.cat-card__cta {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-warm);
  font-weight: 500;
  transition: color .35s var(--ease);
}
.cat-card:hover .cat-card__cta { color: var(--fuchsia); }


/* ════════════════════════ COLLECTION (36 produits) ════════════════════════ */

.collection {
  padding: var(--section) var(--pad);
  background: var(--bg);
}
.collection__head {
  max-width: var(--max);
  margin: 0 auto 4rem;
  text-align: center;
}
.collection__head .section-label {
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 1.75rem;
}
.collection__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.014em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.collection__title em {
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  color: var(--ink-espresso);
  display: inline-block;
  margin-left: .35em;
}
.collection__sub {
  font-size: 15px;
  color: var(--ink-warm);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 3rem;
}
.filter {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: 11px 24px;
  font-size: 10.5px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--ink-warm);
  transition: all .35s var(--ease);
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.filter__count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  opacity: .6;
}

.products {
  max-width: var(--max);
  margin: 4.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 1.75rem;
}

.product {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform .5s var(--ease);
  position: relative;
}
.product:hover { transform: translateY(-8px); }

.product__media {
  position: relative;
  aspect-ratio: 4/5;
  background-color: var(--bg-stone);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .5s var(--ease);
  border-radius: var(--r-lg);
}
.product:hover .product__media {
  box-shadow: var(--shadow-md);
}
.product__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__fallback svg {
  width: 100%;
  height: 100%;
}
.product__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  z-index: 2;
}
.product:hover .product__img { transform: scale(1.05); }

.product__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 7px 14px;
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-xs);
  border-radius: var(--r-pill);
}
.product__badge--rare {
  background: var(--fuchsia);
  color: var(--bg);
}
.product__badge--cart {
  background: var(--ink-espresso);
  color: var(--bg);
}
.product__badge--free-shipping {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--ink);
}

.product__info {
  padding: 1.25rem .25rem 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.product__cat {
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-warm);
  font-weight: 500;
}
.product__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -.005em;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
  transition: color .3s var(--ease);
}
.product:hover .product__name { color: var(--fuchsia); }

.product__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: .5rem;
}
.product__price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink-espresso);
}
.product__cta {
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-warm);
  font-weight: 500;
  transition: color .3s var(--ease);
}
.product:hover .product__cta { color: var(--fuchsia); }

.collection__foot {
  max-width: var(--max);
  margin: 5rem auto 0;
  text-align: center;
}
.collection__foot-note {
  margin-top: 1.75rem;
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-warm);
  font-style: italic;
  font-family: var(--serif);
}


/* ════════════════════════ SERVICES ════════════════════════ */

.services {
  background: var(--bg-warm);
  padding: clamp(2.25rem, 4vw, 3rem) var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  justify-content: center;
}
.service__icon {
  flex-shrink: 0;
  color: var(--ink-espresso);
}
.service__text h4 {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
}
.service__text p {
  font-size: 12.5px;
  color: var(--ink-warm);
}


/* ════════════════════════ TÉMOIGNAGES ════════════════════════ */

.testimonials {
  padding: var(--section) var(--pad);
  background: var(--bg);
}
.testimonials__head {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
  text-align: center;
}
.testimonials__head .section-label {
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 1.5rem;
}
.testimonials__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: -.012em;
}
.testimonials__title em {
  font-style: italic;
  text-transform: none;
  color: var(--ink-espresso);
  margin-left: .25em;
}
.testimonials__grid {
  max-width: var(--max-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.quote {
  padding: 2.5rem 2rem;
  background: var(--bg-warm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: transform .4s var(--ease);
  border-radius: var(--r-lg);
}
.quote:hover { transform: translateY(-4px); }
.quote__stars {
  color: var(--fuchsia);
  font-size: 13px;
  letter-spacing: .3em;
}
.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.quote footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.quote__name {
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--ink);
}
.quote__loc {
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--ink-warm);
  text-transform: uppercase;
}


/* ════════════════════════ NEWSLETTER ════════════════════════ */

.newsletter {
  background: var(--ink-espresso);
  color: var(--bg);
  padding: clamp(4rem, 8vw, 6rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(200, 161, 90, .08) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter__inner {
  max-width: var(--max-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}
.newsletter__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 1rem;
  letter-spacing: -.012em;
}
.newsletter__title em {
  display: block;
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  color: var(--gold);
}
.newsletter__sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(250, 247, 243, .75);
  max-width: 400px;
  font-weight: 300;
}
.newsletter__form {
  display: flex;
  border: 1px solid rgba(250, 247, 243, .25);
  background: transparent;
  border-radius: var(--r-pill);
  overflow: hidden;
}
.newsletter__form input {
  flex: 1;
  padding: 17px 26px;
  background: transparent;
  border: none;
  color: var(--bg);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
}
.newsletter__form input::placeholder {
  color: rgba(250, 247, 243, .5);
}
.newsletter__form button {
  padding: 0 36px;
  background: var(--fuchsia);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .3s var(--ease);
}
.newsletter__form button:hover {
  background: var(--bg);
  color: var(--fuchsia);
}


/* ════════════════════════ FOOTER ════════════════════════ */

.footer {
  padding: clamp(4rem, 7vw, 6rem) var(--pad) 2.5rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  max-width: 340px;
}
/* LOGO FOOTER aussi en plus grand */
.footer__logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  mix-blend-mode: multiply;
  margin-bottom: 1.25rem;
  margin-left: -10px;
}
.footer__brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-warm);
}
.footer__col h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a, .footer__col span {
  font-size: 14px;
  color: var(--ink-warm);
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--fuchsia); }

.footer__social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink-warm);
  transition: all .3s var(--ease);
  background: var(--bg);
}
.footer__social a:hover {
  border-color: var(--fuchsia);
  color: var(--fuchsia);
  transform: translateY(-2px);
}

.footer__bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-warm);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__arabic {
  font-family: var(--arabic);
  font-size: 16px;
  direction: rtl;
  color: var(--ink-espresso);
}


/* ════════════════════════ ARABE — RTL léger ════════════════════════ */

html[lang="ar"] {
  font-family: var(--arabic), var(--sans);
}
html[lang="ar"] body {
  font-family: var(--arabic), var(--sans);
}
html[lang="ar"] .hero__title,
html[lang="ar"] .editorial__title,
html[lang="ar"] .forhim__title,
html[lang="ar"] .collection__title,
html[lang="ar"] .categories__title,
html[lang="ar"] .testimonials__title,
html[lang="ar"] .newsletter__title,
html[lang="ar"] .forhim__card-title {
  font-family: var(--arabic), var(--serif);
  text-transform: none;
  letter-spacing: 0;
  direction: rtl;
}
html[lang="ar"] .hero__eyebrow,
html[lang="ar"] .section-label,
html[lang="ar"] .nav__links,
html[lang="ar"] .filter,
html[lang="ar"] .product__cat,
html[lang="ar"] .product__cta,
html[lang="ar"] .btn,
html[lang="ar"] .nav__cta,
html[lang="ar"] .pillar__text h3,
html[lang="ar"] .service__text h4,
html[lang="ar"] .quote__loc,
html[lang="ar"] .stat__lbl,
html[lang="ar"] .footer__col h4,
html[lang="ar"] .forhim__card-cat,
html[lang="ar"] .forhim__card-cta,
html[lang="ar"] .cat-card__label,
html[lang="ar"] .cat-card__cta,
html[lang="ar"] .hero__photo-tag-label,
html[lang="ar"] .hero__meta-label,
html[lang="ar"] .collection__foot-note,
html[lang="ar"] .forhim__card-badge {
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--arabic), var(--sans);
  direction: rtl;
}
html[lang="ar"] .hero__eyebrow::before,
html[lang="ar"] .section-label::before {
  left: auto;
  right: 0;
}
html[lang="ar"] .hero__eyebrow,
html[lang="ar"] .section-label {
  padding-left: 0;
  padding-right: 38px;
}
html[lang="ar"] .nav__links a::after {
  /* L'underline reste centré, RTL OK */
}
html[lang="ar"] .hero__photo-handmade {
  font-family: var(--arabic);
  font-style: normal;
  direction: rtl;
}


/* ════════════════════════ REVEAL ════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════ RESPONSIVE ════════════════════════ */

@media (max-width: 1100px) {
  .pillars__inner { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 2rem; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .forhim__grid { grid-template-columns: 1fr; gap: 2rem; max-width: 600px; margin: 0 auto; }
  .products { grid-template-columns: repeat(3, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 640px; }
  .services__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 12px var(--pad);
  }
  .nav__logo img { width: 90px; height: 90px; }
  .nav__cta { padding: 10px 18px; font-size: 10px; }

  .hero { padding-top: 2.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; min-height: auto; }
  .hero__visual { aspect-ratio: 3/4; max-height: none; }
  .hero__title { font-size: clamp(3rem, 13vw, 5rem); }

  .editorial { padding: clamp(3.5rem, 9vw, 6rem) var(--pad); }
  .editorial__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .editorial--right .editorial__inner { grid-template-columns: 1fr; }
  .editorial--right .editorial__media { order: -1; }
  .editorial__stats { flex-wrap: wrap; gap: 1.75rem; }

  .products { grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1rem; }

  .newsletter__inner { grid-template-columns: 1fr; gap: 2rem; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
  .footer__logo { width: 110px; height: 110px; }
}

@media (max-width: 480px) {
  .hero__photo-tag { left: 16px; bottom: 16px; padding: 12px 16px; min-width: 0; }
  .hero__photo-tag-price { font-size: 19px; }
  .hero__photo-handmade { top: 16px; right: 16px; font-size: 14px; padding: 8px 16px; }

  .categories__grid { grid-template-columns: 1fr; }
  .products { gap: 1.5rem .75rem; }
  .product__name { font-size: 1.05rem; }
  .quote { padding: 1.75rem 1.5rem; }
  .forhim__card-content { padding: 1.5rem 1.5rem 2rem; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; gap: .5rem; }
}
