/* =========================================================
   The Blush Nail Bar — Rabat
   Design system (bespoke, single shared stylesheet)
   Beige base, cherry-red accent, editorial serif + Montserrat
   ========================================================= */

:root {
  /* Brand palette (from the Design Kit) */
  --cherry: #B4151B;       /* primary brand red */
  --cherry-deep: #8E0F14;  /* darker red for hovers / depth */
  --rose: #C97B73;         /* dusty rose */
  --blush: #E9B9B4;        /* soft blush */
  --nude: #EFE3D8;         /* warm nude */
  --charcoal: #211B1B;     /* near-black text */

  /* Surfaces */
  --bg: #F4EAE1;           /* main beige background */
  --bg-warm: #EFE2D6;      /* slightly deeper beige band */
  --bg-soft: #FBF4EE;      /* lightest panel */
  --line: #E2D2C5;         /* hairline on beige */
  --line-soft: #EAD9CC;

  --ink: #211B1B;          /* body text */
  --ink-soft: #6E5F58;     /* muted text */
  --ink-faint: #A3938A;    /* faint labels */

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  /* Geometry */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --slow: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
html, body { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; overflow: hidden; }
.section--tight { padding: clamp(48px, 7vw, 96px) 0; }
.bg-warm { background: var(--bg-warm); }
.bg-soft { background: var(--bg-soft); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cherry);
  display: inline-block;
}
.eyebrow--muted { color: var(--ink-faint); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.display em { font-style: italic; color: var(--cherry); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--charcoal); }

.lead {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--cherry);
  color: #fff;
  box-shadow: 0 14px 34px -16px rgba(142, 15, 20, 0.65);
}
.btn--primary:hover { background: var(--cherry-deep); transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(142, 15, 20, 0.7); }
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn--ghost:hover { background: var(--charcoal); color: var(--nude); transform: translateY(-2px); }
.btn--light {
  background: #fff;
  color: var(--cherry);
  border: 1px solid var(--line-soft);
}
.btn--light:hover { background: var(--cherry); color: #fff; border-color: var(--cherry); transform: translateY(-2px); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cherry);
  position: relative;
  padding-bottom: 3px;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--cherry);
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* =========================================================
   Header / Nav  (centered logo, Jolene register)
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(244, 234, 225, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(244, 234, 225, 0.94); }
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  height: 104px;
}
.nav__left, .nav__right {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.6rem);
}
.nav__right { justify-content: flex-end; }
.nav__link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--cherry);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--cherry); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--cherry); }

.nav__brand { justify-self: center; display: flex; align-items: center; }
.nav__brand img { height: 74px; width: auto; }

.nav__cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85em 1.6em;
  border-radius: var(--radius-pill);
  background: var(--cherry);
  color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover { background: var(--cherry-deep); transform: translateY(-1px); }

.nav__toggle { display: none; width: 30px; height: 22px; position: relative; }
.nav__toggle span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: var(--charcoal); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 2px; }
.nav__toggle span:nth-child(2) { top: 10px; }
.nav__toggle span:nth-child(3) { top: 18px; }
body.nav-open .nav__toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 86px 0 0 0;
  background: var(--bg);
  z-index: 70;
  padding: 2.5rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
body.nav-open .mobile-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.9rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--cherry); padding-left: 8px; }
.mobile-menu .btn { margin-top: 1.6rem; justify-content: center; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
}
.hero__copy { position: relative; z-index: 2; }
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  margin: 1.1rem 0 0;
  overflow-wrap: break-word;
}
.hero__title .word { display: inline-block; }
.hero__slogan {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--cherry);
  margin-top: 0.5rem;
}
.hero__text { margin-top: 1.6rem; max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }

.hero__media { position: relative; }
.hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(33, 27, 27, 0.45);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__seal {
  position: absolute;
  bottom: -26px; left: -26px;
  width: 118px; height: 118px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 20px 40px -18px rgba(33, 27, 27, 0.4);
  z-index: 3;
}
.hero__seal img { width: 76%; height: auto; }

