/* =========================================================
   Optique Oukaci — feuille de style
   Palette construite à partir du logo (rouge bordeaux + doré)
   ========================================================= */

:root {
  /* Couleurs */
  --bordeaux: #b0252b;
  --bordeaux-dark: #8a1d22;
  --bordeaux-deep: #5a1216;
  --gold: #c9a451;
  --gold-soft: #d9b97a;
  --ink: #1a1a1a;
  --ink-soft: #3a3a3a;
  --grey: #6b6b6b;
  --grey-soft: #b5b1ab;
  --line: #e8e1d5;
  --cream: #f5efe3;
  --paper: #fbf8f2;
  --white: #ffffff;

  /* Typo */
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Espaces */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;

  /* Largeur conteneur */
  --container: 1200px;

  /* Transitions */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-4);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--white); padding: var(--s-2) var(--s-3);
}
.skip:focus { left: var(--s-3); top: var(--s-3); z-index: 1000; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 var(--s-3);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw + 1rem, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3vw + 1rem, 3.4rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .12em; }
em { font-style: italic; color: var(--bordeaux); font-family: var(--font-serif); }
p { margin: 0 0 var(--s-3); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bordeaux);
  margin: 0 0 var(--s-3);
}
.eyebrow.light { color: var(--gold); }

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 56ch;
}

.muted { color: var(--grey); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  isolation: isolate;
}
.btn-primary {
  background: linear-gradient(180deg, #b0252b 0%, #9d1f24 100%);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 0 rgba(90, 18, 22, 0.3),
    0 8px 20px rgba(176, 37, 43, 0.22);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(201, 164, 81, 0.22);
  pointer-events: none;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #9d1f24 0%, #7e191e 100%);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 34px rgba(176, 37, 43, 0.36);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.22),
    0 2px 8px rgba(176, 37, 43, 0.18);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  padding: 10px 16px;
  font-weight: 500;
}
.btn-ghost:hover { color: var(--bordeaux); }
.btn-outline {
  background: transparent;
  color: var(--bordeaux);
  border: 1px solid var(--bordeaux);
}
.btn-outline:hover {
  background: var(--bordeaux);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(176, 37, 43, 0.22);
}
.btn-outline::before { display: none; }
.btn-link {
  background: transparent;
  color: var(--ink);
  padding: 14px 0;
  border-radius: 0;
  position: relative;
  font-weight: 500;
}
.btn-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.3s var(--ease);
}
.btn-link:hover { color: var(--bordeaux); }
.btn-link:hover::after { transform-origin: left; transform: scaleX(1); }
.btn-lg {
  padding: 17px 36px;
  font-size: 0.95rem;
  gap: 12px;
}

.icon-phone {
  width: 14px; height: 14px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 10.8c1.5 2.9 3.7 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.5 0 1 .4 1 1V20c0 .5-.4 1-1 1A17 17 0 013 4c0-.5.4-1 1-1h3.5c.5 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1l-2.3 2.2z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.6 10.8c1.5 2.9 3.7 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.5 0 1 .4 1 1V20c0 .5-.4 1-1 1A17 17 0 013 4c0-.5.4-1 1-1h3.5c.5 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1l-2.3 2.2z'/></svg>") center/contain no-repeat;
}

