/* ═══════════════════════════════════════════════════════
   LUMA SKIN NYC — Main Stylesheet
   Brand: warm taupe #B8A898 · off-white #FAF8F5 · dark #1C1C1A
   ═══════════════════════════════════════════════════════ */

/* ─── CUSTOM FONT ─── */
@font-face {
  font-family: 'Montserrat';
  src: url('Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

/* ─── TOKENS ─── */
:root {
  --taupe:       #B5A999;
  --taupe-light: #D9CFC4;
  --taupe-dark:  #8A8076;
  --cream:       #F4EFEA;
  --cream-dark:  #EDE4D6;
  --dark:        #3A4B2C;
  --dark-muted:  #5C6B50;
  --sage:        #BFC3A2;
  --charcoal:    #2C2A29;
  --white:       #FFFFFF;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Montserrat', sans-serif;

  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(123,140,90,.08);
  --shadow-lg: 0 12px 48px rgba(123,140,90,.14);

  --header-h: 72px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; }
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--sage);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--taupe-dark); }
.section-desc {
  margin-top: 20px;
  max-width: 560px;
  margin-inline: auto;
  color: var(--dark-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--dark:hover { background: var(--dark-muted); border-color: var(--dark-muted); }
.btn--light {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--light:hover { background: var(--cream); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--taupe-light);
}
.btn--outline:hover { background: var(--cream-dark); border-color: var(--taupe); }
.btn--lg { padding: 17px 36px; font-size: 14px; }

/* ─── MEGA MENU ─── */
.mega-menu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--sage);
  box-shadow: 0 16px 48px rgba(123,140,90,.12);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.mega-menu.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 280px;
  gap: 0;
  padding: 40px 0;
}
.mega-menu__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
  border-right: 1px solid var(--cream-dark);
  margin-right: 40px;
}
.mega-menu__col:last-of-type {
  border-right: none;
  margin-right: 0;
}
.mega-menu__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 12px;
}
.mega-menu__link {
  font-size: 15px;
  color: var(--dark);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
  width: fit-content;
}
.mega-menu__link:hover {
  color: var(--dark-muted);
  border-bottom-color: var(--sage);
}
.mega-menu__link--promo {
  margin-top: 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0;
}
.mega-menu__link--promo:hover { color: var(--dark); }
.mega-menu__promo {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 200px;
}
.mega-menu__promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mega-menu__promo-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(123,140,90,.85), transparent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-menu__promo-text strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.mega-menu__promo-text span {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}
.mega-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(123,140,90,.15);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.mega-menu__backdrop.is-open {
  opacity: 1;
  pointer-events: none;
}

/* nav chevron */
.nav__chevron {
  display: inline-block;
  font-style: normal;
  font-size: 14px;
  transition: transform .2s;
  margin-left: 2px;
  transform: rotate(90deg);
}
.nav__item--drop.is-open .nav__chevron {
  transform: rotate(-90deg);
}
.nav__item--drop { position: relative; cursor: pointer; }

/* ─── PROMO BANNER ─── */
.promo-banner {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.promo-banner strong { color: var(--taupe-light); }
.promo-link {
  color: var(--taupe-light);
  font-weight: 600;
  border-bottom: 1px solid var(--taupe-light);
  padding-bottom: 1px;
}
.promo-link:hover { color: var(--white); border-color: var(--white); }

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 34px; /* promo banner height */
  left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: background .35s ease, border-color .35s ease,
              box-shadow .35s ease, top .3s ease;
}

/* ── Scrolled state: frosted dark green ── */
.header.scrolled {
  background: rgba(58, 75, 44, 0.82) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: transparent;
  box-shadow: 0 4px 32px rgba(0,0,0,.18);
}

/* ── Inner: flex — left nav | logo (center) | right nav ── */
.header__inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  position: relative;
}

/* ── Logo — absolutely centered over the flex row ── */
.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  pointer-events: all;
}
.header__logo img {
  height: 30px;
  width: auto;
  transition: filter .35s ease;
}
/* White logo when scrolled */
.header.scrolled .header__logo img {
  filter: brightness(0) invert(1);
}

