/* ============================================================
   Dermáge Aesthetics — Premium Mockup Stylesheet
   Self-hosted fonts: Cormorant Garamond (Luxury Serif) & Montserrat (Modern Sans-Serif)
   ============================================================ */

@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/montserrat-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-400.woff2") format("woff2");
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --sans: "Montserrat", system-ui, -apple-system, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  
  /* Elevated Color System */
  --ink: #2A2421;           /* deep warm charcoal/espresso */
  --muted: #655C54;         /* warm taupe */
  --cream: #FAF7F2;         /* soft warm linen background */
  --cream-deep: #F3ECE2;    /* deeper warm cream */
  --gold: #C5A880;          /* champagne bronze */
  --gold-dark: #A68A63;     /* rich bronze */
  --gold-light: #F4EFE6;    /* light warm gold tint */
  --rose: #E6D5D0;          /* soft blush */
  --rose-dark: #CBB2AA;     /* dusky rose */
  --white: #ffffff;
  --line: rgba(197, 168, 128, 0.18); /* subtle gold line */
  --glass: rgba(250, 247, 242, 0.75);
  
  /* Premium Shadow & Depth */
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 32px;
  --maxw: 1200px;
  --shadow-sm: 0 4px 20px rgba(42, 36, 33, 0.04);
  --shadow: 0 16px 48px rgba(42, 36, 33, 0.08);
  --shadow-hover: 0 24px 64px rgba(42, 36, 33, 0.15);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--cream);
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font-family: inherit;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.4em;
  color: var(--ink);
  letter-spacing: 0.5px;
}
h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
}
h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}
h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
h4 {
  font-size: 1.35rem;
}
p {
  margin: 0 0 1.2em;
}
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 1.2em;
  display: inline-block;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 1px;
  background-color: var(--gold);
}
.lead {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 300;
}
em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* ---------- Layout & Grid ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 64px);
}
.section {
  padding: clamp(64px, 10vw, 130px) 0;
  position: relative;
}
.section--cream-deep,
.section--cream {
  position: relative;
  background-color: var(--cream-deep);
  z-index: 1;
}
.section--cream-deep::before,
.section--cream::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/Untitled_design_-_2025-08-19T230054.372.webp');
  background-repeat: repeat;
  background-size: 320px;
  opacity: 0.12; /* subtle luxury monogram wallpaper */
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: multiply;
}
#partners-brands::before {
  display: none; /* keep brand marquee clean */
}
.section--white {
  background-color: var(--white);
}
.section--dark {
  background-color: var(--ink);
  color: var(--cream-deep);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--white);
}
.section--dark .eyebrow {
  color: var(--gold);
}
.section--tight {
  padding: clamp(40px, 6vw, 80px) 0;
}
.center {
  text-align: center;
}
.measure {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pill-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 18px 38px;
  border-radius: 50px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gold-dark);
  transform: translateY(101%);
  transition: var(--transition);
  z-index: -1;
}
.btn:hover {
  color: var(--white);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 24px rgba(197, 168, 128, 0.3);
}
.btn:hover::before {
  transform: translateY(0);
}
.btn--secondary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn--secondary::before {
  background-color: var(--ink);
}
.btn--secondary:hover {
  border-color: var(--ink);
}
.btn--secondary:hover::before {
  transform: translateY(0);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost::before {
  background-color: var(--ink);
}
.btn--ghost:hover {
  color: var(--white);
}
.btn--light {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--white);
}
.btn--light::before {
  background-color: var(--white);
}
.btn--light:hover {
  color: var(--ink);
  border-color: var(--white);
}
.btn--sm {
  padding: 12px 28px;
  font-size: 0.72rem;
}

/* ---------- Header & Navigation ---------- */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 6vw, 64px);
  transition: var(--transition);
}
.header-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  top: 0;
  padding: 0;
}
.site-header.scrolled .header-wrap {
  max-width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  background: rgba(250, 247, 242, 0.95);
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 80px;
  padding: 0 40px;
  gap: 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.nav__logo {
  justify-self: start;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 42px;
  width: auto;
  transition: var(--transition);
}
.nav__menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none; /* Renders Title Case from HTML */
  letter-spacing: 0.05em;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}
