/* ============================================================
   MAISON SAJAEK — Direction visuelle / Phase 1
   Palette + typographie strictement conformes à la charte.
   ============================================================ */

:root {
  --noir:        #0A0A0A;
  --blanc-casse: #F5F0E8;
  --beige-chaud: #ECE4D8;
  --or-brosse:   #D4AF6A;
  --gris-texte:  #5E5E5E; /* assombri pour contraste AA (>=4.5:1 sur fonds clairs) */
  --ligne:       #E2D9CC;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", Inter, Helvetica, Arial, sans-serif;

  --max:    1340px;
  --gut:    clamp(20px, 4vw, 48px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--noir);
  background: var(--blanc-casse);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Accessibilité — anneau de focus clavier visible (or brossé, on-brand) */
:focus-visible { outline: 2px solid var(--or-brosse); outline-offset: 3px; }
.btn:focus-visible, .nav a:focus-visible { outline-offset: 4px; }

/* Chiffres tabulaires pour les prix (pas de décalage de mise en page) */
.product__price, .product-single__price, .price-card__price { font-variant-numeric: tabular-nums; }

/* ---------- Helpers ---------- */
.container { max-width: var(--max); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.section  { padding: clamp(48px, 7vw, 104px) 0; }
.section--tight { padding: clamp(36px, 5vw, 72px) 0; }
.label {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  color: var(--gris-texte);
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.66rem;
  color: var(--gris-texte);
  margin-bottom: 18px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--or-brosse);
  margin: 14px auto 0;
}
.center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: 0.005em; }
h2.display { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.lede { font-size: 1.02rem; color: var(--gris-texte); font-weight: 300; max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid var(--noir);
  background: var(--noir);
  color: var(--blanc-casse);
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}
.btn { touch-action: manipulation; transition: background-color .35s ease, color .35s ease, border-color .35s ease, transform .12s ease; }
.btn:hover { background: transparent; color: var(--noir); }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--noir); }
.btn--ghost:hover { background: var(--noir); color: var(--blanc-casse); }
.btn--light { border-color: var(--blanc-casse); background: transparent; color: var(--blanc-casse); }
.btn--light:hover { background: var(--blanc-casse); color: var(--noir); }
.btn--solid-light { border-color: var(--blanc-casse); background: var(--blanc-casse); color: var(--noir); }
.btn--solid-light:hover { background: transparent; color: var(--blanc-casse); }

/* ---------- Link underline (or brossé, accent rare) ---------- */
.link-ul {
  position: relative;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  padding-bottom: 4px;
}
.link-ul::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--noir);
  transform: scaleX(1);
  transform-origin: left;
  transition: background-color .3s ease;
}
.link-ul:hover::after { background: var(--or-brosse); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,240,232,0.92);
  backdrop-filter: saturate(120%) blur(2px);
  border-bottom: 1px solid var(--ligne);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
}
.nav { display: flex; gap: 26px; }
.nav--right { justify-content: flex-end; }
.nav a {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  color: var(--noir);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--or-brosse);
  transition: width .3s ease;
}
.nav a:hover::after { width: 100%; }

.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-align: center;
  white-space: nowrap;
}
.header-icons { display: flex; gap: 22px; justify-content: flex-end; align-items: center; }
.header-icons a { line-height: 0; color: var(--noir); }
.header-icons svg { width: 19px; height: 19px; }

.nav-toggle { display: none; background: none; border: 0; width: 26px; height: 18px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1px; background: var(--noir); transition: .3s;
}
.nav-toggle span { top: 50%; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Menu mobile masqué par défaut ; révélé uniquement sous 768px */
.mobile-nav { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--blanc-casse);
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.04);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,.62) 0%, rgba(10,10,10,.34) 42%, rgba(10,10,10,.05) 72%, rgba(10,10,10,0) 100%);
}
.hero__inner { position: relative; max-width: 620px; }
.hero__inner .eyebrow { color: rgba(245,240,232,.85); }
.hero__inner .eyebrow::after { margin: 14px 0 0; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero p {
  font-size: 1.06rem;
  font-weight: 300;
  color: rgba(245,240,232,.9);
  max-width: 44ch;
  margin-bottom: 38px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,240,232,.8); display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue::after { content: ""; width: 1px; height: 40px; background: rgba(245,240,232,.5); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0%,100%{ transform: scaleY(.4); opacity:.4 } 50%{ transform: scaleY(1); opacity:1 } }

/* ============================================================
   PILIERS
   ============================================================ */
.piliers { background: var(--blanc-casse); }
.piliers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pilier {
  text-align: center;
  padding: 8px clamp(16px, 3vw, 48px);
  position: relative;
}
.pilier + .pilier::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--ligne);
}
.pilier svg { width: 40px; height: 40px; stroke: var(--noir); stroke-width: 1; fill: none; margin: 0 auto 22px; }
.pilier h3 { font-size: 1.05rem; font-family: var(--sans); font-weight: 400; text-transform: uppercase; letter-spacing: 0.24em; margin-bottom: 14px; }
.pilier p { font-size: 0.92rem; color: var(--gris-texte); max-width: 30ch; margin: 0 auto; }