/* ── Nav shared ── */
.nav {
  display: flex;
  align-items: center;
}
.nav--left  { gap: 24px; flex: 1; justify-content: flex-start; }
.nav--right { gap: 20px; flex: 1; justify-content: flex-end; }

/* ── Nav links ── */
.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .07em;
  color: var(--dark-muted);
  text-transform: uppercase;
  position: relative;
  padding: 26px 4px;
  white-space: nowrap;
  transition: color .2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--sage);
  transition: width .25s ease;
}
.nav__link:hover { color: var(--dark); }
.nav__link:hover::after { width: 100%; }

/* Active nav link — bold */
.nav__link--active { font-weight: 700; }

/* White nav links when scrolled */
.header.scrolled .nav__link           { color: rgba(255,255,255,.7); }
.header.scrolled .nav__link:hover     { color: var(--white); }
.header.scrolled .nav__link::after    { background: var(--sage); }
.header.scrolled .nav__chevron        { color: rgba(255,255,255,.7); }

/* ── Book Now button — outlined by default ── */
.btn--book {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 2px;
  border: 1.5px solid var(--dark);
  background: transparent;
  color: var(--dark);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, color .2s, border-color .2s;
}
.btn--book:hover {
  background: var(--dark);
  color: var(--white);
}
/* White outlined when scrolled */
.header.scrolled .btn--book {
  border-color: rgba(255,255,255,.55);
  color: var(--white);
}
.header.scrolled .btn--book:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn__arrow {
  font-size: 14px;
  transition: transform .2s;
}
.btn--book:hover .btn__arrow { transform: translateX(3px); }

/* ── Burger (mobile) ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: all .25s;
}
.header.scrolled .burger span { background: var(--white); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 80px 40px calc(40px + env(safe-area-inset-bottom, 0px));
  gap: 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(123,140,90,.15);
}
.mobile-nav.open { right: 0; }
.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 22px;
  color: var(--dark-muted);
}
.mobile-nav__link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav__btn { margin-top: 24px; justify-content: center; }
.mobile-nav__sub {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0 8px 14px;
  border-left: 2px solid var(--sage);
  margin: -4px 0 8px 4px;
}
.mobile-nav__sublink {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--dark-muted);
  padding: 9px 0;
  text-decoration: none;
}
.mobile-nav__sublink:hover { color: var(--dark); }
.mobile-nav__details {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav__details > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav__details > summary::-webkit-details-marker { display: none; }
.mobile-nav__details > summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--taupe-dark);
  border-bottom: 2px solid var(--taupe-dark);
  transform: rotate(45deg);
  margin-right: 8px;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.mobile-nav__details[open] > summary::after { transform: rotate(-135deg); margin-top: 6px; }
.mobile-nav__details > .mobile-nav__sublink {
  display: block;
  padding-left: 18px;
  border-left: 2px solid var(--sage);
  margin-left: 4px;
  border-bottom: none;
}
.overlay {
  position: fixed; inset: 0;
  background: rgba(123,140,90,.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.overlay.visible { opacity: 1; pointer-events: all; }

/* ─── GALLERY ─── */
.gallery { background: var(--charcoal); }
.gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 4px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
}
.gallery__item--tall {
  grid-row: 1 / 3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123,140,90,.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery__item--tall {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 34px + 60px);
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  overflow: hidden;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: .45;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(123,140,90,.85) 0%, rgba(123,140,90,.4) 60%, transparent 100%),
    linear-gradient(to top, rgba(123,140,90,.6) 0%, transparent 50%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(184,168,152,.3);
  border-radius: 100px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.hero__title em {
  font-style: italic;
  color: var(--taupe-light);
}
.hero__sub {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin-bottom: 44px;
  max-width: 500px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__trust-num {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.hero__trust-label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero__trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
}
.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__scroll-text {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
@keyframes scrollLine {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ─── OFFER BANNER ─── */
.offer-banner {
  background: var(--sage);
  padding: 56px 0;
}
.offer-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.offer-banner__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: .65;
  margin-bottom: 10px;
}
.offer-banner__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 12px;
}
.offer-banner__desc {
  font-size: 15px;
  color: var(--dark-muted);
  max-width: 500px;
  line-height: 1.7;
}
.offer-banner__btn {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  flex-shrink: 0;
}
.offer-banner__btn:hover { background: var(--dark-muted); border-color: var(--dark-muted); }

/* ─── SERVICES ─── */
.services {
  padding: 120px 0;
  background: var(--cream);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--cream-dark);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--taupe);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--dark);
}
.service-card--featured .service-card__desc { color: var(--dark-muted); }
.service-card--featured .service-card__link { color: var(--dark); }
.service-card--featured::before { background: var(--taupe-dark); }
.service-card__icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  color: #b7aa97;
  transition: color .25s ease, transform .25s ease;
}
.service-card__icon svg { width: 100%; height: 100%; display: block; }
.service-card:hover .service-card__icon {
  color: #59654d;
  transform: translateY(-2px);
}
.service-card--featured .service-card__icon { color: #59654d; }
.service-card__badge {
  display: inline-block;
  background: var(--sage);
  color: var(--dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.service-card__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 14px;
  color: var(--dark-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.service-card__link:hover { color: var(--dark); }
.services__cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.services__cta p { color: var(--dark-muted); font-size: 15px; }

/* ─── FACIALS ─── */
.facials {
  padding: 120px 0;
  background: var(--cream-dark);
}
.facials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.facial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all .3s ease;
}
.facial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.facial-card--highlight {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--dark);
}
.facial-card--highlight .facial-card__desc {
  color: var(--dark-muted);
}
.facial-card--highlight .facial-card__price {
  color: var(--dark);
}
.facial-card--highlight .facial-card__tags span {
  background: rgba(58,75,44,.08);
  color: var(--dark);
  border-color: rgba(58,75,44,.2);
}
.facial-card--highlight .facial-card__btn {
  color: var(--dark);
}
.facial-card__badge {
  display: inline-block;
  background: var(--sage);
  color: var(--dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}
.facial-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.facial-card__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: inherit;
}
.facial-card--highlight .facial-card__title {
  color: var(--dark);
}
.facial-card__meta {
  flex-shrink: 0;
}
.facial-card__price {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--serif);
  color: var(--dark);
  white-space: nowrap;
}
.facial-card__desc {
  font-size: 14px;
  color: var(--dark-muted);
  line-height: 1.75;
  flex: 1;
}
.facial-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.facial-card__tags span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--dark-muted);
  background: var(--cream-dark);
  border: 1px solid var(--taupe-light);
  padding: 3px 10px;
  border-radius: 100px;
}
.facial-card__btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color .2s;
}
.facial-card__btn:hover { color: var(--taupe-dark); }
.facials__cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.facials__cta p { color: var(--dark-muted); font-size: 15px; }

