/* =============================================================
   NIMETTE V2 — STYLE GLOBAL
   Respecte le Design System Nimette Paris (v13.02.26)
   ============================================================= */

/* ----------------------------------------------------------------
   1. TOKENS — couleurs / typos / espaces / breakpoints
---------------------------------------------------------------- */
:root {
  /* Couleurs — background-1 (schéma principal) */
  --c-bg:          #FFFFFF;
  --c-text:        #121212;
  --c-text-muted:  rgba(18, 18, 18, 0.75);
  --c-border:      #CCCCCC;

  /* Schéma secondaire (beige clair) */
  --c-bg-2:        #EEECE5;
  --c-bg-3:        #F3F3F3;

  /* Footer (inverse) */
  --c-footer-bg:   #111111;
  --c-footer-text: #FFFFFF;
  --c-footer-border: rgba(255, 255, 255, 0.08);

  /* Accents */
  --c-accent-blue: #334FB4;
  --c-accent-gold: #7B7358;   /* Doré designers */
  --c-error:       #AFABAB;

  /* Familles typographiques */
  --ff-title: "Interstate", "Interstate Black Condensed",
              "Oswald", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-body:  "Futura PT", "Futura", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-display: "Didot", "Didot LT STD", "Bodoni 72", Garamond,
                "Times New Roman", serif;

  /* Tailles titres (desktop par défaut) */
  --fs-hxl: 99px;
  --fs-h0:  83px;
  --fs-h1:  64px;
  --fs-h2:  38px;
  --fs-h3:  29px;
  --fs-h4:  24px;
  --fs-h5:  21px;

  /* Tailles corps */
  --fs-body:    24px;  /* texte courant */
  --fs-caption: 19px;  /* caption tablet+ */
  --fs-small:   16px;  /* caption mobile, caption-up */
  --fs-micro:   13px;  /* footer qualité */
  --fs-copy:    18px;  /* copyright */
  --fs-label:   21px;  /* form labels */
  --fs-btn:     24px;  /* boutons */

  /* Espaces */
  --sp-xs:   8px;
  --sp-s:    16px;
  --sp-m:    24px;
  --sp-l:    48px;
  --sp-xl:   80px;
  --sp-xxl:  112px;

  /* Container & grille */
  --container: 1600px;
  --pad-mobile:  24px;
  --pad-tablet:  51px;  /* header tablet */
  --pad-desktop: 80px;

  /* Grille gaps */
  --grid-gap: 8px;

  /* Letter-spacings */
  --ls-title:    0.06rem;
  --ls-body:     0.06rem;
  --ls-caption:  0.07rem;
  --ls-caps:     0.13rem;
  --ls-caps-md:  0.16rem;
  --ls-caps-lg:  0.18rem;

  /* Line-heights */
  --lh-title:   1.3;
  --lh-body:    1.8;
  --lh-caption: 1.7;

  /* Nav */
  --nav-h:        72px;
  --nav-logo-w:   130px;

  /* Transitions */
  --t-ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ----------------------------------------------------------------
   2. RESET
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Base 10px pour que 1rem = 10px (comme le thème Shopify) */
  font-size: 62.5%;
}
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: transparent; border: 0; cursor: pointer; }
ul, ol { list-style: none; margin: 0; padding: 0; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }

/* ----------------------------------------------------------------
   3. TYPOGRAPHIE
---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.h-hxl, .h-h0, .h-h1, .h-h2, .h-h3, .h-h4, .h-h5 {
  font-family: var(--ff-title);
  font-weight: 600;
  font-style: normal;
  line-height: var(--lh-title);
  letter-spacing: var(--ls-title);
  margin: 0;
  text-transform: none;
}
.h-hxl { font-size: var(--fs-hxl); }
.h-h0  { font-size: var(--fs-h0); }
.h-h1, h1 { font-size: var(--fs-h1); }
.h-h2, h2 { font-size: var(--fs-h2); }
.h-h3, h3 { font-size: var(--fs-h3); }
.h-h4, h4 { font-size: var(--fs-h4); }
.h-h5, h5 { font-size: var(--fs-h5); }

p { margin: 0 0 var(--sp-m); }
strong, b { font-weight: 700; }

/* Caption (petites mentions) */
.caption {
  font-size: var(--fs-small);
  letter-spacing: var(--ls-caption);
  line-height: var(--lh-caption);
}
@media (min-width: 750px) {
  .caption { font-size: var(--fs-caption); }
}

/* Caption majuscules (tagline type "A CURATED SELECTION...") */
.caps {
  font-size: var(--fs-small);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
  line-height: 1.2;
}
.caps--md { font-size: 19px; letter-spacing: var(--ls-caps-md); }
.caps--lg { font-size: 22px; letter-spacing: var(--ls-caps-lg); }

