/* ============================================================
   Nurse Kelsey Medical Aesthetics — Shared Design System
   v20260518-nurse-kelsey-v14
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --cream:       #faf8f4;
  --paper:       #f5f3ef;
  --white:       #ffffff;
  --ink:         #221f1a;
  --ink-soft:    #7a7470;
  --stone:       #3d3831;
  --charcoal:    #1c1a16;
  --blush:       #e8d0cc;
  --blush-mid:   #c4877e;
  --blush-dark:  #8b4a42;
  --line:        rgba(34,31,26,0.10);
  --line-strong: rgba(34,31,26,0.18);
  --gold:        #c8a96e;

  --shadow-sm:  0 2px 12px rgba(34,31,26,0.07);
  --shadow-md:  0 8px 40px rgba(34,31,26,0.10);
  --shadow-lg:  0 24px 80px rgba(34,31,26,0.12);

  --sp-1:  4px;  --sp-2:  8px;  --sp-3:  12px; --sp-4:  16px;
  --sp-5:  20px; --sp-6:  24px; --sp-8:  32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  --ease:      cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:  200ms;
  --dur-med:   400ms;
  --dur-slow:  600ms;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-pill: 999px;

  --max-w: 1160px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.08;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 0.92; }
h2 { font-size: clamp(1.8rem, 3.4vw, 3.2rem); line-height: 1.1; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); line-height: 1.2; }
h4 { font-size: clamp(1rem, 1.4vw, 1.2rem); }

p { margin-top: var(--sp-4); }
p:first-child { margin-top: 0; }

.lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.78;
  color: var(--ink-soft);
  font-weight: 400;
}

.muted { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-soft);
  margin-bottom: var(--sp-3);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── 4. LAYOUT PRIMITIVES ─────────────────────────────────── */
.container {
  width: min(var(--max-w), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(64px, 9vw, 104px);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

/* ── 5. NAVIGATION ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  padding: 0 16px;
  pointer-events: none;
}

/* The inner nav container — matches .nav-inner in HTML */
.nav {
  pointer-events: all;
}

.nav-inner {
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  min-height: 68px;
  padding: 8px 8px 8px 24px;
  border-radius: var(--r-pill);
  background: rgba(252,251,248,0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: padding var(--dur-med) var(--ease),
              background var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
}

.site-header.scrolled .nav-inner {
  background: rgba(250,249,246,0.97);
  box-shadow: var(--shadow-lg);
  padding-block: 5px;
}

/* Brand */
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-desktop {
  width: 48px;
  height: 44px;
  object-fit: contain;
}

.nav-logo-mobile { display: none; }

.nav-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  font-size: 0.86rem;
  font-weight: 600;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  transition: color var(--dur-fast) var(--ease);
}

.nav-links a:hover { color: var(--ink); }

/* Nav CTA — matches .button.button-nav in HTML */
.button-nav {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 var(--sp-5);
  border-radius: var(--r-pill);
  background: var(--stone);
  color: var(--white) !important;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.button-nav:hover { background: var(--charcoal); transform: translateY(-1px); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — matches .mobile-menu in HTML */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 80px;
  z-index: 99;
  pointer-events: auto;
  background: rgba(250,249,246,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--sp-8) var(--sp-6);
  flex-direction: column;
  gap: var(--sp-2);
  overflow-y: auto;
}

.mobile-menu.is-open { display: flex; }

.mobile-menu-panel {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  pointer-events: auto;
}

.mobile-menu-panel ul { display: flex; flex-direction: column; }

.mobile-menu-panel a {
  display: block;
  padding: var(--sp-4) var(--sp-2);
  font-size: 1.4rem;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-panel li:last-child a { border-bottom: none; }

.mobile-menu .mobile-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--sp-3);
}

.mobile-menu .social-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  min-width: 46px;
  height: 46px;
  color: var(--stone) !important;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.68) 58%, rgba(232, 208, 204, 0.2)),
    rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(34, 31, 26, 0.11) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 44px rgba(34, 31, 26, 0.1) !important;
}

.mobile-menu .social-icon svg {
  width: 19px;
  height: 19px;
}

.mobile-menu .social-icon[aria-label*="Facebook"] svg {
  width: 17px;
  height: 17px;
  transform: translate(0.4px, 0.1px);
}

.mobile-menu .button-blush {
  display: inline-flex;
  width: min(100%, 520px);
  justify-content: center;
  min-height: 58px;
  padding: 0 var(--sp-6);
  margin-top: var(--sp-2);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.98rem, 3vw, 1.05rem);
  font-weight: 700;
  background: var(--blush-dark);
  border: 0;
  box-shadow: 0 18px 46px rgba(139, 74, 66, 0.2);
}

/* ── 6. BUTTONS ───────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 6px 10px 6px 24px;
  border-radius: var(--r-pill);
  background: var(--stone);
  color: var(--white);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
  white-space: nowrap;
}

/* Arrow capsule — matches .btn-arrow in HTML */
.btn-arrow {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.16);
  font-size: 0.95rem;
  transition: transform var(--dur-med) var(--ease);
  flex-shrink: 0;
}

.button:hover { background: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.button:hover .btn-arrow { transform: translateX(3px); }

.button-blush { background: var(--blush-dark); color: var(--white); }
.button-blush:hover { background: #7a3f38; }

.button-ghost {
  background: transparent;
  color: var(--stone);
  border: 1.5px solid var(--line-strong);
}
.button-ghost:hover { background: var(--paper); border-color: var(--stone); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--stone);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--line-strong);
  padding-bottom: 2px;
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.text-link:hover { border-color: var(--stone); color: var(--charcoal); }

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 var(--sp-3);
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: rgba(252,251,248,0.80);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── 7. HERO ──────────────────────────────────────────────── */
.hero.section {
  padding-block: clamp(64px, 9vw, 108px);
}

/* .hero-inner is the 2-col grid — matches HTML structure */
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-copy { align-self: center; }
.hero-copy h1 { margin-top: var(--sp-4); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.hero-visual { position: relative; }

.hero-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--paper);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-floating-review {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-4) var(--sp-5);
  max-width: 260px;
  border: 1px solid var(--line);
  z-index: 10;
}

.hero-floating-review .review-quote {
  font-family: "Playfair Display", serif;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}

.review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blush);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blush-dark);
  flex-shrink: 0;
}

/* review-name inside the floating card */
.hero-floating-review .review-name {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 1px; }
.google-g { flex-shrink: 0; }

.hero-mobile-proof {
  display: none;
  margin-top: var(--sp-4);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  align-items: center;
  gap: var(--sp-2);
}

/* ── 8. CREDENTIAL MARQUEE ────────────────────────────────── */
.credential-marquee {
  overflow: hidden;
  padding-block: var(--sp-5);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.credential-marquee-track {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.credential-item { display: flex; align-items: center; }

.credential-marquee-track img {
  height: 24px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 var(--sp-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  white-space: nowrap;
  opacity: 0.80;
}

.cred-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  opacity: 0.70;
}

/* ── 9. EDITORIAL SPLIT ───────────────────────────────────── */

/* .editorial-inner is the 2-col grid — matches HTML */
.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.editorial-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy h2 { margin-top: var(--sp-4); }
.editorial-copy .lead { margin-top: var(--sp-4); }
.editorial-copy p { color: var(--ink-soft); margin-top: var(--sp-4); }
.editorial-copy .text-link,
.editorial-copy .button { margin-top: var(--sp-6); }

/* ── 10. SECTION HEAD ─────────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head h2 { margin-top: var(--sp-3); }
.section-head .lead { margin-top: var(--sp-4); }

.section-cta {
  text-align: center;
  margin-top: var(--sp-10);
}

/* ── 11. TREATMENT CARDS ──────────────────────────────────── */
.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}

.treatment-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  display: flex;
  flex-direction: column;
}

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

/* matches .treatment-card-img in HTML */
.treatment-card-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
}

.treatment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

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

.treatment-card-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.treatment-card-body .eyebrow { margin-bottom: 0; }
.treatment-card-body h3 { font-size: 1.25rem; margin-top: 0; }
.treatment-card-body > p { font-size: 0.9rem; color: var(--ink-soft); flex: 1; margin-top: 0; }