@media (max-width: 1024px) {
  .facials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .facials { padding: 80px 0; }
  .facials__grid { grid-template-columns: 1fr; }
}

/* ─── SHOP ─── */
.shop {
  padding: 120px 0;
  background: var(--cream);
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .3s ease;
  text-decoration: none;
  color: inherit;
}
a.product-card { cursor: pointer; }
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card--featured {
  border-color: var(--sage);
}
.product-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--sage);
  color: var(--dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 1;
}
.product-card__img-wrap {
  background: var(--cream-dark);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }
.product-card__img-placeholder {
  width: 64px;
  height: 64px;
  color: var(--taupe);
  opacity: .5;
}
.product-card__info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}
.product-card__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
}
.product-card__desc {
  font-size: 13px;
  color: var(--dark-muted);
  line-height: 1.65;
  flex: 1;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.product-card__price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
}
.product-card__btn {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark);
  padding: 9px 18px;
  border-radius: 100px;
  transition: background .2s;
}
.product-card__btn:hover { background: var(--dark-muted); }
.shop__note {
  text-align: center;
  padding: 24px;
  background: var(--cream-dark);
  border-radius: var(--radius);
}
.shop__note p {
  font-size: 15px;
  color: var(--dark-muted);
}
.shop__note a {
  color: var(--dark);
  font-weight: 600;
  border-bottom: 1px solid var(--taupe);
}
.shop__note a:hover { color: var(--taupe-dark); }

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

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image-col {}
.about__image-wrap {
  position: relative;
}
.about__image-placeholder {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about__real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s ease;
}
.about__image-wrap:hover .about__real-photo { transform: scale(1.03); }
.about__image-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__image-badge-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  color: var(--dark);
}
.about__image-badge-text {
  font-size: 12px;
  color: var(--dark-muted);
  line-height: 1.4;
}
.about__content { }
.about__lead {
  font-size: 17px;
  line-height: 1.8;
  color: var(--dark-muted);
  margin: 24px 0 40px;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
.about__feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.about__feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  margin-top: 2px;
}
.about__feature strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--dark);
}
.about__feature p { font-size: 14px; color: var(--dark-muted); line-height: 1.65; }