/* WhatsApp icon — pastille verte discrète, glyphe blanc */
.icon-wa {
  position: relative;
  width: 18px;
  height: 18px;
  display: inline-flex;
  background: #25d366;
  border-radius: 50%;
  flex-shrink: 0;
}
.icon-wa::before {
  content: "";
  position: absolute;
  inset: 3px;
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M16 3C9 3 3.4 8.6 3.4 15.6c0 2.5.7 4.9 2 7L3 29l6.6-2.2c2 1.1 4.2 1.7 6.4 1.7 7 0 12.6-5.6 12.6-12.6S23 3 16 3zm0 23c-2 0-3.9-.5-5.6-1.5l-.4-.2-3.9 1.3 1.3-3.8-.3-.4a10.4 10.4 0 01-1.6-5.5C5.5 9.7 10.3 4.9 16 4.9s10.5 4.8 10.5 10.7S21.7 26 16 26zm5.7-7.8c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-1 1.2-.2.2-.4.3-.7.1-.3-.2-1.3-.5-2.6-1.6-1-.9-1.6-2-1.8-2.3-.2-.3 0-.5.1-.7l.5-.5c.2-.2.2-.3.4-.6.1-.2 0-.4 0-.6 0-.2-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1.1 1-1.1 2.6s1.1 3 1.3 3.2c.2.2 2.3 3.5 5.5 4.9 2.2 1 3 1 4 .9.6-.1 1.8-.7 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.1-.3-.2-.6-.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M16 3C9 3 3.4 8.6 3.4 15.6c0 2.5.7 4.9 2 7L3 29l6.6-2.2c2 1.1 4.2 1.7 6.4 1.7 7 0 12.6-5.6 12.6-12.6S23 3 16 3zm0 23c-2 0-3.9-.5-5.6-1.5l-.4-.2-3.9 1.3 1.3-3.8-.3-.4a10.4 10.4 0 01-1.6-5.5C5.5 9.7 10.3 4.9 16 4.9s10.5 4.8 10.5 10.7S21.7 26 16 26zm5.7-7.8c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-1 1.2-.2.2-.4.3-.7.1-.3-.2-1.3-.5-2.6-1.6-1-.9-1.6-2-1.8-2.3-.2-.3 0-.5.1-.7l.5-.5c.2-.2.2-.3.4-.6.1-.2 0-.4 0-.6 0-.2-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1.1 1-1.1 2.6s1.1 3 1.3 3.2c.2.2 2.3 3.5 5.5 4.9 2.2 1 3 1 4 .9.6-.1 1.8-.7 2.1-1.5.3-.7.3-1.4.2-1.5-.1-.1-.3-.2-.6-.4z'/></svg>") center/contain no-repeat;
}
.btn-lg .icon-wa { width: 22px; height: 22px; }
.btn-lg .icon-wa::before { inset: 4px; }

.btn-tel-soft {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 14px 0;
}
.btn-tel-soft:hover { color: var(--bordeaux); }
.btn-tel-soft strong { color: var(--bordeaux); }

/* ---------- Drapeaux ronds (algeria.png / angleterre.png) ---------- */
.flag {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.18em;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 0.2em;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* ---------- Topbar (infos + sélecteur de langue) ---------- */
.topbar {
  background: var(--ink);
  color: var(--grey-soft);
  padding: 7px 0;
  font-size: 0.78rem;
  position: relative;
  z-index: 49;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}
.topbar-info {
  letter-spacing: 0.04em;
  color: var(--grey-soft);
}
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.lang-btn {
  background: transparent;
  border: 0;
  color: var(--grey-soft);
  padding: 4px 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-radius: 999px;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.is-active {
  color: var(--gold);
  background: rgba(201, 164, 81, 0.12);
}
.lang-btn[lang="ar"] {
  font-family: "Amiri", "Tajawal", "Cormorant Garamond", serif;
  font-size: 0.98rem;
  letter-spacing: 0;
}

/* ---------- Typographie arabe (Amiri serif + Tajawal sans) ---------- */
html[lang="ar"] {
  --font-serif: "Amiri", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Tajawal", "Manrope", "Segoe UI", sans-serif;
}
html[lang="ar"] body {
  /* Tajawal a une hauteur de ligne naturellement plus tassée — on aère */
  line-height: 1.75;
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 {
  /* Amiri penche peu, on évite les letter-spacing négatifs prévus pour Cormorant */
  letter-spacing: 0;
  line-height: 1.35;
}
html[lang="ar"] .hero h1 { line-height: 1.3; }

/* ---------- RTL (arabe) — ajustements minimaux ---------- */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .hero-cta,
[dir="rtl"] .stats-grid,
[dir="rtl"] .strip-grid { direction: rtl; }
[dir="rtl"] .strip-grid > *,
[dir="rtl"] .stat::after { /* hairlines side-flip approximation */ }
[dir="rtl"] .btn .icon-wa { order: 2; }
[dir="rtl"] .nav a::after { transform-origin: right; }
[dir="rtl"] .photo-corner--tl { left: auto; right: 14px; border-right: 1px solid var(--gold); border-left: 0; }
[dir="rtl"] .photo-corner--tr { right: auto; left: 14px; border-left: 1px solid var(--gold); border-right: 0; }
[dir="rtl"] .photo-corner--bl { left: auto; right: 14px; border-right: 1px solid var(--gold); border-left: 0; }
[dir="rtl"] .photo-corner--br { right: auto; left: 14px; border-left: 1px solid var(--gold); border-right: 0; }
[dir="rtl"] .step-num::after { left: auto; right: 0; }
[dir="rtl"] .step::before { left: auto; right: 0; }
[dir="rtl"] .fab-wa { right: auto; left: 20px; }

/* ---------- Téléphones — restent toujours LTR, même en contexte RTL ----------
   Les chiffres séparés par espaces peuvent être réordonnés par l'algorithme BiDi ;
   on force LTR + isolation sur les liens tel: pour préserver "0655 59 24 56". */
a[href^="tel:"]:not(.btn-tel-soft) {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}
.btn-tel-soft strong {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-row {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-4);
}
.brand img {
  height: 42px;
  width: auto;
}
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav ul { display: flex; gap: var(--s-5); }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; gap: var(--s-2); align-items: center; }

.burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--ink);
  transition: all 0.25s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  padding: var(--s-4);
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.nav-mobile a { font-size: 1.1rem; }
.nav-mobile .btn { display: flex; margin-bottom: var(--s-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--s-8) 0 var(--s-8);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--s-7);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 640px; }