.treatment-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
}

/* ── 12. BLOG CARDS ───────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
  display: flex;
  flex-direction: column;
}

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

.blog-card-image-link {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
}

.blog-card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.blog-card:hover .blog-card-image-link img { transform: scale(1.04); }

.blog-card-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.blog-card-body .eyebrow { margin-bottom: 0; }
.blog-card-body h2 { font-size: 1.2rem; margin-top: var(--sp-2); line-height: 1.3; }
.blog-card-body h2 a { text-decoration: none; color: var(--ink); }
.blog-card-body h2 a:hover { color: var(--stone); }
.blog-card-body > p { font-size: 0.88rem; color: var(--ink-soft); flex: 1; }
.blog-card-body .text-link { margin-top: auto; padding-top: var(--sp-4); font-size: 0.84rem; }

/* ── 13. REVIEW CARDS ─────────────────────────────────────── */
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* matches .review-header in HTML */
.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}

.review-header > div {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex: 1;
}

.review-person {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-width: 0;
}

/* .review-avatar already defined above */

.review-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

.review-card blockquote {
  font-family: "Playfair Display", serif;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
}

.review-card blockquote p { margin-top: 0; }
.review-card blockquote p::before { content: "\201C"; }
.review-card blockquote p::after  { content: "\201D"; }

.reviews-bg { background: var(--paper); }

.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-8);
  align-items: start;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.reviews-head h2 { margin-top: var(--sp-3); }

.google-rating-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  min-width: 160px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}

.score {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
}

.count { font-size: 0.76rem; color: var(--ink-soft); font-weight: 600; display: block; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

/* ── 14. FOUNDER SECTION ──────────────────────────────────── */
.founder-bg {
  background: var(--charcoal);
  color: var(--cream);
}

.founder-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}

/* matches .founder-image in HTML */
.founder-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.founder-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.founder-copy .eyebrow { color: #e0c5c0; }
.founder-copy .eyebrow::before { background: var(--blush); opacity: 0.6; }
.founder-copy h2 { color: var(--cream); margin-top: var(--sp-4); }
.founder-copy p { color: rgba(240,235,228,0.75); margin-top: var(--sp-4); }
.founder-copy .button { margin-top: var(--sp-8); }
.founder-copy .founder-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream);
  border-left: 2px solid var(--blush);
  padding-left: var(--sp-5);
  margin-top: var(--sp-6);
}

/* ── 15. BEFORE/AFTER ─────────────────────────────────────── */
.ba-section { background: var(--white); }

.ba-grid { margin-top: var(--sp-8); }

.ba-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

/* matches .ba-image in HTML */
.ba-image {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  background: var(--paper);
}

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

.ba-label {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  background: rgba(255,255,255,0.92);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.ba-caption { font-size: 0.8rem; color: var(--ink-soft); margin-top: var(--sp-4); text-align: center; }
.ba-disclaimer { font-size: 0.78rem; text-align: center; margin-top: var(--sp-5); }

/* ── 16. FAQ ACCORDION ────────────────────────────────────── */
.faq { border-top: 1px solid var(--line); margin-top: var(--sp-8); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  width: 100%;
  padding: var(--sp-5) 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
}

.faq-question:hover { color: var(--stone); }

/* matches .faq-chevron in HTML */
.faq-chevron {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 1.1rem;
  color: var(--ink-soft);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--dur-med) var(--ease),
              background var(--dur-fast) var(--ease);
}

.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease);
}

.faq-item.open .faq-answer { max-height: 600px; }

.faq-answer p {
  padding-bottom: var(--sp-5);
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-top: 0;
}

/* ── 17. STICKY MOBILE CTA ────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: var(--sp-3) var(--sp-4) max(var(--sp-3), env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(34,31,26,0.08);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}

.sticky-cta.is-visible { opacity: 1; transform: translateY(0); }
.sticky-cta .button { width: 100%; justify-content: center; min-height: 50px; }

/* ── 18. FOOTER CTA SECTION ───────────────────────────────── */
.footer-cta-section { background: var(--charcoal); text-align: center; }

.footer-cta-inner { max-width: 600px; margin-inline: auto; }

.footer-cta-inner .eyebrow { color: #e0c5c0; justify-content: center; }
.footer-cta-inner .eyebrow::before { background: var(--blush); }
.footer-cta-inner h2 { color: var(--white); margin-top: var(--sp-4); }
.footer-cta-inner .lead { color: rgba(240,235,228,0.75); margin-top: var(--sp-4); }
.footer-cta-inner .button { margin-top: var(--sp-8); }
.footer-cta-inner .muted { margin-top: var(--sp-4); color: rgba(240,235,228,0.55); font-size: 0.85rem; }
.footer-cta-inner .muted a { color: rgba(240,235,228,0.75); }

/* ── 19. FOOTER — matches .footer in HTML ─────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(240,235,228,0.65);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sp-16);
}

/* matches .footer-grid in HTML */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: var(--sp-12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer-brand img { opacity: 0.80; }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(240,235,228,0.75);
  line-height: 1.6;
}

.footer-nmc { font-size: 0.78rem; color: rgba(240,235,228,0.45); }

.footer-nav-heading {
  font-family: "Poppins", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(240,235,228,0.45);
  margin-bottom: var(--sp-4);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-nav a {
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(240,235,228,0.65);
  transition: color var(--dur-fast) var(--ease);
}
.footer-nav a:hover { color: var(--cream); }

.footer-contact address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(240,235,228,0.65);
}

.footer-contact a {
  text-decoration: none;
  color: rgba(240,235,228,0.65);
  transition: color var(--dur-fast) var(--ease);
  display: block;
  margin-top: var(--sp-3);
}
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: 0.76rem;
  color: rgba(240,235,228,0.38);
}

/* ── 20. BREADCRUMB ───────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}

.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: var(--sp-2); opacity: 0.5; }
.breadcrumb a { text-decoration: none; color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb li[aria-current="page"] { color: var(--ink); }

/* ── 21. TREATMENT PAGES ──────────────────────────────────── */
.treatment-hero { background: var(--paper); }

.treatment-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  margin-top: var(--sp-5);
}

.treatment-hero-copy h1 { margin-top: var(--sp-4); }
.treatment-hero-copy .lead { margin-top: var(--sp-4); }
.treatment-hero-actions { margin-top: var(--sp-6); }

.treatment-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.meta-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
.meta-value { font-family: "Playfair Display", serif; font-size: 1.1rem; color: var(--ink); }

.treatment-hero-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--paper);
}

.treatment-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-8);
}

.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--sp-6);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: var(--sp-4);
}

.process-step h3 { font-size: 1rem; }
.process-step p { font-size: 0.88rem; color: var(--ink-soft); margin-top: var(--sp-2); }

.review-card-featured { max-width: 680px; margin-inline: auto; }

/* Article CTA block */
.article-cta-block { background: var(--paper); }

.article-cta-inner {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.article-cta-inner h2 { margin-top: var(--sp-3); }
.article-cta-inner .lead { margin-top: var(--sp-4); }
.article-cta-inner .button { margin-top: var(--sp-6); }
.article-cta-inner .muted { margin-top: var(--sp-3); font-size: 0.84rem; }

/* ── 22. ABOUT PAGE ───────────────────────────────────────── */
.about-hero { background: var(--paper); }

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  margin-top: var(--sp-5);
}

.about-hero-copy h1 { margin-top: var(--sp-4); }
.about-hero-copy .lead { margin-top: var(--sp-4); }

.about-hero-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--paper);
}

.about-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.about-story-copy h2 { margin-top: var(--sp-3); }
.about-story-copy p { color: var(--ink-soft); margin-top: var(--sp-4); }

.about-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  border-left: 2px solid var(--blush-dark);
  padding-left: var(--sp-5);
  margin-top: var(--sp-6);
}

.credential-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: sticky;
  top: 100px;
}

.credential-card h3 { font-size: 1rem; margin-bottom: var(--sp-5); }