/* Display (Didot pour les accents, ex: logo Nimette) */
.display {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0;
}

/* Texte atténué */
.muted { color: var(--c-text-muted); }

/* ----------------------------------------------------------------
   4. LAYOUT — container, page, section
---------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-mobile);
  padding-right: var(--pad-mobile);
}
.section {
  padding-top: var(--sp-xxl);
  padding-bottom: var(--sp-xxl);
}
.section--tight { padding-top: var(--sp-xl); padding-bottom: var(--sp-xl); }
.section--flush { padding-top: 0; padding-bottom: 0; }
.section--bg2   { background: var(--c-bg-2); }

@media (min-width: 750px) {
  .container { padding-left: var(--pad-tablet); padding-right: var(--pad-tablet); }
}
@media (min-width: 990px) {
  .container { padding-left: var(--pad-desktop); padding-right: var(--pad-desktop); }
}

/* ----------------------------------------------------------------
   5. BOUTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 192px;
  height: 72px;
  padding: 0 48px;
  font-family: var(--ff-body);
  font-size: var(--fs-btn);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: none;
  border: 1px solid currentColor;
  border-radius: 0;
  background: var(--c-text);
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.25s var(--t-ease), color 0.25s var(--t-ease),
              border-color 0.25s var(--t-ease);
}
.btn:hover { background: #000000; }

.btn--secondary {
  background: transparent;
  color: var(--c-text);
}
.btn--secondary:hover { background: var(--c-text); color: #FFFFFF; }

.btn--on-dark {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn--on-dark:hover { background: #FFFFFF; color: var(--c-text); }

.btn--tertiary {
  background: transparent;
  color: inherit;
  border-color: currentColor;
  opacity: 0.8;
}
.btn--tertiary:hover { opacity: 1; }

.btn--showroom {
  min-width: 215px;
  height: 50px;
  padding: 0 24px;
  font-size: 16px;
  border-radius: 25px;
}
@media (max-width: 749px) {
  .btn--showroom { height: 32px; font-size: 16px; min-width: auto; border-radius: 25px; }
}

/* ----------------------------------------------------------------
   6. NAVIGATION (header)
---------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  -webkit-backdrop-filter: saturate(140%) blur(6px);
  transition: background 0.3s var(--t-ease), color 0.3s var(--t-ease),
              border-color 0.3s var(--t-ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled { border-bottom-color: rgba(18, 18, 18, 0.06); }
.nav--hero {
  background: transparent;
  color: #FFFFFF;
}
.nav--hero .nav__tagline { color: #FFFFFF; }

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-mobile);
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (min-width: 750px)  { .nav__inner { padding: 0 var(--pad-tablet); } }
@media (min-width: 990px)  { .nav__inner { padding: 0 var(--pad-desktop); } }

.nav__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav__logo img {
  height: 34px;
  width: auto;
  display: block;
}
/* Monogramme (carré) : un peu plus haut pour garder une présence visuelle
   équivalente à celle du wordmark. */
.nav__logo--monogram img {
  height: 44px;
}
@media (max-width: 749px) {
  .nav__logo--monogram img { height: 38px; }
}
.nav__logo:hover { opacity: 0.75; }
.nav__logo:focus { outline: none; }
.nav__logo:focus-visible { outline: 1px solid currentColor; outline-offset: 4px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1099px) { .nav__links { gap: 18px; } }
.nav__link {
  font-family: var(--ff-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1;
  padding: 6px 0;
  transition: opacity 0.2s var(--t-ease);
  position: relative;
  white-space: nowrap;
}
.nav__link:hover { opacity: 0.6; }
.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
}

.nav__tagline {
  margin-left: auto;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text);
  white-space: nowrap;
}
@media (max-width: 1199px) { .nav__tagline { display: none; } }

