/* ════════════════════════════════════════════════════════════
   LEAKS — Drop 001 · Variation épurée
   Chrome minimalism : papier, encre, hairlines, lumière.
   La couleur n'appartient qu'à la photographie.
   ════════════════════════════════════════════════════════════ */

:root {
  --paper: #fafaf7;
  --ink: #111110;
  --mute: #8b8b86;
  --hairline: #e5e4de;
  --hairline-strong: #c9c8c0;
  --white: #ffffff;

  /* ── Une seule voix : Space Grotesk ─────────────────────────
     Grotesque géométrique, futuriste mais lisible. Quatre graisses
     (400/500/600/700), casse de phrase, corps 16. Une seule police,
     partout — site et application. Rien d'autre. */
  --serif: "Space Grotesk", system-ui, sans-serif;
  --sans: "Space Grotesk", system-ui, sans-serif;


  --gutter: clamp(20px, 3.4vw, 48px);
  --section: clamp(96px, 14vh, 180px);
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p { text-wrap: pretty; }
h1, h2, h3, legend { text-wrap: balance; }

img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }

.wrap {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Micro-label ────────────────────────────────────────────── */

.tag {
  font-size: 12.5px;


  color: var(--mute);
}

/* ── Révélations ────────────────────────────────────────────── */

.r {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.r.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .r { opacity: 1; transform: none; transition: none; } }

/* ── Navigation ─────────────────────────────────────────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
  padding-inline: var(--gutter);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.nav-brand img { height: 15px; width: auto; }

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  font-size: 14px;
  font-weight: 500;


}

.nav-links a { position: relative; padding-block: 4px; color: var(--mute); transition: color 0.3s; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--ink);
  transition: right 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  font-size: 14px;
  font-weight: 600;


  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: opacity 0.3s;
}
.nav-cta:hover { opacity: 0.5; }

/* ── Hero — centré, sans image ──────────────────────────────── */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 88vh;
  padding-top: 120px;
  padding-bottom: clamp(32px, 5vh, 64px);
}

.hero-logo { width: min(560px, 86%); height: auto; margin-block: 30px 34px; }

/* La ligne du hero murmure — comme sur le Drop 001 d'origine. */
.hero-line {
  font-family: var(--serif);

  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--ink);
  max-width: 44ch;
  margin-inline: auto;
}

.hero-line em { font-style: normal; }

.hero-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(26px, 4vh, 42px);
  margin-top: clamp(28px, 4.5vh, 46px);
}

.count {
  display: flex;
  gap: 22px;
  font-variant-numeric: tabular-nums;
}

.count b {
  display: block;

  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;

  line-height: 1;
}

.count i {
  display: block;
  font-style: normal;
  font-size: 13px;


  color: var(--mute);
  margin-top: 2px;
}

.hero-cta {
  display: flex;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;


  padding: 15px 26px;
  border: 1px solid var(--ink);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), opacity 0.3s;
}

.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.hero-visual { position: relative; overflow: hidden; }

.hero-visual img {
  width: 100%;
  height: min(76vh, 820px);
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1.6s var(--ease);
}
.hero-visual:hover img { transform: scale(1.025); }

.hero-visual figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 12.5px;
  font-weight: 500;


  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.42));
}

/* ── Bande manifeste ────────────────────────────────────────── */

.manifesto { margin-top: var(--section); position: relative; overflow: hidden; }

.manifesto img {
  width: 100%;
  height: clamp(380px, 68vh, 640px);
  object-fit: cover;
  object-position: center 30%;
}

.manifesto-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 56px);
  background: linear-gradient(160deg, transparent 46%, rgba(0, 0, 0, 0.38));
}

.manifesto p {
  font-family: var(--serif);

  font-size: clamp(22px, 3vw, 40px);
  line-height: 1.12;
  color: var(--white);
  max-width: 14em;
}

.manifesto .tag { color: rgba(255, 255, 255, 0.75); margin-bottom: 14px; }

/* ── Têtes de section ───────────────────────────────────────── */

.section { padding-top: var(--section); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline-strong);
  margin-bottom: clamp(30px, 4.5vw, 56px);
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;

  line-height: 1.3;

}