/* Hero h1 mixed weight + italic for refinement */
.hero h1 .t-soft { font-weight: 400; }
.hero h1 .t-strong { font-weight: 500; color: var(--ink); }

/* Right column — portrait éditorial + photo accent + halo doré */
.hero-graphic {
  position: relative;
  aspect-ratio: 1 / 1.15;
  min-height: 480px;
  width: 100%;
}
.hero-blob {
  position: absolute;
  inset: 8%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,164,81,0.32) 0%, rgba(201,164,81,0.08) 40%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
}
.hero-portrait {
  position: absolute;
  margin: 0;
  top: 0;
  right: 0;
  width: 80%;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(26, 26, 26, 0.22),
    0 8px 24px rgba(26, 26, 26, 0.12);
  z-index: 2;
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-portrait .photo-corner {
  width: 22px;
  height: 22px;
  z-index: 3;
}
.hero-portrait--accent {
  width: 44%;
  aspect-ratio: 4 / 5;
  bottom: -4%;
  left: -8%;
  top: auto;
  right: auto;
  transform: rotate(-4deg);
  z-index: 3;
  box-shadow:
    0 24px 44px rgba(26, 26, 26, 0.28),
    0 4px 10px rgba(26, 26, 26, 0.15);
  border: 4px solid var(--paper);
}
.hero-portrait--accent .photo-corner { display: none; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 164, 81, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(176, 37, 43, 0.12), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(26, 26, 26, 0.06) 1px, transparent 0);
  background-size: 28px 28px;
  opacity: 0.55;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.hero h1 { margin-bottom: var(--s-4); }
.hero .lede { margin-bottom: var(--s-6); font-size: 1.25rem; }
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: var(--s-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: var(--grey);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.hero-scroll .line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--grey), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(0.4); opacity: 1; }
}

/* ---------- Bandeau strip ---------- */
.strip {
  background: var(--ink);
  color: var(--white);
  padding: var(--s-5) 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  align-items: center;
}
.strip-grid > * {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: var(--s-3);
}
.strip-grid > *:first-child { border-left: none; padding-left: 0; }
.strip-grid > div strong {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
}
.strip-grid > div span { font-size: 0.85rem; color: var(--grey-soft); }