/* ============================================================
   SÉLECTION PRODUITS
   ============================================================ */
.selection { background: var(--blanc-casse); border-top: 1px solid var(--ligne); }
.selection__head { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.selection__head h2 { margin-top: 4px; }
.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 26px);
}
.product { display: block; }
.product__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--beige-chaud);
  margin-bottom: 16px;
}
.product__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
}
.product:hover .product__media img { transform: scale(1.05); }
.product__tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--blanc-casse); color: var(--noir);
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 10px;
}
.product__brand { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gris-texte); }
.product__name { font-family: var(--serif); font-size: 1.18rem; margin: 3px 0 5px; }
.product__price { font-size: 0.82rem; letter-spacing: 0.05em; }
.selection__cta { text-align: center; margin-top: clamp(40px, 6vw, 68px); }

/* ============================================================
   SPLIT — Personal Shopper / Sabrina
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split--reverse .split__media { order: 2; }
.split__media { min-height: 560px; background-size: cover; background-position: center; }
.split__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 7vw, 110px);
  background: var(--beige-chaud);
}
.split__body h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); margin: 6px 0 22px; }
.split__body p { color: var(--gris-texte); max-width: 42ch; margin-bottom: 30px; }
.split__formule { font-size: 0.86rem; color: var(--gris-texte); margin-bottom: 24px; }
.split__sign { font-family: var(--serif); font-style: italic; font-size: 1.3rem; margin-top: 26px; color: var(--noir); }

/* ============================================================
   AVIS CLIENTES
   ============================================================ */
.avis { background: var(--noir); color: var(--blanc-casse); }
.avis .eyebrow { color: rgba(245,240,232,.7); }
.avis .eyebrow::after { background: var(--or-brosse); }
.avis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); margin-top: 56px; }
.avis__item { text-align: center; }
.avis__stars { color: var(--or-brosse); letter-spacing: 0.3em; font-size: 0.8rem; margin-bottom: 22px; }
.avis__quote { font-family: var(--serif); font-size: 1.32rem; line-height: 1.5; font-weight: 400; margin-bottom: 22px; }
.avis__name { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(245,240,232,.65); }

/* ============================================================
   JOURNAL
   ============================================================ */
.journal { background: var(--blanc-casse); }
.journal__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; gap: 24px; flex-wrap: wrap; }
.journal__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 16ch; }
.journal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); }
.article__media { aspect-ratio: 16/10; overflow: hidden; background: var(--beige-chaud); margin-bottom: 22px; }
.article__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.8,.2,1); }
.article:hover .article__media img { transform: scale(1.04); }
.article__meta { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gris-texte); margin-bottom: 12px; }
.article h3 { font-size: 1.6rem; margin-bottom: 12px; }
.article p { color: var(--gris-texte); font-size: 0.95rem; margin-bottom: 18px; max-width: 50ch; }

/* ============================================================
   RÉASSURANCE
   ============================================================ */