.section-head .note { font-size: 13px; color: var(--mute); text-align: right; }

/* ── Collection ─────────────────────────────────────────────── */

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(34px, 3.6vw, 52px) clamp(18px, 2vw, 28px);
}

.card { display: flex; flex-direction: column; min-width: 0; }

.card-visual {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 1px solid var(--hairline);
  padding: 9%;
  overflow: hidden;
  transition: border-color 0.4s;
}
.card:hover .card-visual { border-color: var(--hairline-strong); }

.card-visual img {
  position: absolute;
  inset: 9%;
  width: 82%;
  height: 82%;
  object-fit: contain;
  transition: opacity 0.55s var(--ease), transform 1.1s var(--ease);
}

.card-visual .alt { opacity: 0; }
.card:hover .card-visual .alt { opacity: 1; }
.card:hover .card-visual .base { opacity: 0; }
.card:hover .card-visual img { transform: scale(1.03); }

.card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.card-row h3 {
  font-size: 14.5px;
  font-weight: 600;


  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-row .idx { font-size: 12.5px; color: var(--mute); font-variant-numeric: tabular-nums; margin-right: 2px; }

.card-sub {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 3px;
  font-size: 13px;
  color: var(--mute);
}

.card-sub .price { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }

/* ── Campagne ───────────────────────────────────────────────── */

.campaign {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(18px, 2vw, 28px);
}

.campaign-col { display: grid; gap: clamp(18px, 2vw, 28px); align-content: start; }

.shot { position: relative; overflow: hidden; display: block; }

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.shot:hover img { transform: scale(1.03); }

.shot-tall img { height: clamp(480px, 78vh, 860px); object-position: center 18%; }
.shot-half img { height: clamp(230px, 38vh, 415px); object-position: center 24%; }

.shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  font-size: 12.5px;
  font-weight: 500;


  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.shot:hover figcaption { opacity: 1; transform: none; }
@media (hover: none) { .shot figcaption { opacity: 1; transform: none; } }

/* ── Le Drop ────────────────────────────────────────────────── */

.drop-date {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.drop-date em { font-family: var(--serif); font-weight: 400; }

.drop-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
  margin-top: clamp(36px, 5vw, 64px);
}

.rule { border-top: 1px solid var(--hairline-strong); padding-top: 16px; }
.rule b {
  display: block;
  font-size: 13px;
  font-weight: 600;


  margin-bottom: 8px;
}
.rule p { font-size: 13px; color: var(--mute); max-width: 30ch; }
.rule .tag { display: block; margin-bottom: 12px; }

/* ── Rendez-vous ────────────────────────────────────────────── */

.rdv-grid {
  display: grid;
  grid-template-columns: minmax(300px, 4fr) minmax(0, 8fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
}

.rdv-summary {
  position: sticky;
  top: 92px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  padding: clamp(20px, 2.4vw, 32px);
}

.rdv-summary .tag { display: block; margin-bottom: 18px; }

.summary-list { display: grid; }

.summary-list > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 11px;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
}

.summary-list dt {
  color: var(--mute);
  font-size: 13px;
  font-weight: 500;


  align-self: center;
}
.summary-list dd { font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; }

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 18px;
  font-size: 13px;
}
.summary-total strong { font-size: 19px; font-weight: 600; font-variant-numeric: tabular-nums; }

.summary-note { margin-top: 14px; font-size: 13px; color: var(--mute); }
.summary-place { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--hairline); font-size: 13px; color: var(--mute); }

/* Formulaire */

.step { border: none; padding-bottom: clamp(28px, 3.4vw, 44px); }

