/* =====================================================================
   C'Biche Beauty Club — homepage
   ===================================================================== */

:root {
  /* — colour — */
  --cream:    #F7F2EB;
  --cream-2:  #F1E7DB;
  --paper:    #FBF8F3;
  --ink:      #221C1D;
  --ink-2:    #3B302E;
  --muted:    #7A6B62;
  --rose:     #C2767B;
  --rose-deep:#A8566A;
  --blush:    #EBD8D2;
  --line:     rgba(34, 28, 29, .12);
  --line-2:   rgba(34, 28, 29, .07);

  --brand-grad: linear-gradient(100deg,
      #E94F37 0%, #D7407E 20%, #9B5BB8 40%,
      #4E8DD0 58%, #3FB6A9 72%, #8FC94F 86%, #F3C53F 100%);

  /* — type — */
  --serif:  "Isabel Condensed", Georgia, "Times New Roman", serif;
  --script: "Pinyon Script", "Snell Roundhand", cursive;
  --sans:   "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* — metrics — */
  --maxw: 1180px;
  --pad: clamp(1.25rem, 5vw, 4rem);
  --nav-h: 74px;
  --r-card: 20px;
}

/* — @font-face — */
@font-face {
  font-family: "Isabel Condensed";
  src: url("assets/font/IsabelCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Isabel Condensed";
  src: url("assets/font/IsabelCondensed-Regular-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Isabel Condensed";
  src: url("assets/font/IsabelCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Isabel Condensed";
  src: url("assets/font/IsabelCondensed-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------- reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
[hidden] { display: none !important; }
:where(section) { scroll-margin-top: var(--nav-h); }

svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* --------------------------- a11y helpers ------------------------ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--ink); color: var(--cream); padding: .7rem 1.1rem;
  border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 3px; }

/* ------------------------- shared typography --------------------- */
.eyebrow {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 600;
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--rose);
  display: inline-block; opacity: .8;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 26px; height: 1px; background: var(--rose); opacity: .8;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--rose-deep);
  line-height: .9;
}

.sec-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: .04em;
}

.sec-head { margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.sec-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}

/* ------------------------------ buttons -------------------------- */
.btn {
  --bg: var(--ink); --fg: var(--cream); --bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 1.05em 1.7em; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  border: 1px solid var(--bd);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--rose   { --bg: var(--rose); --fg: #fff; box-shadow: 0 10px 24px -12px rgba(168, 86, 106, .8); }
.btn--rose:hover { --bg: var(--rose-deep); box-shadow: 0 16px 30px -12px rgba(168, 86, 106, .85); }

.btn--ghost  { --bg: transparent; --fg: var(--ink); --bd: rgba(34,28,29,.4); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--cream); --bd: var(--ink); }

.btn--outline { --bg: transparent; --fg: var(--ink); --bd: var(--line); padding: .9em 1.5em; }
.btn--outline:hover { --bd: var(--rose); --fg: var(--rose-deep); }

.ico-sm { width: 16px; height: 16px; flex: none; }

.btn--badge { padding-right: .5em; }
.badge {
  font-size: .72rem; letter-spacing: .04em;
  background: rgba(255,255,255,.92); color: var(--rose-deep);
  padding: .3em .6em; border-radius: 999px; font-weight: 700;
}

/* =============================== NAV ============================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(247, 242, 235, 0);
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.nav__inner {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav__logo { height: 48px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a:not(.btn) {
  font-size: .82rem; letter-spacing: .06em; font-weight: 500; color: var(--ink-2);
  position: relative; padding: .3rem 0;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--rose-deep); transition: width .3s ease;
}
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__cta { padding: .8em 1.4em; font-size: .72rem; }

.nav__thread {
  display: block; height: 2px; width: 100%;
  background: var(--brand-grad); opacity: 0;
  transition: opacity .4s ease;
}
.nav.is-scrolled::before {
  background: rgba(247, 242, 235, .85);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line-2);
}
.nav.is-scrolled .nav__thread { opacity: .9; }

.nav__toggle { display: none; width: 30px; height: 24px; position: relative; }
.nav__toggle span {
  position: absolute; left: 0; height: 2px; width: 100%; background: var(--ink);
  border-radius: 2px; transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.nav__toggle span:nth-child(1) { top: 2px; }
.nav__toggle span:nth-child(2) { top: 11px; }
.nav__toggle span:nth-child(3) { top: 20px; }
.nav.is-open .nav__toggle span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* =============================== HERO =========================== */
.hero {
  position: relative; min-height: min(100svh, 900px);
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 65% center;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(216,195,182,.92) 0%, rgba(216,195,182,.75) 35%, rgba(216,195,182,.2) 55%, transparent 70%);
}
.hero__content {
  position: relative; z-index: 2;
  padding: clamp(2rem, 6vw, 5rem) var(--pad);
  padding-left: clamp(3rem, 12vw, 10rem);
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 640px;
}
.hero__subtitle,
.hero__cta {
  align-self: center;
}
.hero__title { margin-bottom: .6rem; }
.hero__logo-wrap { display: block; position: relative; }
.hero__logo { width: clamp(240px, 30vw, 400px); max-width: none; height: auto; display: block; }
@media (prefers-reduced-motion: no-preference) {
  .hero__logo-wrap { animation: logoReveal 1.15s cubic-bezier(.2,.75,.25,1) .15s both; }
}
@keyframes logoReveal {
  0%   { opacity: 0; transform: scale(.86) translateY(8px); filter: blur(14px); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}
.hero__tagline {
  font-family: var(--script); font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: var(--ink); margin-bottom: 1.5rem; line-height: 1.2;
  white-space: nowrap;
}
.hero__subtitle {
  font-family: var(--serif); font-style: italic; font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: var(--ink-2); margin-bottom: 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================= INTRO ============================ */
.intro {
  text-align: center;
  max-width: 760px; margin: 0 auto;
  padding: clamp(5rem, 11vw, 8.5rem) var(--pad) clamp(3rem, 7vw, 5rem);
}
.intro .eyebrow { margin-bottom: 1.6rem; }
.intro__lead {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.5rem); line-height: 1.32; letter-spacing: -.01em;
}
.intro__lead em { font-style: italic; color: var(--rose-deep); }
.intro__lead strong { font-weight: 700; color: var(--ink); }

/* ============================ BOOKING ========================== */
.booking {
  background: var(--cream-2);
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.booking .sec-head { max-width: var(--maxw); margin-inline: auto; text-align: center; }
.booking__off {
  display: inline-block; vertical-align: middle; transform: translateY(-.18em);
  margin-left: .35rem; font-family: var(--sans); font-size: .82rem; font-weight: 700;
  letter-spacing: .02em; color: #fff; background: var(--rose);
  padding: .3em .7em; border-radius: 999px;
}

/* ---- booking widget ---- */
.bw {
  position: relative; overflow: hidden;
  max-width: 780px; margin: 0 auto;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card);
  box-shadow: 0 34px 64px -36px rgba(34, 28, 29, .42);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.bw__thread { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand-grad); }

.bw__steps { display: flex; gap: .6rem; margin: .3rem 0 1.8rem; }
.bw__step {
  display: flex; align-items: center; gap: .55rem; flex: 1 1 0; min-width: 0;
  font-size: .82rem; font-weight: 500; color: var(--muted); white-space: nowrap;
}
.bw__num {
  display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; flex: none;
  background: #fff; border: 1px solid var(--line); color: var(--muted);
  font-size: .8rem; font-weight: 600; transition: background .25s, color .25s, border-color .25s;
}
.bw__step.is-active { color: var(--ink); }
.bw__step.is-active .bw__num { background: var(--rose); border-color: var(--rose); color: #fff; }
.bw__step.is-done .bw__num { background: var(--ink); border-color: var(--ink); color: #fff; }

.bw__panel { display: none; }
.bw__panel.is-active { display: block; animation: bwFade .35s ease; }
.bw__panel[data-panel="1"].is-active {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(1.2rem, 3vw, 2.2rem);
}
@keyframes bwFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.bw__label { font-weight: 600; font-size: .82rem; letter-spacing: .03em; margin-bottom: .8rem; color: var(--ink); }
.bw__label:not(:first-child) { margin-top: 1.6rem; }
.bw__opt { color: var(--muted); font-weight: 400; }
.bw__hint { font-size: .82rem; color: var(--muted); margin-top: .8rem; }

/* calendar */
.bw__cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.bw__cal-head strong { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; text-transform: capitalize; }
.bw__nav { width: 37px; height: 37px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: background .2s, color .2s, border-color .2s; }
.bw__nav svg { width: 16px; height: 16px; }
.bw__nav:hover:not(:disabled) { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.bw__nav:disabled { opacity: .28; cursor: default; }
.bw__weekdays, .bw__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.bw__weekdays { margin-bottom: 7px; }
.bw__weekdays span { text-align: center; font-size: .66rem; letter-spacing: .03em; text-transform: uppercase; color: var(--muted); }
.bw__day { aspect-ratio: 1; border-radius: 9px; border: 1px solid transparent; background: #fff; display: grid; place-items: center; font-size: .85rem; color: var(--ink); transition: background .15s, color .15s, border-color .15s; }
.bw__day.is-empty { background: none; }
.bw__day:hover:not(:disabled):not(.is-empty) { border-color: var(--rose); color: var(--rose-deep); }
.bw__day:disabled { color: rgba(34, 28, 29, .22); background: none; cursor: default; }
.bw__day.is-selected { background: var(--rose); color: #fff; border-color: var(--rose); font-weight: 600; }

.bw__slot-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
.bw__slots[data-empty="true"] .bw__slot-list { display: none; }
.bw__slot { padding: .65em .2em; border-radius: 9px; border: 1px solid var(--line); background: #fff; font-size: .85rem; color: var(--ink); transition: background .18s, color .18s, border-color .18s; }
.bw__slot:hover { border-color: var(--rose); color: var(--rose-deep); }
.bw__slot.is-selected { background: var(--rose); border-color: var(--rose); color: #fff; }

/* services + message */
.bw__services { display: flex; flex-wrap: wrap; gap: .6rem; }
.bw__chip { position: relative; cursor: pointer; }
.bw__chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.bw__chip span { display: inline-flex; padding: .7em 1.3em; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: .92rem; transition: background .2s, color .2s, border-color .2s; }
.bw__chip input:hover + span { border-color: var(--rose); }
.bw__chip input:checked + span { background: var(--rose); border-color: var(--rose); color: #fff; font-weight: 500; }
.bw__chip input:focus-visible + span { outline: 2px solid var(--rose-deep); outline-offset: 2px; }
.bw__textarea { width: 100%; font: inherit; font-size: .95rem; padding: .9rem 1rem; resize: vertical; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); }
.bw__textarea:focus { outline: none; border-color: var(--rose); }

/* conditional notices */
.bw__notice {
  margin-top: 1.4rem; padding: 1.2rem 1.4rem;
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--cream-2); animation: bwFade .35s ease;
}
.bw__notice-title {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.05rem; margin-bottom: .4rem; color: var(--ink);
}
.bw__notice-radios { display: flex; gap: .5rem; margin-top: .4rem; }
.bw__notice-radios input { position: absolute; opacity: 0; cursor: pointer; }
.bw__notice-msg { margin-top: .8rem; animation: bwFade .3s ease; }
.bw__notice-msg--warn {
  background: rgba(194, 118, 123, .1); border: 1px solid var(--rose);
  border-radius: 10px; padding: .8rem 1rem;
}
.bw__notice--conditions .bw__notice-body {
  font-size: .88rem; color: var(--muted); line-height: 1.65;
  margin-top: .6rem;
}
.bw__notice--conditions .bw__notice-body p { margin-bottom: .6rem; }
.bw__notice--conditions .bw__notice-body strong { color: var(--ink-2); }
.bw__notice-check {
  display: flex; align-items: flex-start; gap: .6rem;
  margin-top: 1rem; cursor: pointer;
  font-size: .88rem; font-weight: 500; color: var(--ink);
}
.bw__notice-check input[type="checkbox"] {
  width: 18px; height: 18px; flex: none;
  margin-top: 2px; accent-color: var(--rose);
}

/* sub-services */
.bw__sub-services { margin-top: .4rem; }
.bw__sub-group { animation: bwFade .3s ease; }
.bw__sub-label {
  font-size: .78rem; font-weight: 500; color: var(--muted);
  margin: .9rem 0 .5rem; letter-spacing: .02em;
}
.bw__sub-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.bw__chip--sm span { font-size: .82rem; padding: .55em 1em; }

/* coordinates */
.bw__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bw__field { display: flex; flex-direction: column; gap: .4rem; font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.bw__field input { font: inherit; font-weight: 400; font-size: .95rem; text-transform: none; letter-spacing: normal; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); }
.bw__field input:focus { outline: none; border-color: var(--rose); }
.bw__field input:user-invalid { border-color: #c1584e; }
.bw__consent { font-size: .82rem; color: var(--muted); margin-top: 1.2rem; line-height: 1.6; }
.bw__consent strong { color: var(--ink); }

/* confirmation */
.bw__done { text-align: center; padding: 1.5rem 0 .5rem; }
.bw__done-ico { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--rose); color: #fff; }
.bw__done-ico svg { width: 30px; height: 30px; stroke-width: 2.2; }
.bw__done h3 { font-family: var(--serif); font-weight: 500; font-size: 1.85rem; margin-bottom: .6rem; }
.bw__summary { font-size: 1.02rem; color: var(--ink-2); max-width: 32rem; margin: 0 auto; line-height: 1.6; }

/* footer */
.bw__foot { display: flex; align-items: center; gap: 1rem; margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--line-2); }
.bw__recap { flex: 1; font-size: .82rem; color: var(--muted); }
.bw__foot .btn { flex: none; }
.btn--rose:disabled { opacity: .4; cursor: not-allowed; box-shadow: none; transform: none; }

/* ========================== PRESTATIONS ======================== */
.presta {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7.5rem) var(--pad);
}
.arrow {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line); color: var(--ink);
  display: grid; place-items: center;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.arrow svg { width: 20px; height: 20px; }
.arrow:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.arrow:disabled { opacity: .3; cursor: default; }
.arrow:disabled:hover { background: none; color: var(--ink); border-color: var(--line); }

.presta__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: start;
}
.presta__col {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.presta__col:hover {
  border-color: var(--rose);
  box-shadow: 0 12px 32px -16px rgba(168, 86, 106, .2);
}
.presta__col-img { aspect-ratio: 4 / 3; overflow: hidden; }
.presta__col-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.presta__col:hover .presta__col-img img { transform: scale(1.05); }
.presta__col-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  padding: 1rem 1rem 0;
}
.presta__from {
  font-family: var(--sans); font-size: .72rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--rose-deep);
  padding: .3rem 1rem 0;
}
.presta__chips {
  display: flex; flex-wrap: wrap; gap: .35rem;
  padding: .8rem 1rem 1.1rem;
}
.presta__chip {
  font-size: .72rem; font-weight: 500; color: var(--ink-2);
  padding: .35em .7em; border-radius: 6px;
  background: var(--cream-2); border: 1px solid var(--line-2);
  line-height: 1.3;
  transition: border-color .2s, color .2s;
}
.presta__chip:hover { border-color: var(--rose); color: var(--rose-deep); }
.presta__cta { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* ========================= NAIL ART ============================= */
.nailart {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad) clamp(3rem, 6vw, 4.5rem);
}
.nailart__inner {
  display: grid; grid-template-columns: 280px 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden;
}
.nailart__img { height: 100%; }
.nailart__img img { width: 100%; height: 100%; object-fit: cover; }
.nailart__text { padding: clamp(1.2rem, 3vw, 2rem) clamp(1.2rem, 3vw, 2.5rem) clamp(1.2rem, 3vw, 2rem) 0; }
.nailart__title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  letter-spacing: .04em; line-height: 1.05;
  color: var(--ink); margin-bottom: 1rem;
}
.nailart__lead {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: var(--ink-2); line-height: 1.7;
}

/* ========================= LOCALISATION ======================== */
.localisation {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 6.5rem) var(--pad);
  background: var(--cream-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.localisation__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.localisation__bg-overlay {
  position: absolute; inset: 0;
  background: rgba(247, 242, 235, .75);
}
.localisation__content {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
  justify-items: center;
}
.localisation__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: 0 16px 48px -20px rgba(34, 28, 29, .18);
  display: flex; flex-direction: column;
  align-items: center; gap: .75rem;
  text-align: center; width: 100%;
  max-width: 400px;
}
.localisation__address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.15rem;
  text-align: center;
  line-height: 1.6;
  color: var(--ink);
}
.localisation__metro {
  display: flex; flex-direction: column; gap: .5rem;
  margin-top: .5rem;
}
.localisation__metro li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: var(--muted);
}
.localisation__metro-badge {
  display: grid; place-items: center;
  width: 22px; height: 22px; border-radius: 5px;
  background: var(--ink); color: #fff;
  font-size: .65rem; font-weight: 700;
  flex: none;
}
.localisation__metro-lines {
  font-weight: 600; color: var(--ink);
  min-width: 2rem;
}
.localisation__photo {
  width: clamp(220px, 22vw, 300px);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 16px 48px -20px rgba(34, 28, 29, .3);
}
.localisation__photo img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* =========================== PRODUITS ========================= */
.products {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--pad) clamp(3rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: 1fr minmax(0, 430px);
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.products__text { max-width: 30rem; }
.products .eyebrow { margin-bottom: 1.4rem; }
.products__script { font-size: 1.05em; }
.products__lead { margin-top: 1.4rem; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

.products__carousel { position: relative; }
.products__track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  border-radius: var(--r-card); scrollbar-width: none;
  box-shadow: 0 26px 50px -30px rgba(34, 28, 29, .5);
}
.products__track::-webkit-scrollbar { display: none; }
.prod {
  position: relative; flex: 0 0 100%; scroll-snap-align: center;
  aspect-ratio: 4 / 5; overflow: hidden;
}
.prod img { width: 100%; height: 100%; object-fit: cover; }
.prod::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(34,28,29,.55), transparent 45%); }
.prod__cap { position: absolute; left: 1.3rem; bottom: 1.1rem; z-index: 2; color: #fff; font-family: var(--serif); font-size: 1.3rem; font-weight: 500; }

.products__carousel .arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px;
  background: rgba(251, 248, 243, .92); border-color: transparent;
  box-shadow: 0 6px 16px -6px rgba(34, 28, 29, .5);
}
.products__carousel .arrow:hover { background: var(--ink); color: var(--cream); }
.prod-arrow--prev { left: .7rem; }
.prod-arrow--next { right: .7rem; }
.products__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.1rem; }
.products__dots button { width: 8px; height: 8px; border-radius: 999px; background: var(--line); transition: background .25s, width .25s; }
.products__dots button.is-active { background: var(--rose); width: 22px; }