/* Underline effect on hover using ::before */
.nav__menu a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-dark);
  transition: var(--transition);
}
.nav__menu a:hover::before {
  width: 100%;
}
.nav__menu a:hover {
  color: var(--gold-dark);
}
.nav__menu .has-sub {
  position: relative;
}
.nav__menu .has-sub > a {
  position: relative;
}
.nav__menu .has-sub > a::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  margin-left: 6px;
  transition: var(--transition);
  opacity: 0.6;
}
.nav__menu .has-sub:hover > a::after {
  transform: translateY(-50%) rotate(-135deg);
  border-color: var(--gold-dark);
}
.nav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  list-style: none;
  margin: 0;
  padding: 12px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
/* bridge the hover gap to prevent cursor flicker/closing dropdowns */
.nav__sub::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: transparent;
}
.nav__menu .has-sub:hover .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav__sub a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.nav__sub a::before {
  display: none; /* override underline on submenu links */
}
.nav__sub a::after {
  display: none; /* override arrow icon on submenus */
}
.nav__sub a:hover {
  background: var(--cream-deep);
  color: var(--gold-dark);
  transform: translateX(4px);
}
.nav__cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}
.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .site-header {
    top: 0;
    padding: 0;
  }
  .header-wrap {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
  }
  .nav {
    padding: 0 24px;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px 32px 40px;
    max-height: calc(100vh - 80px);
    overflow: auto;
    transform: translateY(-130%);
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .nav__menu.is-open {
    transform: translateY(0);
  }
  .nav__menu > li {
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  }
  .nav__menu a {
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    display: block;
    width: 100%;
    padding: 16px 0;
    text-transform: none;
  }
  .nav__menu a::before {
    display: none; /* remove hover line effect on mobile links */
  }
  .nav__menu .has-sub > a::after {
    left: auto;
    right: 4px;
    margin-left: 0;
    transition: transform 0.3s ease;
  }
  .nav__menu .has-sub.is-active > a::after {
    transform: translateY(-50%) rotate(-135deg);
    border-color: var(--gold-dark);
  }
  .nav__sub {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    padding: 0 0 16px 20px;
    min-width: 0;
    display: none;
  }
  .nav__sub a {
    font-size: 0.92rem;
    padding: 12px 0;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: none;
  }
  .nav__menu .has-sub.is-active .nav__sub {
    display: block;
  }
  .nav__cta .btn {
    display: none;
  }
}

