/* ============================================
   SAFE & SOUND — Global Stylesheet
   5-page luxury dark theme · FR/EN
   ============================================ */

/* ── Variables ── */
:root {
  --black:    #1C1A12;     /* noir chaud — pas pur, plus chic */
  --dark:     #0E0D0A;     /* quasi noir */
  --dark2:    #060504;     /* noir profond */
  --dark3:    #1A1815;
  --mid:      #4A4435;
  --gold:     #c9a84c;
  --gold-lt:  #e8d08a;
  --gold-dk:  #8a6e2a;
  --gold-dim: rgba(201,168,76,0.12);
  --yellow:       #EDD96A;   /* jaune beurre chaud & doux */
  --yellow-lt:    #F7EFAA;
  --yellow-dk:    #C0A828;
  --yellow-bg:    #EDD96A;
  --yellow-dim:   rgba(237,217,106,0.20);
  --cream:    #FAF6EC;     /* crème chaude */
  --white:    #ffffff;
  --grey:     #A09882;
  --grey-lt:  #C8BFA8;
  --grey-dk:  #6A6050;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', Helvetica, sans-serif;

  --nav-h: 96px;
  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-v: clamp(80px, 10vw, 140px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #EDD96A;
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--yellow); }
::-webkit-scrollbar-thumb { background: var(--black); }
::selection { background: var(--black); color: var(--yellow); }

/* ── Section jaune (jaune flyer, fond clair) ── */
.section-yellow {
  background: var(--yellow);
  color: var(--black);
}
.section-yellow h2,
.section-yellow h3,
.section-yellow .section-title,
.section-yellow .eyebrow { color: var(--black); }
.section-yellow p { color: rgba(0,0,0,0.70); }
.section-yellow .divider { background: var(--black); }
.section-yellow .eyebrow { color: rgba(0,0,0,0.50); }

/* ── Section sombre (contraste sur fond jaune) ── */
.section-dark {
  background: var(--dark2);
  color: var(--cream);
}
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark .section-title { color: var(--cream); }
.section-dark .eyebrow { color: var(--yellow); }
.section-dark p { color: var(--grey-lt); }
.section-dark .divider { background: var(--yellow); }
.section-dark .tag { border-color: var(--yellow-dk); color: var(--yellow-lt); }
.section-dark .btn-ghost { border-color: rgba(245,232,74,0.5); color: var(--yellow-lt); }
.section-dark .btn-ghost:hover { background: var(--yellow-dim); border-color: var(--yellow); color: var(--yellow); }
/* FAQ sur fond sombre */
.section-dark .faq-item { border-bottom-color: rgba(255,255,255,0.07); }
.section-dark .faq-item summary { color: var(--cream); }
.section-dark .faq-item summary:hover { color: var(--yellow-lt); }
.section-dark .faq-item summary::after { color: var(--yellow); }
.section-dark .faq-item__body { color: var(--grey-lt); }
/* Timeline sur fond sombre */
.section-dark .timeline::before { background: linear-gradient(to bottom, transparent, var(--yellow), transparent); }
.section-dark .timeline-item__time { color: var(--yellow); }
.section-dark .timeline-item__title { color: var(--cream); }
.section-dark .timeline-item__body { color: var(--grey-lt); }
.section-dark .timeline-item::before { background: var(--yellow); box-shadow: 0 0 14px rgba(237,217,106,0.5); }
.section-dark .timeline-item { border-bottom-color: rgba(255,255,255,0.04); }
/* Steps sur fond crème à l'intérieur d'une section sombre */
.section-dark .step h3 { color: var(--black); }
.section-dark .step p { color: rgba(0,0,0,0.65); }
.section-dark .step__num { color: rgba(0,0,0,0.12); }
/* Brand cards dans section sombre */
.section-dark .brand-card__name { color: var(--black); }
.section-dark .brand-card p { color: rgba(0,0,0,0.65); }
/* Info contact dans section sombre */
.section-dark .info-item__val { color: var(--grey-lt); }
.section-dark .info-item__val a:hover { color: var(--yellow); }