/* =========================== INSTAGRAM ========================= */
.insta {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3rem, 6vw, 4rem) var(--pad) clamp(4.5rem, 10vw, 7rem);
}
.insta__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.2rem;
}
.insta__handle { font-style: italic; }
.insta__feed {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.5rem, 1.2vw, .9rem);
}
.insta__feed li { position: relative; }
.insta__feed a {
  display: block; position: relative; overflow: hidden; border-radius: 8px;
  aspect-ratio: 1 / 1;
}
.insta__feed img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s;
}
.insta__feed a::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34,28,29,.32), transparent 55%);
  opacity: 0; transition: opacity .35s;
}
.insta__ico {
  position: absolute; inset: 0; margin: auto; width: 30px; height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.6'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.2' cy='6.8' r='1' fill='%23fff' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0; transform: scale(.6); transition: opacity .35s, transform .35s; z-index: 2;
}
.insta__feed a:hover img { transform: scale(1.08); }
.insta__feed a:hover::after { opacity: 1; }
.insta__feed a:hover .insta__ico { opacity: 1; transform: scale(1); }

/* =========================== RÉASSURANCE ======================= */
.trust {
  background: var(--cream-2);
  border-top: 1px solid var(--line-2);
  padding: clamp(4rem, 9vw, 6.5rem) var(--pad) clamp(3rem, 6vw, 4.5rem);
}
.trust__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem);
}
.trust__item { text-align: center; max-width: 24rem; margin: 0 auto; }
.trust__ico {
  width: 52px; height: 52px; margin: 0 auto 1.2rem;
  display: grid; place-items: center; color: var(--rose-deep);
}
.trust__ico svg { width: 30px; height: 30px; stroke-width: 1.5; }
.trust__title { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin-bottom: .5rem; }
.trust__txt { font-size: .92rem; color: var(--muted); }
.trust__cgv {
  max-width: 540px; margin: clamp(2.5rem, 6vw, 4rem) auto 0; text-align: center;
  font-size: .86rem; color: var(--muted); padding-top: 2rem;
  border-top: 1px solid var(--line-2);
}
.trust__cgv a { color: var(--rose-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.trust__cgv a:hover { color: var(--ink); }

/* ============================= FOOTER ========================== */
.footer { position: relative; background: var(--ink); color: #D9CFC8; }
.footer__thread { display: block; height: 2px; width: 100%; background: var(--brand-grad); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad) 2.5rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer__brand { width: max-content; max-width: 100%; display: flex; flex-direction: column; align-items: center; }
.footer__logo { width: clamp(140px, 15vw, 180px); height: auto; }
.footer__tag { margin-top: 1.2rem; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #9A8C84; }
.footer__col h3 {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: #fff; font-weight: 600; margin-bottom: 1.1rem;
}
.footer__col p { font-size: .92rem; line-height: 1.8; margin-bottom: .6rem; }
.footer__col a:hover { color: #fff; }
.footer__social { display: flex; flex-direction: column; gap: .7rem; }
.footer__social a { display: inline-flex; align-items: center; gap: .6rem; font-size: .92rem; }
.footer__social a:hover { color: var(--rose); }
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.6rem var(--pad) 2.4rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .78rem; color: #9A8C84;
}
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a:hover { color: var(--rose); }

/* ============================== FAQ ============================ */
.faq {
  max-width: 680px; margin: 0 auto;
  padding: clamp(4rem, 9vw, 6.5rem) var(--pad) clamp(3rem, 6vw, 4.5rem);
}
.faq .sec-head { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.faq__list { display: flex; flex-direction: column; gap: .6rem; }
.faq__item {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--paper); overflow: hidden;
  transition: border-color .25s;
}
.faq__item[open] { border-color: var(--rose); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem; cursor: pointer;
  font-family: var(--serif); font-size: 1.08rem; font-weight: 500;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+"; flex: none; font-family: var(--sans);
  font-size: 1.3rem; font-weight: 300; color: var(--muted);
  transition: transform .3s ease;
}
.faq__item[open] .faq__q::after { content: "−"; transform: rotate(180deg); }
.faq__a {
  padding: 0 1.4rem 1.2rem;
  font-size: .94rem; color: var(--muted); line-height: 1.7;
}
.faq__more {
  text-align: center; margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

/* ========================= PAGE HEADER ======================== */
.page-header {
  padding: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4rem)) var(--pad) clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 1rem; }

/* ===================== SERVICE FAMILY (prestations page) ======= */
.svc-family {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}
.svc-family--alt { background: var(--cream-2); max-width: none; }
.svc-family--alt > .svc-family__head,
.svc-family--alt > .svc-grid,
.svc-family--alt > .svc-guide,
.svc-family--alt > .svc-info {
  max-width: var(--maxw); margin-left: auto; margin-right: auto;
}
.svc-family__head { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.svc-family__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: .04em;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--rose);
  display: inline-block;
}

.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.svc-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: clamp(1.2rem, 3vw, 1.8rem);
  display: flex; flex-direction: column; gap: .5rem;
  transition: border-color .25s, box-shadow .25s;
}
.svc-card:hover {
  border-color: var(--rose);
  box-shadow: 0 12px 32px -16px rgba(168, 86, 106, .2);
}
.svc-card__name {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.3;
}
.svc-card__tag {
  display: inline-block;
  font-family: var(--sans); font-size: .65rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--rose-deep); background: var(--blush);
  padding: .2em .55em; border-radius: 4px;
  vertical-align: middle; margin-left: .3rem;
}
.svc-card__price {
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; color: var(--rose-deep);
}
.svc-card__dur {
  font-weight: 400; color: var(--muted);
}
.svc-card__desc {
  font-size: .9rem; color: var(--muted); line-height: 1.65;
  flex: 1;
}
.svc-card .btn { margin-top: .5rem; align-self: flex-start; }
.btn--sm { padding: .75em 1.3em; font-size: .7rem; }

