/* ============================================================
   Regener8 Aesthetics — styles.css
   Brand: Sage Green · Soft Gold · Warm Ivory · Charcoal
   ============================================================ */

/* ----------------------------------------------------------
   1. CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  --sage:        #6b7c5c;
  --sage-light:  #8a9e78;
  --sage-dark:   #4a5940;
  --gold:        #c9a84c;
  --gold-light:  #e2c97e;
  --gold-dark:   #a07830;
  --ivory:       #f8f4ee;
  --ivory-dark:  #ede7dc;
  --charcoal:    #2e2e2e;
  --charcoal-lt: #4a4a4a;
  --white:       #ffffff;
  --shadow-sm:   0 2px 12px rgba(46, 46, 46, 0.08);
  --shadow-md:   0 6px 28px rgba(46, 46, 46, 0.12);
  --shadow-lg:   0 16px 56px rgba(46, 46, 46, 0.16);
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:  'Cormorant Garamond', 'Garamond', Georgia, serif;
  --font-sans:   'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --max-width:   1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p {
  font-size: 0.95rem;
  color: var(--charcoal-lt);
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 540px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--charcoal-lt);
  font-size: 0.95rem;
}

/* ----------------------------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section--ivory  { background-color: var(--ivory); }
.section--white  { background-color: var(--white); }
.section--sage   { background-color: var(--sage-dark); color: var(--ivory); }

.text-center { text-align: center; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.divider::after {
  background: linear-gradient(270deg, transparent, var(--gold));
}

.divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 26px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}

.btn-sage {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(107, 124, 92, 0.3);
}

.btn-sage:hover {
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage) 100%);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--ivory-dark);
}

.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
}

.btn-lg {
  padding: 1.2rem 3rem;
  font-size: 0.75rem;
}

.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.68rem;
}

/* ----------------------------------------------------------
   6. NAVIGATION
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.6rem 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(248, 244, 238, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.4rem 0;
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-right: auto;
  flex-shrink: 0;
}

.nav__logo img {
  height: 116px;
  width: auto;
  display: block;
  margin: -10px 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.nav__logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  flex-shrink: 0;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--sage);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: var(--sage);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav__phone {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--charcoal-lt);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}

.nav__phone:hover {
  color: var(--gold);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition);
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85vw);
  height: 100dvh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 6rem 2.5rem 3rem;
  transition: right var(--transition);
  flex-direction: column;
  gap: 2rem;
}

.nav__mobile.is-open {
  right: 0;
}

.nav__mobile-link {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  transition: color var(--transition);
  border-bottom: 1px solid var(--ivory-dark);
  padding-bottom: 1rem;
}

.nav__mobile-link:hover {
  color: var(--sage);
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 46, 46, 0.4);
  z-index: 998;
}

/* ----------------------------------------------------------
   7. HERO SECTION
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ivory);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 6s ease-out;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(248, 244, 238, 0.92) 0%,
    rgba(248, 244, 238, 0.75) 45%,
    rgba(248, 244, 238, 0.2) 100%
  );
}

.hero.is-loaded .hero__bg {
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-top: 6rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero__eyebrow-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero__title em {
  font-style: italic;
  color: var(--sage);
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--charcoal-lt);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.hero__scroll:hover {
  opacity: 1;
}

.hero__scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* Floating badge */
.hero__badge {
  position: absolute;
  right: 6%;
  bottom: 14%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 1;
  border-top: 3px solid var(--gold);
  min-width: 160px;
}

.hero__badge-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero__badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  font-weight: 600;
}

/* ----------------------------------------------------------
   8. ABOUT / INTRO STRIP
   ---------------------------------------------------------- */
.intro-strip {
  background: var(--charcoal);
  padding: 2.8rem 0;
}

.intro-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}

.intro-strip__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.intro-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-strip__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}

.intro-strip__label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  font-weight: 500;
  opacity: 0.85;
}