/* ---------- Sections génériques ---------- */
.section {
  padding: var(--s-9) 0;
}
.section-alt { background: var(--cream); }
.section-dark {
  background: var(--bordeaux-deep);
  color: var(--white);
}
.section-dark a { color: var(--gold-soft); }
.section-dark .info-list dt { color: var(--gold); }
.section-dark .info-list dd { color: rgba(255,255,255,0.85); }
.section-dark .btn-primary {
  background: linear-gradient(180deg, #c9a451 0%, #b18d3f 100%);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 1px 0 rgba(90, 18, 22, 0.4),
    0 8px 20px rgba(201, 164, 81, 0.28);
}
.section-dark .btn-primary::before { border-color: rgba(255, 255, 255, 0.22); }
.section-dark .btn-primary:hover {
  background: linear-gradient(180deg, #b18d3f 0%, #99762f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 34px rgba(201, 164, 81, 0.4);
}

.section-head {
  max-width: 720px;
  margin: 0 0 var(--s-7);
}
.section-head.center { margin: 0 auto var(--s-7); text-align: center; }
.section-head .section-intro { color: var(--grey); font-size: 1.05rem; }

/* ---------- Cards (Spécialités) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--s-4);
}
.card {
  position: relative;
  padding: var(--s-6) var(--s-4) var(--s-4);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card-photo {
  margin: calc(var(--s-6) * -1) calc(var(--s-4) * -1) var(--s-4);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.card:hover .card-photo img { transform: scale(1.05); }
.card:hover {
  transform: translateY(-4px);
  border-color: var(--bordeaux);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
}
.card-num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--bordeaux);
  margin-bottom: var(--s-3);
}
.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--ink-soft); margin-bottom: var(--s-4); }
.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--bordeaux);
  border-bottom: 1px solid var(--bordeaux);
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.card-link:hover { color: var(--bordeaux-dark); }

/* ---------- Deux colonnes ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.two-col.reverse .two-col-img { order: 2; }
.two-col-text h2 { margin-bottom: var(--s-4); }
.two-col-text p { color: inherit; opacity: 0.95; margin-bottom: var(--s-3); max-width: 56ch; }
.section-dark .two-col-text p { color: rgba(255,255,255,0.88); }

.img-placeholder {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 60%, var(--bordeaux-deep) 100%);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 164, 81, 0.4);
  pointer-events: none;
}
.img-placeholder svg { width: 60%; }
.img-portrait { aspect-ratio: 4 / 5; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
.badges li {
  padding: 6px 14px;
  border: 1px solid var(--bordeaux);
  color: var(--bordeaux);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
}

/* ---------- Galerie produits (univers) ---------- */
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 var(--s-5);
  flex-wrap: wrap;
}
.gallery-tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.gallery-tab:hover { border-color: var(--bordeaux); color: var(--bordeaux); }
.gallery-tab.is-active {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.gallery-item {
  margin: 0;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--s-3) var(--s-4);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.35s var(--ease);
  z-index: 2;
}
.gallery-item figcaption span {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 6px;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-item.is-hidden { display: none; }

.gallery-cta {
  text-align: center;
  margin-top: var(--s-6);
}

/* ---------- Boutique (info + map) ---------- */
.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin: var(--s-5) 0 var(--s-6);
}
.info-list div { display: flex; flex-direction: column; gap: 4px; }
.info-list dt {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bordeaux);
}
.info-list dd { margin: 0; line-height: 1.5; }

.map-frame {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  position: relative;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* ---------- Form ---------- */
.form {
  display: grid;
  gap: var(--s-3);
  background: var(--white);
  padding: var(--s-6);
  border: 1px solid var(--line);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bordeaux);
  background: var(--white);
}
.form-note { font-size: 0.78rem; color: var(--grey); margin-top: var(--s-2); margin-bottom: 0; }
.form-success {
  padding: var(--s-3);
  background: rgba(176, 37, 43, 0.06);
  border-left: 3px solid var(--bordeaux);
  color: var(--bordeaux-dark);
  font-weight: 600;
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--grey-soft);
  padding: var(--s-8) 0 var(--s-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-col h4 { color: var(--white); margin-bottom: var(--s-3); }
.foot-col p { font-size: 0.92rem; line-height: 1.6; margin-bottom: var(--s-2); }
.foot-col a { color: var(--gold-soft); transition: color 0.2s; }
.foot-col a:hover { color: var(--white); }
.foot-logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--s-3);
  filter: brightness(0) invert(1);
}
.foot-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-4);
  font-size: 0.8rem;
  color: var(--grey);
}