/* polish-splat decorative accents on photos */
.splat {
  position: absolute;
  width: 86px; height: auto;
  pointer-events: none;
  z-index: 4;
  opacity: 0.92;
  filter: drop-shadow(0 6px 10px rgba(142, 15, 20, 0.18));
}

/* =========================================================
   Marquee strip (brand slogan, polish motif)
   ========================================================= */
.strip {
  background: var(--cherry);
  color: var(--nude);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip__track {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.strip__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.strip__track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blush); flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   Section heading block
   ========================================================= */
.head { max-width: 720px; }
.head--center { margin: 0 auto; text-align: center; }
.head__title { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-top: 1rem; }
.head__sub { margin-top: 1.1rem; }
.head--center .head__sub { margin-left: auto; margin-right: auto; }

/* =========================================================
   Services (editorial list with roman numerals)
   ========================================================= */
.soins-list { margin-top: clamp(2.4rem, 4vw, 3.6rem); border-top: 1px solid var(--line); }
.soin {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(0.6rem, 2vw, 1.8rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .45s var(--ease), padding-left .45s var(--ease), color .45s var(--ease);
}
.soin > div { min-width: 0; }
.soin__desc { overflow-wrap: break-word; }
.soin::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--cherry);
  transform: scaleY(0); transform-origin: top;
  transition: transform .45s var(--ease);
}
.soin:hover { background: var(--cherry); color: #fff; }
.soin:hover::before { transform: scaleY(1); }
.soin:hover .soin__num,
.soin:hover .soin__name,
.soin:hover .soin__desc,
.soin:hover .soin__meta,
.soin:hover .soin__price { color: #fff; }
.soin:hover .soin__cta { background: #fff; color: var(--cherry); border-color: #fff; }
.soin__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-faint);
  transition: color .45s var(--ease);
}
.soin__name { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--charcoal); transition: color .45s var(--ease); }
.soin__name em { font-style: italic; color: var(--cherry); transition: color .45s var(--ease); }
.soin__desc { font-size: 0.94rem; color: var(--ink-soft); margin-top: 0.35rem; max-width: 54ch; transition: color .45s var(--ease); }
.soin__right { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); justify-self: end; }
.soin__meta { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); transition: color .45s var(--ease); white-space: nowrap; }
.soin__price { font-family: var(--serif); font-size: 1.3rem; color: var(--charcoal); transition: color .45s var(--ease); white-space: nowrap; }
.soin__price small { font-family: var(--sans); font-size: 0.62em; letter-spacing: 0.1em; color: var(--ink-faint); transition: color .45s var(--ease); }
.soin__cta {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.7em 1.2em; border-radius: var(--radius-pill);
  border: 1px solid var(--cherry); color: var(--cherry); background: transparent;
  transition: all .4s var(--ease); white-space: nowrap;
}

/* Category grouping on the Nos soins page */
.soin-group { margin-top: clamp(3rem, 5vw, 4.5rem); }
.soin-group__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  color: var(--cherry);
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
}
.soin-group__title span { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); }