/* ---------- Cinematic Hero ---------- */
.hero-sec {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}
.hero-sec__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-sec__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s infinite alternate;
}
.hero-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 70% 30%, rgba(250, 247, 242, 0.1), rgba(42, 36, 33, 0.4)),
              linear-gradient(90deg, rgba(250, 247, 242, 0.95) 0%, rgba(250, 247, 242, 0.75) 45%, rgba(250, 247, 242, 0.1) 100%);
}
@media (max-width: 900px) {
  .hero-sec::after {
    background: linear-gradient(180deg, rgba(250, 247, 242, 0.95) 0%, rgba(250, 247, 242, 0.85) 60%, rgba(250, 247, 242, 0.4) 100%);
  }
}
.hero-sec .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero-content {
  max-width: 680px;
}
.hero-content h1 {
  margin-bottom: 24px;
}
.hero-content p {
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
}
@media (max-width: 900px) {
  .hero-actions {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}

/* Floating badge trust factor */
.hero-trust-badge {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 280px;
  margin-left: auto;
  animation: float 6s ease-in-out infinite;
  height: 252px;
  overflow: hidden;
  transition: opacity .28s ease, transform .28s ease;
}
.hero-trust-badge.has-review-link{cursor:pointer}
.hero-trust-badge.is-changing-review{opacity:.12;transform:translateY(3px)}
@media (prefers-reduced-motion:reduce){.hero-trust-badge{transition:none}}
@media (max-width: 900px) {
  .hero-trust-badge {
    margin: 40px auto 0;
  }
}
.hero-trust-badge .stars {
  color: var(--gold-dark);
  font-size: 1rem;
}
.hero-trust-badge blockquote {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0;
  font-style: italic;
  line-height: 1.4;
  height: calc(1.4em * 5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
.hero-trust-badge cite {
  font-style: normal;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ---------- Skin Goals Consultation Widget ---------- */
.widget-box {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(32px, 6vw, 64px);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}
.widget-title {
  margin-bottom: 40px;
  text-align: center;
}
.widget-concerns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
}
.concern-tab {
  flex: 1 1 180px;
  max-width: 260px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.concern-tab svg {
  width: 32px;
  height: 32px;
  fill: none;
  /* The inline paths use stroke/fill="currentColor", so drive the icon color
     via `color` — setting `stroke` alone is overridden by those attributes. */
  color: var(--gold-dark);
  stroke: var(--gold-dark);
  stroke-width: 1.2;
  transition: var(--transition);
}
.concern-tab span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.concern-tab:hover {
  transform: translateY(-4px);
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.concern-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.concern-tab.is-active span {
  color: var(--white);
}
.concern-tab.is-active svg {
  color: var(--gold);
  stroke: var(--gold);
}

.recommendation-panel {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rec-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .rec-content {
    grid-template-columns: 1fr;
  }
}
.rec-info h4 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}
.rec-info p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.98rem;
}
.rec-tag {
  display: inline-flex;
  background: var(--gold-light);
  color: var(--gold-dark);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rec-action {
  text-align: center;
}
.rec-action .btn {
  width: 100%;
}
.rec-placeholder {
  text-align: center;
  color: var(--muted);
}

/* ---- Treatment Finder (guided step wizard) ---- */
.skin-finder {
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.finder-head {
  text-align: center;
  margin-bottom: 28px;
}
.finder-crumb {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.finder-q {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.finder-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}
.finder-back,
.finder-restart {
  background: none;
  border: 0;
  padding: 8px 4px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}
.finder-back:hover,
.finder-restart:hover {
  color: var(--ink);
}
/* Result reuses .recommendation-panel but must stack the panel + nav */
.recommendation-panel.finder-result {
  flex-direction: column;
  align-items: stretch;
}
.rec-offer-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.rec-offer {
  color: var(--gold-dark);
  margin: 0 0 16px;
  font-weight: 500;
  font-size: 1.8rem;
}
.rec-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
  stroke-width: 1;
  fill: none;
  margin-bottom: 16px;
}

/* ---------- Bento Grid Services ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 24px;
}
.bento-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  z-index: 1;
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.bento-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.bento-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.bento-card:hover .bento-card__bg img {
  transform: scale(1.05);
}
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(42, 36, 33, 0.05), rgba(42, 36, 33, 0.3) 60%, rgba(42, 36, 33, 0.85));
}
.bento-card__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 32px;
  color: var(--white);
}
.bento-card__body h3 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.bento-card__body p {
  margin-bottom: 0;
  font-size: 0.88rem;
  color: var(--rose);
  opacity: 0.95;
  max-width: 32ch;
  line-height: 1.5;
}
.bento-card__tag {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Custom Bento Layout Span */
.bento-card--hydrafacial {
  grid-column: span 3;
  grid-row: span 2;
}
.bento-card--microneedling {
  grid-column: span 3;
  grid-row: span 2;
}
.bento-card--dermaplane {
  grid-column: span 2;
  grid-row: span 1;
}
.bento-card--laser {
  grid-column: span 4;
  grid-row: span 1;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
  }
  .bento-card--hydrafacial {
    grid-column: span 2;
  }
  .bento-card--microneedling {
    grid-column: span 2;
  }
  .bento-card--dermaplane {
    grid-column: span 2;
  }
  .bento-card--laser {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }
  .bento-card--hydrafacial,
  .bento-card--microneedling,
  .bento-card--dermaplane,
  .bento-card--laser {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ---------- Draggable Before/After Transformation Slider ---------- */
.transformation-section {
  position: relative;
  overflow: hidden;
}
.slider-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .slider-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.slider-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.slider-img.img-after {
  clip-path: inset(0 0 0 var(--position, 50%));
}
.slider-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  margin: 0;
}
.slider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 8;
  left: var(--position, 50%);
  transform: translateX(-50%);
  pointer-events: none;
}
.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background-color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
}
.slider-button::before,
.slider-button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.slider-button::before {
  border-right: 7px solid var(--gold-dark);
  margin-right: 3px;
}
.slider-button::after {
  border-left: 7px solid var(--gold-dark);
  margin-left: 3px;
}

.slider-label {
  position: absolute;
  bottom: 24px;
  background: rgba(42, 36, 33, 0.7);
  backdrop-filter: blur(4px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 7;
  pointer-events: none;
}
.slider-label--before {
  left: 24px;
}
.slider-label--after {
  right: 24px;
}

/* ---------- Master Esthetician Spotlight ---------- */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
}
.spotlight-media {
  position: relative;
}
.spotlight-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}
.spotlight-badge {
  position: absolute;
  bottom: -24px;
  right: 24px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--gold);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 240px;
  text-align: center;
}
.spotlight-badge b {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.spotlight-badge span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 8px;
  display: block;
  color: var(--cream-deep);
}
@media (max-width: 600px) {
  .spotlight-badge {
    position: static;
    margin: 24px auto 0;
    max-width: 100%;
  }
}
.credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.credential-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-dark);
  stroke-width: 1.5;
  fill: none;
}
.credential-item span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
}