/* ---------- Strip Google rating ---------- */
.strip-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.strip-rating:hover { transform: translateY(-1px); }
.strip-rating strong {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
}
.strip-rating .stars { letter-spacing: 1px; color: var(--gold); font-size: 1.1rem; }
.strip-rating .rating-value { font-size: 1.5rem; }
.strip-rating span:last-child { font-size: 0.85rem; color: var(--grey-soft); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.testimonial {
  background: var(--white);
  padding: var(--s-5);
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.testimonial .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.05rem;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  position: relative;
  padding-left: var(--s-3);
  border-left: 2px solid var(--gold);
}
.testimonial footer {
  font-size: 0.9rem;
  color: var(--grey);
  margin-top: auto;
}
.testimonial footer strong { color: var(--ink); font-weight: 600; }
.testimonials-cta {
  text-align: center;
  margin: var(--s-5) 0 0;
}
.testimonials-cta a {
  font-weight: 600;
  color: var(--bordeaux);
  border-bottom: 1px solid var(--bordeaux);
  padding-bottom: 2px;
}
.testimonials-cta a:hover { color: var(--bordeaux-dark); border-color: var(--bordeaux-dark); }

/* ---------- Chips (radio motif) ---------- */
.chips-field legend {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
  padding: 0;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  cursor: pointer;
}
.chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.chip span {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
  user-select: none;
}
.chip:hover span { border-color: var(--bordeaux); color: var(--bordeaux); }
.chip input:checked + span {
  background: var(--bordeaux);
  color: var(--white);
  border-color: var(--bordeaux);
}
.chip input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Form head ---------- */
.form-head { margin: 0 0 var(--s-3); border-bottom: 1px solid var(--line); padding-bottom: var(--s-3); }
.form-head h3 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600; margin: 0 0 4px; letter-spacing: 0; }
.form-head p { font-size: 0.9rem; color: var(--grey); margin: 0; }

/* ---------- WhatsApp brand on buttons ---------- */
.btn-wa { /* keep bordeaux brand, just denotes WhatsApp w/ icon */ }

/* ---------- Floating WhatsApp FAB ---------- */
.fab-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fab-wa svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.fab-wa:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 2px 8px rgba(0,0,0,0.15);
}
.fab-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.5;
  animation: fab-pulse 2.4s ease-out infinite;
  z-index: 1;
}
@keyframes fab-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0;   }
}

/* ---------- Accessibility — focus ring ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fab-wa-pulse { display: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Témoignages vidéo (grille + lightbox) ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  max-width: 880px;
  margin: 0 auto;
}
.video-tile {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  display: block;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.video-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.18);
}
.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease), filter 0.3s var(--ease);
}
.video-tile:hover .video-poster {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
          backdrop-filter: blur(12px) saturate(140%);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* Halo doré pulsant — attire l'œil discrètement */
.video-play::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.75;
  animation: video-play-pulse 2.6s cubic-bezier(.2,.6,.3,1) infinite;
  pointer-events: none;
}
/* Liseré static blanc juste autour, pour la finition */
.video-play::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}
@keyframes video-play-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}
.video-play svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
/* Hover : passage en bordeaux solide + ring doré épais */
.video-tile:hover .video-play {
  background: var(--bordeaux);
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow:
    0 16px 40px rgba(176, 37, 43, 0.45),
    0 0 0 5px rgba(201, 164, 81, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.video-tile:hover .video-play::before {
  animation-duration: 1.6s;
}
@media (prefers-reduced-motion: reduce) {
  .video-play::before { animation: none; opacity: 0; }
}
.video-stars {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* Lightbox / modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 6, 6, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
  animation: fadeIn 0.2s var(--ease);
}
.video-modal[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal video {
  width: 100%;
  max-height: 92vh;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  background: #000;
}
.video-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.video-modal-close:hover {
  background: var(--bordeaux);
  color: #fff;
  transform: scale(1.05);
}

/* ---------- Partager / Inviter aux avis (Google, Instagram, Facebook) ---------- */
.share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.share-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-5) var(--s-4) var(--s-5);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.share-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
}
.share-card--google:hover { border-color: #ea4335; }
.share-card--instagram:hover { border-color: #e1306c; }
.share-card--facebook:hover { border-color: #1877f2; }
.share-card--tiktok:hover { border-color: #fe2c55; }

.share-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
}
.share-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.10));
}

.share-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0;
}
.share-card p {
  font-size: 0.92rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
.share-cta {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--bordeaux);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--bordeaux);
  padding-bottom: 2px;
  margin-top: var(--s-2);
}
.share-card:hover .share-cta { color: var(--bordeaux-dark); border-color: var(--bordeaux-dark); }