/* collapsible info bloc */
.svc-info {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line); border-radius: var(--r-card);
  background: var(--paper); overflow: hidden;
  transition: border-color .25s;
}
.svc-info[open] { border-color: var(--rose); }
.svc-info__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem; cursor: pointer;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 500;
  list-style: none;
}
.svc-info__toggle::-webkit-details-marker { display: none; }
.svc-info__toggle::after {
  content: "+"; flex: none; font-family: var(--sans);
  font-size: 1.3rem; font-weight: 300; color: var(--muted);
  transition: transform .3s ease;
}
.svc-info[open] .svc-info__toggle::after { content: "−"; transform: rotate(180deg); }
.svc-info__body {
  padding: 0 1.4rem 1.4rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.svc-info__item h4 {
  font-family: var(--serif); font-weight: 500; font-size: 1rem;
  margin-bottom: .4rem; color: var(--rose-deep);
}
.svc-info__item p {
  font-size: .88rem; color: var(--muted); line-height: 1.65;
}

/* guide table */
.svc-guide {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: clamp(1.2rem, 3vw, 1.8rem);
}
.svc-guide__title {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.15rem; margin-bottom: 1rem;
}
.svc-guide__table-wrap { overflow-x: auto; }
.svc-guide__table {
  width: 100%; border-collapse: collapse; font-size: .9rem;
}
.svc-guide__table th {
  text-align: left; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); padding: .6rem .8rem;
  border-bottom: 2px solid var(--line);
}
.svc-guide__table td {
  padding: .7rem .8rem; border-bottom: 1px solid var(--line-2);
  color: var(--ink-2); line-height: 1.5;
}
.svc-guide__table td:last-child { color: var(--rose-deep); font-weight: 500; }
.svc-guide__table tbody tr:last-child td { border-bottom: none; }