.step legend {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.step legend em {

  font-style: normal;
  font-size: 12.5px;
  color: var(--mute);
  font-variant-numeric: tabular-nums;

}

.step legend small { font-weight: 400; font-size: 13px; color: var(--mute); }

.step.has-error legend { color: #b3261e; }

.choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }

.choice input { position: absolute; opacity: 0; pointer-events: none; }

.choice {
  position: relative;
  display: block;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.choice:hover { border-color: var(--ink); }
.choice:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }

.choice-name { display: block; font-size: 13px; font-weight: 600; }
.choice-sub { display: block; font-size: 13px; color: var(--mute); margin-top: 3px; }
.choice-price { display: block; font-size: 13px; font-weight: 600; margin-top: 10px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  font-size: 13px;
  font-weight: 500;

  padding: 9px 15px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip:disabled { opacity: 0.35; cursor: not-allowed; }

.chip-radio { display: contents; cursor: pointer; }
.chip-radio .chip { display: inline-block; cursor: pointer; }
.chip-radio input:checked + .chip { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.field { margin-top: 16px; }
.field-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-duo .field { margin-top: 16px; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;


  color: var(--mute);
  margin-bottom: 7px;
}

.field input,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 14px;
  padding: 13px 14px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.3s;
}

.field input:focus,
.field textarea:focus { outline: none; border-color: var(--ink); }

.field-hint { font-size: 13px; color: var(--mute); margin-top: 7px; }
.field-hint.closed { color: #b3261e; }

.form-errors {
  border: 1px solid #b3261e;
  color: #b3261e;
  background: #fdf3f2;
  font-size: 13px;
  padding: 13px 16px;
  margin-bottom: 18px;
}

.form-success {
  border: 1px solid var(--ink);
  background: var(--white);
  font-size: 13.5px;
  padding: 16px 18px;
  margin-top: 18px;
}

.form-microcopy { font-size: 13px; color: var(--mute); margin-top: 14px; max-width: 52ch; }

.btn-submit { width: 100%; justify-content: center; padding-block: 18px; }

/* ── FAQ ────────────────────────────────────────────────────── */

.faq-list { max-width: 780px; }

.faq-list details { border-bottom: 1px solid var(--hairline-strong); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-block: 20px;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.3s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--mute); }

.faq-x { font-family: var(--serif); font-size: 18px; color: var(--mute); transition: transform 0.4s var(--ease); }
details[open] .faq-x { transform: rotate(45deg); }

.faq-list details p { padding-bottom: 22px; color: var(--mute); font-size: 14px; max-width: 62ch; }

/* ── Pied de page ───────────────────────────────────────────── */

.footer {
  margin-top: var(--section);
  border-top: 1px solid var(--hairline-strong);
  padding-block: clamp(36px, 5vw, 64px) 28px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

.footer-brand img { height: 14px; width: auto; }

.footer-col { font-size: 12.5px; color: var(--mute); line-height: 2; }
.footer-col a { color: var(--ink); border-bottom: 1px solid var(--hairline-strong); transition: border-color 0.3s; }
.footer-col a:hover { border-color: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(32px, 4vw, 56px);
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;


  color: var(--mute);
}

/* ── WhatsApp flottant ──────────────────────────────────────── */

.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.wa.show { opacity: 1; transform: none; pointer-events: auto; }
.wa svg { width: 20px; height: 20px; }

/* Écrans anormalement hauts (captures pleine page incluses) :
   les unités vh dégénèrent — on fige des hauteurs raisonnables. */
@media (min-height: 1800px) {
  .hero { min-height: 0; }
  .hero-visual img { height: 720px; }
  .manifesto img { height: 620px; }
  .shot-tall img { height: 820px; }
  .shot-half img { height: 396px; }
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1120px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; min-height: 0; padding-top: 104px; }
  .hero-visual img { height: clamp(380px, 60vh, 560px); }
  .campaign { grid-template-columns: 1fr; }
  .shot-tall img { height: clamp(380px, 56vh, 620px); }
  .rdv-grid { grid-template-columns: 1fr; }
  .rdv-summary { position: static; order: 2; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choice-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .field-duo { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .count { gap: 16px; }
  .drop-rules { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   Pages intérieures — en-tête commun
   ════════════════════════════════════════════════════════════ */

.page-head {
  padding-top: clamp(140px, 20vh, 220px);
  max-width: 880px;
}

/* Les titres de page sont des phrases — la voix, pas la structure. */
.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.08;
  margin-top: 14px;
}

.page-head .lede {
  font-family: var(--serif);

  font-size: clamp(19px, 2vw, 26px);
  color: var(--mute);
  margin-top: 18px;
  max-width: 26em;
}

/* ── Manifeste (page) ───────────────────────────────────────── */

.manifesto-body { max-width: 760px; padding-block: clamp(48px, 8vh, 96px); }

.manifesto-body p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.42;
  font-weight: 400;
}

.manifesto-body p + p { margin-top: 1.6em; }
.manifesto-body p em { }
.manifesto-body p.plain {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.8;
  color: var(--mute);
  max-width: 52ch;
}

.manifesto-sign {
  margin-top: clamp(48px, 7vh, 80px);
  padding-top: 24px;
  border-top: 1px solid var(--hairline-strong);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}

.manifesto-sign img { height: 13px; width: auto; }

/* ── Campagne (lookbook) ────────────────────────────────────── */

.look {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding-top: var(--section);
}

.look:nth-child(even) .look-visual { order: 2; }

.look-visual { overflow: hidden; }

.look-visual img {
  width: 100%;
  height: clamp(420px, 74vh, 780px);
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1.6s var(--ease);
}
.look-visual:hover img { transform: scale(1.02); }

.look-meta { padding-bottom: 8px; }

.look-meta .tag { display: block; }

.look-meta h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 400;

  line-height: 1.3;

  margin-top: 14px;
}

.look-meta h2 em { font-family: var(--serif); font-weight: 400; text-transform: none; letter-spacing: 0; }

.look-meta .desc { font-size: 14px; color: var(--mute); margin-top: 12px; max-width: 40ch; }

.look-worn {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  margin-top: 22px;
  padding-block: 12px;
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline);
}
.look-worn b { font-weight: 600; }
.look-worn span { color: var(--mute); }

.look-cta { display: flex; gap: 14px; margin-top: 20px; flex-wrap: wrap; }

/* ── Galerie (page modèle) ──────────────────────────────────── */

.g-shell {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  padding-top: clamp(28px, 4vh, 48px);
}

.g-visual {
  position: sticky;
  top: 88px;
  border: 1px solid var(--hairline);
  background: var(--white);
  padding: clamp(18px, 2.4vw, 40px);
}

.g-visual > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.g-views {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.g-views.is-single { display: none; }

.g-view {
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--hairline);
  background: var(--white);
  transition: border-color 0.25s;
}
.g-view:hover { border-color: var(--ink); }
.g-view.is-active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.g-view img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.g-view em {
  font-style: normal;
  font-size: 8px;
  font-weight: 600;


  color: var(--mute);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.g-panel { display: grid; gap: 26px; }

.g-panel h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 400;

  line-height: 1.2;

}

.g-panel .desc { font-size: 14px; color: var(--mute); max-width: 44ch; margin-top: 10px; }

.g-lines { display: grid; border-top: 1px solid var(--hairline-strong); }
.g-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-block: 11px;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
}
.g-lines dt {
  color: var(--mute);
  font-size: 13px;
  font-weight: 500;


  align-self: center;
}
.g-lines dd { font-weight: 500; font-variant-numeric: tabular-nums; }

.g-swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(132px, 1fr)); gap: 10px; }