.credential-list { display: flex; flex-direction: column; gap: var(--sp-4); }

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.credential-icon { color: var(--blush-dark); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.about-values-inner { max-width: 1000px; margin-inline: auto; }
.about-values-head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.about-values-head h2 { color: var(--cream); margin-top: var(--sp-3); }
.about-values-head .eyebrow { color: #e0c5c0; justify-content: center; }
.about-values-head .eyebrow::before { background: var(--blush); }

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.value-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: var(--sp-6);
}

.value-item h3 { color: var(--cream); font-size: 1.1rem; }
.value-item p { color: rgba(240,235,228,0.65); font-size: 0.9rem; margin-top: var(--sp-3); }

.about-reviews { background: var(--paper); }

.about-reviews-head {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.about-reviews-head h2 {
  margin-top: var(--sp-3);
}

.about-google-reviews {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.about-google-reviews .google-review-card {
  min-height: 330px;
  padding: clamp(24px, 2.5vw, 34px);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,255,255,0.76)),
    var(--white);
  box-shadow:
    0 30px 90px rgba(61, 56, 49, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.about-google-reviews .review-header {
  align-items: flex-start;
}

.about-google-reviews .review-header > div {
  align-items: center;
}

.about-google-reviews .google-mark {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 3px;
}

.about-google-reviews .review-name {
  font-size: 0.94rem;
}

.about-google-reviews .stars {
  display: block;
  margin-top: 4px;
}

.about-google-reviews blockquote {
  margin-top: var(--sp-3);
}

.about-google-reviews blockquote p {
  font-size: clamp(1rem, 1.15vw, 1.18rem);
}

/* ── 23. BOOK PAGE ────────────────────────────────────────── */
.page-hero { background: var(--paper); }

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
  margin-top: var(--sp-5);
}

.page-hero-copy h1 { margin-top: var(--sp-4); }
.page-hero-copy .lead { margin-top: var(--sp-4); }

.page-hero-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--paper);
}

.page-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.book-promises {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.book-promises li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.promise-icon { color: var(--blush-dark); font-weight: 800; flex-shrink: 0; margin-top: 2px; }

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

.booking-wrap {
  max-width: 860px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: var(--sp-6);
}

.alt-contact {
  text-align: center;
  margin-top: var(--sp-8);
  font-size: 0.88rem;
  display: grid;
  justify-items: center;
  gap: var(--sp-4);
}

.alt-contact .muted {
  margin: 0;
}

.alt-contact-actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 999px;
  color: var(--stone);
  text-decoration: none;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.7) 54%, rgba(232, 208, 204, 0.18)),
    rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(34, 31, 26, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 44px rgba(34, 31, 26, 0.1);
  transition:
    transform var(--dur-med) var(--ease),
    color var(--dur-med) var(--ease),
    border-color var(--dur-med) var(--ease),
    box-shadow var(--dur-med) var(--ease);
}

.contact-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-icon[aria-label*="Facebook"] svg {
  width: 18px;
  height: 18px;
  transform: translate(0.4px, 0.1px);
}

.contact-icon span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-icon:hover {
  color: var(--blush-dark);
  border-color: rgba(139, 74, 66, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 52px rgba(34, 31, 26, 0.14);
  transform: translateY(-3px);
}

.contact-icon:focus-visible {
  outline: 2px solid var(--blush-dark);
  outline-offset: 4px;
}

.alt-contact-address {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.alt-contact-address svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
  opacity: 0.72;
}

.trust-strip { background: var(--paper); }

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  text-align: center;
}

.trust-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
  line-height: 1;
}

.trust-label {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: var(--sp-2);
  font-weight: 600;
}

/* ── 24. BLOG / ARTICLE ───────────────────────────────────── */
.article-page .article-header {
  padding-block: clamp(48px, 6vw, 80px);
  background: var(--paper);
}

.article-header h1 { max-width: 820px; margin-top: var(--sp-4); }
.article-meta { display: flex; gap: var(--sp-4); margin-top: var(--sp-5); flex-wrap: wrap; font-size: 0.82rem; color: var(--ink-soft); }

.article-hero-image {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-top: var(--sp-8);
  box-shadow: var(--shadow-md);
  background: var(--paper);
}

.article-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  max-width: 72ch;
  margin-inline: auto;
  padding-block: clamp(40px, 6vw, 72px);
}

.article-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-top: var(--sp-10); margin-bottom: var(--sp-3); }
.article-body h3 { font-size: 1.15rem; margin-top: var(--sp-8); margin-bottom: var(--sp-2); }
.article-body p { font-size: 1rem; line-height: 1.8; color: var(--ink); }
.article-body ul, .article-body ol { margin-top: var(--sp-4); padding-left: var(--sp-6); }
.article-body li { font-size: 1rem; color: var(--ink); line-height: 1.7; margin-top: var(--sp-2); }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { font-weight: 700; }

.article-cta-block {
  background: var(--paper);
  max-width: 72ch;
  margin-inline: auto;
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 56px);
  text-align: center;
  margin-top: var(--sp-12);
  border: 1px solid var(--line);
}

.article-cta-block h2 { margin-top: var(--sp-3); }
.article-cta-block p { color: var(--ink-soft); margin-top: var(--sp-3); }
.article-cta-block .button { margin-top: var(--sp-5); }
.article-cta-block .muted { margin-top: var(--sp-3); font-size: 0.82rem; }

/* ── 25. HUB PAGES ────────────────────────────────────────── */
.treatment-hub-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.treatment-hub-item:last-child { border-bottom: none; }

.treatment-hub-item:nth-child(even) .treatment-hub-image { order: 2; }
.treatment-hub-item:nth-child(even) .treatment-hub-copy  { order: 1; }

.treatment-hub-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  background: var(--paper);
}

.treatment-hub-image img { width: 100%; height: 100%; object-fit: cover; }

.treatment-hub-copy h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-top: var(--sp-3); }
.treatment-hub-copy h2 a { text-decoration: none; color: var(--ink); }
.treatment-hub-copy h2 a:hover { color: var(--stone); }
.treatment-hub-copy p { color: var(--ink-soft); margin-top: var(--sp-4); }

.treatment-hub-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-5);
}

/* ── 26. REVEAL ANIMATIONS ────────────────────────────────── */
/* Visible by default — JS adds .is-visible to animate */
.reveal {
  opacity: 1;
  transform: none;
}

/* When JS is available (html.js class set by scripts.js), animate on scroll */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .credential-marquee-track { animation-play-state: paused; }
}