/* ---------- Testimonial & Review Band ---------- */
.review-marquee {
  background: var(--ink);
  color: var(--gold-light);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.review-marquee__track {
  display: inline-flex;
  align-items: center;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.review-marquee span {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0 32px;
}
.review-marquee i {
  color: var(--gold);
  opacity: 0.6;
  font-style: normal;
}
@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.testimonial-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  height: 390px;
  min-height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-slide {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  width: 100%;
}
.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.testimonial-slide .stars {
  color: var(--gold-dark);
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testimonial-slide blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 24px;
  height: calc(1.45em * 5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}
.testimonial-slide figcaption {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.google-review-author{display:flex;align-items:center;justify-content:center;gap:10px}
.google-review-author img{width:32px;height:32px;border-radius:50%;object-fit:cover}
.google-review-author a{color:inherit;text-decoration:underline;text-underline-offset:3px}
.google-review-author small{opacity:.75}
.google-review-link{cursor:pointer}
.google-review-summary{text-align:center;color:var(--muted);font-size:.8rem;margin:18px 0 0}
.google-review-summary a{color:inherit;font-weight:700}
.google-business-hours{font-size:.78rem;color:#9b9286;margin:12px 0 18px}
.google-business-hours ul{list-style:none;padding:0;margin:6px 0;line-height:1.55}
@media (max-width:600px){
  .testimonial-box{height:350px;min-height:350px}
  .testimonial-slide blockquote{height:calc(1.45em * 6);-webkit-line-clamp:6;line-clamp:6}
}
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  padding: 0;
  opacity: 0.4;
  transition: var(--transition-fast);
}
.testimonial-dot:hover {
  opacity: 0.8;
}
.testimonial-dot.is-active {
  opacity: 1;
  transform: scale(1.3);
  background: var(--gold-dark);
}

/* ---------- Brand Showcase Marquee ---------- */
.brands-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  user-select: none;
}
.brands-marquee__track {
  display: flex;
  width: max-content;
  animation: brandsMarquee 32s linear infinite;
  will-change: transform;
}
.brands-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-item {
  width: 220px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-item img {
  max-height: 40px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: var(--transition-fast);
}
.brand-item img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes brandsMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ---------- FAQ Toggle Accordion ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 24px 40px 24px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition-fast);
}
.accordion-q:hover {
  color: var(--gold-dark);
}
.accordion-q::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: var(--transition);
}
.accordion-item.is-open .accordion-q {
  color: var(--gold-dark);
}
.accordion-item.is-open .accordion-q::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--ink);
}
.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion-a p {
  padding: 0 0 24px;
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* ---------- Interactive Lead Capture & Footer ---------- */
.conversion-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.conversion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .conversion-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.lead-form-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: clamp(32px, 6vw, 48px);
}
.form-title {
  margin-bottom: 24px;
}
.form-title h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}
.form-title p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--gold-dark);
}
.form-control {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  transition: var(--transition-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ---------- Sticky Float CTA Button ---------- */
.sticky-badge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 90;
  transform: translateY(120px);
  opacity: 0;
  transition: var(--transition);
}
.sticky-badge.visible {
  transform: translateY(0);
  opacity: 1;
}
.sticky-badge__btn {
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 16px 28px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition);
}
.sticky-badge__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}
.sticky-badge__btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}
.sticky-badge__btn:hover svg {
  stroke: var(--white);
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: #cfc6ba;
  padding: 80px 0 40px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/Untitled_design_-_2025-08-19T230054.372.webp');
  background-repeat: repeat;
  background-size: 320px;
  opacity: 0.035; /* extremely faint dark monogram wallpaper */
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.site-footer a {
  color: #cfc6ba;
  transition: var(--transition-fast);
}
.site-footer a:hover {
  color: var(--white);
}
.site-footer .btn {
  color: var(--white);
}
.site-footer .btn--secondary {
  color: var(--ink);
}
.site-footer .btn--secondary:hover {
  color: var(--white);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer__grid h2 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--white);
  margin: 0 0 20px;
  font-weight: 600;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 24px;
}
.footer__grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #9b9286;
}
.footer__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
  display: block;
  filter: grayscale(0.5) contrast(0.9) invert(0.9) hue-rotate(180deg);
  opacity: 0.8;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.social-icons a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.social-icons a:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__map {
    grid-column: span 2;
  }
}
@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__map {
    grid-column: span 1;
  }
}