/* ── Bande jaune décorative ── */
.yellow-stripe {
  background: var(--yellow);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.yellow-stripe__track {
  display: inline-flex;
  gap: 2.5rem;
  animation: stripMarquee 22s linear infinite;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
}
@keyframes stripMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: var(--section-v) 0; }

/* ── Typography atoms ── */
.eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.50);
  margin-bottom: 1.2rem;
}
.eyebrow--light { color: var(--yellow); }

.h1, h1,
.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  color: var(--black);
}
.section-title em, h1 em, h2 em {
  font-style: italic;
  color: rgba(0,0,0,0.55);
}
/* Em visible sur TOUS les fonds sombres → jaune */
.section-dark h2 em,
.section-dark h1 em,
.section-dark .section-title em,
.artist-section h2 em,
.artist-section h1 em,
.page-hero .section-title em,
.page-hero h1 em,
.footer h2 em {
  color: var(--yellow);
}
.section-title--light { color: var(--white); }

h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.4rem;
}
h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 0.7rem;
}
h4 {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 1.2rem;
}
p { font-size: 0.875rem; color: rgba(0,0,0,0.65); line-height: 1.85; }

.tag {
  display: inline-block;
  border: 1px solid rgba(0,0,0,0.30);
  color: rgba(0,0,0,0.60);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35em 1em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05em 2.4em;
  transition: all 0.3s var(--ease);
  border: none;
  border-radius: 0;
}
.btn-gold {
  background: var(--yellow);
  color: var(--black);
  font-weight: 600;
}
.btn-gold:hover { background: var(--yellow-lt); }

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.35);
  color: rgba(0,0,0,0.70);
}
.btn-ghost:hover { background: rgba(0,0,0,0.08); border-color: var(--black); color: var(--black); }

/* Bouton ghost sur fond sombre (hero, section-dark) */
.home-hero .btn-ghost,
.section-dark .btn-ghost {
  border-color: var(--yellow);
  color: var(--yellow);
}
.home-hero .btn-ghost:hover,
.section-dark .btn-ghost:hover {
  background: rgba(237,217,106,0.12);
  border-color: var(--yellow-lt);
  color: var(--yellow-lt);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--grey-dk);
  color: var(--grey-lt);
}
.btn-outline:hover { border-color: var(--grey-lt); color: var(--cream); }

/* ── Divider ── */
.divider {
  width: 40px;
  height: 2px;
  background: var(--black);
  margin: 1.6rem 0;
}
.divider--center { margin: 1.6rem auto; }

/* ── Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(237,217,106,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(28,26,18,0.10);
}
.nav.scrolled .nav__link { color: rgba(0,0,0,0.60); }
.nav.scrolled .nav__link:hover,
.nav.scrolled .nav__link.active { color: var(--black); }
.nav.scrolled .nav__link::after { background: var(--black); }
.nav.scrolled .nav__cta { border-color: rgba(0,0,0,0.4); color: var(--black) !important; }
.nav.scrolled .nav__lang { border-color: rgba(0,0,0,0.25); color: rgba(0,0,0,0.60); }
.nav.scrolled .nav__lang:hover { border-color: var(--black); color: var(--black); }

.nav__logo img {
  height: 75px;
  width: auto;
  transition: opacity 0.3s;
  filter: brightness(1.1);
}
.nav__logo:hover img { opacity: 0.75; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-lt);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--yellow); }
.nav__link.active::after, .nav__link:hover::after { width: 100%; }

.nav__cta {
  border: 1px solid rgba(245,184,0,0.5);
  padding: 0.5em 1.3em;
  color: var(--yellow) !important;
  font-weight: 600;
}
.nav__cta:hover { background: var(--yellow-dim); }
.nav__cta::after { display: none; }

/* Lang toggle — 3 boutons FR / EN / AR */
.nav__lang-group {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 0.8rem;
  border: 1px solid var(--grey-dk);
  border-radius: 3px;
  overflow: hidden;
}
.nav__lang-btn {
  background: none;
  border: none;
  border-right: 1px solid var(--grey-dk);
  color: var(--grey-lt);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0.38em 0.65em;
  transition: all 0.2s;
  cursor: pointer;
  font-family: inherit;
}
.nav__lang-btn:last-child { border-right: none; }
.nav__lang-btn:hover { background: rgba(245,184,0,0.08); color: var(--yellow); }
.nav__lang-btn.active { background: var(--yellow); color: #000; font-weight: 700; }

/* Scrolled state */
.nav.scrolled .nav__lang-group { border-color: rgba(0,0,0,0.2); }
.nav.scrolled .nav__lang-btn { border-color: rgba(0,0,0,0.2); color: rgba(0,0,0,0.55); }
.nav.scrolled .nav__lang-btn:hover { color: var(--yellow); }
.nav.scrolled .nav__lang-btn.active { background: var(--yellow); color: #000; }

/* RTL support pour l'arabe */
[dir="rtl"] .nav__menu { flex-direction: row-reverse; }
[dir="rtl"] .nav__lang-group { margin-left: 0; margin-right: 0.8rem; }
[dir="rtl"] .nav__lang-btn { border-right: none; border-left: 1px solid var(--grey-dk); }
[dir="rtl"] .nav__lang-btn:last-child { border-left: none; }
[dir="rtl"] .nav.scrolled .nav__lang-btn { border-color: rgba(0,0,0,0.2); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--gold-lt);
  transition: all 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(245,232,74,0.97);
  backdrop-filter: blur(18px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.nav__mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.nav__mobile .nav__link { font-size: 0.85rem; color: var(--black); }
.nav__mobile .nav__link:hover, .nav__mobile .nav__link.active { color: var(--black); }

/* ════════════════════════════════════════
   PAGE HERO (shared)
   ════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: clamp(40px, 6vw, 80px);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--dark2);
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,8,10,0.9) 0%, rgba(9,8,10,0.55) 60%, rgba(9,8,10,0.4) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  width: 100%;
}
.page-hero__content .eyebrow { color: var(--yellow); }
.page-hero__content .section-title,
.page-hero__content h1 { color: var(--white); }
.page-hero__content p { color: var(--grey-lt); }

/* ════════════════════════════════════════
   HOME HERO (full screen)
   ════════════════════════════════════════ */
.home-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
}
.home-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: zoomBg 18s ease-in-out infinite alternate;
}
@keyframes zoomBg {
  from { transform: scale(1.0); }
  to   { transform: scale(1.1); }
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,6,3,0.72) 0%, rgba(8,6,3,0.58) 55%, rgba(8,6,3,0.30) 100%);
}
.home-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  max-width: 820px;
  animation: heroUp 1.4s var(--ease-out) both;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}
.home-hero__eyebrow {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.4rem;
}
.home-hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(5rem, 12vw, 9.5rem);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.home-hero__title em { font-style: italic; color: var(--yellow); display: block; }
.home-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--cream);
  margin-bottom: 2rem;
}
.home-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  align-items: center;
  margin-bottom: 2.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
}
.home-hero__tags span:not(:nth-child(even)) { color: var(--black); }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll__line {
  width: 1px; height: 46px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════════════════════════════════════
   GALLERY STRIP (animated)
   ════════════════════════════════════════ */
.gallery-strip { overflow: hidden; background: var(--black); line-height: 0; }
.gallery-strip__track {
  display: flex;
  gap: 3px;
  animation: strip 35s linear infinite;
  will-change: transform;
}
.gallery-strip__track img {
  height: 200px; width: auto;
  flex-shrink: 0;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.75);
  transition: filter 0.35s;
}
.gallery-strip__track img:hover { filter: brightness(0.88) saturate(1); }
@keyframes strip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   GRID LAYOUTS
   ════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }

/* Card with border-gap between */
.card-grid {
  display: grid;
  gap: 1px;
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.12);
}
.card {
  background: rgba(250,246,236,0.60);
  padding: clamp(24px, 3.5vw, 44px);
  transition: background 0.3s var(--ease);
  position: relative;
}
.card:hover { background: rgba(250,246,236,0.90); }
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--black);
  transition: width 0.5s var(--ease);
}
.card:hover::after { width: 100%; }
.card__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: rgba(0,0,0,0.15);
  margin-bottom: 0.8rem;
  line-height: 1;
  display: block;
}
.card p { font-size: 0.82rem; color: rgba(0,0,0,0.60); line-height: 1.8; margin-top: 0.6rem; }