/* ── 27. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-hero-meta { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  /* Hero: single column */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-mobile-proof { display: flex; }

  /* Treatment hero: single column */
  .treatment-hero-inner { grid-template-columns: 1fr; }
  .treatment-hero-image { display: none; }

  /* Page hero: single column */
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-image { display: none; }

  /* About hero: single column */
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-image { display: none; }

  /* Editorial: single column */
  .editorial-inner { grid-template-columns: 1fr; }

  /* Founder: single column */
  .founder-inner { grid-template-columns: 1fr; }
  .founder-image { aspect-ratio: 16 / 7; }

  /* Reviews */
  .reviews-head { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-google-reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* Blog grid */
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Nav */
  .menu-toggle { display: flex; }
  .nav-links { display: none; }
  .button-nav { display: none; }

  /* About story */
  .about-story-inner { grid-template-columns: 1fr; }
  .credential-card { position: static; }

  /* About values */
  .about-values-grid { grid-template-columns: 1fr; }

  /* Trust strip */
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }

  /* Treatment hub */
  .treatment-hub-item { grid-template-columns: 1fr; }
  .treatment-hub-item:nth-child(even) .treatment-hub-image { order: 0; }
  .treatment-hub-item:nth-child(even) .treatment-hub-copy  { order: 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .treatment-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-google-reviews { grid-template-columns: 1fr; }
  .ba-panel-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .hero-floating-review { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-hero-meta { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  h1 { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .button { width: 100%; justify-content: center; }
}

/* ── 28. EDITORIAL V3 OVERRIDES ─────────────────────────────
   Direction: brighter, less gridded, more magazine-like. These
   overrides deliberately break the rigid card/grid rhythm while
   keeping the existing HTML, tracking and GHL flow intact.
*/

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(232,208,204,0.42), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,0.92), transparent 26%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 42%, #f6f0eb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(34,31,26,0.11) 1px, transparent 0);
  background-size: 18px 18px;
  mix-blend-mode: multiply;
}

.site-header,
main,
.footer,
.sticky-cta { position: relative; z-index: 1; }

h1 {
  font-size: clamp(3.7rem, 8vw, 8rem);
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.5rem, 5.8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.lead,
.article-body p,
.editorial-copy p,
.treatment-hub-copy p { text-wrap: pretty; }

.section {
  padding-block: clamp(88px, 12vw, 156px);
}

.section-head {
  text-align: left;
  max-width: 920px;
  margin-inline: 0 auto;
}

.section-head .lead { max-width: 44rem; }

.eyebrow {
  letter-spacing: 0.18em;
}

.eyebrow::before {
  width: 40px;
  background: linear-gradient(90deg, var(--blush-dark), rgba(139,74,66,0));
}

.hero.section {
  position: relative;
  min-height: clamp(760px, 94dvh, 980px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(92px, 10vw, 144px);
  background:
    linear-gradient(90deg, rgba(255,253,249,0.98) 0%, rgba(255,253,249,0.86) 42%, rgba(255,253,249,0.38) 68%, rgba(255,253,249,0.18) 100%),
    radial-gradient(circle at 20% 88%, rgba(232,208,204,0.48), transparent 34%),
    var(--cream);
}

.hero.section::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: min(68vw, 1040px);
  background:
    linear-gradient(90deg, rgba(255,253,249,0.82), rgba(255,253,249,0.10) 35%, rgba(255,253,249,0.18)),
    url("/assets/kelsey-hero-camera-720.webp") center 18% / cover no-repeat;
  opacity: 0.52;
  filter: saturate(0.95) brightness(1.08);
}

.hero.section::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -18vw;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  background: rgba(232,208,204,0.30);
  filter: blur(24px);
}

.hero .container { position: relative; z-index: 1; }

.hero-inner {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: clamp(24px, 5vw, 70px);
}

.hero-copy {
  max-width: 760px;
  transform: translateY(2vh);
}

.hero-copy .lead {
  max-width: 570px;
  color: rgba(34,31,26,0.72);
}

.hero-visual {
  min-height: 620px;
  transform: translateY(42px);
}

.hero-frame {
  position: absolute;
  right: 0;
  top: 10px;
  width: min(78%, 430px);
  border-radius: 44px;
  overflow: visible;
  transform: rotate(2deg);
  box-shadow: 0 44px 120px rgba(61,56,49,0.22);
  border: 10px solid rgba(255,255,255,0.72);
}

.hero-frame img {
  border-radius: 34px;
  box-shadow: inset 0 0 0 1px rgba(34,31,26,0.08);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: -34px auto auto -54px;
  width: 210px;
  height: 260px;
  border-radius: 42px;
  background: url("/assets/result-lauren-eyes.webp") center / cover no-repeat;
  box-shadow: 0 24px 80px rgba(61,56,49,0.16);
  transform: rotate(-7deg);
  z-index: 2;
}

.hero-floating-review {
  left: auto;
  right: 52%;
  bottom: 86px;
  max-width: 300px;
  border-radius: 28px;
  transform: rotate(-3deg);
}

.credential-marquee {
  background: rgba(255,255,255,0.58);
  backdrop-filter: blur(12px);
}

.editorial-inner {
  grid-template-columns: minmax(290px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(20px, 5vw, 88px);
  position: relative;
}

.editorial-media {
  border-radius: 46px;
  aspect-ratio: 3 / 4;
  transform: rotate(-2.4deg) translateY(28px);
  box-shadow: 0 42px 120px rgba(61,56,49,0.18);
  border: 10px solid rgba(255,255,255,0.62);
}

.editorial-copy {
  position: relative;
  z-index: 2;
  margin-left: clamp(-96px, -7vw, -36px);
  padding: clamp(30px, 5vw, 64px);
  border-radius: 42px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 36px 120px rgba(61,56,49,0.10);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: clamp(18px, 2.8vw, 34px);
}

.treatment-card {
  border: 0;
  border-radius: 38px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 34px 110px rgba(61,56,49,0.10);
  overflow: visible;
}

.treatment-card-img {
  border-radius: 34px;
  margin: 10px;
  box-shadow: inset 0 0 0 1px rgba(34,31,26,0.06);
}

.treatment-card:nth-child(1) {
  grid-column: span 7;
  transform: translateY(26px) rotate(-1.2deg);
}

.treatment-card:nth-child(1) .treatment-card-img { aspect-ratio: 5 / 3; }

.treatment-card:nth-child(2) {
  grid-column: span 5;
  transform: translateY(-38px) rotate(1.4deg);
}

.treatment-card:nth-child(2) .treatment-card-img { aspect-ratio: 4 / 5; }

.treatment-card:nth-child(3) {
  grid-column: 2 / span 5;
  transform: translateY(4px) rotate(1deg);
}

.treatment-card:nth-child(3) .treatment-card-img { aspect-ratio: 1 / 1; }

.treatment-card:nth-child(4) {
  grid-column: 7 / span 5;
  transform: translateY(-70px) rotate(-1.5deg);
}

.treatment-card:nth-child(4) .treatment-card-img { aspect-ratio: 4 / 3; }

.treatment-card:hover {
  transform: translateY(-8px) rotate(0deg);
}

.treatment-card-footer {
  border-top: 0;
  padding-top: var(--sp-3);
}

.founder-bg {
  background:
    radial-gradient(circle at 12% 12%, rgba(232,208,204,0.14), transparent 34%),
    linear-gradient(135deg, #1c1a16 0%, #2c261f 100%);
  overflow: hidden;
}

.founder-inner {
  grid-template-columns: minmax(240px, 0.74fr) minmax(0, 1.26fr);
}

.founder-image {
  border-radius: 48px;
  transform: rotate(-3deg);
  box-shadow: 0 48px 140px rgba(0,0,0,0.46);
}

.founder-copy {
  margin-left: clamp(-80px, -6vw, -32px);
  padding: clamp(26px, 4vw, 58px);
  border-radius: 42px;
  background: rgba(28,26,22,0.62);
  border: 1px solid rgba(255,255,255,0.08);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.review-card {
  border: 0;
  border-radius: 30px;
  box-shadow: 0 26px 86px rgba(61,56,49,0.09);
}

.reviews-grid .review-card:nth-child(1) { grid-column: span 5; transform: rotate(-1.2deg); }
.reviews-grid .review-card:nth-child(2) { grid-column: span 4; transform: translateY(48px) rotate(1.1deg); }
.reviews-grid .review-card:nth-child(3) { grid-column: span 3; transform: translateY(-18px) rotate(-0.8deg); }
.reviews-grid .review-card:nth-child(4) { grid-column: 2 / span 5; transform: translateY(22px) rotate(1.2deg); }
.reviews-grid .review-card:nth-child(5) { grid-column: 7 / span 5; transform: translateY(-34px) rotate(-1.1deg); }

.ba-section {
  background:
    linear-gradient(180deg, var(--white), var(--cream));
}

.ba-panel {
  max-width: 980px;
  margin-inline: auto;
}

.ba-panel-inner {
  position: relative;
  min-height: 540px;
  display: block;
}

.ba-image {
  position: absolute;
  width: min(52%, 480px);
  border-radius: 44px;
  box-shadow: 0 36px 120px rgba(61,56,49,0.14);
}

.ba-image:first-child {
  left: 7%;
  top: 20px;
  transform: rotate(-2deg);
}

.ba-image:nth-child(2) {
  right: 8%;
  top: 124px;
  transform: rotate(2deg);
}

.blog-grid {
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
}

.blog-card {
  grid-column: span 4;
  border: 0;
  border-radius: 34px;
  box-shadow: 0 30px 96px rgba(61,56,49,0.10);
}

.blog-card:nth-child(2) { transform: translateY(58px); }
.blog-card:nth-child(3) { transform: translateY(18px) rotate(1deg); }

.treatment-hero,
.about-hero,
.page-hero,
.article-page .article-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(232,208,204,0.42), transparent 30%),
    linear-gradient(115deg, #fffdf9 0%, #f5eee9 100%);
}

.treatment-hero::after,
.about-hero::after,
.page-hero::after,
.article-page .article-header::after {
  content: "";
  position: absolute;
  right: -7vw;
  top: -8vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: rgba(255,255,255,0.52);
  pointer-events: none;
}

.treatment-hero-inner,
.about-hero-inner,
.page-hero-inner,
.treatment-hub-item {
  position: relative;
}

.treatment-hero-image,
.about-hero-image,
.page-hero-image,
.treatment-hub-image,
.article-hero-image {
  border-radius: 46px;
  box-shadow: 0 42px 128px rgba(61,56,49,0.16);
  border: 10px solid rgba(255,255,255,0.64);
}

.treatment-hero-image,
.page-hero-image { transform: rotate(1.8deg); }

.about-hero-image,
.treatment-hub-item:nth-child(odd) .treatment-hub-image { transform: rotate(-1.6deg); }

.treatment-hub-item:nth-child(even) .treatment-hub-image { transform: rotate(1.4deg); }

.treatment-hero-meta,
.process-step,
.credential-card,
.booking-wrap,
.article-cta-block,
.article-cta-inner,
.value-item {
  border: 0;
  border-radius: 34px;
  box-shadow: 0 28px 96px rgba(61,56,49,0.08);
}

@media (max-width: 960px) {
  .hero.section {
    min-height: auto;
    padding-block: 96px 72px;
  }

  .hero.section::before {
    width: 100%;
    opacity: 0.18;
    background-position: center top;
  }

  .hero-visual { display: block; min-height: auto; transform: none; }

  .hero-frame {
    position: relative;
    width: min(82vw, 420px);
    margin-inline: auto;
    top: auto;
    right: auto;
    transform: rotate(1.2deg);
  }

  .hero-frame::before,
  .hero-floating-review { display: none; }

  .editorial-copy,
  .founder-copy {
    margin-left: 0;
  }

  .editorial-media,
  .founder-image,
  .treatment-hero-image,
  .about-hero-image,
  .page-hero-image,
  .treatment-hub-image {
    transform: none;
  }

  .treatment-card:nth-child(n),
  .reviews-grid .review-card:nth-child(n),
  .blog-card:nth-child(n) {
    grid-column: span 6;
    transform: none;
  }

  .ba-panel-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }

  .ba-image {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }
}

/* ── 30. GLOBAL POLISH: SOCIALS, WHATSAPP, STRAIGHT INNER PAGES ── */
.nav-social,
.mobile-social,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.social-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-icon span {
  font-size: 0.82rem;
  font-weight: 700;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--line-strong);
}

.footer-social {
  margin-top: 18px;
}

.footer-social .social-icon {
  width: auto;
  min-width: 42px;
  padding: 0 16px 0 12px;
  gap: 9px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #1f8f57;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(31, 143, 87, 0.28);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.whatsapp-float svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #187a49;
  box-shadow: 0 24px 58px rgba(31, 143, 87, 0.34);
}

body:not(.page-home) .treatment-hero-image,
body:not(.page-home) .treatment-hub-image,
body:not(.page-home) .editorial-media,
body:not(.page-home) .page-hero-image,
body:not(.page-home) .about-hero-image,
body:not(.page-home) .blog-card,
body:not(.page-home) .treatment-card,
body:not(.page-home) .review-card,
body:not(.page-home) .article-card {
  transform: none !important;
}

body:not(.page-home) .treatment-hero-image img,
body:not(.page-home) .treatment-hub-image img,
body:not(.page-home) .editorial-media img,
body:not(.page-home) .page-hero-image img,
body:not(.page-home) .about-hero-image img {
  transform: none !important;
  object-position: center center;
}

.brand-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  animation: brandMarquee 34s linear infinite;
}