/* =========================================================
   Aperçu cards (home — soins preview)
   ========================================================= */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
}
.pcard {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-soft);
  transition: transform .5s var(--slow), box-shadow .5s var(--slow);
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -28px rgba(33,27,27,0.4); }
.pcard__img { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--slow); }
.pcard:hover .pcard__img img { transform: scale(1.06); }
.pcard__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,27,27,0) 46%, rgba(33,27,27,0.55) 100%);
  transition: opacity .5s var(--ease), background .5s var(--ease);
}
.pcard:hover .pcard__veil { background: linear-gradient(180deg, rgba(142,15,20,0) 26%, rgba(142,15,20,0.45) 62%, rgba(142,15,20,0.94) 100%); }
.pcard__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; z-index: 2; color: #fff; }
.pcard__name { font-family: var(--serif); font-size: 1.35rem; color: #fff; }
.pcard__desc {
  font-size: 0.86rem; color: rgba(255,255,255,0.92); margin-top: 0.4rem;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s var(--ease), opacity .4s var(--ease), margin .4s var(--ease);
}
.pcard:hover .pcard__desc { max-height: 120px; opacity: 1; }

/* =========================================================
   Founder / signature
   ========================================================= */
.founder { position: relative; overflow: hidden; }
.founder__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.founder__media { position: relative; }
.founder__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 38px 70px -42px rgba(33,27,27,0.5);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__seal {
  position: absolute;
  top: -22px; right: -18px;
  width: 124px; height: 124px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 18px 40px -18px rgba(33,27,27,0.4);
  border: 1px solid var(--line-soft);
}
.founder__seal img { width: 74%; }
.founder__title { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 0; }
.founder__quote { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink); margin-top: 1.4rem; line-height: 1.5; }
.founder__text { margin-top: 1.3rem; color: var(--ink-soft); max-width: 52ch; }
.founder__sign { margin-top: 2.2rem; }
.founder__signature {
  font-family: "Allura", cursive;
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 0.8;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.founder__sign-role { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.3rem; }

/* =========================================================
   Reviews (premium citations)
   ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(2.6rem, 4vw, 3.6rem);
}
.review {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  position: relative;
  transition: transform .5s var(--slow), box-shadow .5s var(--slow), border-color .5s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: 0 26px 46px -28px rgba(33,27,27,0.3); border-color: var(--blush); }
.review__mark { font-family: var(--serif); font-size: 3.4rem; line-height: 0.6; color: var(--cherry); opacity: 0.85; }
.review__text { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--ink); margin-top: 0.8rem; line-height: 1.55; }
.review__author { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.6rem; }
.review__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cherry); }
.review__name { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); }

/* =========================================================
   Gallery (3-column infinite vertical carousel)
   ========================================================= */
.gallery-stage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  height: clamp(520px, 80vh, 780px);
  overflow: hidden;
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}
.gcol { position: relative; overflow: hidden; }
.gcol__track {
  display: flex;
  flex-direction: column;
  /* no flex gap here: the seamless loop needs uniform spacing, including after
     the last item, so we use margin-bottom on .gitem instead (see below). */
  will-change: transform;
  transform: translateZ(0);
}
.gcol--down .gcol__track { animation: scroll-down 40s linear infinite; }
.gcol--up .gcol__track { animation: scroll-up 40s linear infinite; }
.gallery-stage:hover .gcol__track { animation-play-state: paused; }
@keyframes scroll-up { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes scroll-down { from { transform: translateY(-50%); } to { transform: translateY(0); } }
.gitem {
  position: relative; border-radius: var(--radius); overflow: hidden;
  flex: 0 0 auto;
  margin-bottom: clamp(14px, 1.6vw, 22px); /* uniform spacing -> 50% loop is seamless */
  background: var(--nude);
  aspect-ratio: 4 / 5; /* every carreau filled, even if a source ratio differs */
}
.gitem img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--slow); }
.gitem::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(142,15,20,0); transition: background .5s var(--ease);
}
.gitem:hover img { transform: scale(1.05); }
.gitem:hover::after { background: rgba(142,15,20,0.12); }

/* =========================================================
   Reservation form
   ========================================================= */
.reserve { position: relative; overflow: hidden; }
.reserve__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.reserve__aside-title { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 1rem 0 0; }
.reserve__solo { max-width: 720px; margin: 0 auto; text-align: center; }
.reserve__steps { margin-top: 2.2rem; display: grid; gap: 1.3rem; }
.reserve__steps--center { max-width: 620px; margin-left: auto; margin-right: auto; margin-top: 2.6rem; text-align: left; gap: 1.1rem; }
.reserve__steps--center .rstep { padding: 1rem 1.2rem; background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: 14px; }
.rstep { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.rstep__n { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--cherry); line-height: 1.1; }
.rstep__t { font-weight: 600; color: var(--charcoal); font-size: 0.95rem; }
.rstep__d { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.15rem; }

.form {
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  box-shadow: 0 30px 60px -42px rgba(33,27,27,0.4);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-top: 1.1rem; }
.field:first-child { margin-top: 0; }
.field label {
  display: block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.95em 1.1em;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cherry);
  box-shadow: 0 0 0 4px rgba(180, 21, 27, 0.1);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B4151B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1em center; padding-right: 2.6em; }
