/*
Theme Name: Mediversity Health & Aesthetics
Theme URI: https://mediversity.com
Author: Mediversity Health
Description: Luxury skin aesthetics WordPress theme for Mediversity in Turnersville, NJ
Version: 1.0.0
Text Domain: lumina
License: GPL v2 or later
*/

/* ======================================================
   CSS CUSTOM PROPERTIES
   ====================================================== */
:root {
  --c-primary:        #1a3a5c;
  --c-primary-dark:   #0d2137;
  --c-primary-light:  #2d5a8e;
  --c-secondary:      #4a9eca;
  --c-secondary-light:#82bfe0;
  --c-accent:         #c9a84c;
  --c-accent-light:   #e8d5a3;
  --c-accent-dark:    #a8882a;
  --c-white:          #ffffff;
  --c-off-white:      #f8f9fc;
  --c-light-grey:     #e8ecf1;
  --c-mid-grey:       #8892a4;
  --c-dark-grey:      #4a5568;
  --c-text:           #1a1a2e;
  --c-text-light:     #4a5568;
  --c-success:        #10b981;
  --c-error:          #ef4444;
  --font-heading:     'Playfair Display', Georgia, serif;
  --font-body:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-xs:  0 1px 3px rgba(26,58,92,.06);
  --shadow-sm:  0 2px 8px rgba(26,58,92,.09);
  --shadow-md:  0 4px 24px rgba(26,58,92,.11);
  --shadow-lg:  0 8px 40px rgba(26,58,92,.14);
  --shadow-xl:  0 16px 64px rgba(26,58,92,.18);
  --shadow-gold:0 4px 20px rgba(201,168,76,.30);
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full:9999px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .5s cubic-bezier(.4,0,.2,1);
  --transition-bounce: all .4s cubic-bezier(.34,1.56,.64,1);
  --container-max: 1200px;
  --nav-height: 80px;
}

/* ======================================================
   RESET & BASE
   ====================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

/* ======================================================
   TYPOGRAPHY
   ====================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--c-primary);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p { color: var(--c-text-light); line-height: 1.8; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-text-light);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.text-center { text-align: center; }
.text-white h1,.text-white h2,.text-white h3,.text-white h4,
.text-white p,.text-white .section-eyebrow { color: var(--c-white); }
.text-white .section-subtitle { color: rgba(255,255,255,.75); }

/* ======================================================
   LAYOUT & CONTAINERS
   ====================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.bg-white   { background: var(--c-white); }
.bg-off-white { background: var(--c-off-white); }
.bg-primary { background: var(--c-primary); }
.bg-dark    { background: var(--c-primary-dark); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ======================================================
   BUTTONS
   ====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition-bounce);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-accent);
  color: var(--c-primary-dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.40);
}
.btn-secondary {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  background: var(--c-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--c-white);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
}
.btn-outline-navy:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .875rem; }
.btn-icon { padding: 1rem; border-radius: 50%; }

/* ======================================================
   NAVIGATION
   ====================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}
.site-header.transparent {
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}
.site-header .container { height: 100%; }
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--c-accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  letter-spacing: -.02em;
  transition: var(--transition);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  transition: var(--transition);
}
.nav-logo-text .brand-tagline {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.site-header.scrolled .brand-name { color: var(--c-primary); }
.site-header.scrolled .brand-tagline { color: var(--c-mid-grey); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--c-accent); background: rgba(255,255,255,.06); }
.site-header.scrolled .nav-link { color: var(--c-text); }
.site-header.scrolled .nav-link:hover { color: var(--c-accent); background: var(--c-off-white); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: .5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid var(--c-light-grey);
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--c-white);
  border-left: 1px solid var(--c-light-grey);
  border-top: 1px solid var(--c-light-grey);
  rotate: 45deg;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem 1.2rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-text);
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--c-off-white); color: var(--c-primary); }
.nav-cta { margin-left: .75rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: .4rem .8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.25);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-phone:hover { background: rgba(255,255,255,.1); color: var(--c-white); }
.site-header.scrolled .nav-phone { color: var(--c-primary); border-color: var(--c-light-grey); }
.site-header.scrolled .nav-phone:hover { background: var(--c-off-white); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-white);
  border-radius: 4px;
  transition: var(--transition);
}
.site-header.scrolled .hamburger { background: var(--c-off-white); }
.site-header.scrolled .hamburger span { background: var(--c-primary); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero-section {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  background: linear-gradient(145deg, #0d2137 0%, #1a3a5c 40%, #1d507a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-orb-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,202,.18) 0%, transparent 65%);
  top: -200px; right: -100px;
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 65%);
  bottom: -150px; left: -80px;
  pointer-events: none;
}
.hero-orb-3 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,202,.1) 0%, transparent 65%);
  top: 40%; left: 30%;
  pointer-events: none;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: var(--radius-full);
  padding: .4rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--c-accent-light);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--c-accent);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  margin-top: .3rem;
}
.hero-image-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.hero-main-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero-main-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-secondary));
}
.hero-service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-service-item:last-child { border-bottom: none; }
.hero-service-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}
.hero-service-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-white);
}
.hero-service-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.hero-floating-badge {
  position: absolute;
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: .8rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-floating-badge-1 { top: -20px; right: -20px; }
.hero-floating-badge-2 { bottom: -20px; left: -30px; }
.badge-icon { font-size: 1.3rem; }
.badge-text-sm { font-size: .7rem; color: var(--c-mid-grey); font-weight: 500; }
.badge-text-main { font-size: .9rem; font-weight: 700; color: var(--c-primary); }

/* ======================================================
   TRUST BAR
   ====================================================== */