.brand-marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 74px;
  padding: 0 28px;
  color: #221f1a;
  filter: grayscale(1);
  opacity: 0.72;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.editorial-rich {
  background:
    radial-gradient(circle at 15% 8%, rgba(232, 208, 204, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(250, 248, 244, 0.94));
}

.rich-copy {
  max-width: 1060px;
  margin: 0 auto;
}

.rich-copy h2 {
  max-width: 860px;
  margin: 16px 0 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.rich-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

.content-grid {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.content-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.content-grid article {
  min-height: 210px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(61, 56, 49, 0.07);
}

.content-grid h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.02;
}

.content-grid p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.72;
}

@keyframes brandMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.ab-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 7% auto;
  width: clamp(150px, 18vw, 260px);
  height: clamp(150px, 18vw, 260px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  opacity: 0.5;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  pointer-events: none;
}

.ab-collage-main,
.ab-collage-float,
.ab-feature-image,
.ab-treatment-feature > img,
.ab-final-cta img {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 900ms var(--ease-out);
  will-change: transform;
}

.ab-category-card {
  transition: transform 700ms var(--ease-out), box-shadow 700ms var(--ease-out);
}

.ab-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(34, 31, 26, 0.16);
}

@media (max-width: 960px) {
  .nav-social {
    display: none;
  }

  .mobile-social {
    justify-content: center;
    margin: 10px 0 18px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 86px;
    min-height: 48px;
    padding-inline: 13px;
  }

  .whatsapp-float span {
    display: none;
  }

  .content-grid-3,
  .content-grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none;
  }

  .ab-collage-main,
  .ab-collage-float,
  .ab-feature-image,
  .ab-treatment-feature > img,
  .ab-final-cta img {
    transform: none !important;
  }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(3.1rem, 16vw, 4.7rem); }
  h2 { font-size: clamp(2.3rem, 12vw, 3.7rem); }

  .section {
    padding-block: 76px;
  }

  .hero.section {
    padding-top: 84px;
  }

  .treatment-card:nth-child(n),
  .reviews-grid .review-card:nth-child(n),
  .blog-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .treatment-card,
  .review-card,
  .blog-card,
  .editorial-copy,
  .founder-copy {
    border-radius: 28px;
  }

  .ba-panel-inner {
    grid-template-columns: 1fr;
  }
}

/* ── 29. AESTHETIC LOUNGE HOMEPAGE ─────────────────────────
   Aesthetic Bar inspired direction adapted to Nurse Kelsey's
   cream, ink and blush world. Scoped to .ab-home so the rest of
   the website can keep the existing build while the homepage
   becomes more cinematic and editorial.
──────────────────────────────────────────────────────────── */

.page-home .site-header {
  position: absolute;
  inset: 18px 0 auto;
  z-index: 30;
}

.page-home .nav-inner {
  background: rgba(28, 26, 22, 0.24);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page-home .nav-brand-name,
.page-home .nav-links a {
  color: rgba(255, 255, 255, 0.88);
}

.page-home .nav-logo-desktop,
.page-home .nav-logo-mobile {
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.page-home .button-nav {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.page-home .button-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.ab-home {
  background:
    radial-gradient(circle at 86% 16%, rgba(232, 208, 204, 0.34), transparent 28%),
    linear-gradient(180deg, #faf8f4 0%, #ffffff 52%, #f5f3ef 100%);
}

.ab-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.ab-hero-media,
.ab-hero-video,
.ab-hero-shade {
  position: absolute;
  inset: 0;
}

.ab-hero-media {
  background:
    linear-gradient(135deg, rgba(34, 31, 26, 0.18), rgba(34, 31, 26, 0.54)),
    url("/assets/kelsey-hero-camera-720.webp") center / cover;
  z-index: -3;
}

.ab-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.04);
}

.ab-hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(28, 26, 22, 0.46), rgba(28, 26, 22, 0.20) 42%, rgba(28, 26, 22, 0.58)),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.06), transparent 36%);
}

.ab-hero-inner {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 150px;
  display: grid;
  justify-items: center;
}