/* ─── PROCESS ─── */
.process {
  padding: 120px 0;
  background: var(--sage);
}
.process .section-tag { background: rgba(58,75,44,.12); color: var(--dark); }
.process .section-title { color: var(--dark); }
.process .section-title em { color: var(--taupe-dark); }
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.process__step-num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  opacity: .55;
  margin-bottom: 20px;
}
.process__step-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}
.process__step-desc {
  font-size: 14px;
  color: var(--dark-muted);
  line-height: 1.7;
}
.process__connector {
  flex-shrink: 0;
  width: 64px;
  height: 1px;
  background: rgba(58,75,44,.2);
  margin-top: 32px;
}

/* ─── QUIZ ─── */
.quiz-section {
  padding: 120px 0;
  background: var(--dark);
}
.quiz-section .section-tag { background: rgba(191,195,162,.15); color: var(--sage); }
.quiz-section .section-title { color: var(--white); }
.quiz-section .section-title em { color: var(--sage); }
.quiz-section .section-desc { color: rgba(255,255,255,.55); }

.quiz-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 24px 80px rgba(123,140,90,.3);
  position: relative;
  overflow: hidden;
}

.quiz-progress {
  height: 3px;
  background: var(--cream-dark);
  border-radius: 100px;
  margin-bottom: 36px;
  overflow: hidden;
}
.quiz-progress__bar {
  height: 100%;
  background: var(--sage);
  border-radius: 100px;
  width: 50%;
  transition: width .4s ease;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; }

.quiz-step__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 12px;
}
.quiz-step__question {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.2;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.quiz-options--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--cream);
  text-align: left;
  transition: all .2s ease;
  width: 100%;
}
.quiz-option:hover {
  border-color: var(--sage);
  background: var(--white);
  transform: translateX(4px);
}
.quiz-option.selected {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}

.quiz-option--sm {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 18px;
}
.quiz-option--sm:hover { transform: translateY(-2px); }
.quiz-option__icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.quiz-option__text {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  display: block;
}
.quiz-option.selected .quiz-option__text { color: var(--white); }
.quiz-option__sub {
  font-size: 13px;
  color: var(--dark-muted);
  display: block;
}
.quiz-option.selected .quiz-option__sub { color: rgba(255,255,255,.6); }

.quiz-back {
  font-size: 13px;
  color: var(--dark-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 0;
  transition: color .2s;
}
.quiz-back:hover { color: var(--dark); }

/* Result */
.quiz-result {
  text-align: center;
  padding: 8px 0;
  animation: fadeUp .4s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-result__icon {
  width: 64px; height: 64px;
  background: var(--sage);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--dark);
  margin: 0 auto 20px;
}
.quiz-result__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 8px;
}
.quiz-result__title {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
}
.quiz-result__desc {
  font-size: 15px;
  color: var(--dark-muted);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 32px;
}
.quiz-result__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.quiz-restart {
  font-size: 13px;
  color: var(--dark-muted);
  cursor: pointer;
  background: none; border: none;
  transition: color .2s;
}
.quiz-restart:hover { color: var(--dark); }

@media (max-width: 768px) {
  .quiz-card { padding: 18px 12px; border-radius: 16px; }
  .quiz-step__question { font-size: 18px; line-height: 1.25; margin-bottom: 14px !important; }
  .quiz-progress { margin-bottom: 12px !important; }
  .quiz-progress__label { font-size: 10px !important; letter-spacing: .12em !important; }
  .quiz-options--grid { grid-template-columns: 1fr 1fr; gap: 6px !important; }
  .quiz-options { gap: 6px; }
  .quiz-option {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    border-width: 1px;
    background: var(--cream);
  }
  .quiz-option:hover { transform: none; }
  .quiz-option__text { font-size: 13px; line-height: 1.2; font-weight: 600; }
  .quiz-option__sub { display: none; }
  .quiz-option__icon { width: 24px; height: 24px; font-size: 13px; flex-shrink: 0; }
  .quiz-back { font-size: 12px; }
}