/* Pillar card */
.pillar {
  background: rgba(250,246,236,0.55);
  padding: clamp(28px, 4vw, 50px) clamp(22px, 3vw, 38px);
  transition: background 0.3s;
  border-right: 1px solid rgba(0,0,0,0.10);
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(250,246,236,0.90); }
.pillar__icon { font-size: 1.4rem; color: var(--black); margin-bottom: 1.2rem; display: block; }
.pillar p { font-size: 0.82rem; color: rgba(0,0,0,0.60); line-height: 1.78; margin-top: 0.6rem; }

/* ════════════════════════════════════════
   ARTIST CARD
   ════════════════════════════════════════ */
.artist-section { background: var(--dark); color: var(--cream); }
.artist-section h2, .artist-section h3 { color: var(--cream); }
.artist-section .eyebrow { color: var(--yellow); }
.artist-section p { color: var(--grey-lt); }
.artist-section .divider { background: var(--yellow); }
.artist-section .tag { border-color: var(--yellow-dk); color: var(--yellow-lt); }
.artist-section .artist-block__list li { color: var(--grey-lt); border-bottom-color: rgba(255,255,255,0.05); }
.artist-section .artist-block__list li:hover { color: var(--yellow-lt); }
.artist-section .artist-block__list li::before { color: var(--yellow-dk); }
.artist-section + .artist-section { background: var(--black); }

.artist-block {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.artist-block--reverse { grid-template-columns: 7fr 5fr; }
.artist-block--reverse .artist-block__img { order: 2; }
.artist-block--reverse .artist-block__text { order: 1; }

.artist-block__img {
  position: relative;
}
.artist-block__img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(0.88);
  transition: filter 0.4s;
}
.artist-block__img:hover img { filter: brightness(1); }
.artist-block__img::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(245,232,74,0.30);
  z-index: -1;
  pointer-events: none;
}

.artist-block__list { margin-top: 1.5rem; }
.artist-block__list li {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--grey-lt);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s;
}
.artist-block__list li:last-child { border-bottom: none; }
.artist-block__list li:hover { color: var(--yellow-lt); }
.artist-block__list li::before { content: '—'; color: var(--yellow-dk); font-size: 0.7rem; flex-shrink: 0; }

/* ════════════════════════════════════════
   TIMELINE (event programme)
   ════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
}
.timeline-item {
  position: relative;
  padding: clamp(20px, 3vw, 36px) 0 clamp(20px, 3vw, 36px) clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: clamp(28px, 3.5vw, 44px);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(245,184,0,0.6);
}
.timeline-item__time {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-dk);
  margin-bottom: 0.4rem;
}
.timeline-item__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.timeline-item__body { font-size: 0.82rem; color: var(--grey); line-height: 1.8; }

/* ════════════════════════════════════════
   STEPS (partners process)
   ════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(28,26,18,0.12); }
.step {
  background: rgba(250,246,236,0.55);
  padding: clamp(24px, 3.5vw, 44px);
  position: relative;
  transition: background 0.3s;
}
.step:hover { background: rgba(250,246,236,0.90); }
.step__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(0,0,0,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.step p { font-size: 0.82rem; color: rgba(0,0,0,0.60); line-height: 1.78; margin-top: 0.5rem; }

/* ════════════════════════════════════════
   PRICE BOX
   ════════════════════════════════════════ */
.price-box {
  background: rgba(255,255,255,0.60);
  border: 2px solid var(--black);
  padding: clamp(40px, 6vw, 70px) clamp(28px, 4vw, 56px);
  position: relative;
  text-align: center;
}
.price-box::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: none;
}
.price-box__amount {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}
.price-box__amount sup { font-size: 0.35em; vertical-align: super; }
.price-box__label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.8rem;
}
.price-box__note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-top: 0.8rem;
}