/* ---------- Scroll Reveal & Animation Classes ---------- */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   Interior Page Styles & Custom Brand Components
   ============================================================ */

/* Page Banners with Monogram Wallpaper Background Overlay */
.banner {
  position: relative;
  background-color: var(--cream-deep);
  text-align: center;
  padding: clamp(90px, 12vw, 150px) 0 clamp(60px, 8vw, 90px);
  overflow: hidden;
  z-index: 1;
  border-bottom: 1px solid var(--line);
}
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/Untitled_design_-_2025-08-19T230054.372.webp');
  background-repeat: repeat;
  background-size: 320px;
  opacity: 0.14; /* subtle luxurious wallpaper look */
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.banner h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}
.banner .eyebrow {
  margin-bottom: 8px;
}
.banner p.lead {
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Split Columns (Text + Media) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}
.split--rev .split__media {
  order: 2;
}
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}
@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split--rev .split__media {
    order: 0;
  }
}

/* Interior Grid & Luxury Cards */
.grid {
  display: grid;
  gap: 26px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 1;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold-dark);
}
.card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.card:hover .card__media img {
  transform: scale(1.04);
}
.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card__body h4 {
  margin: 0;
  font-size: 1.4rem;
}
.card__body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Treatment Price List Rows */
.menu-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.menu-item:last-child {
  border-bottom: 1px solid var(--line);
}
.menu-item__img {
  width: 150px;
  height: 150px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.menu-item__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.menu-item h4 {
  margin: 0;
  font-size: 1.4rem;
}
.price {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--gold-dark);
  font-size: 1rem;
  white-space: nowrap;
}
.menu-item p {
  color: var(--muted);
  margin: 0.5em 0 1em;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 620px) {
  .menu-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .menu-item__img {
    width: 100%;
    height: 200px;
  }
}

/* Custom Lists with Gold Chevrons */
.ticks {
  list-style: none;
  margin: 0 0 1.2em;
  padding: 0;
  display: grid;
  gap: 12px;
}
.ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.5;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.45em;
  width: 10px;
  height: 6px;
  border-left: 2.5px solid var(--gold-dark);
  border-bottom: 2.5px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.ticks--cols {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 600px) {
  .ticks--cols {
    grid-template-columns: 1fr;
  }
}