/* ─── POPUP ─── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(28,28,26,.6);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.popup-overlay.show { opacity: 1; pointer-events: all; }

.popup {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.94);
  width: min(900px, 95vw);
  max-height: 90vh;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  z-index: 301;
  box-shadow: 0 32px 100px rgba(123,140,90,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.34,1.56,.64,1);
}
.popup.show {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.popup__close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--dark);
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.popup__close:hover { background: var(--cream-dark); }

.popup__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.popup__left {
  overflow: hidden;
}
.popup__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.popup__right {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: var(--dark);
}
.popup__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--sage);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.popup__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
}
.popup__desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 24px;
}
.popup__desc strong { color: var(--sage); }
.popup__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.popup__perks li {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.popup__cta { width: 100%; justify-content: center; margin-bottom: 14px; }
.popup__skip {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  background: none; border: none;
  text-align: center;
  transition: color .2s;
  padding: 0;
}
.popup__skip:hover { color: rgba(255,255,255,.6); }

@media (max-width: 640px) {
  .popup__inner { grid-template-columns: 1fr; }
  .popup__left { height: 200px; }
  .popup__right { padding: 32px 28px; }
}

/* ─── REVIEWS ─── */
.reviews {
  padding: 120px 0;
  background: var(--cream);
}
.reviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.reviews__stars {
  color: #C9A84C;
  font-size: 20px;
  letter-spacing: 2px;
}
.reviews__score {
  font-size: 14px;
  color: var(--dark-muted);
  font-weight: 500;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .3s;
}
.review-card:hover { box-shadow: var(--shadow-lg); }
.review-card__stars { color: #C9A84C; font-size: 16px; letter-spacing: 2px; }
.review-card__text {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.75;
  color: var(--dark);
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--taupe);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 14px; font-weight: 600; color: var(--dark); }
.review-card__author span { font-size: 12px; color: var(--dark-muted); }
.reviews__cta { text-align: center; }

/* ─── FAQ ─── */
/* ─── FAQ HOME BLOCK (Berlin Laser style) ─── */
.faq-home {
  background: var(--dark);
  padding: 72px 0;
  border-radius: 32px;
  margin: 0 24px;
}
.faq-home__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(32px, 7vw, 120px);
}
.faq-home__tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: block;
  margin-bottom: 18px;
}
.faq-home__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.faq-home__title em {
  font-style: italic;
  text-transform: none;
  color: var(--white);
}
.faq-home__desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 360px;
}
.faq-home__card {
  background: rgba(255,255,255,.06);
  border-radius: 28px;
  padding: 36px 40px 0;
  border: 1px solid rgba(255,255,255,.09);
}
.faq-home__qa {
  padding: 20px 0;
}
.faq-home__qa:first-child {
  padding-top: 0;
}
.faq-home__q {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.25;
}
.faq-home__a {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.faq-home__divider {
  height: 1px;
  background: rgba(255,255,255,.1);
}
.faq-home__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.faq-home__more:hover { color: var(--white); }
.faq-home__more span {
  font-size: 20px;
  line-height: 1;
  transition: transform .2s;
}
.faq-home__more:hover span { transform: translate(2px, -2px); }

/* ─── FAQ accordion (used on faq.html) ─── */
.faq {
  padding: 120px 0;
  background: var(--cream-dark);
}
.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--taupe-light);
}
.faq__item:first-child { border-top: 1px solid var(--taupe-light); }
.faq__question {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  padding: 24px 40px 24px 0;
  cursor: pointer;
  position: relative;
  user-select: none;
  list-style: none;
}
.faq__question::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1;
  transition: transform .3s;
}
details[open] .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__answer {
  padding-bottom: 24px;
}
.faq__answer p {
  font-size: 15px;
  color: var(--dark-muted);
  line-height: 1.8;
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}
.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__detail-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact__detail p, .contact__detail a {
  font-size: 15px;
  color: var(--dark-muted);
}
.contact__detail a:hover { color: var(--dark); border-bottom: 1px solid; }
.contact__social {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}
.contact__social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--taupe-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-muted);
  transition: all .25s;
}
.contact__social-link svg { width: 20px; height: 20px; }
.contact__social-link:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
}
.contact__map iframe { width: 100%; height: 100%; }