.trust-bar {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-light-grey);
  padding: 1.5rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 140px;
  justify-content: center;
}
.trust-icon {
  color: var(--c-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-text-label { font-size: .75rem; color: var(--c-mid-grey); font-weight: 500; }
.trust-text-value { font-size: .95rem; font-weight: 700; color: var(--c-primary); }
.trust-divider { width: 1px; height: 40px; background: var(--c-light-grey); flex-shrink: 0; }

/* ======================================================
   SERVICE CARDS
   ====================================================== */
.services-section { background: var(--c-off-white); }
.service-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--c-light-grey);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,33,55,.6) 100%);
}
.service-card-icon-placeholder {
  font-size: 4rem;
  opacity: .4;
}
.service-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .5rem;
}
.service-card h3 { color: var(--c-primary); margin-bottom: .75rem; font-size: 1.4rem; }
.service-card p { color: var(--c-text-light); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.service-card-features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.5rem;
}
.service-card-feature {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--c-text-light);
}
.service-card-feature::before {
  content: '✓';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(16,185,129,.1);
  color: var(--c-success);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ======================================================
   ABOUT SECTION
   ====================================================== */
.about-section .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-container {
  position: relative;
}
.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.2);
}
.about-image-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-accent-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--c-accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-gold);
  color: var(--c-primary-dark);
  text-align: center;
  min-width: 130px;
}
.about-accent-card .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-accent-card .label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-top: .3rem;
}
.about-experience-badge {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-experience-badge .stars { color: #f59e0b; letter-spacing: 2px; font-size: .85rem; }
.about-experience-badge .review-count { font-size: .75rem; color: var(--c-mid-grey); }
.about-experience-badge .rating { font-size: 1.3rem; font-weight: 700; color: var(--c-primary); }
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text .section-eyebrow { text-align: left; }
.about-text .section-title { text-align: left; }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: .5rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about-feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(74,158,202,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--c-secondary);
}
.about-feature h5 { color: var(--c-primary); margin-bottom: .2rem; }
.about-feature p { font-size: .9rem; }

/* ======================================================
   GALLERY / BEFORE-AFTER
   ====================================================== */
.gallery-section { background: var(--c-primary-dark); overflow: hidden; }
.gallery-section .section-eyebrow { color: var(--c-accent); }
.gallery-section .section-title { color: var(--c-white); }
.gallery-section .section-subtitle { color: rgba(255,255,255,.65); }
.gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-top: 3rem;
}
.gallery-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.gallery-item::after {
  content: attr(data-label);
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(13,33,55,.7);
  backdrop-filter: blur(8px);
  color: var(--c-white);
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.15);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  opacity: .15;
}
.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}
.gallery-btn:hover { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-primary-dark); }
.gallery-dots { display: flex; gap: .5rem; }
.gallery-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-dot.active {
  background: var(--c-accent);
  width: 24px;
  border-radius: 4px;
}