/* Burger (mobile) */
.nav__burger {
  display: none;
  margin-left: auto;
  width: 36px;
  height: 37px;
  position: relative;
}
.nav__burger span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--t-ease), opacity 0.2s, top 0.3s var(--t-ease);
}
.nav__burger span:nth-child(1) { top: 12px; }
.nav__burger span:nth-child(2) { top: 18px; }
.nav__burger span:nth-child(3) { top: 24px; }
.nav__burger.is-open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: #FFFFFF;
  color: var(--c-text);
  z-index: 90;
  padding: 48px var(--pad-mobile) 80px;
  transform: translateX(100%);
  transition: transform 0.35s var(--t-ease);
  overflow-y: auto;
  display: none;
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer ul { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.nav__drawer a {
  font-family: var(--ff-body);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ----------------------------------------------------------------
   7. HERO
---------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 640px;
  max-height: 920px;
  overflow: hidden;
  margin-bottom: 2px; /* filet blanc entre hero et duo (comme maquette) */
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%; /* priorité au haut/visage de la photo */
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.0)  40%,
    rgba(0, 0, 0, 0.0)  60%,
    rgba(0, 0, 0, 0.25) 100%);
  z-index: 2;
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  padding: 0 var(--pad-mobile);
}
.hero__brand {
  margin: 0;
  line-height: 0;
  display: block;
}
.hero__brand img {
  display: block;
  height: clamp(48px, 6.2vw, 88px);
  width: auto;
  /* Le PNG du logo est noir → on l'inverse pour qu'il rende en blanc
     par-dessus la photo assombrie du hero. */
  filter: invert(1) brightness(2);
}
.hero__tagline {
  margin-top: var(--sp-m);
  font-family: var(--ff-body);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  line-height: 1.4;
}
.hero__address {
  margin-top: var(--sp-s);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.hero__bottom {
  position: absolute;
  bottom: 80px;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 3;
  color: #FFFFFF;
}
.hero__bottom-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
@media (max-width: 749px) {
  .hero { min-height: 92vh; }
  .hero__brand img { height: 52px; }
  .hero__tagline { font-size: 13px; letter-spacing: 0.22em; }
  /* Sur mobile, l'adresse a 2 caractères de plus + un letter-spacing plus
     généreux (0.3em) que la tagline → elle sortait visuellement plus large
     que PRIVATE FASHION SALON. On réduit le tracking pour qu'elle reste
     contenue dans la même largeur. */
  .home-hero-block__center .hero__address { letter-spacing: 0.22em; }
  .hero__bottom { bottom: 48px; gap: 14px; }
}

/* ----------------------------------------------------------------
   7b. HOME HERO BLOCK — hero + duo avec texte central "sticky"
   Le bloc combine la hero image + la grille duo.
   Un calque texte est posé en absolute au-dessus ; son enfant
   utilise position:sticky pour rester verticalement centré dans
   le viewport tant que le bloc hero+duo est visible.
---------------------------------------------------------------- */
.home-hero-block {
  position: relative;
}
.home-hero-block__text-layer {
  position: absolute;
  inset: 0;
  pointer-events: none; /* laisse cliquer sur les images / bouton en dessous */
  z-index: 4;
}
.home-hero-block__text {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  min-height: 640px;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  padding: 0 var(--pad-mobile);
  /* léger voile pour garder le texte lisible par-dessus les images
     du duo (plus claires que la hero). */
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.25);
}
.home-hero-block__text > * { pointer-events: auto; }

/* Bloc central (logo Nimette + tagline) : prend tout l'espace
   disponible et centre verticalement, légèrement abaissé. */
.home-hero-block__center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5vh; /* descend légèrement le bloc */
}
/* Espacement entre PRIVATE FASHION SALON ↔ Paris, Rue Saint-Honoré aligné
   sur celui entre le logo Nimette et la tagline (var(--sp-m) = 24px).
   On neutralise le margin-bottom hérité de `p { margin: 0 0 var(--sp-m); }`
   pour éviter une fusion de marges qui doublerait l'espacement. */
.home-hero-block__center .hero__tagline { margin-bottom: 0; }
.home-hero-block__center .hero__address { margin-top: 12px; margin-bottom: 0; }

/* Bloc bas (BY APPOINTMENT ONLY + bouton) : sticky en bas du calque, pull-up.
   `align-self: center` rétrécit le bloc à la largeur de son enfant le plus large
   (le bouton Request access). Combiné à `align-items: stretch`, la tagline
   BY APPOINTMENT ONLY occupe alors exactement la même largeur que le bouton. */
.home-hero-block__cta {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--sp-m); /* même espace que Nimette ↔ PRIVATE FASHION SALON */
  padding-bottom: 120px; /* remonte le bloc (était 80px) */
}
.home-hero-block__cta .hero__address { margin: 0; } /* le gap gère l'espace */
.home-hero-block__cta .hero__tagline {
  margin: 0;
  text-align: center; /* le texte reste centré dans la largeur du bouton */
}
.home-hero-block__cta .btn { text-shadow: none; }

@media (max-width: 749px) {
  .home-hero-block__text { min-height: 0; }
  .home-hero-block__center { padding-top: 3vh; }
  .home-hero-block__cta { padding-bottom: 72px; }
}

/* ----------------------------------------------------------------
   8. DUO (2 images côte à côte)
   La home utilise directement la classe .salon-duo (cf. §9 ci-dessous)
   pour garantir une disposition strictement identique à la page
   Le Salon. Aucun code dédié n'est nécessaire ici.
---------------------------------------------------------------- */