/* ─── FOOTER ─── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 60px;
}
.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 22px;
  opacity: .9;
}
.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 8px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 13px; }
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer__bottom-links a:hover { color: var(--white); }

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: rgba(58,75,44,.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  z-index: 100; box-shadow: 0 -6px 24px rgba(0,0,0,.15);
  opacity: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s;
  white-space: nowrap;
  display: none;
  pointer-events: none;
}
.floating-cta.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-cta.hidden-near-bottom {
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  pointer-events: none;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .process__steps { flex-wrap: wrap; justify-content: center; }
  .process__connector { display: none; }
  .process__step { flex: 0 0 45%; padding: 0 16px; margin-bottom: 40px; }
}

/* ── Mega-menu: tighten spacing on narrower desktops (nav visible above 1280px) ── */
@media (max-width: 1400px) and (min-width: 1281px) {
  .mega-menu__inner {
    grid-template-columns: 1fr 1fr 1fr 220px;
  }
  .mega-menu__col {
    padding-right: 20px;
    margin-right: 20px;
  }
  .mega-menu__promo { height: 180px; }
}

/* ── Header: collapse desktop nav to burger before nav items overlap the centered logo ──
   Content width needed: LASER HAIR REMOVAL + FACIALS + SHOP + RESOURCES (~502px) +
   ABOUT + REVIEWS + CONTACT + BOOK NOW btn (~395px) + centered logo (~160px) +
   safety padding ≈ 1250-1280px viewport. Below that, nav collides with the logo. */