/* ======================================================
   TESTIMONIALS
   ====================================================== */
.testimonials-section { background: var(--c-off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-light-grey);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.testimonial-stars { color: #f59e0b; letter-spacing: 2px; font-size: .95rem; }
.testimonial-quote {
  font-style: italic;
  color: var(--c-text);
  line-height: 1.8;
  font-size: .95rem;
  position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--c-accent-light);
  line-height: .5;
  display: block;
  margin-bottom: .5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-light-grey);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .95rem; color: var(--c-primary); }
.testimonial-service { font-size: .8rem; color: var(--c-mid-grey); font-weight: 500; }
.testimonial-featured {
  grid-column: span 1;
  background: var(--c-primary);
  border-color: transparent;
}
.testimonial-featured .testimonial-stars { color: var(--c-accent); }
.testimonial-featured .testimonial-quote { color: rgba(255,255,255,.9); }
.testimonial-featured .testimonial-quote::before { color: rgba(201,168,76,.3); }
.testimonial-featured .testimonial-name { color: var(--c-white); }
.testimonial-featured .testimonial-service { color: rgba(255,255,255,.5); }
.testimonial-featured .testimonial-author { border-top-color: rgba(255,255,255,.12); }

/* ======================================================
   CTA BANNER
   ====================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-accent-dark) 0%, var(--c-accent) 50%, #e0b84d 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 65%);
  top: -300px; left: -100px;
  pointer-events: none;
}
.cta-banner h2 { color: var(--c-primary-dark); font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-banner p { color: rgba(13,33,55,.7); max-width: 520px; margin: 1rem auto 2rem; font-size: 1.05rem; }
.cta-banner .btn-primary { background: var(--c-primary-dark); color: var(--c-white); }
.cta-banner .btn-primary:hover { background: var(--c-primary); }
.cta-banner .btn-outline-navy { border-color: rgba(13,33,55,.35); color: var(--c-primary-dark); }
.cta-banner .btn-outline-navy:hover { background: rgba(13,33,55,.08); }
.cta-banner-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ======================================================
   BLOG GRID
   ====================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-light-grey);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  overflow: hidden;
  position: relative;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--c-accent);
  color: var(--c-primary-dark);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { display: flex; gap: 1rem; margin-bottom: .75rem; }
.blog-card-date, .blog-card-read { font-size: .78rem; color: var(--c-mid-grey); font-weight: 500; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.blog-card h3 a { color: var(--c-primary); }
.blog-card h3 a:hover { color: var(--c-accent-dark); }
.blog-card p { font-size: .88rem; line-height: 1.7; }

/* ======================================================
   PAGE HERO (inner pages)
   ====================================================== */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: linear-gradient(145deg, #0d2137 0%, #1a3a5c 60%, #1d507a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-orb {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,158,202,.2) 0%, transparent 65%);
  top: -200px; right: -100px; pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--c-white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 580px; margin: 0 auto 2rem; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb-sep { color: rgba(255,255,255,.3); font-size: .7rem; }

/* ======================================================
   SERVICE DETAIL PAGES
   ====================================================== */
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--c-light-grey);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.benefit-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,.3); transform: translateY(-3px); }
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.benefit-card h4 { color: var(--c-primary); margin-bottom: .5rem; }
.benefit-card p { font-size: .88rem; }
.process-steps { margin-top: 2rem; display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--c-light-grey);
}
.process-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  border: 3px solid var(--c-white);
  box-shadow: 0 0 0 3px var(--c-primary);
}
.process-step h4 { color: var(--c-primary); margin-bottom: .35rem; }
.process-step p { font-size: .9rem; }
.faq-list { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  border: 1px solid var(--c-light-grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--c-secondary); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--c-primary);
  font-size: .95rem;
  user-select: none;
  background: var(--c-white);
  transition: var(--transition);
}
.faq-question:hover { background: var(--c-off-white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: var(--c-white);
}
.faq-answer-inner { padding: 0 1.5rem 1.1rem; color: var(--c-text-light); font-size: .9rem; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-icon { font-size: 1.2rem; color: var(--c-accent); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.treatment-card {
  background: var(--c-white);
  border: 1px solid var(--c-light-grey);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.treatment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.treatment-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.treatment-card h4 { color: var(--c-primary); margin-bottom: .5rem; }
.treatment-card p { font-size: .85rem; }

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.team-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-light-grey);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-photo {
  height: 260px;
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-secondary) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.25);
  overflow: hidden;
  position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(13,33,55,.5) 100%);
}
.team-body { padding: 1.75rem; }
.team-name { font-size: 1.2rem; color: var(--c-primary); margin-bottom: .25rem; }
.team-title { font-size: .85rem; color: var(--c-accent-dark); font-weight: 600; margin-bottom: .75rem; }
.team-bio { font-size: .85rem; color: var(--c-text-light); line-height: 1.7; margin-bottom: 1rem; }
.team-creds { display: flex; flex-direction: column; gap: .3rem; }
.team-cred { font-size: .78rem; color: var(--c-mid-grey); display: flex; align-items: center; justify-content: center; gap: .4rem; }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.cert-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--c-light-grey);
  box-shadow: var(--shadow-xs);
}
.cert-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.cert-card h5 { font-size: .85rem; color: var(--c-primary); font-weight: 700; }
.cert-card p { font-size: .75rem; color: var(--c-mid-grey); margin-top: .25rem; }

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-light-grey);
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(74,158,202,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--c-primary);
  flex-shrink: 0;
}
.contact-info-label { font-size: .8rem; color: var(--c-mid-grey); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .3rem; }
.contact-info-value { font-size: .95rem; color: var(--c-text); font-weight: 500; }
.contact-info-value a { color: var(--c-primary); font-weight: 600; }
.contact-info-value a:hover { color: var(--c-accent-dark); }
.hours-table { display: flex; flex-direction: column; gap: .4rem; margin-top: .5rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .88rem; padding: .3rem 0; border-bottom: 1px solid var(--c-light-grey); }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--c-text); font-weight: 500; }
.hours-time { color: var(--c-text-light); }
.hours-closed { color: var(--c-mid-grey); }
.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-light-grey);
}
.map-embed iframe { display: block; width: 100%; height: 350px; border: none; }