.g-swatch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  text-align: left;
  transition: border-color 0.25s;
}
.g-swatch:hover { border-color: var(--ink); }
.g-swatch.is-active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.g-swatch img { width: 44px; height: 44px; object-fit: contain; flex: none; }
.g-swatch span { display: grid; min-width: 0; }
.g-swatch strong { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.g-swatch em { font-style: normal; font-size: 9px; color: var(--mute); }

.g-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Checkout ───────────────────────────────────────────────── */

.co-shell {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  padding-top: clamp(28px, 4vh, 48px);
  padding-bottom: var(--section);
}

.co-step { border: none; padding-bottom: clamp(26px, 3vw, 40px); }

.co-step legend {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.co-step legend em {

  font-style: normal;
  font-size: 12.5px;
  color: var(--mute);

  font-variant-numeric: tabular-nums;
}

.co-fields { display: grid; gap: 14px; }
.co-fields.two { grid-template-columns: 1fr 1fr; }

.co-fields label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;


  color: var(--mute);
}

.co-fields input,
.co-fields select,
.co-fields textarea {
  width: 100%;
  font: 400 14px/1.4 var(--sans);
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  padding: 13px 14px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  border-radius: 0;
  transition: border-color 0.3s;
  appearance: none;
}

.co-fields select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23111110' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

.co-fields input:focus,
.co-fields select:focus,
.co-fields textarea:focus { outline: none; border-color: var(--ink); }

.phone-field { display: flex; border: 1px solid var(--hairline-strong); background: var(--white); }
.phone-field > span {
  display: flex; align-items: center;
  padding-inline: 13px 0;
  font-size: 14px; font-weight: 500; letter-spacing: normal; color: var(--mute);
}
.phone-field input { border: none; }
.phone-field:focus-within { border-color: var(--ink); }

/* Options — icônes filaires 1.5pt */

.co-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.co-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 16px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}
.co-option:hover { border-color: var(--ink); }
.co-option:has(input:checked) { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.co-option input { position: absolute; opacity: 0; pointer-events: none; }

.co-option svg { width: 21px; height: 21px; flex: none; stroke: var(--ink); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.co-option strong { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.co-option small { display: block; font-size: 13px; color: var(--mute); margin-top: 1px; }

.co-option .co-badge {
  margin-left: auto;
  font-size: 12.5px;
  font-weight: 600;


  padding: 4px 8px;
  background: var(--ink);
  color: var(--paper);
  flex: none;
}

/* Récapitulatif */

.co-card {
  position: sticky;
  top: 88px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  padding: clamp(20px, 2.4vw, 32px);
}

.co-card .co-figure {
  border-bottom: 1px solid var(--hairline);
  margin: -8px -8px 18px;
  padding: 8px;
}

.co-card .co-figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }

.co-card h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;


  margin-top: 10px;
}
.co-card .desc { font-size: 12.5px; color: var(--mute); margin-top: 4px; }

.co-lines { display: grid; margin-top: 18px; border-top: 1px solid var(--hairline-strong); }
.co-lines > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding-block: 10px;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
}
.co-lines dt {
  color: var(--mute);
  font-size: 13px;
  font-weight: 500;


  align-self: center;
}
.co-lines dd { font-weight: 500; }