/* ----------------------------------------------------------------
   9. SPLIT (texte + image — LE SALON)
---------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.split--reverse .split__text { order: 2; }
.split--reverse .split__media { order: 1; }
.split__text { max-width: 520px; }
.split__text p { font-size: 17px; line-height: 1.7; margin: 0 0 var(--sp-m); }
.split__media img { width: 100%; object-fit: cover; max-height: 720px; }

@media (max-width: 749px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--sp-l);
  }
  .split--reverse .split__text { order: 1; }
  .split--reverse .split__media { order: 2; }
  .split__text { max-width: none; }
}

/* Citation éditoriale */
.quote {
  font-family: var(--ff-body);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  max-width: 620px;
}
.quote--center { text-align: center; margin: var(--sp-xl) auto; }
@media (max-width: 749px) {
  .quote { font-size: 15px; }
}

/* Galerie salon — duo d'images collées (pas d'espace entre elles) */
.salon-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: var(--sp-l) 0;
}
.salon-duo img { width: 100%; height: 640px; object-fit: cover; display: block; }
.salon-full img { width: 100%; max-height: 780px; object-fit: cover; margin: var(--sp-l) 0; }
@media (max-width: 749px) {
  .salon-duo { grid-template-columns: 1fr; gap: 0; }
  .salon-duo img { height: 360px; }
}

/* ----------------------------------------------------------------
  10. MOODBOARD (grille éditoriale)
---------------------------------------------------------------- */
.moodboard__intro {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 var(--sp-l);
}

/* Titre de page centré (Moodboard, Contact, …).
   Conforme au Design System : titre = Interstate Black Condensed,
   sous-titre = Futura PT. Uppercase explicitement demandé. */
.page-title {
  text-align: center;
  max-width: 860px;
  margin: 0 auto var(--sp-xl);
  padding: 0 var(--pad-mobile);
}
.page-title__heading {
  font-family: var(--ff-title); /* Interstate Black Condensed */
  font-weight: 600;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
  margin: 0 0 18px;
}
.page-title__sub {
  font-family: var(--ff-body); /* Futura PT */
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}
@media (min-width: 750px) {
  .page-title__heading { font-size: 44px; }
  .page-title__sub     { font-size: 18px; }
}
/* Variante plus large : pour les paragraphes d'intro longs (About) */
.page-title--wide { max-width: 1200px; }
/* Enveloppe centrée (intro + grille partagent la même largeur max) */
.moodboard-wrap {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* L'intro garde sa largeur de lecture confortable (640px),
   mais est décalée de l'intérieur pour s'aligner sur le bord
   de la grille. */
.moodboard-wrap .moodboard__intro {
  margin-left:  var(--pad-mobile);
  margin-right: var(--pad-mobile);
}
@media (min-width: 750px) {
  .moodboard-wrap .moodboard__intro {
    margin-left:  var(--pad-tablet);
    margin-right: var(--pad-tablet);
  }
}
@media (min-width: 990px) {
  .moodboard-wrap .moodboard__intro {
    margin-left:  var(--pad-desktop);
    margin-right: var(--pad-desktop);
  }
}

/* --- PINTEREST-STYLE MASONRY (colonnes fixes) -------------------
   Chaque vignette prend la largeur exacte d'une colonne, sa hauteur
   est ajustée pour préserver le ratio natif. moodboard.js positionne
   chaque tuile en absolute en choisissant à chaque étape la colonne
   la plus courte (algorithme "shortest column first"). Aucun espace
   entre les vignettes, aucun bord arrondi, aucun recadrage.

   Nombre de colonnes : 2 (mobile) → 3 (tablette) → 4 (desktop).
---------------------------------------------------------------- */
.moodboard__grid {
  position: relative;   /* ancre pour les tuiles en position: absolute */
  width: 100%;
  /* height posé en inline par moodboard.js */
}
.moodboard__grid .mood {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  /* width + height + top + left injectés en inline par moodboard.js */
}
.moodboard__grid .mood img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  /* pas d'object-fit : les dimensions posées par le JS respectent
     déjà le ratio natif → aucun étirement, aucun recadrage */
  transition: transform 0.6s var(--t-ease);
}
.moodboard__grid .mood:hover img { transform: scale(1.03); }

/* État avant calcul JS (évite un flash géant) */
.moodboard__grid:not(.is-laid-out) .mood { visibility: hidden; }