.ab-kicker,
.ab-label {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ab-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.ab-hero-logo {
  width: clamp(84px, 8vw, 130px);
  height: auto;
  margin: 22px auto 18px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.ab-hero h1 {
  max-width: 940px;
  color: #ffffff;
  font-size: clamp(4rem, 9vw, 9.6rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-transform: uppercase;
}

.ab-hero-lede {
  max-width: 580px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

.ab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 32px;
  padding: 0 28px;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 280ms ease, background 280ms ease, color 280ms ease;
}

.ab-button:hover {
  transform: translateY(-2px);
}

.ab-button-light {
  background: rgba(255, 255, 255, 0.92);
  color: #221f1a;
}

.ab-button-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
}

.ab-treatment-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(28, 26, 22, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ab-treatment-rail a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.ab-treatment-rail a:last-child {
  border-right: 0;
}

.ab-chat-note {
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  bottom: 102px;
  width: 204px;
  padding: 13px 15px;
  border-radius: 2px;
  color: #221f1a;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  text-align: left;
  font-size: 0.72rem;
  line-height: 1.35;
}

.ab-chat-note strong {
  display: block;
  margin-top: 4px;
}

.ab-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(92px, 10vw, 142px) 0;
}

.ab-lounge,
.ab-skincare {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(44px, 8vw, 96px);
  align-items: center;
}

.ab-skincare {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.ab-collage {
  position: relative;
  min-height: 560px;
}

.ab-collage img {
  display: block;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 34px 110px rgba(61, 56, 49, 0.14);
}

.ab-collage-main {
  max-width: 72%;
  aspect-ratio: 4 / 5;
}

.ab-collage-left .ab-collage-main {
  margin-left: 6%;
}

.ab-collage-right .ab-collage-main {
  margin-left: auto;
  margin-right: 6%;
}

.ab-collage-float {
  position: absolute;
  width: 46%;
  aspect-ratio: 4 / 5;
  right: 3%;
  bottom: 2%;
  border: 10px solid #ffffff;
}

.ab-collage-right .ab-collage-float {
  left: 2%;
  right: auto;
  bottom: 8%;
}

.ab-copy-panel {
  max-width: 600px;
}

.ab-label {
  color: #8b4a42;
}

.ab-copy-panel h2,
.ab-popular h2,
.ab-review-section h2,
.ab-feature-copy h2,
.ab-final-cta h2 {
  margin: 16px 0 0;
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.ab-copy-panel p:not(.ab-label),
.ab-feature-copy p:not(.ab-label),
.ab-final-cta p:not(.ab-label) {
  margin: 24px 0 0;
  color: #6e6762;
  font-size: 1rem;
  line-height: 1.86;
  max-width: 58ch;
}

.ab-text-link {
  display: inline-flex;
  margin-top: 28px;
  color: #221f1a;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 31, 26, 0.28);
}

.ab-logo-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  color: #8f8780;
  border-top: 1px solid rgba(34, 31, 26, 0.12);
  border-bottom: 1px solid rgba(34, 31, 26, 0.12);
}

.ab-logo-strip span {
  display: grid;
  place-items: center;
  min-height: 60px;
  padding: 0 18px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-right: 1px solid rgba(34, 31, 26, 0.10);
}

.ab-logo-strip span:last-child {
  border-right: 0;
}

.ab-category-section {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(80px, 9vw, 132px) 0;
  display: grid;
  grid-template-columns: 1fr 0.92fr 1.08fr;
  gap: 0;
}

.ab-category-card {
  position: relative;
  min-height: clamp(420px, 44vw, 680px);
  overflow: hidden;
  background: #221f1a;
}

.ab-category-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.88;
  transform: scale(1.02);
  transition: transform 800ms ease, opacity 800ms ease;
}

.ab-category-card:hover img {
  opacity: 0.72;
  transform: scale(1.08);
}

.ab-category-card a {
  position: absolute;
  inset: auto 28px 28px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 0.95;
  text-decoration: none;
  text-shadow: 0 14px 46px rgba(0, 0, 0, 0.36);
}

.ab-dark-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(40px, 7vw, 86px);
  align-items: center;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px);
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 18%, rgba(232, 208, 204, 0.14), transparent 30%),
    linear-gradient(135deg, #171411 0%, #28211c 100%);
}

.ab-feature-image img {
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  margin-inline: auto;
}

.ab-label-dark {
  color: #e8d0cc;
}

.ab-feature-copy h2,
.ab-final-cta h2 {
  color: #ffffff;
}

.ab-feature-copy p:not(.ab-label),
.ab-final-cta p:not(.ab-label) {
  color: rgba(255, 255, 255, 0.72);
}

.ab-popular {
  display: grid;
  gap: 48px;
}

.ab-popular-copy {
  max-width: 760px;
}

.ab-treatment-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

.ab-treatment-card {
  position: relative;
  z-index: 2;
  margin-right: -64px;
  padding: clamp(28px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 90px rgba(61, 56, 49, 0.12);
}

.ab-treatment-card h3 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.92;
}

.ab-treatment-card p:not(.ab-label) {
  color: #6e6762;
  line-height: 1.76;
}

.ab-treatment-feature > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ab-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(34, 31, 26, 0.12);
}

.ab-stat-row span {
  padding: 22px 18px;
  background: #faf8f4;
  color: #8f8780;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.ab-stat-row strong {
  display: block;
  color: #221f1a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.ab-review-section {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(112px, 12vw, 174px) 0;
  text-align: center;
  background:
    linear-gradient(105deg, transparent 0 42%, rgba(232, 208, 204, 0.2) 42% 61%, transparent 61%);
  isolation: isolate;
}

.ab-review-section blockquote::before,
.ab-review-section blockquote::after {
  color: rgba(34, 31, 26, 0.38);
}

.ab-review-section blockquote::before {
  content: "\201C";
}

.ab-review-section blockquote::after {
  content: "\201D";
}

.ab-review-section blockquote {
  max-width: 900px;
  margin: 34px auto 0;
  color: #4a443e;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.1vw, 4.2rem);
  line-height: 1.22;
  font-style: normal;
}

.ab-review-meta {
  margin-top: 28px;
  color: #8b4a42;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ab-final-cta {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: clamp(42px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 44px;
  align-items: center;
  background: #171411;
  color: #ffffff;
}

.ab-final-cta img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 960px) {
  .page-home .site-header {
    position: absolute;
    inset: 12px 0 auto;
  }

  .page-home .nav-inner {
    background: rgba(28, 26, 22, 0.36);
  }

  .ab-hero-inner {
    padding: 118px 0 148px;
  }

  .ab-treatment-rail {
    grid-template-columns: repeat(5, max-content);
    overflow-x: auto;
    justify-content: start;
  }

  .ab-treatment-rail a {
    min-width: 180px;
  }

  .ab-chat-note {
    display: none;
  }

  .ab-lounge,
  .ab-skincare,
  .ab-dark-feature,
  .ab-treatment-feature,
  .ab-final-cta {
    grid-template-columns: 1fr;
  }

  .ab-skincare .ab-copy-panel {
    order: 2;
  }

  .ab-logo-strip,
  .ab-stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-category-section {
    grid-template-columns: 1fr;
  }

  .ab-category-card {
    min-height: 360px;
  }

  .ab-treatment-card {
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .ab-hero h1 {
    font-size: clamp(3.1rem, 17vw, 4.8rem);
  }

  .ab-hero-video {
    object-position: 44% center;
  }

  .ab-collage {
    min-height: 430px;
  }

  .ab-collage-main {
    max-width: 82%;
  }

  .ab-collage-float {
    width: 54%;
  }

  .ab-logo-strip,
  .ab-stat-row {
    grid-template-columns: 1fr;
  }

  .ab-logo-strip span,
  .ab-stat-row span {
    border-right: 0;
    border-bottom: 1px solid rgba(34, 31, 26, 0.10);
  }

  .ab-dark-feature,
  .ab-final-cta {
    width: 100%;
    padding-inline: 24px;
  }
}

/* ── 31. PREMIUM SOCIALS, ATMOSPHERE LAYERS, FLOATING WHATSAPP ── */
.nav-social,
.mobile-social,
.footer-social {
  gap: 8px;
}

.social-icon {
  position: relative;
  width: 38px;
  height: 38px;
  overflow: hidden;
  color: var(--stone);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.48) 52%, rgba(255, 255, 255, 0.2)),
    rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(34, 31, 26, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 34px rgba(34, 31, 26, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform var(--transition),
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.social-icon::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: inherit;
  border: 1px solid rgba(139, 74, 66, 0);
  transition: border-color var(--transition), inset var(--transition);
}

.social-icon svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
}