.form__submit { margin-top: 1.6rem; width: 100%; justify-content: center; }
.form__note { font-size: 0.78rem; color: var(--ink-faint); margin-top: 1rem; text-align: center; }
.field__error { color: var(--cherry); font-size: 0.75rem; margin-top: 0.4rem; display: none; }
.field.invalid input, .field.invalid select { border-color: var(--cherry); }
.field.invalid .field__error { display: block; }
.field.invalid .slots { outline: 1px solid var(--cherry); outline-offset: 4px; border-radius: var(--radius); }

/* Selected-soin banner (shown when arriving from a soin) */
.form__pick {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem 0.8rem;
  background: var(--blush); border: 1px solid rgba(180,21,27,0.18);
  border-radius: var(--radius); padding: 0.85rem 1.1rem; margin-bottom: 1.3rem;
  animation: pick-in .5s var(--slow) both;
}
@keyframes pick-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.form__pick-label { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cherry-deep); }
.form__pick-value { font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--charcoal); margin-right: auto; }
.form__pick-change { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cherry); text-decoration: underline; text-underline-offset: 3px; }
.form__pick-change:hover { color: var(--cherry-deep); }

/* Créneau chip selector */
.slots { display: flex; flex-wrap: wrap; gap: 0.55rem; align-items: center; }
.slot-group {
  width: 100%; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-faint); margin: 0.5rem 0 0.1rem;
}
.slot-group:first-child { margin-top: 0; }
.slot {
  font-family: var(--sans); font-size: 0.85rem; font-weight: 500;
  color: var(--ink); background: #fff;
  border: 1px solid var(--line-soft); border-radius: var(--radius-pill);
  padding: 0.6em 1.05em; transition: all .25s var(--ease);
  font-variant-numeric: tabular-nums;
}
.slot:hover { border-color: var(--cherry); color: var(--cherry); transform: translateY(-1px); }
.slot.selected { background: var(--cherry); border-color: var(--cherry); color: #fff; box-shadow: 0 8px 20px -10px rgba(142,15,20,0.6); }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; margin-top: clamp(2.4rem, 4vw, 3.4rem); }
.info-list { display: grid; gap: 1.6rem; }
.info {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  padding-bottom: 1.6rem; border-bottom: 1px solid var(--line);
}
.info:last-child { border-bottom: 0; padding-bottom: 0; }
.info__icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--blush); color: var(--cherry-deep); flex: 0 0 auto; }
.info__icon svg { width: 19px; height: 19px; }
.info__label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.info__value { font-size: 1.02rem; color: var(--charcoal); margin-top: 0.25rem; }
.info__value a:hover { color: var(--cherry); }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.92rem; padding: 0.35rem 0; }
.hours-row span:first-child { color: var(--ink-soft); }
.hours-row span:last-child { color: var(--charcoal); font-variant-numeric: tabular-nums; }

.whatsapp-cta {
  display: inline-flex; align-items: center; gap: 0.7em;
  background: var(--cherry); color: #fff;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1.05em 2em; border-radius: var(--radius-pill);
  box-shadow: 0 14px 34px -16px rgba(142,15,20,0.6);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.whatsapp-cta:hover { background: var(--cherry-deep); transform: translateY(-2px); }
.whatsapp-cta svg { width: 19px; height: 19px; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: 0 24px 50px -36px rgba(33,27,27,0.4); }
.map-frame iframe { display: block; width: 100%; }

/* =========================================================
   CTA band
   ========================================================= */
.ctaband { background: var(--cherry); color: var(--nude); text-align: center; position: relative; overflow: hidden; }
.ctaband__title { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); }
.ctaband__title em { color: var(--blush); font-style: italic; }
.ctaband p { color: rgba(255,255,255,0.85); margin: 1.1rem auto 2rem; max-width: 48ch; }
.ctaband .btn--light { background: #fff; color: var(--cherry); }
.ctaband .btn--light:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: clamp(56px, 7vw, 84px) 0 2.4rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(28px, 5vw, 60px); }
.footer__seal {
  display: inline-grid; place-items: center;
  width: 104px; height: 104px;
  background: var(--bg-soft);
  border-radius: 50%;
  box-shadow: 0 16px 36px -18px rgba(0,0,0,0.5);
}
.footer__seal img { width: 78%; height: auto; }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--blush); margin-top: 1.3rem; }
.footer__col h4 { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1.1rem; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,0.78); font-size: 0.94rem; padding: 0.3rem 0; transition: color .3s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: clamp(40px, 5vw, 60px); padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; }
.footer__credit a { color: rgba(255,255,255,0.55); transition: color .3s var(--ease); }
.footer__credit a:hover { color: var(--blush); }

