/* ═══════════════════════════════════════════════
   ÉCLAT AESTHETICS — Shared Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #faf8f6;
  overflow-x: hidden;
}

/* ─── TOKENS ─── */
:root {
  --tan:    #cbab97;
  --tan-lt: #e8d9cf;
  --tan-dk: #a8856d;
  --rose:   #ec606a;
  --rose-dk:#c94a54;
  --dark:   #1a1a1a;
  --mid:    #5c5c5c;
  --light:  #faf8f6;
  --off:    #f3eeea;
  --white:  #ffffff;
  --radius: 2px;
  --nav-h:  72px;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
ul { list-style: none; }

/* ─── UTILITY ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tan-dk);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--tan-dk); }
.section-sub {
  font-size: .95rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .25s ease;
}
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(236,96,106,.3); }
.btn-outline { background: transparent; color: var(--dark); border: 1.5px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-tan { background: var(--tan); color: var(--white); }
.btn-tan:hover { background: var(--tan-dk); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--tan-dk); }
.btn-white:hover { background: var(--off); transform: translateY(-1px); }
.btn-ghost-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-ghost-white:hover { background: rgba(255,255,255,.15); }

/* ─── ANNOUNCE BAR ─── */
.announce {
  background: var(--dark);
  color: var(--tan-lt);
  text-align: center;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 10px 20px;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,246,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(203,171,151,.25);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: transform .3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--dark);
}
.nav__logo span { color: var(--tan-dk); font-style: italic; }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color .2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--dark); }
.nav__links a.active { font-weight: 500; }
.nav__cta { display: flex; gap: 12px; align-items: center; }
.nav__phone {
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__phone svg { width: 14px; height: 14px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all .25s;
}

/* Mobile nav drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 200;
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 0;
  box-shadow: -4px 0 30px rgba(0,0,0,.12);
  transform: translateX(100%);
  transition: transform .3s ease;
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer-links { display: flex; flex-direction: column; gap: 4px; }
.nav__drawer-links a {
  display: block;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--dark);
  border-bottom: 1px solid var(--off);
}
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 190;
}
.nav__overlay.open { display: block; }
.drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  font-size: 1.4rem;
  color: var(--mid);
  line-height: 1;
}

/* ─── INNER PAGE HERO ─── */
.page-hero {
  background: var(--dark);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f0c0a 0%, #1a1410 50%, var(--tan-dk) 200%);
  opacity: .95;
}
.page-hero::after {
  content: attr(data-title);
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 600;
  color: rgba(203,171,151,.07);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.page-hero__breadcrumb a:hover { color: var(--tan); }
.page-hero__breadcrumb span { color: var(--tan); }
.page-hero__breadcrumb-sep { opacity: .3; }
.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero__title em { font-style: italic; color: var(--tan-lt); }
.page-hero__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 500px;
}

/* ─── HERO (Home – video background) ─── */
.hero {
  position: relative;
  min-height: calc(95vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,12,10,.72) 0%, rgba(15,12,10,.45) 55%, rgba(15,12,10,.15) 100%);
  z-index: 1;
}
.hero__video-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1410 0%, var(--tan-dk) 60%, var(--tan) 100%);
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
}
.hero__left { flex: 1; min-width: 0; }
.hero__right { flex-shrink: 0; width: 400px; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__eyebrow-line { width: 40px; height: 1px; background: var(--tan); }
.hero__eyebrow-text {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--tan-lt);
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title strong { font-weight: 600; display: block; }
.hero__title em { font-style: italic; color: var(--tan-lt); }
.hero__body {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero__trust {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}
.hero__stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 5px;
}
.hero__badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 230px;
}
.hero__badge-icon {
  width: 36px;
  height: 36px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__badge-icon svg { width: 18px; height: 18px; fill: white; }
.hero__badge-text { font-size: .75rem; color: rgba(255,255,255,.8); line-height: 1.4; }
.hero__badge-text strong { display: block; color: var(--white); font-size: .82rem; margin-bottom: 2px; }
.hero__mute {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.hero__mute:hover { background: rgba(255,255,255,.22); }
.hero__mute svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 1.8; }

/* ─── HERO FORM CARD ─── */
.hero__form-card {
  background: rgba(8,6,4,0.74);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(203,171,151,0.22);
  border-radius: 3px;
  padding: 36px 32px;
}
.hero__form-eyebrow {
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 8px;
}
.hero__form-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__form-heading em { font-style: italic; color: var(--tan-lt); }
.hero__form-divider {
  height: 1px;
  background: rgba(203,171,151,0.2);
  margin-bottom: 20px;
}
.hero__form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.form-group--dark { display: flex; flex-direction: column; gap: 6px; }
.form-label--dark {
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.form-input--dark,
.form-select--dark,
.form-textarea--dark {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s, background .2s;
  font-weight: 300;
}
.form-input--dark::placeholder,
.form-textarea--dark::placeholder { color: rgba(255,255,255,0.26); }
.form-input--dark:focus,
.form-select--dark:focus,
.form-textarea--dark:focus {
  border-color: rgba(203,171,151,0.6);
  background: rgba(255,255,255,0.1);
}
.form-select--dark option { background: #1a1a1a; color: #fff; }
.form-textarea--dark { resize: none; min-height: 76px; }
.hero__form-btn {
  width: 100%;
  justify-content: center;
  padding: 13px 24px;
  margin-top: 2px;
}
.hero__form-notice {
  display: none;
  padding: 11px 14px;
  border-radius: 2px;
  font-size: .8rem;
  line-height: 1.5;
  margin-top: 2px;
}
.hero__form-notice--success {
  background: rgba(45,106,45,0.28);
  border: 1px solid rgba(195,230,195,0.3);
  color: rgba(195,230,195,0.92);
}
.hero__form-notice--error {
  background: rgba(153,27,27,0.28);
  border: 1px solid rgba(252,165,165,0.3);
  color: rgba(252,165,165,0.92);
}

/* ─── LOGO STRIP ─── */
.logo-strip {
  background: var(--off);
  border-top: 1px solid var(--tan-lt);
  border-bottom: 1px solid var(--tan-lt);
  padding: 22px 0;
}
.logo-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-strip__item {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tan-dk);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-strip__item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--tan);
  border-radius: 50%;
}

/* ─── SERVICES GRID (Home teaser) ─── */
.services { padding: 120px 0; }
.services__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 32px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--tan-lt);
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { background: var(--off); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--tan-lt);
  line-height: 1;
  margin-bottom: 16px;
  transition: color .3s;
}
.service-card:hover .service-card__num { color: var(--tan); }
.service-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card__desc {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 24px;
}
.service-card__price {
  font-size: .78rem;
  color: var(--tan-dk);
  font-weight: 500;
  letter-spacing: .06em;
}
.service-card__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--tan-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.service-card:hover .service-card__arrow {
  background: var(--rose);
  border-color: var(--rose);
  transform: rotate(45deg);
}
.service-card:hover .service-card__arrow svg path { stroke: white; }
.service-card__arrow svg { width: 14px; height: 14px; }
.service-card__arrow svg path { stroke: var(--mid); stroke-width: 1.5; fill: none; transition: stroke .3s; }