.social-icon[aria-label*="Instagram"] svg {
  transform: translate(0.2px, 0.2px);
}

.social-icon[aria-label*="Facebook"] svg {
  width: 17px;
  height: 17px;
  transform: translate(0.5px, 0.4px);
}

.social-icon span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.social-icon:hover {
  color: var(--blush-dark);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.95), rgba(250, 248, 244, 0.64) 58%, rgba(232, 208, 204, 0.24)),
    rgba(255, 255, 255, 0.6);
  border-color: rgba(139, 74, 66, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 44px rgba(34, 31, 26, 0.11);
  transform: translateY(-2px) scale(1.035);
}

.social-icon:hover::after {
  inset: 4px;
  border-color: rgba(139, 74, 66, 0.16);
}

.social-icon:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid var(--blush-dark);
  outline-offset: 4px;
}

.page-home .site-header:not(.scrolled) .social-icon {
  color: #ffffff;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12) 58%, rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 18px 44px rgba(0, 0, 0, 0.22);
}

.footer-social {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social .social-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  line-height: 0;
  color: rgba(250, 248, 244, 0.76);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04) 60%),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(250, 248, 244, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 42px rgba(0, 0, 0, 0.22);
}

.footer-social .social-icon::after {
  display: none;
}

.footer-social .social-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  transform: none !important;
}

.footer-social .social-icon[aria-label*="Instagram"] svg {
  width: 16px;
  height: 16px;
  transform: translateY(0.2px) !important;
}

.footer-social .social-icon[aria-label*="Facebook"] svg {
  width: 15px;
  height: 15px;
  transform: translate(0.45px, 0.2px) !important;
}

.footer-social .social-icon:hover {
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 18%, rgba(232, 208, 204, 0.24), rgba(255, 255, 255, 0.08) 64%),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 208, 204, 0.24);
}

/* ── Nav safety pass: keep floating nav visible and CTA text centered everywhere ── */
.site-header {
  top: 0;
  padding-top: max(14px, env(safe-area-inset-top));
  padding-bottom: 8px;
}

.nav-inner {
  overflow: visible;
}

.site-header .button-nav,
.nav-inner .button-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.12;
  min-height: 52px;
  padding: 0 clamp(22px, 2.2vw, 34px);
  white-space: nowrap;
}

.page-home .site-header {
  inset: 0 0 auto;
  padding-top: max(18px, env(safe-area-inset-top));
}

@media (max-width: 960px) {
  .site-header {
    padding-top: max(12px, env(safe-area-inset-top));
  }

  .mobile-menu .button-blush {
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.15;
  }
}

.whatsapp-float {
  right: 28px;
  bottom: 28px;
  width: 58px;
  min-width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  justify-content: center;
  gap: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.3), rgba(47, 141, 88, 0.92) 36%, #257348 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 22px 58px rgba(31, 143, 87, 0.28),
    0 0 0 9px rgba(31, 143, 87, 0.08);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(31, 143, 87, 0.2), transparent 70%);
  opacity: 0.8;
  transform: scale(0.9);
  transition: transform var(--transition), opacity var(--transition);
}

.whatsapp-float span {
  display: none !important;
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
}

.whatsapp-float:hover {
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.34), rgba(47, 141, 88, 0.98) 38%, #1e613d 100%);
  transform: translateY(-4px) scale(1.035);
  box-shadow:
    0 28px 70px rgba(31, 143, 87, 0.34),
    0 0 0 11px rgba(31, 143, 87, 0.1);
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.ab-review-section,
.treatment-review-section,
.article-cta-block,
.editorial-rich {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ab-review-section::before,
.treatment-review-section::before,
.article-cta-block::before,
.editorial-rich::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.ab-review-section::before {
  inset: -18% -8%;
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.97), rgba(250, 248, 244, 0.72), rgba(250, 248, 244, 0.97)),
    url("/assets/clinic-room-premium-720.webp") center / cover no-repeat;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.34;
  transform: scale(1.05);
}

.ab-review-section::after {
  content: "";
  position: absolute;
  inset: 9% 8% auto auto;
  width: min(380px, 34vw);
  aspect-ratio: 0.72;
  z-index: -1;
  background: rgba(232, 208, 204, 0.16);
  transform: skewX(-17deg) rotate(3deg);
  filter: blur(0.2px);
}

.treatment-review-section::before {
  inset: 0;
  background:
    radial-gradient(circle at 78% 34%, rgba(232, 208, 204, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(250, 248, 244, 0.98), rgba(250, 248, 244, 0.64)),
    url("/assets/kelsey-treatment-hero.webp") right 18% center / min(560px, 48vw) auto no-repeat;
  opacity: 0.42;
}

.article-cta-block::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 27, 23, 0.94), rgba(30, 27, 23, 0.82), rgba(30, 27, 23, 0.94)),
    url("/assets/kelsey-hero-camera-720.webp") right 20% center / min(520px, 44vw) auto no-repeat;
  opacity: 0.74;
}

.editorial-rich::after {
  top: 11%;
  right: -9%;
  width: min(460px, 42vw);
  aspect-ratio: 3 / 4;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(250, 248, 244, 0.18), rgba(250, 248, 244, 0.78)),
    url("/assets/noon-product-shelf.webp") center / cover no-repeat;
  filter: grayscale(0.22) saturate(0.86);
  opacity: 0.13;
  transform: rotate(-5deg);
  box-shadow: 0 40px 100px rgba(34, 31, 26, 0.12);
}

.article-cta-inner,
.treatment-review-card,
.ab-review-card {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (max-width: 960px) {
  .whatsapp-float {
    right: 18px;
    bottom: 88px;
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
  }

  .treatment-review-section::before,
  .article-cta-block::before,
  .editorial-rich::after {
    opacity: 0.18;
    background-size: 70vw auto;
  }
}

@media (max-width: 620px) {
  .nav-social {
    display: none;
  }

  .mobile-social .social-icon {
    width: 46px;
    height: 46px;
  }

  .ab-review-section::after {
    width: 72vw;
    right: -12vw;
    top: 6%;
  }
}

/* ── 32. SOFT PHOTOGRAPHIC HERO FADES FOR INNER PAGES ── */
body {
  --inner-hero-photo: url("/assets/clinic-room-premium-720.webp");
  --inner-hero-photo-position: right center;
}

body.page-blog-hub {
  --inner-hero-photo: url("/assets/kelsey-premium-headshot.webp");
  --inner-hero-photo-position: 84% 32%;
}

body.page-treatments-hub {
  --inner-hero-photo: url("/assets/kelsey-treatment-hero.webp");
  --inner-hero-photo-position: 86% 28%;
}

body.page-book {
  --inner-hero-photo: url("/assets/consultation-premium.jpg");
  --inner-hero-photo-position: 84% 36%;
}

body.page-about {
  --inner-hero-photo: url("/assets/kelsey-hero-camera-720.webp");
  --inner-hero-photo-position: 82% 24%;
}

body.page-treatment-under-eye {
  --inner-hero-photo: url("/assets/result-lauren-eyes.webp");
  --inner-hero-photo-position: 86% 42%;
}

body.page-treatment-skin-boosters,
body.page-treatment-skin-quality {
  --inner-hero-photo: url("/assets/noon-product-shelf.webp");
  --inner-hero-photo-position: 86% 44%;
}

body.page-treatment-anti-wrinkle {
  --inner-hero-photo: url("/assets/kelsey-treatment-hero.webp");
  --inner-hero-photo-position: 84% 28%;
}

.treatment-hero,
.about-hero,
.page-hero,
.article-page .article-header {
  isolation: isolate;
}

.treatment-hero::before,
.about-hero::before,
.page-hero::before,
.article-page .article-header::before {
  content: "";
  position: absolute;
  inset: -8% -6% -4% 34%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.98) 0%, rgba(250, 248, 244, 0.76) 36%, rgba(250, 248, 244, 0.32) 66%, rgba(250, 248, 244, 0.68) 100%),
    var(--inner-hero-photo) var(--inner-hero-photo-position) / cover no-repeat;
  filter: grayscale(0.18) saturate(0.9) contrast(0.94);
  opacity: 0.42;
  transform: scale(1.05);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 28%, #000 58%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at 72% 44%, #000 0 44%, transparent 76%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.25) 28%, #000 58%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at 72% 44%, #000 0 44%, transparent 76%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.treatment-hero::after,