/* ----------------------------------------------------------------
  11. ABOUT
---------------------------------------------------------------- */
.about__intro {
  max-width: 1080px;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 var(--sp-xl);
}
/* Césure visible uniquement sur grand écran ≥ 990px */
.br-desktop { display: none; }
@media (min-width: 990px) {
  .br-desktop { display: inline; }
}
.about__hero img { width: 100%; max-height: 780px; object-fit: cover; }
.about__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  margin: var(--sp-l) 0;
}
.about__duo img { width: 100%; height: 500px; object-fit: cover; }
.about__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  margin-top: var(--sp-l);
}
.about__columns > div {
  max-width: 460px;
}
.about__columns h3 {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 var(--sp-s);
}
.about__columns p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-muted);
  margin: 0;
}
@media (max-width: 749px) {
  .about__duo { grid-template-columns: 1fr; gap: 4px; }
  .about__duo img { height: 320px; }
  .about__columns { grid-template-columns: 1fr; gap: var(--sp-l); }
}

/* About — grille 2 colonnes × 2 lignes :
   ligne 1 = textes (The Concept / The curation)
   ligne 2 = photos
   → les photos partagent la même baseline, peu importe la longueur
     des textes au-dessus. */
.about__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--grid-gap);
  row-gap: var(--sp-l);
  margin: var(--sp-l) 0;
  align-items: start;
}
.about__pair-text {
  max-width: 460px;
  padding: 0;
  align-self: start;
}
.about__pair-text h3 {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 var(--sp-s);
}
.about__pair-text p {
  /* Aligné sur le style du sous-titre "Founded by Nima Krings…"
     (page-title__sub) : Futura PT, couleur texte normale, 16/18px. */
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  margin: 0;
}
@media (min-width: 750px) {
  .about__pair-text p { font-size: 18px; }
}
.about__pair-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
/* Tablette : on garde la grille 2×2, les textes partagent leur ligne */
@media (max-width: 749px) {
  .about__pair {
    grid-template-columns: 1fr;
    row-gap: var(--sp-m);
  }
  /* sur mobile on veut : texte1 / photo1 / texte2 / photo2 */
  .about__pair > :nth-child(1) { order: 1; }
  .about__pair > :nth-child(3) { order: 2; }
  .about__pair > :nth-child(2) { order: 3; margin-top: var(--sp-xl); }
  .about__pair > :nth-child(4) { order: 4; }
  .about__pair-img { height: 320px; }
}

/* ----------------------------------------------------------------
  12. FORMULAIRE (appointment / contact)
---------------------------------------------------------------- */
.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-m);
  max-width: 720px;
}
@media (min-width: 750px) {
  .form { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form__row--full { grid-column: 1 / -1; }
}

.form label {
  display: block;
  font-family: var(--ff-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-text-muted);
  margin-bottom: 8px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(18, 18, 18, 0.55);
  border-radius: 0;
  background: transparent;
  font-family: var(--ff-body);
  font-size: 17px;
  color: var(--c-text);
  outline: none;
  transition: border-color 0.2s var(--t-ease);
}
.form input:focus,
.form textarea:focus,
.form select:focus { border-color: var(--c-text); }
.form textarea { min-height: 272px; resize: vertical; }

.form__submit-row {
  grid-column: 1 / -1;
  margin-top: var(--sp-l);
}
@media (min-width: 750px) {
  .form__submit-row { margin-top: 64px; }
}

/* Form centré horizontalement (page Contact) */
.form--centered {
  margin-left: auto;
  margin-right: auto;
}

/* Contact — tout le bloc central est aligné au centre de la page */
.contact-centered {
  text-align: center;
}
.contact-centered .info {
  text-align: center;
}
.contact-centered .form {
  text-align: left; /* les labels et inputs restent lisibles alignés à gauche */
}

/* Info cards */
.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-xl);
}
.info__block h3 {
  font-family: var(--ff-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin: 0 0 var(--sp-s);
}
.info__block p { font-size: 15px; line-height: 1.7; margin: 0; color: var(--c-text-muted); }
@media (max-width: 749px) {
  .info { grid-template-columns: 1fr; gap: var(--sp-l); }
}

/* ----------------------------------------------------------------
  13. FOOTER (schéma inverse)
---------------------------------------------------------------- */
.footer {
  background: #FFFFFF;
  color: #121212;
  padding: 48px 0;
  margin-top: 0;
}
.footer__copy {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 14px;
  text-align: center;
  opacity: 0.7;
}

/* ----------------------------------------------------------------
  14. SCROLL REVEAL (anim cascade)
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--t-ease), transform 0.8s var(--t-ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .moodboard__grid .mood img { transition: none; }
  .moodboard__grid .mood:hover img { transform: none; }
}

/* ----------------------------------------------------------------
  15. UTILS
---------------------------------------------------------------- */
.main { padding-top: var(--nav-h); }
.main--hero { padding-top: 0; } /* hero full-bleed sous le nav */

.text-center { text-align: center; }
.mt-l  { margin-top: var(--sp-l); }
.mt-xl { margin-top: var(--sp-xl); }
.mb-l  { margin-bottom: var(--sp-l); }
.mb-xl { margin-bottom: var(--sp-xl); }

body.no-scroll { overflow: hidden; }

/* ----------------------------------------------------------------
  16. RESPONSIVE — Typographie
---------------------------------------------------------------- */
/* Bascule en mode "burger" dès que le menu desktop risque de
   déborder (logo + 5 liens + gaps ne tiennent plus sous ~990 px). */
@media (max-width: 989px) {
  .nav__links--desktop { display: none; }
  .nav__tagline { display: none; }
  .nav__burger { display: block; }
  .nav__drawer { display: block; }
}

/* Typographie "téléphone" : plus petite seulement en dessous de 750 px. */
@media (max-width: 749px) {
  :root {
    --fs-hxl: 80px;
    --fs-h0:  64px;
    --fs-h1:  48px;
    --fs-h2:  32px;
    --fs-h3:  27px;
    --fs-h4:  24px;
    --fs-h5:  19px;
    --nav-h:  60px;
  }
}

/* ----------------------------------------------------------------
  16. BOOKING DRAWER (pop-up latérale droite)
---------------------------------------------------------------- */
.booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--t-ease), visibility 0s 0.35s;
  z-index: 1000;
}
.booking-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s var(--t-ease);
}

