/* ═══════════════════════════════════════════════════════
   JASMINE SKIN CLINIC – STYLESHEET
   Brand: Cream / Charcoal / Warm Taupe
   Fonts: Cormorant Garamond (headings) · Jost (body)
═══════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --cream:        #F5F1EB;
  --cream-mid:    #EDE8DF;
  --cream-deep:   #DDD5C8;
  --charcoal:     #1C1A17;
  --charcoal-50:  #3D3935;
  --taupe:        #A89580;
  --taupe-light:  #C5B5A0;
  --taupe-deep:   #8B7A68;
  --white:        #FFFFFF;
  --muted:        #6B6560;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  1200px;
  --gap:        clamp(1.5rem, 3vw, 2.5rem);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur:  0.4s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ─── TYPOGRAPHY ────────────────────────────────────── */
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}

.section__title em {
  font-style: italic;
  color: var(--taupe-deep);
}

.section__desc {
  max-width: 560px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__header .section__desc { margin: 1rem auto 0; }

/* ─── LAYOUT ────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-py);
}

.section--cream {
  background: var(--cream-mid);
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--charcoal);
}
.btn--primary:hover {
  background: var(--charcoal-50);
  border-color: var(--charcoal-50);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--cream);
  border: 1px solid var(--charcoal);
}
.btn--dark:hover {
  background: var(--taupe-deep);
  border-color: var(--taupe-deep);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.btn--full { width: 100%; justify-content: center; }

/* ─── NAVIGATION ────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.nav.scrolled {
  background: rgba(245, 241, 235, 0.97);
  padding: 0.75rem 0;
  box-shadow: 0 1px 24px rgba(28,26,23,0.08);
  backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.nav__logo-name {
  font-family: 'GFS Didot', Didot, Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  transition: color var(--dur) var(--ease);
}

.nav__logo-sub {
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 0.48rem;
  font-weight: 300;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1;
  transition: color var(--dur) var(--ease);
}

.nav.scrolled .nav__logo-name { color: var(--charcoal); }
.nav.scrolled .nav__logo-sub  { color: var(--taupe); }

.nav__logo:hover .nav__logo-name { opacity: 0.8; }
.nav__logo:hover .nav__logo-sub  { opacity: 0.8; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.nav__link:hover,
.nav__link.active { color: var(--taupe-deep); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }

/* Hero nav — white links */
.nav:not(.scrolled) .nav__link { color: rgba(255,255,255,0.85); }
.nav:not(.scrolled) .nav__link:hover { color: var(--white); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  transition: all var(--dur) var(--ease);
  margin-left: 0.5rem;
}

.nav.scrolled .nav__cta {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.nav__cta:hover {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.nav.scrolled .nav__cta:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all var(--dur) var(--ease);
  transform-origin: center;
}

.nav.scrolled .nav__burger span { background: var(--charcoal); }

.nav__burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 10vw, 8rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform-origin: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 26, 23, 0.25) 0%,
    rgba(28, 26, 23, 0.55) 60%,
    rgba(28, 26, 23, 0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
  max-width: 680px;
  margin-left: max(1.5rem, calc((100vw - var(--container)) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero logo — image cliquable, fond flou masqué par crop circulaire */
.hero__logo-img-link {
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hero__logo-img-link:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 4px rgba(245,241,235,0.25);
}

.hero__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Zoom pour masquer le fond flou et ne garder que le cercle blanc */
  transform: scale(1.62);
  transform-origin: center center;
  display: block;
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
}

.hero__subtitle {
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: max(1.5rem, calc((100vw - var(--container)) / 2 + 1rem));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.9; }
}

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust {
  background: var(--charcoal);
  padding: 2rem 0;
}

.trust__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 2.5rem;
}

.trust__num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.trust__label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe-light);
}