/* ===================== FAQ PAGE ================================ */
.faq-page {
  max-width: 760px; margin: 0 auto;
  padding: 0 var(--pad) clamp(3rem, 6vw, 4.5rem);
}
.faq-page + .faq-page { padding-top: clamp(1rem, 3vw, 2rem); }
.faq-page__cat {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: .04em;
  margin-bottom: clamp(1rem, 3vw, 1.8rem);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--rose);
  display: inline-block;
}
.faq-page__cat-sub {
  font-size: .65em; font-weight: 400; color: var(--muted);
  margin-left: .4rem;
}
.faq__steps {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: .6rem;
  counter-reset: faq-step;
}
.faq__steps li {
  counter-increment: faq-step;
  padding-left: 1.8rem; position: relative;
  font-size: .94rem; color: var(--muted); line-height: 1.7;
}
.faq__steps li::before {
  content: counter(faq-step) ")";
  position: absolute; left: 0; font-weight: 600; color: var(--rose-deep);
}

/* ============================ reveal =========================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* =========================== RESPONSIVE ======================== */
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer__brand { grid-column: 1 / -1; }
  .trust__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .presta__grid { grid-template-columns: repeat(2, 1fr); }
  .localisation__content { grid-template-columns: 1fr; justify-items: center; }
  .localisation__photo { width: clamp(200px, 50vw, 280px); }
  .nailart__inner { grid-template-columns: 200px 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }

  /* mobile nav drawer */
  .nav__toggle { display: block; z-index: 30; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.8rem; padding: 2rem var(--pad);
    background: var(--cream); box-shadow: -20px 0 60px -30px rgba(0,0,0,.4);
    transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.1,1);
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links a:not(.btn) { font-size: 1.15rem; }
  .nav__cta { margin-top: .5rem; }

  .nav::after {
    content: ""; position: fixed; inset: 0; z-index: 0;
    background: rgba(34, 28, 29, .38);
    opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s;
  }
  .nav.is-open::after { opacity: 1; visibility: visible; }

  .hero { min-height: 80svh; }
  .hero__bg { object-position: 60% center; }
  .hero__overlay { background: linear-gradient(to right, rgba(216,195,182,.95) 0%, rgba(216,195,182,.85) 50%, rgba(216,195,182,.4) 75%, transparent 100%); }
  .hero__content { max-width: none; padding: clamp(3rem, 8vw, 5rem) var(--pad); padding-left: var(--pad); }
  .hero__logo { width: clamp(200px, 55vw, 320px); }

  .bw__panel[data-panel="1"].is-active { grid-template-columns: 1fr; }
  .bw__fields { grid-template-columns: 1fr; }
  .bw__steps { gap: .4rem; }
  .bw__step { font-size: 0; gap: 0; flex: none; }
  .bw__step .bw__num { font-size: .8rem; }
  .bw__foot { flex-wrap: wrap; }
  .bw__recap { order: -1; flex-basis: 100%; }
  .bw__foot .btn { flex: 1 1 auto; }

  .presta__grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-info__body { grid-template-columns: 1fr; }
  .nailart__inner { grid-template-columns: 1fr; }
  .nailart__img { max-height: 220px; }
  .nailart__text { padding: 1.2rem; }

  .products { grid-template-columns: 1fr; gap: 2.5rem; }
  .products__carousel { max-width: 380px; margin-inline: auto; width: 100%; }

  .insta__feed {
    grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 64%;
    overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(var(--pad) * -1); padding: 0 var(--pad) .5rem;
    scrollbar-width: none;
  }
  .insta__feed::-webkit-scrollbar { display: none; }
  .insta__feed li { scroll-snap-align: start; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .footer__inner { grid-template-columns: 1fr; }
}