.reassurance { background: var(--beige-chaud); border-top: 1px solid var(--ligne); }
.reassurance__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.reassurance__item { display: flex; align-items: center; gap: 16px; justify-content: center; text-align: left; }
.reassurance__item svg { width: 28px; height: 28px; stroke: var(--noir); stroke-width: 1; fill: none; flex: none; }
.reassurance__item strong { font-family: var(--sans); font-weight: 400; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; display: block; }
.reassurance__item span { font-size: 0.78rem; color: var(--gris-texte); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--noir); color: var(--blanc-casse); padding: clamp(56px, 8vw, 96px) 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(245,240,232,.14); }
.footer__brand { font-family: var(--serif); font-size: 1.5rem; letter-spacing: 0.3em; text-indent: 0.3em; margin-bottom: 20px; }
.footer__brand + p { color: rgba(245,240,232,.6); font-size: 0.9rem; max-width: 34ch; }
.site-footer h4 { font-family: var(--sans); font-weight: 400; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--or-brosse); margin-bottom: 22px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 12px; }
.site-footer a { font-size: 0.88rem; color: rgba(245,240,232,.78); transition: color .25s; }
.site-footer a:hover { color: var(--blanc-casse); }
.footer__news p { color: rgba(245,240,232,.6); font-size: 0.88rem; margin-bottom: 18px; }
.footer__form { display: flex; border-bottom: 1px solid rgba(245,240,232,.3); }
.footer__form input { flex: 1; background: transparent; border: 0; color: var(--blanc-casse); font-family: var(--sans); font-size: 0.85rem; padding: 10px 0; }
.footer__form input::placeholder { color: rgba(245,240,232,.4); }
.footer__form button { background: transparent; border: 0; color: var(--or-brosse); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; flex-wrap: wrap; gap: 14px; }
.footer__bottom p, .footer__bottom a { font-size: 0.74rem; color: rgba(245,240,232,.5); letter-spacing: 0.06em; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ============================================================
   COMMENT ÇA SE PASSE (process)
   ============================================================ */
.process { background: var(--blanc-casse); }
.process__head { margin-bottom: clamp(40px, 6vw, 72px); }
.process__head h2 { margin-top: 4px; }
.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.process__step { border-top: 1px solid var(--ligne); padding-top: 22px; }
.process__num { font-family: var(--serif); font-size: 1.5rem; color: var(--or-brosse); display: block; margin-bottom: 16px; }
.process__step h3 { font-family: var(--sans); font-weight: 400; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.process__step p { font-size: 0.92rem; color: var(--gris-texte); }
.process__cta { margin-top: clamp(40px, 6vw, 64px); }

/* ============================================================
   CONTACT / RÉSERVATION (reserver)
   ============================================================ */
.reserver { background: var(--beige-chaud); border-top: 1px solid var(--ligne); }
.reserver__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.reserver__intro h2 { margin: 4px 0 18px; }
.reserver__intro p { color: var(--gris-texte); max-width: 42ch; margin-bottom: 34px; }
.reserver__coords { list-style: none; }
.reserver__coords li { padding: 16px 0; border-bottom: 1px solid var(--ligne); font-size: 0.95rem; }
.reserver__coords .label { display: block; margin-bottom: 4px; }

/* Bloc court homepage — 3 points + CTA */
.reserver__points { list-style: none; margin: 6px 0 30px; }
.reserver__points li { position: relative; padding-left: 22px; margin-bottom: 12px; font-size: 0.95rem; color: var(--noir); }
.reserver__points li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 8px; height: 1px; background: var(--or-brosse); }
.reserver__intro .btn { align-self: flex-start; }

/* Fiches coordonnées (libellés propres, pas d'accolades visibles) */
.coords { list-style: none; }
.coords__item { padding: 14px 0; border-bottom: 1px solid var(--ligne); }
.coords__item:first-child { border-top: 1px solid var(--ligne); }
.coords__label { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gris-texte); margin-bottom: 5px; }
.coords__value { font-size: 0.95rem; color: var(--noir); }
.coords__value--soon { color: var(--gris-texte); }

/* Pastilles à cocher (remplace les cases inline — robuste, premium) */
.choice-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.choice-pills label {
  display: inline-flex; align-items: center;
  border: 1px solid var(--ligne); padding: 11px 18px; cursor: pointer;
  font-size: 0.86rem; color: var(--noir); min-height: 44px;
  transition: border-color .2s ease, background-color .2s ease;
  user-select: none; touch-action: manipulation;
}
.choice-pills input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice-pills label:hover { border-color: var(--noir); }
.choice-pills input:checked + span,
.choice-pills label:has(input:checked) { font-weight: 500; }
.choice-pills label:has(input:checked) { border-color: var(--noir); background: var(--noir); color: var(--blanc-casse); }
.choice-pills input:focus-visible + span { outline: 2px solid var(--or-brosse); outline-offset: 4px; }