.co-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; font-size: 13px; }
.co-total strong { font-size: 19px; font-weight: 600; font-variant-numeric: tabular-nums; }

.co-trust {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--mute);
  list-style: none;
}
.co-trust li { display: flex; align-items: center; gap: 9px; }
.co-trust svg { width: 14px; height: 14px; stroke: var(--mute); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.co-error {
  border: 1px solid #b3261e;
  color: #b3261e;
  background: #fdf3f2;
  font-size: 13px;
  padding: 13px 16px;
  margin-bottom: 18px;
}

.co-submit {
  width: 100%;
  justify-content: space-between;
  padding-block: 18px;
}

.co-legal { font-size: 13px; color: var(--mute); margin-top: 12px; text-align: center; }

/* ── Responsive pages intérieures ───────────────────────────── */

@media (max-width: 940px) {
  .look { grid-template-columns: 1fr; align-items: start; }
  .look:nth-child(even) .look-visual { order: 0; }
  .look-visual img { height: clamp(360px, 54vh, 560px); }
  .g-shell, .co-shell { grid-template-columns: 1fr; }
  .g-visual { position: static; }
  .co-card { position: static; order: -1; }
  .co-options { grid-template-columns: 1fr; }
  .co-fields.two { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   L'essayage privé — expérience concierge
   Un rail, trois gestes, une carte qui s'écrit en direct.
   ════════════════════════════════════════════════════════════ */

.xp {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) 320px;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

/* — Le rail — */

.xp-rail {
  display: grid;
  gap: 2px;
  position: sticky;
  top: 96px;
}

.xp-step {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 2px;
  border-bottom: 1px solid var(--hairline);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--mute);
  text-align: left;
  transition: color 0.25s, border-color 0.25s;
}

.xp-step em {

  font-style: normal;
  font-size: 12.5px;

}

.xp-step.is-active { color: var(--ink); border-color: var(--ink); }
.xp-step.is-done { color: var(--ink); }
.xp-step.is-done::after { content: "·"; margin-left: auto; }
.xp-step:disabled { cursor: default; opacity: 0.55; }
.xp-step:not(:disabled):hover { color: var(--ink); }

/* — Les panneaux — */

.xp-panel { display: none; }
.xp-panel.is-active { display: block; }

.xp-lead {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: clamp(22px, 3vw, 34px);
}

.xp-lead small {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--mute);
}

.xp-lead b { font-weight: 600; }

.xp-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}