/* ─── TREATMENT CARDS (Services page) ─── */
.treatments { padding: 100px 0; }
.treatments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.treatment-card {
  background: var(--white);
  border: 1px solid var(--tan-lt);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.treatment-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.treatment-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--tan-lt) 0%, var(--tan) 100%);
  overflow: hidden;
  position: relative;
}
.treatment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.treatment-card:hover .treatment-card__image img { transform: scale(1.04); }
.treatment-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
}
.treatment-card__img-placeholder svg { width: 36px; height: 36px; }
.treatment-card__img-placeholder span {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.treatment-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--dark);
  color: var(--tan-lt);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 500;
}
.treatment-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.treatment-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
}
.treatment-card__desc {
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.7;
}
.treatment-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--off);
  gap: 16px;
  flex-wrap: wrap;
}
.treatment-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--tan-dk);
  font-weight: 500;
}
.treatment-card__price span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 300;
  color: var(--mid);
  margin-top: 2px;
}

/* ─── ABOUT ─── */
.about { padding: 120px 0; background: var(--off); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image-wrap { position: relative; }
.about__image-main {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--tan-lt), var(--tan));
  border-radius: var(--radius);
  overflow: hidden;
}
.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  aspect-ratio: 1;
  background: var(--tan);
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--off);
}
.about__image-accent img { width: 100%; height: 100%; object-fit: cover; }
.about__content { padding-right: 20px; }
.about__content .section-sub { margin: 16px 0 32px; }
.about__quals { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.about__qual { display: flex; gap: 14px; align-items: flex-start; }
.about__qual-dot {
  width: 6px;
  height: 6px;
  background: var(--rose);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.about__qual-text { font-size: .9rem; color: var(--mid); line-height: 1.5; }
.about__qual-text strong { color: var(--dark); }
.about__sig {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--tan-dk);
  margin-top: 8px;
}

/* About stats bar */
.about-stats {
  padding: 60px 0;
  background: var(--dark);
}
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
}
.about-stats__item {
  background: var(--dark);
  padding: 40px 32px;
  text-align: center;
}
.about-stats__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--tan);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stats__label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ─── PROCESS ─── */
.process { padding: 100px 0; background: var(--dark); }
.process .tag { color: var(--tan); }
.process .section-title { color: var(--white); }
.process .section-title em { color: var(--tan); }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(203,171,151,.25);
}
.process__step { padding: 0 24px; text-align: center; }
.process__step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--tan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--tan);
  margin: 0 auto 24px;
  background: var(--dark);
  position: relative;
  z-index: 1;
}
.process__step-title {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.process__step-desc { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ─── PRICING ─── */
.pricing { padding: 100px 0; }
.pricing__head { text-align: center; margin-bottom: 60px; }
.pricing__head .section-sub { margin: 16px auto 0; }
.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.pricing__tab {
  padding: 10px 22px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--off);
  color: var(--mid);
  border-radius: 2px;
  transition: all .2s;
  cursor: pointer;
}
.pricing__tab.active { background: var(--dark); color: var(--white); }
.pricing__panel { display: none; }
.pricing__panel.active { display: block; }
.pricing__table {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--tan-lt);
  overflow: hidden;
}
.pricing__row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 20px 32px;
  border-bottom: 1px solid var(--off);
  align-items: center;
  gap: 24px;
  transition: background .2s;
}
.pricing__row:last-child { border-bottom: none; }
.pricing__row:hover { background: var(--off); }
.pricing__row-head { font-size: .9rem; color: var(--dark); font-weight: 400; }
.pricing__row-sub { font-size: .78rem; color: var(--mid); margin-top: 3px; }
.pricing__row-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--tan-dk);
  white-space: nowrap;
  text-align: right;
}
.pricing__row-price span {
  display: block;
  font-size: .72rem;
  font-family: 'Inter', sans-serif;
  color: var(--mid);
  font-weight: 300;
}
.pricing__note { text-align: center; font-size: .78rem; color: var(--mid); margin-top: 24px; }
.pricing__cta { text-align: center; margin-top: 48px; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 120px 0; background: var(--off); }
.testimonials__head { text-align: center; margin-bottom: 60px; }
.testimonials__head .section-sub { margin: 16px auto 0; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--tan-lt);
  line-height: 1;
}
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--rose); font-size: .9rem; }
.testimonial-card__body { font-size: .9rem; color: var(--mid); line-height: 1.75; margin-bottom: 24px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--tan-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--tan-dk);
  font-weight: 500;
}
.testimonial-card__name { font-size: .85rem; font-weight: 500; color: var(--dark); }
.testimonial-card__date { font-size: .72rem; color: var(--mid); }