/* =========================================================
   Decorative botanical line-art
   ========================================================= */
.botanic { position: absolute; pointer-events: none; z-index: 0; color: var(--cherry); opacity: 0.13; }
.botanic svg { width: 100%; height: 100%; }
.botanic--tr { top: -10px; right: -30px; width: clamp(180px, 26vw, 360px); }
.botanic--bl { bottom: -20px; left: -40px; width: clamp(160px, 22vw, 300px); transform: scaleX(-1); }
.section > .wrap { position: relative; z-index: 1; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--slow), transform .8s var(--slow); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; max-width: 460px; }
  .founder__inner { grid-template-columns: 1fr; gap: 48px; }
  .founder__media { max-width: 440px; }
  .reserve__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__left, .nav__right .nav__link, .nav__right .nav__cta { display: none; }
  /* keep 3 columns so the logo stays centered; empty left spacer balances the toggle */
  .nav { grid-template-columns: 1fr auto 1fr; height: 88px; }
  .nav__left { display: block; visibility: hidden; }
  .nav__brand { justify-self: center; }
  .nav__brand img { height: 62px; }
  .nav__right { gap: 0.8rem; justify-content: flex-end; }
  .nav__toggle { display: block; }
  .mobile-menu { inset: 88px 0 0 0; }
  .gallery-stage { grid-template-columns: repeat(2, 1fr); height: clamp(520px, 76vh, 680px); }
  .soin { grid-template-columns: 40px 1fr; row-gap: 0.8rem; }
  .soin__right { grid-column: 1 / -1; justify-self: start; justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 540px) {
  .preview-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .form__row { grid-template-columns: 1fr; }
  .hero__seal { width: 88px; height: 88px; bottom: -16px; left: -12px; }
  .strip__track span { font-size: 1rem; }
  /* drop blur on small screens for smoother paint */
  .reveal, [data-stagger] > * { filter: none !important; }
  .reveal { transform: translateY(24px); }
}

/* =========================================================
   Tablet (768 - 980)  — the pitch surface, polish it
   ========================================================= */
@media (min-width: 761px) and (max-width: 980px) {
  .preview-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .gallery-stage { height: clamp(520px, 64vh, 700px); }
  .hero__inner { gap: 48px; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
}

/* =========================================================
   Premium pass — animation visibility + richer reveals
   ========================================================= */

/* Image load-in fade (set by JS once decoded) */
.img-fade { opacity: 0; transform: scale(1.03); transition: opacity 1s var(--slow), transform 1.2s var(--slow); }
.img-fade.loaded { opacity: 1; transform: none; }

/* Reveal variants — more visible, with blur lift */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity .9s var(--slow), transform .9s var(--slow), filter .9s var(--slow); }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal.d1 { transition-delay: .10s; }
.reveal.d2 { transition-delay: .20s; }
.reveal.d3 { transition-delay: .30s; }
.reveal.d4 { transition-delay: .40s; }
.reveal.d5 { transition-delay: .50s; }

/* Auto-stagger children of a [data-stagger] container */
[data-stagger] > * { opacity: 0; transform: translateY(30px) scale(.99); filter: blur(5px); transition: opacity .8s var(--slow), transform .8s var(--slow), filter .8s var(--slow); }
[data-stagger].in > * { opacity: 1; transform: none; filter: blur(0); }

/* Section headings get an accent line that draws in */
.head .head__title, .founder__title, .reserve__aside-title, .ctaband__title { position: relative; }