.trust__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ─── ABOUT ─────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__img-wrap {
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about__img-wrap:hover img { transform: scale(1.03); }

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

.about__badge-icon {
  font-size: 1.25rem;
  color: var(--taupe-light);
}

.about__text {
  padding-left: clamp(1rem, 4vw, 3rem);
}

.about__lead {
  font-size: 1.05rem;
  color: var(--charcoal-50);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about__text p { color: var(--muted); margin-bottom: 1rem; font-size: 0.9rem; }

.about__practitioner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.about__practitioner p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

.about__practitioner strong { color: var(--charcoal); font-weight: 500; }

/* Diplomas */
.about__diplomas {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--cream-mid);
  border-left: 2px solid var(--taupe);
}

.about__diplomas-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  margin-bottom: 1rem;
}

.about__diplomas ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
}

.about__diplomas li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.about__diploma-dot {
  font-size: 0.45rem;
  color: var(--taupe);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.about__diplomas strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.1rem;
}

.about__diplomas span {
  font-size: 0.75rem;
  color: var(--muted);
}

.about__features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
}

.about__features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__feat-icon {
  font-size: 0.8rem;
  color: var(--taupe);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about__features strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: var(--charcoal);
}

.about__features p { margin: 0; font-size: 0.82rem; color: var(--muted); }

/* ─── SERVICES ──────────────────────────────────────── */
.services__cat {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--taupe-deep);
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.services__cat::before,
.services__cat::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-deep);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.services__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Service Card */
.service-card {
  background: var(--white);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,26,23,0.1);
}

/* Text-only card variant */
.service-card--text {
  border: 1px solid var(--cream-deep);
  background: var(--white);
}

.service-card--text:hover {
  border-color: var(--taupe-light);
}

.service-card__body {
  padding: 2rem;
}

.service-card--sm .service-card__body {
  padding: 1.75rem;
}

/* Number decoration */
.service-card__num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--cream-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.service-card__num--sm {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

/* Lead text */
.service-card__lead {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--charcoal-50);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Detail paragraphs */
.service-card__detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cream-mid);
}

.service-card__detail p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.8;
}

.service-card__detail p strong {
  color: var(--charcoal);
  font-weight: 500;
}

.service-card__icon {
  color: var(--taupe);
  margin-bottom: 0.75rem;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.service-card--sm .service-card__title { font-size: 1.1rem; }

.service-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
  list-style: none;
}

.service-card__tags li {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  background: var(--cream-mid);
  padding: 0.25rem 0.6rem;
}

.service-card__duration {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* Pack Cards */
.packs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pack-card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  padding: 2rem;
  position: relative;
  transition: all var(--dur) var(--ease);
}

.pack-card:hover {
  border-color: var(--taupe-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(28,26,23,0.07);
}

.pack-card--featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--cream);
}

.pack-card--featured:hover {
  border-color: var(--charcoal);
  box-shadow: 0 8px 30px rgba(28,26,23,0.2);
}

.pack-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--taupe);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.pack-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pack-card__icon {
  font-size: 1.1rem;
  color: var(--taupe);
}

.pack-card--featured .pack-card__icon { color: var(--taupe-light); }

.pack-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
}

.pack-card--featured .pack-card__title { color: var(--cream); }

.pack-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pack-card--featured .pack-card__desc { color: rgba(245,241,235,0.7); }

.pack-card__cta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--taupe-deep);
  transition: letter-spacing var(--dur) var(--ease), color var(--dur) var(--ease);
}

.pack-card--featured .pack-card__cta { color: var(--taupe-light); }

.pack-card__cta:hover { letter-spacing: 0.1em; color: var(--charcoal); }
.pack-card--featured .pack-card__cta:hover { color: var(--white); }

.services__menu-cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.services__menu-cta p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal-50);
}

/* ─── CABINET GALLERY ───────────────────────────────── */
.cabinet__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 2.5rem;
}

.cabinet__photo {
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 4px;
  display: block;
  aspect-ratio: 3/2;
  width: 100%;
}

.cabinet__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.7s var(--ease), filter 0.4s var(--ease);
  filter: brightness(0.96);
}

.cabinet__photo:hover img {
  transform: scale(1.05);
  filter: brightness(1.04);
}

.cabinet__photo .ba__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 26, 23, 0.35);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  color: #fff;
}

.cabinet__photo:hover .ba__zoom {
  opacity: 1;
}

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

@media (max-width: 540px) {
  .cabinet__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── SERVICE PRICE TAG ─────────────────────────────── */
.service-card__price {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--taupe-deep);
  border-top: 1px solid var(--cream-deep);
  padding-top: 0.6rem;
  width: 100%;
}