/* ─── BOOKING CTA ─── */
.booking-cta {
  padding: 100px 0;
  background: var(--tan);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: 'ÉCLAT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 18vw;
  font-weight: 600;
  color: rgba(255,255,255,.08);
  white-space: nowrap;
  pointer-events: none;
}
.booking-cta__inner { position: relative; z-index: 1; }
.booking-cta .tag { color: rgba(255,255,255,.7); }
.booking-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.booking-cta__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  margin: 0 auto 40px;
  max-width: 480px;
  line-height: 1.7;
}
.booking-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FAQ ─── */
.faq { padding: 100px 0; }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq__side .section-sub { margin: 16px 0 32px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--off); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}
.faq__q-text { font-size: .93rem; font-weight: 500; color: var(--dark); }
.faq__icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--tan-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
}
.faq__item.open .faq__icon { background: var(--rose); border-color: var(--rose); transform: rotate(45deg); }
.faq__icon svg { width: 12px; height: 12px; }
.faq__icon svg path { stroke: var(--mid); stroke-width: 2; fill: none; transition: stroke .25s; }
.faq__item.open .faq__icon svg path { stroke: white; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__answer-inner {
  padding-bottom: 20px;
  font-size: .88rem;
  color: var(--mid);
  line-height: 1.75;
}
.faq__item.open .faq__answer { max-height: 300px; }

/* ─── LOCATION ─── */
.location { padding: 100px 0; background: var(--off); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location__map {
  aspect-ratio: 4/3;
  background: var(--tan-lt);
  border-radius: var(--radius);
  overflow: hidden;
}
.location__map iframe { width: 100%; height: 100%; border: none; }
.location__details { display: flex; flex-direction: column; gap: 24px; }
.location__item { display: flex; gap: 16px; align-items: flex-start; }
.location__icon {
  width: 42px;
  height: 42px;
  background: var(--tan-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location__icon svg { width: 18px; height: 18px; }
.location__item-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--tan-dk); margin-bottom: 4px; }
.location__item-value { font-size: .9rem; color: var(--dark); line-height: 1.5; }
.location__item-value a { color: var(--rose); }
.location__hours { margin-top: 8px; }
.location__hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--tan-lt);
  font-size: .85rem;
}
.location__hours-row:last-child { border-bottom: none; }
.location__hours-day { color: var(--mid); }
.location__hours-time { color: var(--dark); font-weight: 400; }