/* ----------------------------------------------------------
   9. TREATMENT CARDS
   ---------------------------------------------------------- */
.treatments {
  background: var(--ivory);
}

.treatments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.treatment-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-dark);
}

.treatment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.treatment-card:hover .treatment-card__image img {
  transform: scale(1.06);
}

.treatment-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

.treatment-card__body {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.treatment-card__desc {
  font-size: 0.875rem;
  color: var(--charcoal-lt);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.4rem;
}

.treatment-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--ivory-dark);
}

.treatment-card__price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--sage);
}

.treatment-card__price span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--charcoal-lt);
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
}

/* Featured card variant */
.treatment-card--featured {
  border: 1.5px solid var(--gold-light);
}

.treatment-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--sage);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  z-index: 1;
}

/* ----------------------------------------------------------
   10. PRICING TABLES
   ---------------------------------------------------------- */
.pricing {
  background: var(--white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  border-radius: var(--radius-md);
  padding: 2.8rem 2.4rem;
  border: 1.5px solid var(--ivory-dark);
  background: var(--ivory);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: var(--charcoal);
  border-color: var(--gold);
  color: var(--ivory);
}

.pricing-card--featured::before {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__period,
.pricing-card--featured .pricing-card__feature {
  color: var(--ivory);
}

.pricing-card--featured .pricing-card__divider {
  background: rgba(248, 244, 238, 0.15);
}

.pricing-card--featured .pricing-card__feature::before {
  color: var(--gold);
}

.pricing-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.4rem;
}

.pricing-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.pricing-card__tagline {
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.pricing-card--featured .pricing-card__tagline {
  color: rgba(248, 244, 238, 0.7);
}

.pricing-card__price-block {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.pricing-card__currency {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
}

.pricing-card__price {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--charcoal);
}

.pricing-card__period {
  font-size: 0.75rem;
  color: var(--charcoal-lt);
  letter-spacing: 0.08em;
}

.pricing-card__divider {
  height: 1px;
  background: var(--ivory-dark);
  margin: 1.8rem 0;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--charcoal-lt);
}

.pricing-card__feature::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.pricing-card__feature--disabled {
  opacity: 0.4;
}

.pricing-card__feature--disabled::before {
  content: '×';
  color: var(--charcoal-lt);
}

/* Single-treatment pricing list */
.pricing-list {
  background: var(--ivory);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-list__category {
  padding: 1.2rem 2rem;
  background: var(--sage-dark);
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.pricing-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--ivory-dark);
  transition: background var(--transition);
}

.pricing-list__item:last-child {
  border-bottom: none;
}

.pricing-list__item:hover {
  background: var(--white);
}

.pricing-list__name {
  font-size: 0.9rem;
  color: var(--charcoal);
}

.pricing-list__duration {
  font-size: 0.72rem;
  color: var(--charcoal-lt);
  margin-top: 0.15rem;
  letter-spacing: 0.06em;
}

.pricing-list__amount {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--sage);
  white-space: nowrap;
}

/* ----------------------------------------------------------
   11. BEFORE & AFTER GALLERY
   ---------------------------------------------------------- */
.gallery {
  background: var(--ivory-dark);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.ba-card:hover {
  box-shadow: var(--shadow-md);
}

.ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.ba-card__images::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 1;
}

.ba-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ivory-dark);
}

.ba-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-card__label {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(46, 46, 46, 0.72);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  z-index: 2;
}

.ba-card__body {
  padding: 1.4rem 1.6rem;
}

.ba-card__treatment {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.ba-card__meta {
  font-size: 0.72rem;
  color: var(--charcoal-lt);
  letter-spacing: 0.08em;
  display: flex;
  gap: 1rem;
}

.ba-card__meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Slider-style before/after */
.ba-slider {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  cursor: ew-resize;
  border-radius: var(--radius-md);
  user-select: none;
}

.ba-slider__after,
.ba-slider__before {
  position: absolute;
  inset: 0;
}

.ba-slider__after img,
.ba-slider__before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider__before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ba-slider__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  transform: translateX(-50%);
}

