/* ─────────────────────────────────────────────────────────────────────
   Version Française Pour Elle — design tokens & globals
   Refined French luxury · ivory + cream · champagne gold hairlines
   ───────────────────────────────────────────────────────────────────── */

:root {
  /* Palette — from brief §5 */
  --ivory: #F6F1EA;
  --cream: #FBF8F3;
  --blush-nude: #E7D8CC;
  --taupe: #B8A693;
  --champagne-gold: #C2A24A;
  --noir: #1C1A18;
  --noir-soft: #2A2724;
  --rose-muted: #C98C84;

  /* Derived */
  --ink-90: #1C1A18;
  --ink-70: rgba(28, 26, 24, 0.74);
  --ink-50: rgba(28, 26, 24, 0.54);
  --ink-30: rgba(28, 26, 24, 0.30);
  --ink-15: rgba(28, 26, 24, 0.15);
  --ink-08: rgba(28, 26, 24, 0.08);
  --gold-hairline: rgba(194, 162, 74, 0.55);
  --gold-faint: rgba(194, 162, 74, 0.18);

  /* Type */
  --display: "Cormorant Garamond", "Playfair Display", "Times New Roman", serif;
  --body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 10vw, 144px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

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

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--noir);
  background: var(--ivory);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ── Type scale ─────────────────────────────────────────────── */

.display {
  font-family: var(--display);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--noir);
}

.h1  { font-family: var(--display); font-weight: 500; font-size: clamp(48px, 7vw, 92px); line-height: 1.02; letter-spacing: -0.015em; }
.h2  { font-family: var(--display); font-weight: 500; font-size: clamp(36px, 5vw, 64px); line-height: 1.06; letter-spacing: -0.01em; }
.h3  { font-family: var(--display); font-weight: 500; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.15; letter-spacing: -0.005em; }
.h4  { font-family: var(--display); font-weight: 500; font-size: 22px; line-height: 1.2; }

.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-70);
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--champagne-gold);
  margin: 0 10px 2px;
  vertical-align: middle;
}

.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-70);
  max-width: 56ch;
}

.micro {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 500;
}

.tabular { font-variant-numeric: tabular-nums; }

/* ── Layout ─────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tight { padding-top: clamp(48px, 6vw, 88px); padding-bottom: clamp(48px, 6vw, 88px); }

.hr-gold {
  height: 1px;
  background: var(--gold-hairline);
  border: 0;
  width: 100%;
}
.hr-ink {
  height: 1px;
  background: var(--ink-15);
  border: 0;
  width: 100%;
}

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--noir);
  color: var(--cream);
  border-color: var(--noir);
}
.btn-primary:hover {
  background: transparent;
  color: var(--noir);
}
.btn-ghost {
  background: transparent;
  color: var(--noir);
  border-color: var(--ink-30);
}
.btn-ghost:hover {
  border-color: var(--noir);
  background: var(--cream);
}
.btn-gold {
  background: transparent;
  color: var(--noir);
  border-color: var(--champagne-gold);
}
.btn-gold:hover {
  background: var(--champagne-gold);
  color: var(--noir);
}
.btn-sm {
  height: 38px;
  padding: 0 18px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
}
.btn .arrow { display: inline-block; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Trust chip ─────────────────────────────────────────────── */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--gold-hairline);
  background: var(--cream);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--noir);
}
.chip .stars {
  color: var(--champagne-gold);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.chip .sep { color: var(--ink-30); }

/* ── Image placeholder (striped, captioned) ─────────────────── */

.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg,
      var(--blush-nude) 0 14px,
      var(--cream) 14px 28px);
  border: 1px solid var(--gold-hairline);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.ph::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.55), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(184, 166, 147, 0.20), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.ph-tone-cream {
  background:
    repeating-linear-gradient(135deg,
      var(--cream) 0 14px,
      var(--ivory) 14px 28px);
}
.ph-tone-rose {
  background:
    repeating-linear-gradient(135deg,
      #efd8d1 0 14px,
      var(--cream) 14px 28px);
}
.ph-tone-taupe {
  background:
    repeating-linear-gradient(135deg,
      #d0bda8 0 14px,
      var(--blush-nude) 14px 28px);
}
.ph-tone-noir {
  background:
    repeating-linear-gradient(135deg,
      #2b2825 0 14px,
      #20201d 14px 28px);
  color: var(--cream);
  border-color: rgba(194,162,74,0.4);
}
.ph .ph-caption {
  position: relative;
  z-index: 1;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--noir);
  background: rgba(251, 248, 243, 0.92);
  padding: 8px 12px;
  border-top: 1px solid var(--gold-hairline);
  width: 100%;
}
.ph-tone-noir .ph-caption {
  background: rgba(28, 26, 24, 0.85);
  color: var(--cream);
  border-top-color: rgba(194,162,74,0.5);
}
.ph .ph-tag {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* ── Header / nav ───────────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 234, 0.85);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--gold-faint);
  transition: background 200ms ease, border-color 200ms ease;
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 78px;
  gap: 24px;
}
.nav-logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1;
  color: var(--noir);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-logo small {
  font-family: var(--body);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 32px;
  justify-content: center;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-70);
  font-weight: 500;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.nav-links a:hover { color: var(--noir); }
.nav-links a.active {
  color: var(--noir);
  border-bottom-color: var(--champagne-gold);
}
.nav-right {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--ink-15);
  border-radius: 999px;
  overflow: hidden;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.lang-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 6px 12px;
  color: var(--ink-50);
  text-transform: uppercase;
  font: inherit;
  letter-spacing: inherit;
}
.lang-toggle button.on {
  background: var(--noir);
  color: var(--cream);
}

/* Mobile nav */
@media (max-width: 880px) {
  .nav-inner { grid-template-columns: 1fr auto; height: 64px; }
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-logo { font-size: 18px; }
}

/* ── Mobile sticky bottom bar ───────────────────────────────── */

.mbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 49;
  background: var(--cream);
  border-top: 1px solid var(--gold-hairline);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mbar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 46px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink-15);
  color: var(--noir);
}
.mbar a.primary {
  background: var(--noir);
  color: var(--cream);
  border-color: var(--noir);
}
@media (max-width: 720px) {
  .mbar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ── WhatsApp FAB ───────────────────────────────────────────── */

.wfab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 48;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 0 0 4px rgba(255,255,255,0.6);
  transition: transform 200ms ease;
}
.wfab:hover { transform: translateY(-2px); }
@media (max-width: 720px) { .wfab { bottom: 90px; } }

/* ── Reveal / scroll polish ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Pretty wrap for headings ───────────────────────────────── */
.h1, .h2, .h3 { text-wrap: balance; }
p { text-wrap: pretty; }

/* ── Selection ──────────────────────────────────────────────── */
::selection { background: var(--champagne-gold); color: var(--noir); }