/* ─── CONTACT FORM ─── */
.contact-form { padding: 100px 0; }
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-form__side .section-sub { margin: 16px 0 0; }
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--tan-lt);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s;
  font-weight: 300;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--tan); }
.form-textarea { resize: vertical; min-height: 130px; }

/* ─── FOOTER ─── */
.footer { background: var(--dark); color: var(--white); padding: 70px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__logo span { color: var(--tan); font-style: italic; }
.footer__tagline {
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
  max-width: 240px;
  margin-bottom: 28px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.footer__social-link:hover { border-color: var(--tan); background: rgba(203,171,151,.15); }
.footer__social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,.6); }
.footer__col-title {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer__contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.footer__contact-item svg path,
.footer__contact-item svg circle { stroke: var(--tan); stroke-width: 1.5; fill: none; }
.footer__contact-text { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.45; }
.footer__contact-text a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer__contact-text a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { font-size: .75rem; color: rgba(255,255,255,.3); transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.6); }

/* ─── STICKY BOOK BUTTON (mobile) ─── */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(236,96,106,.4);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__content { flex-direction: column; align-items: flex-start; gap: 40px; }
  .hero__right { width: 100%; max-width: 540px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__image-wrap { max-width: 480px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form__grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .hamburger { display: flex; }

  /* Hero — stack & centre */
  .hero { min-height: auto; }
  .hero__content { padding: 56px 0 48px; gap: 36px; }
  .hero__left { width: 100%; text-align: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__title { margin-bottom: 18px; }
  .hero__body { max-width: 100%; margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 40px; padding-top: 32px; }
  .hero__mute { bottom: 16px; left: 16px; width: 36px; height: 36px; }
  .hero__right { max-width: 100%; }
  .hero__form-card { padding: 28px 22px; }
  .hero__form-heading { text-align: left; }

  /* Tighter section rhythm on small screens */
  .services, .about, .booking-cta, .treatments, .pricing, .testimonials, .faq, .location, .contact-form, .process, .about-stats {
    padding: 64px 0;
  }
  .logo-strip__inner { gap: 22px; }
  .logo-strip__item { font-size: .64rem; }

  /* About teaser */
  .about__image-wrap { max-width: 360px; margin: 0 auto; }
  .about__image-accent { bottom: -20px; right: -20px; width: 50%; }
  .about__content { padding-right: 0; text-align: center; }
  .about__quals { text-align: left; }
  .about__sig { text-align: center; }

  .services__head { flex-direction: column; align-items: flex-start; }
  .services__grid { grid-template-columns: 1fr; }
  .treatments__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .location__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__tagline { margin: 0 auto 28px; }
  .footer__social { justify-content: center; }
  .footer__links { align-items: center; }
  .footer__contact-item { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .sticky-book { display: flex; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .pricing__row { grid-template-columns: 1fr; }
  .pricing__row-price { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__badge { display: none; }
}

@media (max-width: 480px) {
  .process__steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .about-stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__trust { gap: 28px 36px; }
  .hero__stat-num { font-size: 1.6rem; }
  .hero__form-card { padding: 24px 18px; }
  .about__image-wrap { max-width: 280px; }
}