/* ======================================================
   FORMS
   ====================================================== */
.form-card {
  background: var(--c-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--c-light-grey);
}
.form-card h3 { color: var(--c-primary); margin-bottom: .5rem; }
.form-card > p { font-size: .9rem; margin-bottom: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group.full { grid-column: span 2; }
.form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: .02em;
}
.form-label .required { color: var(--c-error); margin-left: .2rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--c-light-grey);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--c-text);
  background: var(--c-white);
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--c-secondary);
  box-shadow: 0 0 0 3px rgba(74,158,202,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--c-mid-grey); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238892a4' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .8rem center; padding-right: 2.5rem; }
.form-note { font-size: .78rem; color: var(--c-mid-grey); margin-top: .25rem; }
.form-submit-area { margin-top: 1.5rem; }
.form-submit-area .btn { width: 100%; justify-content: center; padding: 1rem; }
.form-privacy { text-align: center; margin-top: 1rem; font-size: .78rem; color: var(--c-mid-grey); }
.form-privacy a { color: var(--c-primary); text-decoration: underline; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { color: var(--c-success); margin-bottom: .5rem; }

/* ======================================================
   STATS COUNTER
   ====================================================== */
.stats-section { background: var(--c-primary); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat-item { text-align: center; padding: 1.5rem 1rem; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
  display: block;
}
.stat-label { font-size: .9rem; color: rgba(255,255,255,.65); font-weight: 500; margin-top: .5rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.12); }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--c-primary-dark);
  color: rgba(255,255,255,.7);
  padding-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width: 300px; }
.footer-brand p { font-size: .88rem; line-height: 1.8; margin: 1.25rem 0; color: rgba(255,255,255,.55); }
.footer-brand .nav-logo { margin-bottom: .5rem; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.social-link:hover { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-primary-dark); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .7rem; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--c-white); padding-left: .3rem; }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .9rem;
  font-size: .88rem;
}
.footer-contact-icon { color: var(--c-accent); margin-top: .1rem; flex-shrink: 0; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--c-accent); }