/* — 01 · Le moment — */

.xp-days {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.xp-days::-webkit-scrollbar { display: none; }

.xp-day {
  min-width: 64px;
  display: grid;
  justify-items: center;
  gap: 1px;
  padding: 10px 8px 9px;
  border: 1px solid var(--hairline);
  background: var(--white);
  transition: border-color 0.25s;
}

.xp-day em { font-style: normal; font-size: 12.5px; font-weight: 500; color: var(--mute); }
.xp-day strong { font-size: 18px; font-weight: 400; font-variant-numeric: tabular-nums; }
.xp-day span { font-size: 12.5px; color: var(--mute); }

.xp-day:hover:not(:disabled) { border-color: var(--ink); }
.xp-day.is-active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.xp-day:disabled { opacity: 0.4; cursor: not-allowed; }

.xp-slot-group { margin-bottom: 16px; }
.xp-slot-group .tag { display: block; margin-bottom: 8px; }

.chip.is-taken { position: relative; opacity: 0.42; }
.chip.is-taken i {
  font-style: normal;
  font-size: 12.5px;


  display: block;
  line-height: 1;
  margin-top: 1px;
}

/* — 04 · L'aperçu WhatsApp — */

.wa-preview {
  max-width: 430px;
  border: 1px solid var(--hairline);
  background: var(--white);
  overflow: hidden;
}

.wa-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hairline);
}

.wa-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink) url("../assets/img/brand/eye.png") center / 60% no-repeat;
}

.wa-who { display: grid; line-height: 1.25; }
.wa-who strong { font-size: 13px; font-weight: 600; }
.wa-who em { font-style: normal; font-size: 13px; color: var(--mute); }

.wa-thread { padding: 18px 16px 22px; background: var(--paper); }

.wa-bubble {
  display: inline-block;
  max-width: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 10px 10px 10px 2px;
  font-size: 12.5px;
  line-height: 1.65;
  white-space: pre-wrap;
  box-shadow: 0 1px 0 rgb(17 17 16 / 0.03);
}

.xp-actions-done { justify-content: flex-start; border-top: none; padding-top: 0; }

/* — La carte de rendez-vous — */

.xp-ticket {
  position: sticky;
  top: 96px;
  border: 1px solid var(--hairline-strong);
  background: var(--white);
  padding: clamp(20px, 2.4vw, 30px);
}

.xp-ticket::before,
.xp-ticket::after {
  content: "";
  position: absolute;
  top: -1px; bottom: -1px;
  width: 1px;
  background: var(--hairline);
}
.xp-ticket::before { left: 8px; }
.xp-ticket::after { right: 8px; }

.ticket-brand { height: 14px; width: auto; margin-bottom: 16px; }

.ticket-ref {

  font-size: 15px;

  margin: 10px 0 16px;
  min-height: 1.4em;
}

.ticket-status {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--mute);
}

/* — Responsive — */

@media (max-width: 1100px) {
  .xp { grid-template-columns: minmax(0, 1fr) 300px; }
  .xp-rail {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .xp-step { border-bottom-width: 2px; padding: 8px 0; }
  .xp-step span { display: none; }
}

@media (max-width: 780px) {
  .xp { grid-template-columns: 1fr; }
  .xp-ticket { position: static; order: 3; }
  .xp-actions { flex-wrap: wrap; }
  .xp-actions .btn { flex: 1; justify-content: center; }
}