/* Eyebrow gets a small drawing rule before it */
.eyebrow { position: relative; padding-left: 0; }
.head .eyebrow::before, .founder__copy .eyebrow::before, .reserve__aside .eyebrow::before {
  content: ""; display: inline-block; width: 0; height: 1px; background: var(--cherry);
  vertical-align: middle; margin-right: 0; opacity: 0;
  transition: width .7s var(--slow) .15s, opacity .5s var(--ease) .15s;
}
.reveal.in .eyebrow::before, .head.in .eyebrow::before { width: 28px; opacity: 1; margin-right: 12px; }

/* Button sheen on hover */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg); transition: left .7s var(--ease); pointer-events: none;
}
.btn:hover::after { left: 140%; }
.btn--ghost::after { background: linear-gradient(100deg, transparent, rgba(180,21,27,0.14), transparent); }

/* Cards lift a touch more + smoother */
.pcard, .review { will-change: transform; }

/* Marquee a hair slower + subtle gradient edges already masked by overflow */
.strip__track { animation-duration: 34s; }

/* Floating polish seal idle motion (very subtle) */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hero__seal, .founder__seal { animation: floaty 6s ease-in-out infinite; }
  .founder__seal { animation-duration: 7s; animation-delay: .8s; }
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* Splat gentle drift */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .hero__frame .splat { animation: splat-in 1.2s var(--slow) .6s both; }
}
@keyframes splat-in { from { opacity: 0; transform: scale(.4) rotate(-12deg); } to { opacity: .92; transform: none; } }

/* Header brand subtle entrance */
.nav__brand img { transition: transform .4s var(--ease); }
.nav__brand:hover img { transform: scale(1.04); }

/* =========================================================
   Touch / mobile fluidity tightening
   ========================================================= */
@media (hover: none) {
  /* calmer transforms on touch, no hover-stuck states */
  .pcard:active { transform: translateY(-3px); }
  .header { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .btn:hover, .pcard:hover, .review:hover { transform: none; }
  .pcard:hover .pcard__img img { transform: none; }
  /* gallery keeps animating but no hover-pause trap on touch */
  .gallery-stage:hover .gcol__track { animation-play-state: running; }
  /* reveal the card desc by default on touch (no hover to trigger it) */
  .pcard__desc { max-height: 120px; opacity: 1; }
  .pcard__veil { background: linear-gradient(180deg, rgba(33,27,27,0) 38%, rgba(142,15,20,0.55) 100%); }
}

/* iOS: avoid 100vh jump, smoother momentum */
@supports (height: 100svh) {
  .mobile-menu { inset: 88px 0 0 0; height: calc(100svh - 88px); }
}

/* =========================================================
   Booking modal (3-step wizard)
   ========================================================= */
.bkg { position: fixed; inset: 0; z-index: 200; display: none; }
.bkg.open { display: block; }
.bkg__overlay {
  position: absolute; inset: 0;
  background: rgba(33, 22, 22, 0.55);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .35s var(--ease);
}
.bkg.in .bkg__overlay { opacity: 1; }
.bkg__dialog {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.98);
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100svh - 40px);
  background: var(--bg-soft);
  border-radius: 20px;
  box-shadow: 0 50px 110px -30px rgba(33, 22, 22, 0.6);
  opacity: 0;
  transition: opacity .4s var(--slow), transform .4s var(--slow);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.bkg.in .bkg__dialog { opacity: 1; transform: translate(-50%, -50%) scale(1); }

.bkg__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.6rem, 3.5vw, 2.6rem) 0;
}
.bkg__eyebrow { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--cherry); }
.bkg__title { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.1rem); color: var(--charcoal); margin-top: 0.4rem; font-weight: 500; }
.bkg__close {
  width: 38px; height: 38px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center; color: var(--ink-soft);
  border: 1px solid var(--line-soft); background: #fff;
  transition: all .25s var(--ease);
}
.bkg__close:hover { color: var(--cherry); border-color: var(--cherry); transform: rotate(90deg); }
.bkg__close svg { width: 16px; height: 16px; }

/* step progress */
.bkg__steps { display: flex; gap: 0.5rem; padding: 1.2rem clamp(1.6rem, 3.5vw, 2.6rem) 0; }
.bkg__steps .dot { flex: 1; height: 3px; border-radius: 3px; background: var(--line); transition: background .4s var(--ease); }
.bkg__steps .dot.active { background: var(--cherry); }
.bkg__steps .dot.done { background: var(--rose); }