/* ======================================================
   SCROLL ANIMATIONS
   ====================================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate="fade-left"] { transform: translateX(-28px); }
[data-animate="fade-right"] { transform: translateX(28px); }
[data-animate="scale"] { transform: scale(.94); }
[data-animate].animated { opacity: 1; transform: none; }

/* ======================================================
   KEYFRAMES
   ====================================================== */
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.float { animation: float 5s ease-in-out infinite; }
.hero-floating-badge-1 { animation: float 5s ease-in-out infinite; }
.hero-floating-badge-2 { animation: float 6s ease-in-out infinite 1s; }

/* ======================================================
   UTILITIES
   ====================================================== */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: .5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.highlight-gold { color: var(--c-accent); }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-secondary));
  border-radius: 4px;
  margin: 1rem auto;
}
.divider-left { margin-left: 0; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.tag-blue { background: rgba(74,158,202,.12); color: var(--c-secondary); }
.tag-gold { background: rgba(201,168,76,.12); color: var(--c-accent-dark); }
.tag-green { background: rgba(16,185,129,.12); color: var(--c-success); }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-divider { display: none; }
}
@media (max-width: 900px) {
  :root { --nav-height: 68px; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-area { display: none; }
  .about-section .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .gallery-slide { grid-template-columns: 1fr 1fr; }
  .gallery-slide .gallery-item:nth-child(3) { display: none; }
  .about-experience-badge { display: none; }
  .about-accent-card { right: -0.5rem; }
  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
}
@media (max-width: 680px) {
  .nav-menu { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(13,33,55,.98);
    backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    gap: .5rem;
    border-top: 1px solid rgba(255,255,255,.08);
    z-index: 999;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-menu.mobile-open .nav-link {
    color: rgba(255,255,255,.85);
    padding: .8rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }
  .nav-menu.mobile-open .nav-link:hover { background: rgba(255,255,255,.08); color: var(--c-accent); }
  .nav-menu.mobile-open .btn { width: 100%; justify-content: center; margin-top: .5rem; }
  .nav-dropdown { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .trust-bar-inner { flex-direction: column; gap: 1rem; }
  .trust-divider { display: none; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-slide { grid-template-columns: 1fr; }
  .gallery-slide .gallery-item:nth-child(2), .gallery-slide .gallery-item:nth-child(3) { display: none; }
  .section { padding: 3rem 0; }
  .section-lg { padding: 4rem 0; }
}

/* ======================================================
   AESTHETIC HOMEPAGE
   ====================================================== */
body.home .site-header {
  background: rgba(255,255,255,.94);
  box-shadow: 0 1px 0 rgba(17,35,60,.08);
  backdrop-filter: blur(8px);
}
body.home .site-header .brand-name,
body.home .site-header .nav-link,
body.home .site-header .nav-phone {
  color: #243f60;
}
body.home .site-header .brand-tagline { color: #92a4b9; }

.aesthetic-home {
  --ah-blue-900: #132840;
  --ah-blue-800: #1f3f63;
  --ah-blue-700: #3b628f;
  --ah-slate: #62758f;
  --ah-cream: #f8f5f1;
  --ah-gold: #ba8a50;
  --ah-gold-dark: #9f723c;
  --ah-font-title: 'Cormorant Garamond', Georgia, serif;
  --ah-font-body: 'Manrope', 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7fc 22%, #ffffff 62%);
  font-family: var(--ah-font-body);
}
.aesthetic-home p,
.aesthetic-home li,
.aesthetic-home a,
.aesthetic-home button,
.aesthetic-home span { font-family: var(--ah-font-body); }

.ah-hero {
  position: relative;
  padding: calc(var(--nav-height) + 2.5rem) 0 5rem;
  overflow: hidden;
}
.ah-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 5% 16%, rgba(70,109,156,.25), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.9), transparent 40%),
    linear-gradient(135deg, #e5edf6 0%, #edf3fa 45%, #f7f9fc 100%);
  z-index: 0;
}
.ah-hero::after {
  content: '';
  position: absolute;
  right: -140px;
  top: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186,138,80,.2) 0%, rgba(186,138,80,0) 70%);
}
.ah-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 2rem;
}
.ah-kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--ah-gold);
  margin-bottom: 1rem;
}
.ah-kicker::before,
.ah-kicker::after {
  content: '';
  width: 26px;
  height: 1px;
  background: rgba(186,138,80,.75);
}
.ah-hero-copy h1 {
  font-family: var(--ah-font-title);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--ah-blue-900);
  margin-bottom: 1.15rem;
}
.ah-hero-copy h1 em {
  color: var(--ah-gold-dark);
  font-style: italic;
  font-weight: 600;
}
.ah-hero-copy p {
  font-size: 1.02rem;
  color: var(--ah-slate);
  max-width: 570px;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.ah-hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ah-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .78rem 1.35rem;
  font-size: .88rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s ease;
}
.ah-btn-gold {
  background: linear-gradient(135deg, #c3955d, #ad7a43);
  color: #fff;
  box-shadow: 0 10px 28px rgba(173,122,67,.28);
}
.ah-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(173,122,67,.33);
}
.ah-btn-ghost {
  border-color: #9cb0c8;
  color: #25466d;
  background: rgba(255,255,255,.62);
}
.ah-btn-ghost:hover { background: #ffffff; }
.ah-btn-ghost-dark {
  border-color: #2b4f78;
  color: #2b4f78;
  background: #fff;
}
.ah-hero-meta {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.ah-hero-meta span {
  font-size: .76rem;
  color: #5c728e;
  font-weight: 600;
  border: 1px solid #d8e2ee;
  border-radius: 999px;
  padding: .38rem .72rem;
  background: rgba(255,255,255,.72);
}

.ah-hero-visual { position: relative; }
.ah-hero-image-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 56px rgba(29,55,88,.22);
  border: 5px solid rgba(255,255,255,.66);
}
.ah-hero-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(1.02) contrast(.98);
}
.ah-floating {
  position: absolute;
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  padding: .72rem .9rem;
  box-shadow: 0 10px 28px rgba(25,46,74,.18);
  border: 1px solid #deE7f2;
  min-width: 110px;
  text-align: center;
}
.ah-floating strong {
  display: block;
  font-size: 1.25rem;
  color: var(--ah-blue-900);
  line-height: 1;
}
.ah-floating span { font-size: .72rem; color: #6d7f95; font-weight: 700; }
.ah-floating-top { left: -18px; top: 40px; }
.ah-floating-bottom { right: -18px; bottom: 46px; }

.ah-service-band {
  margin-top: -42px;
  position: relative;
  z-index: 5;
}
.ah-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ah-service-card {
  background: rgba(255,255,255,.9);
  border: 1px solid #dce5f0;
  border-radius: 18px;
  padding: 1.35rem 1.2rem;
  box-shadow: 0 16px 40px rgba(35,56,86,.12);
  transition: .24s ease;
}
.ah-service-card:hover { transform: translateY(-4px); }
.ah-service-card-featured {
  background: linear-gradient(155deg, #203e60 0%, #2f5d8c 100%);
  border-color: transparent;
}
.ah-service-icon {
  font-size: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
  background: #eef3f9;
}
.ah-service-card h3 {
  font-family: var(--ah-font-title);
  font-size: 2rem;
  color: #1f3d60;
  margin-bottom: .3rem;
}
.ah-service-card p { color: #687d96; font-size: .9rem; margin-bottom: .55rem; }
.ah-service-card a { color: #ad7a43; font-size: .84rem; font-weight: 800; }
.ah-service-card-featured .ah-service-icon { background: rgba(255,255,255,.16); }
.ah-service-card-featured h3,
.ah-service-card-featured p,
.ah-service-card-featured a { color: #fff; }

.ah-signature { padding-top: 6rem; }
.ah-signature-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
}
.ah-signature-copy h2 {
  font-family: var(--ah-font-title);
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: #183553;
  margin-bottom: .8rem;
}
.ah-signature-copy p { color: #61768f; max-width: 560px; margin-bottom: 1rem; }
.ah-list {
  list-style: none;
  display: grid;
  gap: .45rem;
}
.ah-list li {
  color: #355679;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ah-list li::before {
  content: '✓';
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e6f2eb;
  color: #1d8f57;
  font-size: .72rem;
}

.ah-signature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ah-signature-cards article {
  background: #fff;
  border: 1px solid #dee6f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(27,46,74,.12);
}
.ah-signature-cards img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.ah-signature-cards h4 {
  font-family: var(--ah-font-title);
  font-size: 1.6rem;
  color: #1e3b5e;
  padding: .9rem 1rem 0;
}
.ah-signature-cards p {
  color: #6c8098;
  font-size: .86rem;
  padding: .3rem 1rem 1rem;
}

.ah-results {
  background: var(--ah-cream);
  padding: 3.8rem 0;
  border-top: 1px solid #eee7dd;
  border-bottom: 1px solid #eee7dd;
}
.ah-results-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.4rem;
  align-items: center;
}
.ah-results-copy h2 {
  font-family: var(--ah-font-title);
  font-size: 2.6rem;
  color: #1c395a;
  margin-bottom: .65rem;
}
.ah-results-copy p { color: #6c7f95; margin-bottom: 1rem; }

.ah-results-slider {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 1rem;
}
.ah-slides-viewport {
  overflow: hidden;
  border-radius: 16px;
}
.ah-slides {
  display: grid;
  grid-template-columns: repeat(2, 100%);
  gap: 1rem;
  transition: transform .35s ease;
}
.ah-slide {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #dce4ee;
  box-shadow: 0 10px 26px rgba(26,47,75,.16);
  background: #fff;
}
.ah-slide img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.ah-slide figcaption {
  display: flex;
  justify-content: space-between;
  padding: .45rem .65rem .55rem;
}
.ah-slide figcaption span {
  text-transform: uppercase;
  font-size: .62rem;
  letter-spacing: .06em;
  border-radius: 4px;
  background: rgba(23,44,68,.8);
  color: #fff;
  padding: .16rem .46rem;
  font-weight: 700;
}
.ah-slider-controls {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  justify-content: center;
}
.ah-slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d3deea;
  background: #fff;
  color: #35577c;
  box-shadow: 0 3px 10px rgba(27,46,74,.12);
}

.ah-testimonials { background: linear-gradient(180deg, #f2f6fc 0%, #ffffff 70%); }
.ah-title-wrap h2 {
  font-family: var(--ah-font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #203e60;
}
.ah-testimonial-grid {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ah-testimonial {
  background: #fff;
  border: 1px solid #dee7f2;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 12px 28px rgba(26,46,74,.11);
}
.ah-testimonial p {
  color: #5e738e;
  font-size: .95rem;
  line-height: 1.75;
  margin-bottom: .85rem;
  font-style: italic;
}
.ah-testimonial strong {
  display: block;
  color: #1f4062;
  font-size: .88rem;
  letter-spacing: .08em;
}
.ah-testimonial span { font-size: .78rem; color: #899ab0; }

.ah-cta {
  padding: 1.6rem 0 4.2rem;
  background: #fff;
}
.ah-cta-box {
  background:
    radial-gradient(circle at 14% 20%, rgba(255,255,255,.16), transparent 36%),
    linear-gradient(135deg, #1a3655 0%, #274f77 45%, #315f8f 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.4rem;
  align-items: center;
  box-shadow: 0 22px 44px rgba(21,43,70,.22);
}
.ah-cta-box .ah-kicker { color: #dfb582; }
.ah-cta-box h2 {
  color: #fff;
  font-family: var(--ah-font-title);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: .45rem;
}
.ah-cta-box p { color: rgba(255,255,255,.77); max-width: 580px; }
.ah-cta-actions { display: flex; gap: .65rem; flex-wrap: wrap; }
.ah-cta-actions .ah-btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }

@media (max-width: 1100px) {
  .ah-hero-grid,
  .ah-signature-grid,
  .ah-results-grid { grid-template-columns: 1fr; }
  .ah-hero-image-wrap img { height: 460px; }
  .ah-service-band { margin-top: -18px; }
  .ah-service-grid,
  .ah-testimonial-grid { grid-template-columns: 1fr 1fr; }
  .ah-cta-box { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .ah-hero { padding-bottom: 2.8rem; }
  .ah-hero-copy h1 { font-size: 2.35rem; }
  .ah-hero-copy p { font-size: .92rem; }
  .ah-hero-actions { flex-direction: column; }
  .ah-btn { width: 100%; }
  .ah-hero-meta { display: grid; grid-template-columns: 1fr; }
  .ah-hero-image-wrap img { height: 330px; }
  .ah-floating { display: none; }
  .ah-service-grid,
  .ah-signature-cards,
  .ah-testimonial-grid { grid-template-columns: 1fr; }
  .ah-results-slider { grid-template-columns: 1fr; }
  .ah-slider-controls { flex-direction: row; }
}

/* ======================================================
   AESTHETICS PAGE
   ====================================================== */
.aesthetics-page {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 30%);
}
.ap-hero {
  padding: calc(var(--nav-height) + 2rem) 0 4rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(83,118,160,.18), transparent 32%),
    linear-gradient(135deg, #eef3fa 0%, #f6f8fc 55%, #ffffff 100%);
}
.ap-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.ap-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .73rem;
  font-weight: 700;
  color: var(--ah-gold);
  margin-bottom: .9rem;
}
.ap-hero-copy h1,
.ap-values h2,
.ap-renewal-copy h2,
.ap-results h2,
.ap-faq h2 {
  font-family: var(--ah-font-title);
  color: #183655;
}
.ap-hero-copy h1 {
  font-size: clamp(2.3rem, 4.8vw, 4.1rem);
  line-height: 1.03;
  margin-bottom: .95rem;
}
.ap-hero-copy h1 em { color: var(--ah-gold-dark); font-style: italic; }
.ap-hero-copy p {
  max-width: 560px;
  color: #61768f;
  margin-bottom: 1.2rem;
}
.ap-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.ap-hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(24,45,71,.18);
  border: 4px solid rgba(255,255,255,.72);
}
.ap-hero-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.ap-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.ap-values h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: .7rem; }
.ap-values p { color: #65798f; }
.ap-pillars { display: grid; gap: 1rem; }
.ap-pillars article {
  background: #fff;
  border: 1px solid #dee6ef;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 24px rgba(26,46,74,.08);
}
.ap-pillars strong {
  display: block;
  color: #20405f;
  font-size: 1rem;
  margin-bottom: .3rem;
}

.ap-treatments,
.ap-faq { background: #fff; }
.ap-treatment-grid,
.ap-results-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ap-treatment-card,
.ap-result-quote {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  border: 1px solid #dfe7f1;
  border-radius: 18px;
  padding: 1.35rem;
  box-shadow: 0 14px 30px rgba(27,46,74,.09);
}
.ap-treatment-card h3 {
  font-family: var(--ah-font-title);
  color: #1f3f62;
  font-size: 1.85rem;
  margin-bottom: .45rem;
}
.ap-treatment-card p { color: #637990; font-size: .92rem; margin-bottom: .7rem; }
.ap-treatment-card span {
  display: inline-block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ah-gold-dark);
  font-weight: 800;
}

.ap-renewal {
  background: linear-gradient(180deg, #f8f4ef 0%, #fff 100%);
  border-top: 1px solid #eee5db;
  border-bottom: 1px solid #eee5db;
}
.ap-renewal-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
.ap-renewal-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(34,49,72,.12);
}
.ap-renewal-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.ap-renewal-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .75rem; }
.ap-renewal-copy p { color: #65788d; }
.ap-feature-list {
  display: grid;
  gap: .9rem;
  margin-top: 1rem;
}
.ap-feature-list div {
  background: rgba(255,255,255,.72);
  border: 1px solid #e0e6ee;
  border-radius: 14px;
  padding: 1rem 1rem;
}
.ap-feature-list strong {
  display: block;
  color: #1e3b5e;
  margin-bottom: .25rem;
}

.ap-results { background: #f4f7fb; }
.ap-result-quote p {
  color: #60758f;
  font-style: italic;
  margin-bottom: .8rem;
}
.ap-result-quote strong {
  color: #224163;
  letter-spacing: .08em;
  font-size: .85rem;
}

@media (max-width: 1050px) {
  .ap-hero-grid,
  .ap-values-grid,
  .ap-renewal-grid { grid-template-columns: 1fr; }
  .ap-treatment-grid,
  .ap-results-grid { grid-template-columns: 1fr 1fr; }
  .ap-hero-image img { height: 420px; }
  .ap-renewal-visual img { height: 360px; }
}

@media (max-width: 720px) {
  .ap-actions { flex-direction: column; }
  .ap-actions .ah-btn { width: 100%; }
  .ap-hero-copy h1 { font-size: 2.2rem; }
  .ap-treatment-grid,
  .ap-results-grid { grid-template-columns: 1fr; }
  .ap-hero-image img,
  .ap-renewal-visual img { height: 300px; }
}