.ba-slider__knob {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  gap: 3px;
}

.ba-slider__knob::before,
.ba-slider__knob::after {
  content: '';
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.ba-slider__knob::before {
  border-right: 8px solid var(--sage);
}

.ba-slider__knob::after {
  border-left: 8px solid var(--sage);
}

/* Sub-section headers (Treatment Gallery / Results Gallery) */
.gallery__sub-section {
  margin-top: 3rem;
}

.gallery__sub-section:first-of-type {
  margin-top: 0;
}

.gallery__sub-header {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}

.gallery__sub-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.gallery__sub-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}

.gallery__sub-desc {
  font-size: 0.85rem;
  color: var(--charcoal-lt);
  line-height: 1.65;
  margin: 0 0 1.6rem;
  max-width: 640px;
}

.gallery__sub-rule {
  border: none;
  border-top: 1px solid rgba(107, 124, 92, 0.15);
  margin: 3.5rem 0;
}

/* Disclaimer */
.gallery__disclaimer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.72rem;
  color: var(--charcoal-lt);
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* Placeholder card — shown when genuine photography is not yet available */
.ba-placeholder {
  background: var(--ivory);
  border-radius: var(--radius-md);
  border: 1.5px dashed rgba(107, 124, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.ba-placeholder:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: var(--shadow-sm);
}

.ba-placeholder__inner {
  text-align: center;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.ba-placeholder__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ivory-dark);
  border: 1px solid rgba(107, 124, 92, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.ba-placeholder__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
}

.ba-placeholder__treatment {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.ba-placeholder__message {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.5;
  max-width: 240px;
  margin: 0;
}

.ba-placeholder__meta {
  font-size: 0.72rem;
  color: var(--charcoal-lt);
  opacity: 0.7;
  margin: 0;
}

/* Gallery notice banner */
.gallery__notice {
  background: var(--ivory-dark);
  border: 1px solid rgba(107, 124, 92, 0.18);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.6rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.78rem;
  color: var(--charcoal-lt);
  line-height: 1.6;
}

.gallery__notice svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ----------------------------------------------------------
   12. TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials {
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.8;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}

.testimonial-card__star {
  color: var(--gold);
  font-size: 0.85rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--ivory-dark);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ivory-dark);
  border: 2px solid var(--gold-light);
}

.testimonial-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-card__treatment {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ----------------------------------------------------------
   13. CONTACT SECTION
   ---------------------------------------------------------- */
.contact {
  background: var(--ivory);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__info-title {
  margin-bottom: 0.5rem;
}

.contact__info-intro {
  color: var(--charcoal-lt);
  margin-bottom: 2rem;
  max-width: 400px;
}

.contact__detail {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(107, 124, 92, 0.12);
  border: 1px solid rgba(107, 124, 92, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage);
  fill: none;
}

.contact__detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact__detail-value {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.6;
}

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

.contact__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--charcoal-lt);
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed var(--ivory-dark);
}

.contact__hours-row:last-child {
  border-bottom: none;
}

.contact__hours-day {
  font-weight: 500;
  color: var(--charcoal);
}

/* Contact form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.55rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(74, 74, 74, 0.45);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 124, 92, 0.12);
  background: var(--white);
}

.form-input.is-error,
.form-textarea.is-error,
.form-select.is-error {
  border-color: #c0392b;
}

.form-error {
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7c5c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--ivory-dark);
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.1em;
  accent-color: var(--sage);
}

.form-consent-text {
  font-size: 0.78rem;
  color: var(--charcoal-lt);
  line-height: 1.55;
}

.form-consent-text a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ----------------------------------------------------------
   14. MAP EMBED
   ---------------------------------------------------------- */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
  filter: grayscale(25%) contrast(1.05);
}