@media (max-width: 1280px) {
  .nav--left  { display: none; }
  .nav--right .nav__link  { display: none; }
  .nav--right .btn--book  { display: none; }
  .burger { display: flex; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Shop grid: compact 2-col on mobile */
  .shop__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card { border-radius: 14px; }
  .product-card__badge {
    font-size: 8px;
    padding: 3px 8px;
    top: 8px; left: 8px;
    letter-spacing: .08em;
  }
  .product-card__img-wrap { aspect-ratio: 1/1; }
  .product-card__info { padding: 12px 12px 14px; gap: 4px; }
  .product-card__brand { font-size: 9px; letter-spacing: .1em; }
  .product-card__name { font-size: 14px; line-height: 1.2; }
  .product-card__desc { display: none; }
  .product-card__footer {
    margin-top: 8px;
    padding-top: 8px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .product-card__price { font-size: 16px; }
  .product-card__btn { font-size: 10px; padding: 6px 12px; letter-spacing: .04em; }

  /* shop.html dedicated grid */
  .shop-grid__inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding-inline: 16px !important;
  }
  .product-item { border-radius: 14px; }
  .product-item__body { padding: 12px 12px 14px !important; gap: 4px !important; }
  .product-item__brand { font-size: 9px !important; letter-spacing: .1em !important; }
  .product-item__name { font-size: 14px !important; line-height: 1.2 !important; margin-bottom: 2px !important; }
  .product-item__desc { display: none !important; }
  .product-item__footer { margin-top: 6px !important; gap: 6px !important; flex-wrap: wrap !important; }
  .product-item__price { font-size: 16px !important; }
  .product-item__btn { font-size: 10px !important; padding: 6px 12px !important; letter-spacing: .04em !important; }
  .product-item__badge { font-size: 8px !important; padding: 3px 8px !important; top: 8px !important; left: 8px !important; }

  .promo-banner { font-size: 12px; gap: 8px; padding: 10px 12px; }
  .promo-link { display: none; }

  .hero { padding-top: calc(var(--header-h) + 34px + 40px); padding-bottom: 60px; }
  .hero__title { font-size: clamp(42px, 12vw, 64px); }
  .hero__sub { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 16px; }
  .hero__trust-num { font-size: 20px; }
  .hero__scroll { display: none; }

  .offer-banner { padding: 48px 0; }
  .offer-banner__inner { flex-direction: column; text-align: center; }
  .offer-banner__desc { margin-inline: auto; }

  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; }

  .about { padding: 80px 0; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__image-badge { right: 0; bottom: -16px; }

  .process { padding: 80px 0; }
  .process__step { flex: 0 0 100%; }

  .reviews { padding: 80px 0; }
  .reviews__grid { grid-template-columns: 1fr; }

  .faq { padding: 80px 0; }

  .faq-home { padding: 56px 0; border-radius: 20px; margin: 0 12px; }
  .faq-home__inner { grid-template-columns: 1fr; gap: 36px; padding-inline: 20px; }
  .faq-home__card { padding: 28px 24px 0; border-radius: 20px; }
  .faq-home__title { font-size: clamp(32px, 8vw, 48px); }

  .contact { padding: 80px 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__map { height: 300px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 60px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom .container { flex-direction: column; align-items: flex-start; gap: 8px; }

  .floating-cta { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__badge { font-size: 10px; }
  .btn--lg { padding: 15px 28px; font-size: 13px; width: 100%; justify-content: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom-links { flex-direction: column; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING MODAL (shared across site — Vagaro widget embed)
   ═══════════════════════════════════════════════════════════════ */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(18, 24, 14, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.book-modal.open { opacity: 1; visibility: visible; }
.book-modal__inner {
  background: var(--cream);
  border-radius: 24px;
  width: 100%;
  max-width: 760px;
  max-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transform: translateY(20px) scale(.97);
  transition: transform .35s ease;
}
.book-modal.open .book-modal__inner { transform: translateY(0) scale(1); }
.book-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: var(--dark);
  color: var(--white);
  flex-shrink: 0;
}
.book-modal__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}
.book-modal__title em { font-style: italic; color: var(--sage); }
.book-modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.book-modal__close:hover { background: rgba(255,255,255,.2); }
.book-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  background: var(--white);
}
.book-modal__body .vagaro { width: 100% !important; padding: 16px !important; }
.shop-modal .book-modal__inner {
  max-width: 1100px !important;
  width: 100% !important;
  height: calc(100vh - 40px) !important;
  max-height: calc(100vh - 40px) !important;
}
.shop-modal .book-modal__body {
  padding: 0 !important;
  overflow: hidden !important;
  flex: 1 1 auto !important;
  min-height: 0;
  height: 100%;
}
.shop-modal .book-modal__body iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 640px) {
  .shop-modal .book-modal__inner { height: 100vh !important; max-height: 100vh !important; border-radius: 0 !important; }
}
.book-modal__loading {
  padding: 60px 24px;
  text-align: center;
  font-family: var(--sans);
  color: var(--taupe-dark);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .book-modal { padding: 0; align-items: stretch; }
  .book-modal__inner { max-width: 100%; max-height: 100vh; border-radius: 0; }
}

<<<<<<< HEAD
/* ═══════════════════════════════════════════════════════════════
   STICKY MOBILE CTA (always-visible Book Now on phones)
   Auto-injected by main.js on every page (skipped on landing.html
   which has its own .lp-sticky).
   ═══════════════════════════════════════════════════════════════ */
.site-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  padding: 12px 16px;
  z-index: 150;
  box-shadow: 0 -8px 24px rgba(0,0,0,.2);
}
.site-sticky-cta a {
  display: block;
  background: var(--sage);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  transition: background .2s;
}
.site-sticky-cta a:hover { background: #d4d8b8; }

@media (max-width: 640px) {
  .site-sticky-cta { display: block; }
  body { padding-bottom: 80px; } /* reserve space so content not hidden under CTA */
=======

/* ─── Legal asterisk (for "permanent hair reduction*") ─── */
.legal-asterisk {
  font-size: 0.5em;
  vertical-align: super;
  line-height: 0;
  margin-left: 2px;
}
.legal-asterisk a {
  color: inherit;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity .2s;
}
.legal-asterisk a:hover {
  opacity: 1;
  text-decoration: underline;
>>>>>>> 42499200cecdff6597ed8f0ae907b2c77342bd52
}

/* Phone in header (2026-07-03) */
.nav__tel { font-weight: 600; letter-spacing: .02em; white-space: nowrap; }