/* ---------- Welcome (invitation chaleureuse) ---------- */
.welcome { text-align: center; }
.welcome-inner {
  max-width: 720px;
  margin: 0 auto;
}
.welcome-inner h2 { margin-bottom: var(--s-4); }
.welcome-body {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 auto var(--s-6);
  max-width: 60ch;
}
.welcome-cta {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}
.welcome-sign {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0;
  position: relative;
  padding-top: var(--s-4);
}
.welcome-sign::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ---------- Stats / chiffres clés ---------- */
.stats {
  padding: var(--s-7) 0 var(--s-8);
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-head { margin-bottom: var(--s-6); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  align-items: center;
  position: relative;
}
.stat::after {
  content: "";
  position: absolute;
  top: 14%;
  right: calc(var(--s-5) / -2);
  width: 1px;
  height: 72%;
  background: linear-gradient(180deg, transparent, var(--line), transparent);
}
.stat:last-child::after { display: none; }
.stat-figure {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin: 0;
}
.stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1;
  color: var(--bordeaux);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums lining-nums;
}
.stat-star {
  font-size: 1.6rem;
  color: var(--gold);
  font-style: normal;
}
.stat-mark {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  color: var(--gold);
  letter-spacing: 4px;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.04em;
  max-width: 22ch;
  line-height: 1.4;
}

/* ---------- Reveal au scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Manifeste (pleine page, fond bordeaux profond) ---------- */
.manifesto {
  position: relative;
  padding: clamp(var(--s-8), 14vw, var(--s-9)) 0;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
  text-align: center;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(201, 164, 81, 0.16), transparent 55%),
    radial-gradient(ellipse at 25% 80%, rgba(176, 37, 43, 0.18), transparent 60%),
    linear-gradient(135deg, #16090a 0%, #2c0f11 50%, #5a1216 100%);
}
.manifesto::after {
  /* fine paper grain pour casser le dégradé */
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.manifesto-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.manifesto-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: grayscale(0.5) contrast(1.05) brightness(0.55);
  mix-blend-mode: luminosity;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.manifesto-mark {
  display: block;
  width: 72px;
  height: auto;
  color: var(--gold);
  margin: 0 auto var(--s-4);
  opacity: 0.85;
}
.manifesto-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--s-5);
}
.manifesto-quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 1.12;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.005em;
}
.manifesto-quote em {
  display: inline-block;
  color: var(--gold-soft);
  font-style: italic;
}
.manifesto-sign {
  margin: var(--s-5) 0 0;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 0.12em;
  opacity: 0.85;
}

/* ---------- Stepper "Comment ça se passe" ---------- */
.stepper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  position: relative;
}
.step {
  position: relative;
  padding: var(--s-5) var(--s-4);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.step::before {
  /* fine ligne or côté gauche, motif éditorial */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.08);
}
.step:hover::before { height: 100%; }
.step-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s-3);
  position: relative;
  padding-bottom: 8px;
}
.step-num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 0 var(--s-2);
  color: var(--ink);
}
.step p {
  font-size: 0.92rem;
  color: var(--grey);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Section dividers (motif lunettes + hairlines or) ---------- */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  max-width: 540px;
  margin: 0 auto var(--s-6);
  color: var(--gold);
}
.section-divider .hairline {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor 50%, transparent);
  opacity: 0.55;
}
.section-divider .divider-icon {
  width: 68px;
  height: auto;
  flex-shrink: 0;
  opacity: 0.85;
}