/* Includes list */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.12);
  margin: 2rem 0;
  text-align: left;
}
.includes-col {
  background: rgba(255,255,255,0.55);
  padding: clamp(22px, 3vw, 38px);
}
.includes-col li {
  font-size: 0.82rem;
  color: rgba(0,0,0,0.70);
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.includes-col li:last-child { border-bottom: none; }
.includes-col li::before { content: '✓'; color: var(--black); font-size: 0.72rem; flex-shrink: 0; }

/* ════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(40px, 6vw, 80px);
}
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { position: relative; }
.form-group label {
  position: absolute;
  top: 0.9rem; left: 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  transition: all 0.25s;
  pointer-events: none;
  z-index: 1;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.60);
  border: none;
  border-bottom: 2px solid rgba(0,0,0,0.25);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 1.5rem 1rem 0.6rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group select option { background: var(--dark2); color: var(--cream); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--black);
  background: rgba(255,255,255,0.85);
}
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 0.3rem; font-size: 0.52rem; color: rgba(0,0,0,0.50);
}
input::placeholder, textarea::placeholder { color: transparent; }

.contact-info { position: sticky; top: calc(var(--nav-h) + 2rem); align-self: start; }
.info-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.info-item:last-of-type { border-bottom: none; }
.info-item__icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(0,0,0,0.30);
  display: flex; align-items: center; justify-content: center;
  color: var(--black); font-size: 0.9rem;
  flex-shrink: 0;
}
.info-item__label {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.75);
  display: block;
  margin-bottom: 0.2rem;
}
.info-item__val {
  font-size: 0.85rem;
  color: #1a1a1a;
}
.info-item__val a { transition: color 0.25s; }
.info-item__val a:hover { color: var(--gold); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item summary {
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--black);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.25s;
}
.faq-item summary:hover { color: rgba(0,0,0,0.60); }
.faq-item summary::after {
  content: '+';
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding-bottom: 1.2rem;
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.85;
}

/* ════════════════════════════════════════
   PARTNERS — Brand cards
   ════════════════════════════════════════ */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.12);
}
.brand-card {
  background: rgba(255,255,255,0.55);
  padding: clamp(32px, 4vw, 56px);
  text-align: center;
  transition: background 0.3s;
}
.brand-card:hover { background: rgba(255,255,255,0.85); }
.brand-card__name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.6rem;
}
.brand-card p { font-size: 0.78rem; }

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--dark);
  border-top: 3px solid var(--yellow);
  padding: clamp(50px, 7vw, 80px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2.5fr 2fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer__logo { height: 38px; margin-bottom: 1rem; filter: brightness(0.82); }
.footer__brand p { font-size: 0.78rem; color: var(--grey-lt); line-height: 1.7; }
.footer__brand strong { color: var(--grey-lt); }

.footer__links-col h4 { margin-bottom: 1rem; color: var(--yellow); }
.footer__links-col a {
  display: block;
  font-size: 0.72rem;
  color: var(--grey-lt);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}
.footer__links-col a:hover { color: var(--yellow); }

.footer__contact h4 { margin-bottom: 1rem; color: var(--yellow); }
.footer__contact p {
  font-size: 0.76rem;
  color: var(--grey);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.footer__bottom {
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__bottom p { font-size: 0.6rem; color: rgba(128,124,118,0.4); letter-spacing: 0.08em; }

/* ── RTL : prix toujours en LTR ── */
[dir="rtl"] .price-box__amount,
[dir="rtl"] .price-box__label,
[dir="rtl"] #priceCounter {
  direction: ltr;
  unicode-bidi: isolate;
}

/* Glow cursor (desktop) */
#cursor-glow {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 68%);
  transform: translate(-50%, -50%);
  transition: top 0.06s, left 0.06s;
  top: -200px; left: -200px;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .artist-block { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .artist-block { grid-template-columns: 1fr; }
  .artist-block--reverse .artist-block__img { order: 0; }
  .artist-block--reverse .artist-block__text { order: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-6 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr; }
  .home-hero__title { font-size: 4.2rem; }
  .page-hero { height: 52vh; }
}