.about-hero::after,
.page-hero::after,
.article-page .article-header::after {
  z-index: -1;
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.24) 54%, transparent 72%),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    -80px 90px 140px rgba(232, 208, 204, 0.16),
    inset 0 0 90px rgba(255, 255, 255, 0.42);
}

.treatment-hero .container,
.about-hero .container,
.page-hero .container,
.article-page .article-header .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.treatment-hero h1,
.about-hero h1,
.article-page .article-header h1 {
  text-shadow: 0 18px 58px rgba(250, 248, 244, 0.72);
}

@media (max-width: 960px) {
  .treatment-hero::before,
  .about-hero::before,
  .page-hero::before,
  .article-page .article-header::before {
    inset: 14% -20% 2% 12%;
    opacity: 0.2;
    -webkit-mask-image: radial-gradient(circle at 78% 22%, #000 0 34%, transparent 68%);
    mask-image: radial-gradient(circle at 78% 22%, #000 0 34%, transparent 68%);
  }
}

@media (max-width: 620px) {
  .treatment-hero::before,
  .about-hero::before,
  .page-hero::before,
  .article-page .article-header::before {
    inset: 20% -32% 10% 8%;
    opacity: 0.14;
  }
}

/* ── 33. PURPOSEFUL MOTION PASS ───────────────────────────── */
@keyframes nk-hero-photo-breathe {
  from {
    transform: scale(1.045) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.085) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes nk-hero-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes nk-cta-press {
  0% { transform: translateY(-2px) scale(1); }
  45% { transform: translateY(0) scale(0.965); }
  100% { transform: translateY(-2px) scale(1); }
}

@keyframes nk-whatsapp-glow {
  0%, 100% {
    box-shadow:
      0 22px 58px rgba(31, 143, 87, 0.28),
      0 0 0 9px rgba(31, 143, 87, 0.08);
  }
  50% {
    box-shadow:
      0 26px 66px rgba(31, 143, 87, 0.34),
      0 0 0 14px rgba(31, 143, 87, 0.055);
  }
}

.js:not(.motion-ready) .ab-hero .ab-kicker,
.js:not(.motion-ready) .ab-hero-logo,
.js:not(.motion-ready) .ab-hero h1,
.js:not(.motion-ready) .ab-hero-lede,
.js:not(.motion-ready) .ab-hero .ab-button,
.js:not(.motion-ready) .page-hero .breadcrumb,
.js:not(.motion-ready) .page-hero .eyebrow,
.js:not(.motion-ready) .page-hero h1,
.js:not(.motion-ready) .page-hero .lead,
.js:not(.motion-ready) .treatment-hero .breadcrumb,
.js:not(.motion-ready) .treatment-hero .eyebrow,
.js:not(.motion-ready) .treatment-hero h1,
.js:not(.motion-ready) .treatment-hero .lead,
.js:not(.motion-ready) .about-hero .breadcrumb,
.js:not(.motion-ready) .about-hero .eyebrow,
.js:not(.motion-ready) .about-hero h1,
.js:not(.motion-ready) .about-hero .lead {
  opacity: 0;
}

.motion-ready .ab-hero .ab-kicker,
.motion-ready .ab-hero-logo,
.motion-ready .ab-hero h1,
.motion-ready .ab-hero-lede,
.motion-ready .ab-hero .ab-button,
.motion-ready .page-hero .breadcrumb,
.motion-ready .page-hero .eyebrow,
.motion-ready .page-hero h1,
.motion-ready .page-hero .lead,
.motion-ready .treatment-hero .breadcrumb,
.motion-ready .treatment-hero .eyebrow,
.motion-ready .treatment-hero h1,
.motion-ready .treatment-hero .lead,
.motion-ready .about-hero .breadcrumb,
.motion-ready .about-hero .eyebrow,
.motion-ready .about-hero h1,
.motion-ready .about-hero .lead {
  animation: nk-hero-arrive 760ms var(--ease-expo) both;
}

.motion-ready .ab-hero-logo,
.motion-ready .page-hero .eyebrow,
.motion-ready .treatment-hero .eyebrow,
.motion-ready .about-hero .eyebrow {
  animation-delay: 70ms;
}

.motion-ready .ab-hero h1,
.motion-ready .page-hero h1,
.motion-ready .treatment-hero h1,
.motion-ready .about-hero h1 {
  animation-delay: 140ms;
}

.motion-ready .ab-hero-lede,
.motion-ready .page-hero .lead,
.motion-ready .treatment-hero .lead,
.motion-ready .about-hero .lead {
  animation-delay: 230ms;
}

.motion-ready .ab-hero .ab-button {
  animation-delay: 320ms;
}

.js .reveal {
  transition-delay: var(--reveal-delay, 0ms);
}

.button,
.ab-button,
.social-icon,
.whatsapp-float,
.faq-question,
.faq-chevron {
  -webkit-tap-highlight-color: transparent;
}

.button.is-pressed,
.ab-button.is-pressed,
.whatsapp-float.is-pressed {
  animation: nk-cta-press 240ms var(--ease-expo);
}

.button,
.ab-button {
  will-change: transform;
}

.button:hover,
.ab-button:hover {
  transform: translateY(-3px);
}

.faq-answer {
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition:
    max-height var(--dur-slow) var(--ease-expo),
    opacity 260ms var(--ease),
    transform 360ms var(--ease-expo);
}

.faq-item.open .faq-answer {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.faq-question:hover .faq-chevron {
  transform: rotate(8deg);
}

.faq-item.open .faq-question:hover .faq-chevron,
.faq-item.open .faq-chevron {
  transform: rotate(45deg);
}

.whatsapp-float {
  animation: nk-whatsapp-glow 4.8s var(--ease) infinite;
}

.treatment-hero::before,
.about-hero::before,
.page-hero::before,
.article-page .article-header::before {
  animation: nk-hero-photo-breathe 12s var(--ease) alternate infinite;
  will-change: transform;
}

.hero-frame img,
.ab-collage img,
.treatment-hub-image img,
.blog-card img {
  transition:
    transform 900ms var(--ease-expo),
    filter 900ms var(--ease-expo);
}

.hero-frame:hover img,
.ab-collage:hover img,
.treatment-hub-item:hover .treatment-hub-image img,
.blog-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.02);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js:not(.motion-ready) .ab-hero .ab-kicker,
  .js:not(.motion-ready) .ab-hero-logo,
  .js:not(.motion-ready) .ab-hero h1,
  .js:not(.motion-ready) .ab-hero-lede,
  .js:not(.motion-ready) .ab-hero .ab-button,
  .js:not(.motion-ready) .page-hero .breadcrumb,
  .js:not(.motion-ready) .page-hero .eyebrow,
  .js:not(.motion-ready) .page-hero h1,
  .js:not(.motion-ready) .page-hero .lead,
  .js:not(.motion-ready) .treatment-hero .breadcrumb,
  .js:not(.motion-ready) .treatment-hero .eyebrow,
  .js:not(.motion-ready) .treatment-hero h1,
  .js:not(.motion-ready) .treatment-hero .lead,
  .js:not(.motion-ready) .about-hero .breadcrumb,
  .js:not(.motion-ready) .about-hero .eyebrow,
  .js:not(.motion-ready) .about-hero h1,
  .js:not(.motion-ready) .about-hero .lead {
    opacity: 1;
  }
}