/* Stats Counter Grid */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}
.stat b {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3rem);
  display: block;
  color: var(--gold-dark);
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  color: var(--muted);
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (max-width: 820px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Interactive Photo Gallery Overlay Zoom */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery a {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery a:hover img {
  transform: scale(1.05);
}
.gallery a span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 36, 33, 0.45);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  opacity: 0;
  transition: var(--transition-fast);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-style: italic;
}
.gallery a:hover span {
  opacity: 1;
}
@media (max-width: 700px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* ---- Gallery Lightbox ---- */
.gallery--lightbox a { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(20, 16, 13, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 100%;
}
.lightbox__img {
  max-width: min(92vw, 1040px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox__caption {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-height: 1em;
}
.lightbox__btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__close { top: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px); }
.lightbox__prev { left: clamp(10px, 3vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(10px, 3vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__count {
  position: absolute;
  bottom: clamp(14px, 3vw, 26px);
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .lightbox__btn { width: 42px; height: 42px; }
  .lightbox__prev { left: 6px; }
  .lightbox__next { right: 6px; }
}

/* Responsive Instagram Grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ig-grid iframe {
  width: 100%;
  height: 520px;
  border: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
@media (max-width: 980px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .ig-grid {
    grid-template-columns: 1fr;
  }
  .ig-grid iframe {
    height: 480px;
  }
}

/* Pore-Clogging Ingredient Checker Styles */
.tool-result {
  max-width: 680px;
  margin: 24px auto 0;
  text-align: left;
}
.tool-result .hit {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
}
.tool-result .clean {
  text-align: center;
  color: var(--gold-dark);
  font-weight: 600;
  padding: 24px;
  border: 1px dashed var(--gold);
  border-radius: var(--radius);
  background: var(--gold-light);
  font-size: 1.05rem;
  line-height: 1.5;
}
.tag {
  display: inline-block;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 6px 14px;
  margin: 4px;
  font-size: 0.8rem;
  color: var(--ink);
  font-weight: 500;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto 20px;
}
.field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--gold-dark);
  text-align: left;
}
textarea.form-control,
#pore-input {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  width: 100%;
  transition: var(--transition-fast);
  min-height: 160px;
  resize: vertical;
}
#pore-input:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
}

/* ---------- Faint Parallax Section Backgrounds ---------- */
.section--parallax {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.section--parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/wildfield-beauty-collection-037.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.08; /* extremely faint so it is a soft, elegant touch */
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .section--parallax::before {
    background-attachment: scroll;
  }
}

/* Tasteful Site-Wide Parallax Call-to-Action Strip */
.cta {
  position: relative;
  background-color: var(--cream-deep);
  text-align: center;
  z-index: 1;
  overflow: hidden;
  padding: clamp(70px, 9vw, 110px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/wildfield-beauty-collection-037.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.12; /* soft background texture */
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.cta h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 8px;
}
.cta p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.cta .loc {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 18px 0 24px;
}
@media (max-width: 1024px) {
  .cta::before {
    background-attachment: scroll;
  }
}

/* ---------- Review Carousel Band (Sub-pages) ---------- */
.review-band {
  background: var(--gold-light);
  padding: clamp(54px, 7vw, 96px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.rc {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.rc-viewport {
  overflow: hidden;
}
.rc-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.rc-slide {
  flex: 0 0 100%;
  text-align: center;
  margin: 0;
  padding: 0 16px;
}
.rc-slide .stars {
  color: var(--gold-dark);
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.rc-slide blockquote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 16px;
}
.rc-slide figcaption {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-dark);
}
.rc-arrow {
  background: none;
  border: 0;
  font-size: 2.2rem;
  color: var(--gold-dark);
  cursor: pointer;
  opacity: 0.55;
  line-height: 1;
  padding: 8px 12px;
  transition: var(--transition-fast);
}
.rc-arrow:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ---------- Client-reviews ticker (Sub-pages) ---------- */
.reviews-ticker {
  background: var(--ink);
  color: var(--gold-light);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-ticker__track {
  display: inline-flex;
  align-items: center;
  animation: tickerMarquee 34s linear infinite;
  will-change: transform;
}
.reviews-ticker span {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0 24px;
}
.reviews-ticker i {
  color: var(--gold);
  opacity: 0.6;
  font-style: normal;
}
@keyframes tickerMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Brand logos ---------- */
.brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 64px);
  margin-top: 24px;
}
.brands img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: var(--transition-fast);
}
.brands img:hover {
  filter: grayscale(0);
  opacity: 1;
}
.brands--color img {
  filter: none;
  opacity: 1;
  height: 58px;
}

/* ---------- Responsive Treatment Grid ---------- */
/* Flexbox (not grid) so each row sizes itself independently: cards grow to
   fill their own row, so a short last row (e.g. 2 of a possible 3) spreads
   out and centers instead of getting pinned to the left. max-width keeps a
   lone/partial row from stretching into oversized cards; it reflows on its
   own as the viewport narrows (no fixed column-count breakpoints). */
.treatment-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 40px;
}
.treatment-card {
  flex: 1 1 185px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px 20px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.treatment-card__media {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px; /* Centered horizontally */
  border: 2px solid var(--gold-light);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease;
}
.treatment-card:hover .treatment-card__media {
  border-color: var(--gold);
}
.treatment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.treatment-card__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.3;
}
.treatment-card__price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 16px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px dashed var(--line);
  width: 100%;
  padding-bottom: 12px;
}
.treatment-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 12px;
}
.treatment-card__desc.is-clamped {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.treatment-card__readmore {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  cursor: pointer;
  transition: color 0.2s ease;
}
.treatment-card__readmore:hover {
  color: var(--ink);
  text-decoration: underline;
}
.treatment-card__btn {
  align-self: flex-start;
  margin-top: auto; /* Keeps the booking button aligned at the card bottom */
}

/* Phones: force one full-width card per row. */
@media (max-width: 600px) {
  .treatment-card {
    flex-basis: 100%;
    max-width: none;
  }
}

/* ============================================================
   Instagram Feed Section (Inline Playback Redesign)
   ============================================================ */
.section--instagram {
  background-color: var(--white);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
}
.instagram-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 48px);
}
.instagram-header h2 {
  margin-bottom: 12px;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-dark);
  transition: var(--transition-fast);
}
.instagram-handle:hover {
  color: var(--ink);
}
.instagram-handle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}
.instagram-handle:hover svg {
  transform: scale(1.1);
}