.bkg__body {
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.6rem, 3.5vw, 2.6rem) clamp(1.6rem, 3.5vw, 2.6rem);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.bkg__panel { display: none; }
.bkg__panel.active { display: block; animation: panel-in .4s var(--slow); }
@keyframes panel-in { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

.bkg__label { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.6rem; }
.bkg__field { margin-top: 1.3rem; }
.bkg__field:first-child { margin-top: 0; }
.bkg__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bkg input, .bkg select, .bkg textarea {
  width: 100%; font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 0.95em 1.05em; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.bkg textarea { resize: vertical; min-height: 92px; }
.bkg input:focus, .bkg select:focus, .bkg textarea:focus {
  outline: none; border-color: var(--cherry); box-shadow: 0 0 0 4px rgba(180,21,27,0.1);
}
.bkg select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23B4151B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.05em center; padding-right: 2.6em; }
.bkg .invalid input, .bkg .invalid select { border-color: var(--cherry); }
.bkg__err { color: var(--cherry); font-size: 0.74rem; margin-top: 0.45rem; display: none; }
.bkg .invalid .bkg__err { display: block; }

/* slot chips */
.bkg__slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
.bkg__slot {
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500; color: var(--ink);
  background: #fff; border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 0.7em 0.4em; text-align: center; transition: all .2s var(--ease);
  font-variant-numeric: tabular-nums;
}
.bkg__slot:hover { border-color: var(--cherry); color: var(--cherry); }
.bkg__slot.selected { background: var(--cherry); border-color: var(--cherry); color: #fff; }
.bkg .invalid .bkg__slots { outline: 1px solid var(--cherry); outline-offset: 4px; border-radius: 10px; }

/* recap (step 3) */
.bkg__recap { background: var(--blush); border-radius: 14px; padding: 1.2rem 1.4rem; margin-bottom: 1.4rem; }
.bkg__recap-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.42rem 0; font-size: 0.9rem; border-bottom: 1px solid rgba(180,21,27,0.14); }
.bkg__recap-row:last-child { border-bottom: 0; }
.bkg__recap-k { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cherry-deep); align-self: center; }
.bkg__recap-v { color: var(--charcoal); font-weight: 500; text-align: right; }

.bkg__foot { display: flex; gap: 0.8rem; margin-top: 1.6rem; }
.bkg__back {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); background: transparent; border: 1px solid var(--line-soft);
  border-radius: var(--radius-pill); padding: 0.95em 1.4em; transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: 0.4em; white-space: nowrap;
}
.bkg__back:hover { color: var(--charcoal); border-color: var(--charcoal); }
.bkg__next {
  flex: 1; justify-content: center;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--charcoal); border-radius: var(--radius-pill);
  padding: 0.95em 1.4em; transition: all .3s var(--ease);
  display: inline-flex; align-items: center; gap: 0.55em;
}
.bkg__next:hover { background: var(--cherry); }
.bkg__next svg { width: 16px; height: 16px; }
.bkg__note { font-size: 0.74rem; color: var(--ink-faint); text-align: center; margin-top: 1rem; }
body.bkg-lock { overflow: hidden; }

@media (max-width: 540px) {
  .bkg__dialog { width: calc(100vw - 24px); max-height: calc(100svh - 24px); border-radius: 16px; }
  .bkg__row { grid-template-columns: 1fr; }
  .bkg__slots { grid-template-columns: repeat(3, 1fr); }
  .bkg__foot { flex-wrap: wrap; }
  .bkg__back { width: 100%; justify-content: center; order: 2; }
  .bkg__next { order: 1; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, [data-stagger] > * { opacity: 1; transform: none; filter: none; }
  .img-fade { opacity: 1; transform: none; }
  .gcol__track { animation: none !important; }
  .strip__track { animation: none !important; }
  .hero__seal, .founder__seal { animation: none !important; }
  .bkg__dialog, .bkg__overlay, .bkg__panel { transition: none !important; animation: none !important; }
}