/* ---------- Photo slot (emplacement photo prêt à recevoir une image) ---------- */
.photo-slot { margin: 0; }
.photo-frame {
  position: relative;
  background: linear-gradient(135deg, var(--bordeaux) 0%, var(--bordeaux-dark) 55%, var(--bordeaux-deep) 100%);
  overflow: hidden;
  isolation: isolate;
}
.photo-frame--portrait { aspect-ratio: 4 / 5; }
.photo-frame::before {
  /* subtle paper grain */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(201,164,81,0.18), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,0.25), transparent 50%);
  z-index: 0;
}
/* When a real <img class="photo-img"> is inserted, hide empty state but keep gold corners as a frame */
.photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.photo-frame:has(.photo-img) .photo-empty { display: none; }
.photo-frame:has(.photo-img) .photo-corner { z-index: 3; }
.photo-frame:has(.photo-img)::before { display: none; }

/* Decorative gold corner brackets */
.photo-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.photo-corner--tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.photo-corner--tr { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.photo-corner--bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.photo-corner--br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

/* Empty-state content */
.photo-empty {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: var(--s-5);
  text-align: center;
  color: var(--gold-soft);
}
.photo-mono {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(80px, 14vw, 140px);
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
  letter-spacing: -0.05em;
  margin-bottom: var(--s-3);
}
.photo-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.photo-label {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}
.photo-spec {
  font-size: 0.78rem;
  color: rgba(217, 185, 122, 0.7);
  letter-spacing: 0.06em;
}
.photo-slot figcaption {
  margin-top: var(--s-3);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--grey);
  text-align: center;
}
.section-dark .photo-slot figcaption { color: var(--gold-soft); }

/* ---------- Boutique : photo en haut + mini-carte en bas ---------- */
.boutique-media {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}
/* Préserver le visage et la partie haute de la photo (la coupe se fait en bas) */
.photo-slot--boutique .photo-img {
  object-position: center 18%;
}
.map-frame--mini {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
}
.map-frame--mini iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
  .nav-mobile:not([hidden]) { display: block; }
  /* Header mobile : logo centré, burger à droite, spacer fantôme à gauche */
  .header-row {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 0;
  }
  .brand {
    grid-column: 2;
    justify-self: center;
  }
  .burger {
    grid-column: 3;
    justify-self: end;
  }
  .hero { min-height: auto; padding: var(--s-6) 0 var(--s-7); }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-graphic { min-height: 420px; aspect-ratio: 4/5; max-width: 460px; margin: 0 auto; }
  .hero-portrait { width: 88%; }
  .hero-portrait--accent { width: 50%; left: -4%; bottom: -2%; }
  .hero-scroll { display: none; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .strip-grid > *:nth-child(3) { border-left: none; padding-left: 0; }
  .two-col { grid-template-columns: 1fr; gap: var(--s-5); }
  .two-col.reverse .two-col-img { order: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: repeat(2, 1fr); }
  .share-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { max-width: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .stat:nth-child(2)::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .foot-base { flex-direction: column; gap: var(--s-2); text-align: center; }
  .section { padding: var(--s-7) 0; }
  .section-divider { max-width: 360px; margin-bottom: var(--s-5); }
  .section-divider .divider-icon { width: 56px; }
}
@media (max-width: 540px) {
  .strip-grid { grid-template-columns: 1fr; }
  .strip-grid > * { border-left: none; padding-left: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .share-grid { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: 1fr; gap: var(--s-3); }
  .topbar-info { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .stats-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .stat::after { display: none; }
  .manifesto-quote { font-size: clamp(1.8rem, 8vw, 2.8rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .info-list { grid-template-columns: 1fr; }
  .form { padding: var(--s-4); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-cta .btn-tel-soft { text-align: center; }
  .hero-graphic { min-height: 360px; }
  .fab-wa { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .fab-wa svg { width: 28px; height: 28px; }
}