/* Hero visuel des pages formulaire / intérieur */
.form-hero { position: relative; min-height: 46vh; display: flex; align-items: flex-end; color: var(--blanc-casse); overflow: hidden; }
.form-hero__img { position: absolute; inset: 0; background-size: cover; background-position: center 28%; }
.form-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.15) 0%, rgba(10,10,10,.55) 100%); }
.form-hero__inner { position: relative; width: 100%; padding-bottom: clamp(32px, 5vw, 56px); }
.form-hero .eyebrow { color: rgba(245,240,232,.85); }
.form-hero .eyebrow::after { margin: 14px 0 0; }
.form-hero h1 { color: var(--blanc-casse); margin: 6px 0 14px; }
.form-hero p { color: rgba(245,240,232,.92); max-width: 52ch; }

/* ============================================================
   PAGE RENDEZ-VOUS (pré-diagnostic complet)
   ============================================================ */
.rdv-wrap { max-width: 760px; }
.rdv-intro { background: var(--beige-chaud); border-bottom: 1px solid var(--ligne); text-align: center; }
.rdv-intro h1 { margin: 6px 0 20px; }
.rdv-lede { color: var(--gris-texte); font-size: 1.02rem; max-width: 56ch; margin: 0 auto; }
.rdv-form-section { background: var(--blanc-casse); padding: clamp(48px, 8vw, 96px) 0; }
.rdv-form .form-group { border: 0; padding: 0; margin: 0 0 clamp(36px, 5vw, 52px); min-width: 0; }
.rdv-form .form-group legend {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500;
  padding: 0 0 20px; margin-bottom: 24px; width: 100%;
  border-bottom: 1px solid var(--ligne);
}

/* Listes d'options (radio / checkbox) */
.opt-list { display: flex; flex-direction: column; gap: 2px; width: 100%; }
.opt-list--inline { flex-flow: row wrap; gap: 10px 28px; margin-top: 12px; }
.opt {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  align-items: center; gap: 12px; padding: 10px 0;
  cursor: pointer; font-size: 0.95rem; width: 100%;
}
.opt input { width: 16px; height: 16px; accent-color: var(--noir); }
.opt span { color: var(--noir); min-width: 0; }
.opt-list--inline .opt { display: inline-flex; align-items: center; gap: 10px; padding: 4px 0; width: auto; flex: none; white-space: nowrap; }
.opt-list--inline .opt span { flex: none; min-width: auto; }
.reserver__form { display: flex; flex-direction: column; }
.reserver__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.field { display: flex; flex-direction: column; margin-bottom: 22px; }
.field label, .field__label { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gris-texte); margin-bottom: 8px; }
.reserver__form input, .reserver__form textarea, .reserver__form select {
  background: transparent; border: 0; border-bottom: 1px solid var(--noir);
  font-family: var(--sans); font-size: 0.95rem; color: var(--noir);
  padding: 10px 0; width: 100%; resize: vertical;
}
.reserver__form select {
  appearance: none; -webkit-appearance: none;
  border-radius: 0; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230A0A0A' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 2px center;
}
.reserver__form input:focus, .reserver__form textarea:focus, .reserver__form select:focus { outline: none; border-bottom-color: var(--or-brosse); }

/* Bloc photos — interface premium, non fonctionnelle */
.photo-dropzone {
  border: 1px dashed var(--ligne);
  padding: 28px 26px;
  text-align: center;
  background: rgba(245,240,232,0.4);
}
.photo-dropzone__icon { display: block; color: var(--gris-texte); margin: 0 auto 14px; }
.photo-dropzone__icon svg { width: 30px; height: 30px; margin: 0 auto; }
.photo-dropzone p { font-size: 0.86rem; color: var(--gris-texte); max-width: 46ch; margin: 0 auto 14px; line-height: 1.6; }
.photo-dropzone__soon { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or-brosse); }

/* Consentement */
.reserver__consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 6px; }
.reserver__consent input { flex: none; width: 16px; height: 16px; margin-top: 3px; accent-color: var(--noir); }
.reserver__consent span { font-size: 0.82rem; color: var(--gris-texte); line-height: 1.55; }