.booking-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(620px, 92vw);
  background: #FFFFFF;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.45s var(--t-ease);
  overflow-y: auto;
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.08);
}
.booking-drawer.is-open { transform: translateX(0); }

/* Variante "Cal.com embed" : drawer élargie pour accueillir le calendrier */
.booking-drawer--cal {
  width: min(920px, 96vw);
}
.booking-cal-mount {
  width: 100%;
  min-height: 640px;
  margin-top: 16px;
}
.booking-cal-mount iframe {
  border: 0;
  width: 100% !important;
  min-height: 640px;
}
@media (max-width: 749px) {
  .booking-drawer--cal { width: 100vw; }
  .booking-cal-mount { min-height: 560px; }
  .booking-cal-mount iframe { min-height: 560px; }
}

.booking-drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #121212;
  padding: 0;
  transition: border-color 0.2s var(--t-ease);
}
.booking-drawer__close:hover { border-color: #121212; }

.booking-drawer__body {
  padding: 80px 56px 56px;
}

.booking-drawer__title {
  /* Même typo que les titres de page (Moodboard / About) :
     Interstate Black Condensed, uppercase, letter-spacing 0.08em. */
  font-family: var(--ff-title); /* Interstate Black Condensed */
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.25;
  margin: 0 0 32px;
}

.booking-form__row {
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
}
.booking-form__row label {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #121212;
}
.booking-form__row input,
.booking-form__row select,
.booking-form__row textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #121212;
  padding: 8px 0;
  font-family: var(--ff-body);
  font-size: 15px;
  background: transparent;
  color: #121212;
  border-radius: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.booking-form__row select {
  background-image: linear-gradient(45deg, transparent 50%, #121212 50%),
                    linear-gradient(135deg, #121212 50%, transparent 50%);
  background-position: calc(100% - 12px) 16px, calc(100% - 6px) 16px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 24px;
}
.booking-form__row textarea {
  border: 1px solid #121212;
  padding: 12px;
  resize: vertical;
  min-height: 110px;
}
.booking-form__row input:focus,
.booking-form__row select:focus,
.booking-form__row textarea:focus {
  outline: none;
  border-color: #000;
}
.booking-form__row input::placeholder,
.booking-form__row textarea::placeholder {
  color: #b5b5b5;
}

/* ===== intl-tel-input v23 — override complet ====================
   Vérifié en fetchant v23.9.3 sur jsdelivr :
   - Classes réelles : .iti, .iti__country-container, .iti__selected-country
     (button), .iti__selected-country-primary (wrapper flag+arrow),
     .iti__selected-dial-code, .iti__flag, .iti__arrow, .iti__tel-input
   - Le CSS de la lib est injecté au runtime → charge APRÈS style.css →
     gagne les batailles de spécificité égale. D'où !important partout
     sur les règles qui rentrent en conflit.
================================================================= */

.booking-form__row .iti {
  width: 100% !important;
  display: block !important;
  height: 36px !important;
  border-bottom: 1px solid #121212;
  box-sizing: border-box !important;
}

/* Input du téléphone (classe v23 : .iti__tel-input)
   padding-bottom: 10px + line-height: 26px → le texte se retrouve visuellement
   plus haut dans la boîte 36px (environ 5px plus haut), ce qui le rapproche
   du drapeau + dial code. Micro-ajustable en modifiant ces deux valeurs. */
.booking-form__row .iti input.iti__tel-input,
.booking-form__row .iti input.iti__tel-input[type="tel"],
.booking-form__row .iti input,
.booking-form__row .iti input[type="tel"] {
  width: 100% !important;
  height: 36px !important;
  line-height: 24px !important;
  padding: 0 6px 12px 96px !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: var(--ff-body) !important;
  font-size: 15px !important;
  color: var(--c-text) !important;
  box-sizing: border-box !important;
  vertical-align: middle !important;
}
.booking-form__row .iti input::placeholder { color: #b5b5b5; }

/* Kill de l'autofill Chrome/Safari */
.booking-form__row .iti input:-webkit-autofill,
.booking-form__row .iti input:-webkit-autofill:hover,
.booking-form__row .iti input:-webkit-autofill:focus,
.booking-form__row .iti input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset !important;
  box-shadow: 0 0 0 1000px #FFFFFF inset !important;
  -webkit-text-fill-color: var(--c-text) !important;
  caret-color: var(--c-text);
  transition: background-color 99999s ease-out 0s;
}

/* Container absolute qui tient flag + dial code. En v23 il est à right: 0
   par défaut, mais avec .iti--allow-dropdown il bascule à left: 0 — ce qui
   est notre cas puisque separateDialCode force allowDropdown. */
.booking-form__row .iti__country-container {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: auto !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  z-index: 2 !important;
}

/* Le button cliquable.
   ⚠️ line-height: 36px (pas 1) pour que la baseline du dial code tombe au
   même Y que la baseline de l'input voisin (qui a aussi line-height: 36px).
   C'est ce qui élimine l'offset baseline de ~4px responsable du "pas aligné". */
.booking-form__row .iti__selected-country {
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  font-family: inherit !important;
  font-size: 15px !important;
  color: inherit !important;
  line-height: 36px !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

/* Wrapper v23 qui tient le flag + la flèche */
.booking-form__row .iti__selected-country-primary {
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 6px 0 8px !important;
  margin: 0 !important;
  line-height: 36px !important;
}

/* Flag (sprite background) */
.booking-form__row .iti__flag {
  display: block !important;
  margin: 0 !important;
  vertical-align: middle !important;
  flex: 0 0 auto !important;
}

/* Flèche ▼ */
.booking-form__row .iti__arrow {
  display: inline-block !important;
  margin-left: 6px !important;
  padding: 0 !important;
  vertical-align: middle !important;
  line-height: 36px !important;
}

/* Dial code "+33" : line-height strictement égal à celui de l'input pour
   que les baselines des deux textes tombent exactement au même Y. */
.booking-form__row .iti__selected-dial-code {
  font-family: var(--ff-body) !important;
  font-size: 15px !important;
  line-height: 36px !important;
  color: var(--c-text) !important;
  margin: 0 4px 0 4px !important;
  padding: 0 !important;
  display: inline-block !important;
  height: 36px !important;
  vertical-align: middle !important;
}

/* Hover de la zone cliquable : pas de fond coloré */
.booking-form__row .iti__country-container:hover,
.booking-form__row .iti__selected-country:hover,
.booking-form__row .iti__selected-country-primary:hover,
.booking-form__row .iti--allow-dropdown .iti__country-container:hover .iti__selected-country-primary {
  background-color: transparent !important;
}

/* Liste déroulante des pays (popup) */
.iti__country-list,
.iti__dropdown-content {
  font-family: var(--ff-body);
  font-size: 14px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.booking-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.booking-form__submit {
  background: transparent;
  border: 1px solid #121212;
  color: #121212;
  font-family: var(--ff-body);
  font-size: 14px;
  text-transform: none;      /* casse naturelle → "Request access" */
  letter-spacing: 0.04em;
  padding: 18px 40px;
  cursor: pointer;
  margin-top: 12px;
  transition: background-color 0.25s var(--t-ease), color 0.25s var(--t-ease);
}
.booking-form__submit:hover {
  background: #121212;
  color: #FFFFFF;
}

@media (max-width: 749px) {
  .booking-drawer__body { padding: 72px 24px 40px; }
  .booking-form__grid { grid-template-columns: 1fr; gap: 0; }
  .booking-drawer__title { font-size: 26px; }
}

/* ----------------------------------------------------------------
   17. BOOKING — états UI du mode "cal-api"
   Message d'erreur en haut du form + vue succès en remplacement
---------------------------------------------------------------- */
.booking-form__submit[disabled] {
  opacity: 0.55;
  cursor: progress;
}

.booking-form__status {
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.45;
  padding: 12px 14px;
  margin: 0 0 18px;
  border-radius: 0;
  border: 1px solid currentColor;
}
.booking-form__status--error {
  color: #9B1C1C;
  background: rgba(155, 28, 28, 0.06);
}
.booking-form__status--info {
  color: var(--c-text);
  background: var(--c-bg-3);
}

.booking-success {
  margin-top: 8px;
  text-align: center;
}
.booking-success__lead {
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 12px;
  color: var(--c-text-muted);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.booking-success__body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--c-text-muted);
}
/* Centre aussi le titre "Thank you" quand la vue de succès est affichée. */
.booking-drawer__body:has(.booking-success) .booking-drawer__title {
  text-align: center;
}

/* ----------------------------------------------------------------
   18. BOOKING CALENDAR — vue mensuelle custom (mode cal-api)
   Le trigger ressemble à un input standard, le calendrier s'ouvre
   en popup absolute juste en dessous.
---------------------------------------------------------------- */

/* La row qui contient le datepicker doit être le ref positionnel du popup */
.booking-form__row--daypicker {
  position: relative;
}

/* Alignement trait Day ↔ Hour : on cale le <select> frère à la même hauteur
   que le .booking-form__datebtn (36px), padding à 0 pour que le texte soit
   centré verticalement. */
.booking-form__grid .booking-form__row select {
  height: 36px;
  padding: 0 24px 0 0;
  box-sizing: border-box;
}

/* Bouton-trigger stylé comme un input (border-bottom). On pose explicitement
   la hauteur pour qu'elle corresponde à celle du <select> frère, sinon les
   underlines ne sont pas alignés verticalement. */
.booking-form__datebtn {
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #121212;
  border-radius: 0;
  background: transparent;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--c-text);
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}
.booking-form__datebtn:hover:not(:disabled) {
  opacity: 0.75;
}
.booking-form__datebtn:focus {
  outline: none;
  border-bottom-color: #000;
}
.booking-form__datebtn:disabled {
  color: #b5b5b5;
  cursor: not-allowed;
}
.booking-form__datebtn-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.booking-form__datebtn-caret {
  font-size: 13px;
  opacity: 0.55;
  transition: transform 0.2s ease;
}
.booking-form__datebtn[aria-expanded="true"] .booking-form__datebtn-caret {
  transform: rotate(180deg);
}

/* Popup positionnée AU-DESSUS du trigger (pour ne pas déborder sous le form
   et éviter la gêne visuelle). L'ombre est orientée vers le haut pour rester
   cohérente avec la direction d'ouverture. */
.booking-calendar-popup {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 1010;
  width: 320px;
  max-width: calc(100vw - 32px);
  padding: 18px 16px 14px;
  background: #FFFFFF;
  border: 1px solid rgba(18, 18, 18, 0.1);
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.12);
}
.booking-calendar-popup[hidden] {
  display: none;
}
@media (max-width: 749px) {
  .booking-calendar-popup {
    width: min(320px, calc(100vw - 48px));
  }
}

.booking-form__label {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--c-text);
  display: block;
}

.booking-calendar {
  font-family: var(--ff-body);
  width: 100%;
  max-width: 360px;
  margin: 4px 0 8px;
  color: var(--c-text);
  user-select: none;
}
.booking-calendar__loading,
.booking-calendar__empty {
  font-size: 14px;
  color: var(--c-text-muted);
  padding: 18px 2px;
  margin: 0;
}
.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 14px;
}
.booking-calendar__month {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.booking-calendar__nav {
  background: transparent;
  border: 1px solid transparent;
  font-size: 20px;
  line-height: 1;
  padding: 4px 12px;
  cursor: pointer;
  color: var(--c-text);
  font-family: inherit;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.booking-calendar__nav:hover:not(:disabled) {
  opacity: 0.55;
}
.booking-calendar__nav:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.booking-calendar__dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 8px;
}
.booking-calendar__dow span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(18, 18, 18, 0.45);
  padding: 6px 0;
}
.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.booking-calendar__day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  color: var(--c-text);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0;
  cursor: not-allowed;
  opacity: 0.25;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.booking-calendar__day--empty {
  visibility: hidden;
  cursor: default;
}
.booking-calendar__day--available {
  opacity: 1;
  cursor: pointer;
  border-color: rgba(18, 18, 18, 0.14);
}
.booking-calendar__day--available:hover {
  border-color: var(--c-text);
}
.booking-calendar__day--selected {
  background: var(--c-text);
  color: #FFFFFF;
  border-color: var(--c-text);
}
.booking-calendar__day--selected:hover {
  border-color: var(--c-text);
}