/* 3-Column Grid Layout */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
}
@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Card Structure */
.instagram-card {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.instagram-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

/* Media/Image Area */
.instagram-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--cream-deep);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.instagram-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.instagram-card:hover .instagram-card__media img {
  transform: scale(1.06);
}

/* Hover overlay and play button overlay */
.instagram-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 36, 33, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
  cursor: pointer;
}
.instagram-card:hover .instagram-card__overlay {
  opacity: 1;
}
.instagram-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  transform: scale(0.8);
}
.instagram-card:hover .instagram-card__icon {
  transform: scale(1);
}
.instagram-card__icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A68A63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='2' y='2' width='20' height='20' rx='5' ry='5'></rect><path d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'></path><line x1='17.5' y1='6.5' x2='17.51' y2='6.5'></line></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.instagram-card__icon--play::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A68A63'><path d='M8 5v14l11-7z'/></svg>");
  width: 22px;
  height: 22px;
  margin-left: 2px;
}

/* Info Panel below media */
.instagram-card__info {
  padding: 24px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.instagram-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.instagram-card__tag {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
}
.instagram-card__type {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}
.instagram-card__desc {
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.instagram-card__btn {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.instagram-card__btn:hover {
  color: var(--ink);
  transform: translateX(4px);
}

/* Loading/Iframe/Video elements for inline player */
.instagram-card__media iframe,
.instagram-card__media video {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram-card__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 3px solid var(--gold-light);
  border-top-color: var(--gold-dark);
  border-radius: 50%;
  animation: igSpin 1s infinite linear;
  z-index: 1;
  display: none;
}
@keyframes igSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