.reserver__form .btn { margin-top: 30px; align-self: flex-start; }
.reserver__note { font-size: 0.8rem; color: var(--gris-texte); margin-top: 16px; max-width: 52ch; line-height: 1.6; }

/* ============================================================
   EN-TÊTE DE PAGE (bandeau titre réutilisable)
   ============================================================ */
.page-hero { background: var(--beige-chaud); border-bottom: 1px solid var(--ligne); text-align: center; }
.page-hero h1 { margin: 6px 0 16px; }
.page-hero p { color: var(--gris-texte); max-width: 56ch; margin: 0 auto; }

.breadcrumb { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gris-texte); padding: 24px 0 0; }
.breadcrumb a:hover { color: var(--or-brosse); }
.breadcrumb span { margin: 0 8px; }

/* ============================================================
   FILTRE MARQUES (page Sélections)
   ============================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: clamp(36px, 5vw, 56px); }
.filter-bar .btn { padding: 11px 22px; font-size: 0.66rem; }
.filter-bar .btn.is-active { background: var(--noir); color: var(--blanc-casse); }

/* ============================================================
   FICHE PRODUIT
   ============================================================ */
.product-single { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.product-single__media { aspect-ratio: 3/4; background: var(--beige-chaud); overflow: hidden; }
.product-single__media img { width: 100%; height: 100%; object-fit: cover; }
.product-single__thumbs { display: flex; gap: 12px; margin-top: 12px; }
.product-single__thumbs div { width: 72px; aspect-ratio: 3/4; background: var(--beige-chaud); }
.product-single__info { padding-top: 8px; }
.product-single__brand { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gris-texte); }
.product-single__info h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 8px 0 12px; }
.product-single__price { font-size: 1.2rem; margin-bottom: 24px; }
.product-single__desc { color: var(--gris-texte); margin-bottom: 28px; }
.product-single__label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gris-texte); margin-bottom: 10px; display: block; }
.size-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.size-pills button { background: transparent; border: 1px solid var(--ligne); padding: 10px 16px; font-family: var(--sans); font-size: 0.8rem; cursor: pointer; transition: border-color .2s, color .2s; }
.size-pills button:hover, .size-pills button.is-active { border-color: var(--noir); }
.product-single__actions { display: flex; flex-direction: column; gap: 12px; }
.product-single__note { font-size: 0.8rem; color: var(--gris-texte); margin-top: 18px; }

/* ============================================================
   PROSE / PAGES LÉGALES & ARTICLE
   ============================================================ */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.1rem; font-family: var(--sans); font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--gris-texte); margin-bottom: 14px; line-height: 1.8; }
.prose ul { padding-left: 20px; margin-bottom: 14px; }
.prose .placeholder-note { background: var(--beige-chaud); border-left: 2px solid var(--or-brosse); padding: 14px 18px; font-size: 0.85rem; color: var(--gris-texte); margin: 20px 0; }

.article-single { max-width: 760px; margin: 0 auto; }
.article-single__hero { aspect-ratio: 16/9; background: var(--beige-chaud); overflow: hidden; margin-bottom: 36px; }
.article-single__hero img { width: 100%; height: 100%; object-fit: cover; }
.article-single__meta { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gris-texte); margin-bottom: 14px; }
.article-single h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 28px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.contact-form { display: flex; flex-direction: column; }
.contact-map { aspect-ratio: 4/3; background: var(--beige-chaud); display: flex; align-items: center; justify-content: center; color: var(--gris-texte); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 28px; }

/* ============================================================
   À PROPOS
   ============================================================ */
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.about-value h3 { font-family: var(--sans); font-weight: 400; font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.about-value p { color: var(--gris-texte); font-size: 0.92rem; }

/* ============================================================
   OFFRE / TARIF + PAIEMENT
   ============================================================ */
.price-card {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--blanc-casse); border: 1px solid var(--ligne);
  padding: clamp(32px, 5vw, 56px);
}
.price-card__price { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; margin: 6px 0 4px; }
.price-card__price small { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gris-texte); display: block; margin-top: 10px; }
.price-card__meta { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gris-texte); margin-bottom: 20px; }
.price-card p { color: var(--gris-texte); margin-bottom: 16px; }
.price-card__hr { border: 0; border-top: 1px solid var(--or-brosse); width: 40px; margin: 22px auto; }
.price-card__note { font-size: 0.82rem; color: var(--gris-texte); }