/* ----------------------------------------------------------
   15. TEAM SECTION
   ---------------------------------------------------------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.team-card {
  text-align: center;
}

.team-card__photo-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1.4rem;
}

.team-card__photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ivory-dark);
}

.team-card__badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.team-card__badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.team-card__bio {
  font-size: 0.82rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   16. STATS BAR
   ---------------------------------------------------------- */
.stats {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--charcoal) 100%);
  padding: 5rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item {
  padding: 1rem;
}

.stats__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.7);
}

/* ----------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--ivory);
  color: var(--charcoal);
  padding: 5rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(107, 124, 92, 0.18);
  margin-bottom: 2.5rem;
}

.footer__brand img {
  height: 140px;
  width: auto;
  display: block;
  margin-bottom: 1.4rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--charcoal-lt);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(107, 124, 92, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
}

.footer__social-link svg {
  width: 15px;
  height: 15px;
  stroke: var(--sage);
  fill: none;
  transition: stroke var(--transition);
}

.footer__social-link:hover svg {
  stroke: var(--gold-dark);
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.4rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--charcoal-lt);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--sage-dark);
}

.footer__contact-item {
  font-size: 0.85rem;
  color: var(--charcoal-lt);
  margin-bottom: 0.7rem;
  line-height: 1.6;
}

.footer__contact-item strong {
  color: var(--charcoal);
  font-weight: 600;
}

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

.footer__legal {
  font-size: 0.72rem;
  color: rgba(46, 46, 46, 0.45);
  letter-spacing: 0.05em;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer__legal-link {
  font-size: 0.72rem;
  color: var(--charcoal-lt);
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: var(--gold-dark);
}

/* ----------------------------------------------------------
   18. FLOATING BOOKING BUTTON (mobile)
   ---------------------------------------------------------- */
.fab-book {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.fab-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.6);
}

/* ----------------------------------------------------------
   18b. FLOATING WHATSAPP BUTTON
   ---------------------------------------------------------- */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}
.fab-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ----------------------------------------------------------
   18c. PERSISTENT MOBILE BOOKING BAR
   ---------------------------------------------------------- */
.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--charcoal);
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-book-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.mobile-book-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}
.mobile-book-bar__btn--book {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
}
.mobile-book-bar__btn--whatsapp {
  background: #25D366;
  color: var(--white);
}
.mobile-book-bar__btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ----------------------------------------------------------
   19. SCROLL-TO-TOP
   ---------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  border: none;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--sage);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
}

/* ----------------------------------------------------------
   20. UTILITY CLASSES
   ---------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.gold-text  { color: var(--gold); }
.sage-text  { color: var(--sage); }
.ivory-text { color: var(--ivory); }

.mt-0  { margin-top: 0; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ----------------------------------------------------------
   21. MEDIA QUERIES — TABLET
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: flex; }

  .hero__badge {
    display: none;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* ----------------------------------------------------------
   22. MEDIA QUERIES — MOBILE
   ---------------------------------------------------------- */
@media (max-width: 640px) {
  :root {
    --radius-md: 10px;
    --radius-lg: 16px;
  }

  .section {
    padding: 5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .hero__content {
    padding-top: 5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .treatments__grid,
  .testimonials__grid,
  .gallery__grid,
  .team__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal-links {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 2rem 1.5rem;
  }

  .fab-book {
    display: flex;
    bottom: 5.5rem;
  }

  .fab-whatsapp {
    bottom: 5.5rem;
  }

  .scroll-top {
    bottom: 9rem;
  }

  .mobile-book-bar {
    display: block;
  }

  body {
    padding-bottom: 4.5rem;
  }

  .intro-strip__inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}

/* ----------------------------------------------------------
   23. PRINT
   ---------------------------------------------------------- */
@media print {
  .nav,
  .fab-book,
  .fab-whatsapp,
  .mobile-book-bar,
  .scroll-top,
  .hero__scroll {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  .section {
    padding: 2rem 0;
    break-inside: avoid;
  }
}