/* ─── LASER BLOCK ───────────────────────────────────── */
.laser__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  background: var(--white);
  border: 1px solid var(--cream-deep);
  border-radius: 6px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.laser__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0.75rem 0 1rem;
}

.laser__desc p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--charcoal-50);
}

.laser__zones-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.laser__list {
  list-style: none;
  border-top: 1px solid var(--cream-deep);
}

.laser__list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--cream-deep);
  font-size: 0.85rem;
  color: var(--charcoal-50);
}

.laser__list li::before {
  content: '◆ ';
  color: var(--taupe-light);
  font-size: 0.6rem;
  vertical-align: middle;
}

.laser__cta {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  padding: 0.7rem 1.5rem;
}

@media (max-width: 768px) {
  .laser__block {
    grid-template-columns: 1fr;
    padding: 1.75rem;
    gap: 1.5rem;
  }
}

/* ─── PACK PRICE TAG ────────────────────────────────── */
.pack-card__price {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--taupe-deep);
  margin-bottom: 0.5rem;
}

.pack-card__price--light {
  color: var(--taupe-light);
}

/* ─── AVANT / APRÈS ─────────────────────────────────── */
.ba__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-items: center;
}

.ba__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* Clickable button wrapper */
.ba__image-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
  position: relative;
}

.ba__image-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  width: 100%;
  border-radius: 4px;
}

.ba__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
  display: block;
}

.ba__item:hover .ba__image-wrap img { transform: scale(1.04); }

/* Zoom icon overlay */
.ba__zoom {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(28,26,23,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.ba__item:hover .ba__zoom {
  opacity: 1;
  transform: scale(1);
}

.ba__caption {
  background: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.ba__caption strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
}

.ba__caption span {
  font-size: 0.72rem;
  color: var(--taupe);
  letter-spacing: 0.04em;
}

.ba__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ─── LIGHTBOX ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16,14,12,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.lightbox:not([hidden]) {
  opacity: 1;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 900px;
  max-height: 90vh;
  width: 100%;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.lightbox__caption {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.55);
  text-align: center;
}

.lightbox__close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  z-index: 201;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: rotate(90deg);
}

.lightbox__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  flex-shrink: 0;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

/* ─── REVIEWS ───────────────────────────────────────── */
.reviews__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
}

.reviews__stars {
  font-size: 1.2rem;
  color: var(--taupe);
  letter-spacing: 0.1em;
}

.reviews__rating span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(28,26,23,0.07);
}

.review-card__stars {
  font-size: 0.85rem;
  color: var(--taupe);
  letter-spacing: 0.1em;
}

.review-card__text {
  font-size: 0.88rem;
  color: var(--charcoal-50);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  border-left: 2px solid var(--cream-deep);
  padding-left: 1rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-style: normal;
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--taupe-deep);
  flex-shrink: 0;
}

.review-card__author strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
}

.review-card__author span {
  font-size: 0.7rem;
  color: var(--taupe);
  letter-spacing: 0.04em;
}

/* ─── FAQ ───────────────────────────────────────────── */
.faq__inner { max-width: 780px; margin-inline: auto; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--cream-deep);
}

.faq__item:first-child { border-top: 1px solid var(--cream-deep); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--charcoal);
  cursor: pointer;
  user-select: none;
  transition: color var(--dur) var(--ease);
  list-style: none;
}

.faq__question:hover { color: var(--taupe-deep); }

.faq__question[aria-expanded="true"] { color: var(--taupe-deep); }

.faq__icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--cream-deep);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all var(--dur) var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--charcoal);
  transition: all var(--dur) var(--ease);
}

.faq__icon::before {
  width: 8px;
  height: 1px;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 1px;
  height: 8px;
  transform: translate(-50%, -50%);
}

.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--taupe);
  border-color: var(--taupe);
}

.faq__question[aria-expanded="true"] .faq__icon::before,
.faq__question[aria-expanded="true"] .faq__icon::after {
  background: var(--white);
}

.faq__question[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s var(--ease);
}