.pay-block {
  border: 1px solid var(--ligne); background: var(--beige-chaud);
  padding: clamp(24px, 4vw, 36px); margin-top: clamp(32px, 5vw, 48px);
}
.pay-block h2 { font-size: 1.5rem; margin-bottom: 12px; }
.pay-block p { color: var(--gris-texte); font-size: 0.92rem; margin-bottom: 10px; }
.pay-block .btn { margin-top: 14px; }
.btn--disabled {
  background: transparent; color: var(--gris-texte); border: 1px dashed var(--gris-texte);
  cursor: not-allowed; pointer-events: none;
}
.pay-secure { font-size: 0.82rem; color: var(--gris-texte); margin-top: 14px; line-height: 1.6; }

/* ============================================================
   MICRO-INTERACTIONS & CIBLES TACTILES (pass UX)
   ============================================================ */
/* Cibles tactiles >= 44px */
.filter-bar .btn { min-height: 44px; }
.size-pills button { min-height: 44px; min-width: 44px; touch-action: manipulation; }
.header-icons a { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.nav-toggle { width: 44px; height: 44px; padding: 13px 9px; }
.opt, .reserver__consent { touch-action: manipulation; }

/* Survol produit — soulignement discret du nom (or brossé) */
.product__name { display: inline-block; background-image: linear-gradient(var(--or-brosse), var(--or-brosse)); background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .3s ease; }
.product:hover .product__name { background-size: 100% 1px; }

/* Apparition échelonnée des grilles (stagger 60ms) */
.products .product:nth-child(2), .journal__grid .article:nth-child(2), .piliers__grid .pilier:nth-child(2), .avis__grid .avis__item:nth-child(2), .process__steps .process__step:nth-child(2) { transition-delay: .06s; }
.products .product:nth-child(3), .piliers__grid .pilier:nth-child(3), .avis__grid .avis__item:nth-child(3), .process__steps .process__step:nth-child(3) { transition-delay: .12s; }
.products .product:nth-child(4), .process__steps .process__step:nth-child(4) { transition-delay: .18s; }
.products .product:nth-child(5) { transition-delay: .24s; }

/* ============================================================
   ANIMATIONS (minimales)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img { transform: none; }
  .scroll-cue::after { animation: none; }
  /* Neutralise les transforms au survol (images produit/article) */
  .product:hover .product__media img,
  .article:hover .article__media img { transform: none; }
  * { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products { grid-template-columns: repeat(3, 1fr); }
  .reassurance__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-inner { grid-template-columns: auto 1fr auto; height: 68px; }
  .nav--left { display: none; }
  .nav--right { display: none; }
  .nav-toggle { display: block; }
  .brand { font-size: 1.2rem; letter-spacing: 0.24em; text-indent: 0.24em; text-align: left; }
  .mobile-nav { display: none; }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav {
    flex-direction: column; gap: 4px; padding: 12px var(--gut) 24px;
    background: var(--blanc-casse); border-bottom: 1px solid var(--ligne);
  }
  .mobile-nav a { padding: 12px 0; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.78rem; border-bottom: 1px solid var(--ligne); }
  .piliers__grid { grid-template-columns: 1fr; gap: 48px; }
  .pilier + .pilier::before { display: none; }
  .pilier { padding: 0; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { min-height: 380px; }
  .avis__grid { grid-template-columns: 1fr; gap: 48px; }
  .journal__grid { grid-template-columns: 1fr; }
  .reassurance__grid { grid-template-columns: 1fr 1fr; }

  /* Nouvelles sections Phase 2 : empilage mobile */
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reserver__grid { grid-template-columns: 1fr; gap: 48px; }
  .reserver__fields { grid-template-columns: 1fr; }
  .product-single { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-values { grid-template-columns: 1fr; gap: 36px; }

  /* Footer : blocs empilés verticalement, pleine largeur, sans débordement */
  .footer__top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer__top > * { width: 100%; min-width: 0; }
  .footer__brand + p, .footer__news p { max-width: none; }
  .footer__form input { min-width: 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .reassurance__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; gap: 28px; }
}