.faq__answer p {
  padding: 0 0 1.4rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

.faq__answer p strong { color: var(--charcoal); font-weight: 500; }

/* ─── CONTACT ───────────────────────────────────────── */
.contact__inner {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  gap: 2rem;
  align-items: center;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

.contact__block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact__icon {
  width: 40px;
  height: 40px;
  background: var(--cream-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe-deep);
  flex-shrink: 0;
}

.contact__block > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact__block strong {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.contact__block span,
.contact__block a,
.contact__block .contact__link {
  font-size: 0.9rem;
  color: var(--muted);
}

.contact__link { color: var(--taupe-deep); font-weight: 500; font-size: 1rem; }
.contact__link:hover { color: var(--charcoal); }

.contact__note {
  font-size: 0.72rem !important;
  color: var(--taupe-light) !important;
  letter-spacing: 0.04em;
}

.contact__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--cream-deep);
  transition: all var(--dur) var(--ease);
  color: var(--charcoal);
}

.social-btn:hover { transform: translateX(3px); }

.social-btn--ig:hover {
  background: #E1306C;
  color: white;
  border-color: #E1306C;
}

.social-btn--fb:hover {
  background: #1877F2;
  color: white;
  border-color: #1877F2;
}

.social-btn--wa:hover {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.contact__map {
  height: 480px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(1.05);
}

/* ─── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Footer logo image */
.footer__logo-img-link {
  display: block;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto 1.25rem;
  text-decoration: none;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.footer__logo-img-link:hover {
  transform: scale(1.04);
  opacity: 0.9;
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer__slogan {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--taupe-light);
  margin-bottom: 0.4rem;
  text-align: center;
}

.footer__brand p {
  font-size: 0.78rem;
  color: rgba(245,241,235,0.45);
  line-height: 1.7;
  text-align: center;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.footer__nav a {
  font-size: 0.8rem;
  color: rgba(245,241,235,0.6);
  transition: color var(--dur) var(--ease);
  letter-spacing: 0.04em;
}

.footer__nav a:hover { color: var(--cream); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__contact strong {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.footer__contact a,
.footer__contact span {
  font-size: 0.82rem;
  color: rgba(245,241,235,0.6);
  transition: color var(--dur) var(--ease);
}

.footer__contact a:hover { color: var(--cream); }

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,241,235,0.6);
  transition: all var(--dur) var(--ease);
  border-radius: 50%;
}

.footer__social a:hover {
  color: var(--cream);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.footer__bottom {
  padding: 1.25rem 0;
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.68rem;
  color: rgba(245,241,235,0.35);
  letter-spacing: 0.06em;
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--dur) var(--ease);
  animation: pulse-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .packs__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .ba__grid { grid-template-columns: repeat(3, 1fr); }
  .about__inner { gap: 2rem; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav__burger { display: flex; }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    transition: right var(--dur) var(--ease);
    box-shadow: -4px 0 40px rgba(28,26,23,0.1);
    overflow-y: auto;
  }

  .nav__links.open { right: 0; }

  .nav__link { color: var(--charcoal) !important; font-size: 0.9rem; padding: 0.75rem 0; width: 100%; }
  .nav__link::after { left: 0; right: 0; bottom: 0; }

  .nav__cta {
    border-color: var(--charcoal) !important;
    color: var(--charcoal) !important;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  /* About */
  .about__inner { grid-template-columns: 1fr; }
  .about__text { padding-left: 0; }
  .about__badge { right: 0; bottom: -1rem; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .services__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .packs__grid { grid-template-columns: 1fr; }

  /* BA */
  .ba__grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; }
  .contact__map { height: 300px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  /* Trust */
  .trust__grid { gap: 0; }
  .trust__item { padding: 0.75rem 1.5rem; }
  .trust__divider { width: 100%; height: 1px; }

  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .services__grid--4 { grid-template-columns: 1fr; }
  .trust__grid { flex-direction: column; }
  .trust__divider { display: none; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
}

/* ─── PREFERS REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─── PRINT ──────────────────────────────────────────── */
@media print {
  .nav, .hero__scroll, .whatsapp-float { display: none; }
  .hero { min-height: auto; }
  * { background: white !important; color: black !important; }
}
