@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --teal: #83bcca;
  --teal-dark: #5aa8b9;
  --teal-light: #c6dce0;
  --text-dark: #333;
  --text-gray: #666;
  --off-white: #f8f5f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

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

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

/* ===== HEADER ===== */
header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img { height: 56px; width: auto; }

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

nav.desktop-nav a,
.services-toggle {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

nav.desktop-nav a:hover,
.services-toggle:hover { color: var(--teal); }

.services-wrapper { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 230px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 200;
}

.services-wrapper:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  color: var(--text-dark);
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--teal); color: #fff; }

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #ccc;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  transition: border-color 0.2s;
}

.phone-btn:hover { border-color: var(--teal); color: var(--teal); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger svg { width: 26px; height: 26px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.mobile-nav.open { display: block; }

.mobile-nav a,
.mobile-services-toggle {
  display: block;
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 15px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-dropdown { padding-left: 1rem; display: none; }
.mobile-dropdown.open { display: block; }
.mobile-dropdown a { font-size: 14px; color: var(--text-gray); padding: 8px 0; }

.mobile-phone { color: var(--teal) !important; }

/* ===== HERO ===== */
.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  text-align: center;
  padding: 0 1rem;
}

.gradient-hero {
  min-height: 410px;
  height: auto;
  padding: 5rem 1.5rem;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.52) 0 8%, transparent 31%),
    radial-gradient(circle at 88% 78%, rgba(131,188,202,0.48) 0 10%, transparent 38%),
    linear-gradient(125deg, #305f65 0%, #6da8ad 48%, #ead8c7 100%);
  isolation: isolate;
}

.gradient-hero::before,
.gradient-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  z-index: -1;
}

.gradient-hero::before {
  width: 360px;
  height: 360px;
  right: 7%;
  top: -140px;
}

.gradient-hero::after {
  width: 220px;
  height: 220px;
  right: 22%;
  bottom: -125px;
}

.gradient-hero-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  color: #fff;
}

.gradient-hero h1 {
  max-width: 780px;
  padding: 0;
  text-align: left;
  text-shadow: 0 3px 24px rgba(33,74,79,0.28);
}

.hero-kicker,
.section-kicker {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.specials-hero-content p {
  max-width: 560px;
  margin-top: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.9);
}

/* Home hero */
.home-hero {
  position: relative;
  height: 550px;
  overflow: hidden;
}

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

.gift-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  z-index: 10;
}

.gift-badge svg { color: var(--teal); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  letter-spacing: 0.03em;
}

.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); }
.btn-teal-outline { border: 2px solid var(--teal); color: var(--teal); background: transparent; }
.btn-teal-outline:hover { background: var(--teal); color: #fff; }
.btn-white { background: #fff; color: var(--teal); }
.btn-white:hover { background: #f0f0f0; }

/* ===== SECTIONS ===== */
.section { padding: 4rem 1rem; }
.section-sm { padding: 2rem 1rem; }
.container { max-width: 1280px; margin: 0 auto; }
.container-md { max-width: 1024px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }

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

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--teal);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.section-intro {
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

/* ===== SERVICE CARDS (home) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body { padding: 1.25rem; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.service-card p { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 1rem; }

.service-card a.learn-more {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== WHAT WE OFFER ===== */
.what-we-offer {
  background: linear-gradient(to bottom, #6cb3c4, #5aa8b9);
  padding: 5rem 1rem;
  text-align: center;
}

.what-we-offer .logo-center { margin: 0 auto 2.5rem; width: 170px; height: auto; }

.what-we-offer h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.what-we-offer p { color: rgba(255,255,255,0.8); margin-bottom: 3rem; font-size: 1.05rem; }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.offering-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  text-align: left;
}

.offering-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.offering-icon svg { color: var(--teal); width: 36px; height: 36px; }
.offering-item h4 { color: #fff; font-size: 1rem; font-family: 'Roboto', sans-serif; font-weight: 500; margin-bottom: 4px; }
.offering-item p { color: rgba(255,255,255,0.7); font-size: 0.88rem; }

.spa-image-band {
  height: 300px;
  overflow: hidden;
}

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

/* ===== FOOTER ===== */
.footer-social {
  background: #fff;
  padding: 3.5rem 1rem;
  text-align: center;
}

.footer-social h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--text-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-social p { color: #999; margin-bottom: 1.5rem; }

.footer-address { color: #888; font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.8; }
.footer-address span { display: block; }

.social-links { display: flex; justify-content: center; gap: 10px; }

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: all 0.2s;
}

.social-link:hover { border-color: var(--teal); color: var(--teal); }
.social-link svg { width: 20px; height: 20px; }

.footer-bar {
  background: var(--teal-dark);
  padding: 1rem 1.5rem;
}

.footer-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bar p { color: rgba(255,255,255,0.85); font-size: 12px; }

.scroll-top {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.scroll-top:hover { background: rgba(255,255,255,0.35); }
.scroll-top svg { width: 16px; height: 16px; }

/* ===== FLOATING BOOK BUTTON ===== */
.floating-book {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--teal);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 500;
  transition: background 0.2s, transform 0.2s;
}

.floating-book:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-box {
  background: #fff;
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: var(--teal);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.popup-close:hover { background: var(--teal-dark); }

.popup-box h2 { font-size: 1.7rem; font-style: italic; margin-bottom: 2px; }
.popup-box h3 { font-size: 1.3rem; font-style: italic; margin-bottom: 1rem; }
.popup-box img { margin: 0 auto 1rem; }

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #555;
  margin-bottom: 4px;
}

.form-group input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.2s;
}

.form-group input:focus { outline: none; border-color: var(--teal); }

.robot-check { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #555; padding: 6px 0; }
.robot-check input { width: auto; }

.form-submit { text-align: right; padding-top: 10px; }

.popup-success { text-align: center; padding: 2rem 0; }
.popup-success h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.popup-success p { color: var(--text-gray); }

/* ===== SERVICE PAGE CONTENT ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: start;
}

.content-grid img { width: 100%; border-radius: 6px; }

.content-grid.reverse > *:first-child { order: 2; }
.content-grid.reverse > *:last-child { order: 1; }

.price-box {
  background: var(--off-white);
  padding: 1.25rem;
  border-radius: 6px;
  margin-top: 1rem;
}

.price-box p { font-size: 14px; color: #555; margin-bottom: 4px; }

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 1.25rem 0;
}

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

.faq-item h4 { font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 0.5rem; }
.faq-item p { color: var(--text-gray); font-size: 14px; }

.info-box {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.info-box h3 { font-size: 1.4rem; margin-bottom: 1rem; text-align: center; }

.cta-box {
  background: var(--teal);
  color: #fff;
  padding: 2.5rem;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 2rem;
}

.cta-box h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }

.card-light {
  background: var(--off-white);
  padding: 1.75rem;
  border-radius: 6px;
}

.card-light h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }

.card-border {
  background: #fff;
  border: 2px solid var(--teal);
  padding: 2rem;
  border-radius: 6px;
  text-align: center;
  margin-bottom: 2rem;
}

.card-border h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.card-border p { color: var(--text-gray); margin-bottom: 1.5rem; }

.bullet-teal li { list-style: none; padding-left: 0; color: var(--text-gray); font-size: 14px; line-height: 2; }
.bullet-teal li::before { content: "• "; color: var(--teal); }

/* ===== SPRAY TANNING PAGE ===== */
.spray-page {
  --spray-blue: #153bb4;
  --spray-navy: #17223c;
  --spray-ink: #20232b;
  --spray-muted: #626874;
  --spray-mist: #f3f5f8;
  --spray-sand: #f4eee7;
  --spray-white: #fefefe;
  background: var(--spray-white);
  color: var(--spray-ink);
}

.spray-shell { width: min(100% - 3rem, 1180px); margin: 0 auto; }
.spray-section { padding: clamp(4rem, 8vw, 7.5rem) 0; }

.spray-image-hero {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.spray-image-hero img {
  display: block;
  width: 100%;
  max-width: 1440px;
  height: auto;
  object-fit: contain;
}

.spray-eyebrow {
  margin-bottom: 1rem;
  color: var(--spray-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.spray-intro { border-top: 1px solid rgba(21, 59, 180, 0.12); }
.spray-intro-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.spray-heading-block h1,
.spray-heading-block h2 { max-width: 650px; font-size: clamp(3rem, 6vw, 5.8rem); line-height: 0.98; letter-spacing: -0.045em; }
.spray-lead { margin: 0; color: var(--spray-muted); font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.85; }

.spray-booth-section { background: var(--spray-mist); }
.spray-service-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); align-items: stretch; }
.spray-feature-panel { padding: clamp(2rem, 5vw, 4.5rem) 0; }
.spray-feature-panel h2,
.spray-airbrush-copy h2,
.spray-section-heading h2,
.spray-faq-heading h2,
.spray-airbrush-pricing h2,
.spray-final-cta h2 { font-size: clamp(2.35rem, 4.5vw, 4.35rem); line-height: 1.05; letter-spacing: -0.035em; }

.spray-feature-panel h2 { max-width: 630px; margin-bottom: 2.5rem; }
.spray-check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 2rem; }
.spray-check-list li { position: relative; padding-left: 1.9rem; list-style: none; color: var(--spray-muted); line-height: 1.55; }
.spray-check-list li::before { content: ""; position: absolute; top: 0.5em; left: 0; width: 9px; height: 9px; border: 2px solid var(--spray-blue); border-radius: 50%; }

.spray-price-panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.25rem, 5vw, 4.5rem); background: var(--spray-navy); color: #fff; }
.spray-price-panel .spray-eyebrow { color: #9bb0f6; }
.spray-price-panel h2 { margin-bottom: 1.6rem; color: #fff; font-size: clamp(2rem, 3.8vw, 3.2rem); }
.spray-price-list { margin-bottom: 1.5rem; border-top: 1px solid rgba(255,255,255,0.17); }
.spray-price-list > div { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,0.17); }
.spray-price-list span { color: rgba(255,255,255,0.77); }
.spray-price-list strong { font-family: 'Playfair Display', serif; color: #fff; font-size: 2rem; font-weight: 400; white-space: nowrap; }
.spray-price-list small,
.spray-airbrush-price-list small { margin-left: 0.15rem; font-family: 'Roboto', sans-serif; font-size: 0.75rem; font-weight: 400; }
.spray-price-featured span { color: #b9c7fa; font-weight: 700; }
.spray-help-note { margin-bottom: 1.75rem; color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.spray-button { display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: 0.9rem 1.5rem; border: 1px solid var(--spray-blue); background: var(--spray-blue); color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; transition: transform 0.2s, background 0.2s, color 0.2s; }
.spray-button:hover,
.spray-button:focus-visible { background: var(--spray-navy); border-color: var(--spray-navy); transform: translateY(-2px); }
.spray-button-light { border-color: #fff; background: #fff; color: var(--spray-navy); }
.spray-button-light:hover,
.spray-button-light:focus-visible { border-color: #dce3ff; background: #dce3ff; color: var(--spray-navy); }

.spray-airbrush-section { background: #fff; }
.spray-airbrush-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.spray-airbrush-image { position: relative; width: 100%; max-width: 690px; }
.spray-airbrush-image::before { content: ""; position: absolute; inset: -1.25rem 1.25rem 1.25rem -1.25rem; z-index: 0; background: var(--spray-sand); }
.spray-airbrush-image img { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 690 / 461; object-fit: contain; }
.spray-airbrush-copy > p:not(.spray-eyebrow) { margin: 1.5rem 0 2rem; color: var(--spray-muted); font-size: 1.05rem; line-height: 1.8; }
.spray-airbrush-copy h3 { margin-bottom: 1.15rem; font-size: 1.35rem; }
.spray-check-list-compact { grid-template-columns: 1fr; gap: 0.75rem; }

.spray-airbrush-pricing { display: grid; grid-template-columns: 1fr 0.85fr 0.85fr; gap: 2.5rem; margin-top: clamp(4rem, 8vw, 7rem); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid rgba(21, 59, 180, 0.18); align-items: start; }
.spray-airbrush-pricing h2 { max-width: 500px; font-size: clamp(2.1rem, 3.6vw, 3.3rem); }
.spray-airbrush-price-list p { display: flex; justify-content: space-between; gap: 1rem; margin: 0; padding: 1rem 0; border-bottom: 1px solid #dfe2e8; color: var(--spray-muted); }
.spray-airbrush-price-list p:first-child { border-top: 1px solid #dfe2e8; }
.spray-airbrush-price-list strong { color: var(--spray-ink); font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 400; white-space: nowrap; }
.spray-party-note { padding: 2rem; background: var(--spray-sand); }
.spray-party-note > strong { display: block; margin-bottom: 0.65rem; font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 400; }
.spray-party-note p { margin-bottom: 1.5rem; color: var(--spray-muted); font-size: 0.9rem; }

.spray-care-section { background: var(--spray-sand); }
.spray-section-heading { max-width: 700px; margin-bottom: 3rem; }
.spray-care-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(32,35,43,0.18); border-bottom: 1px solid rgba(32,35,43,0.18); }
.spray-care-grid article { padding: 2.25rem; border-right: 1px solid rgba(32,35,43,0.18); }
.spray-care-grid article:last-child { border-right: 0; }
.spray-care-grid article > span { display: block; margin-bottom: 2.5rem; color: var(--spray-blue); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; }
.spray-care-grid h3 { margin-bottom: 1rem; font-size: 1.45rem; }
.spray-care-grid li { margin: 0 0 0.75rem 1rem; color: var(--spray-muted); font-size: 0.9rem; }

.spray-faq-section { background: var(--spray-white); }
.spray-faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.spray-faq-heading { position: sticky; top: 120px; }
.spray-faq-heading h2 { font-size: clamp(2.35rem, 4vw, 3.8rem); }
.spray-faq-list { border-top: 1px solid #dfe2e8; }
.spray-faq-list details { border-bottom: 1px solid #dfe2e8; }
.spray-faq-list summary { position: relative; padding: 1.5rem 3rem 1.5rem 0; cursor: pointer; list-style: none; font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.spray-faq-list summary::-webkit-details-marker { display: none; }
.spray-faq-list summary::after { content: "+"; position: absolute; top: 1.3rem; right: 0; color: var(--spray-blue); font-family: 'Roboto', sans-serif; font-size: 1.7rem; font-weight: 300; line-height: 1; }
.spray-faq-list details[open] summary::after { content: "−"; }
.spray-faq-list details p { max-width: 720px; padding: 0 3rem 1.5rem 0; color: var(--spray-muted); line-height: 1.75; }

.spray-final-cta { padding: clamp(4.5rem, 9vw, 8rem) 0; background: var(--spray-blue); text-align: center; }
.spray-final-cta .spray-eyebrow { color: #cdd7ff; }
.spray-final-cta h2 { margin-bottom: 2rem; color: #fff; }

@media (max-width: 900px) {
  .spray-intro-grid,
  .spray-service-grid,
  .spray-airbrush-grid,
  .spray-airbrush-pricing,
  .spray-faq-layout { grid-template-columns: 1fr; }
  .spray-feature-panel { padding-top: 0; }
  .spray-airbrush-image { margin: 0 auto; }
  .spray-faq-heading { position: static; }
  .spray-care-grid { grid-template-columns: 1fr; }
  .spray-care-grid article { border-right: 0; border-bottom: 1px solid rgba(32,35,43,0.18); }
  .spray-care-grid article:last-child { border-bottom: 0; }
}

@media (max-width: 640px) {
  .spray-shell { width: min(100% - 2rem, 1180px); }
  .spray-heading-block h1,
  .spray-heading-block h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .spray-check-list { grid-template-columns: 1fr; }
  .spray-price-panel { padding: 2rem 1.5rem; }
  .spray-price-list > div { align-items: flex-start; flex-direction: column; gap: 0.15rem; }
  .spray-airbrush-image::before { inset: -0.75rem 0.75rem 0.75rem -0.75rem; }
  .spray-airbrush-pricing { gap: 2rem; }
  .spray-airbrush-price-list p { flex-direction: column; gap: 0.2rem; }
  .spray-party-note { padding: 1.5rem; }
  .spray-care-grid article { padding: 2rem 1.25rem; }
  .spray-care-grid article > span { margin-bottom: 1.5rem; }
}

/* ===== WELLNESS & SPA SERVICES ===== */
/* Palette is declared at :root as well so the shared hero (.service-hero,
   used on every service page) can reuse these tokens off the wellness page. */
:root {
  --wellness-ink: #24383a;
  --wellness-jade: #6f9f98;
  --wellness-mist: #e5efeb;
  --wellness-sand: #f3ede4;
  --wellness-clay: #c7896d;
  --wellness-paper: #fbfaf7;
}

.wellness-page {
  background: var(--wellness-paper);
  color: var(--wellness-ink);
}

.wellness-shell {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.wellness-hero,
.service-hero {
  position: relative;
  min-height: min(760px, 78vw);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.wellness-hero > img,
.wellness-hero-shade,
.service-hero > img,
.service-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wellness-hero > img,
.service-hero > img {
  z-index: -2;
  object-fit: cover;
  object-position: center 46%;
  animation: wellnessHeroIn 1.1s ease-out both;
}

.wellness-hero-shade,
.service-hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(24, 45, 45, 0.88) 0%, rgba(24, 45, 45, 0.58) 42%, rgba(24, 45, 45, 0.08) 75%), linear-gradient(0deg, rgba(20, 34, 34, 0.35), transparent 42%);
}

/* Several service heroes reuse marketing artwork that already has headline text
   burned into its left third. A heavier scrim sinks that artwork text into the
   background so only the real, selectable headline reads. */
.service-hero--dense .service-hero-shade {
  background: linear-gradient(90deg, rgba(20, 38, 38, 0.95) 0%, rgba(20, 38, 38, 0.86) 48%, rgba(20, 38, 38, 0.3) 82%), linear-gradient(0deg, rgba(20, 34, 34, 0.45), transparent 45%);
}

.wellness-hero-copy,
.service-hero-copy {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 0;
  color: #fff;
}

.wellness-kicker,
.service-kicker {
  margin-bottom: 0.8rem;
  color: var(--wellness-jade);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.wellness-hero .wellness-kicker,
.service-hero .service-kicker { color: #cfe0db; }

.wellness-hero h1,
.service-hero h1 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(2.8rem, 6.6vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.wellness-hero-copy > p:not(.wellness-kicker),
.service-hero-copy > p:not(.service-kicker) {
  max-width: 800px;
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.3vw, 1.85rem);
  font-style: italic;
}

.wellness-button,
.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.wellness-button:hover,
.wellness-button:focus-visible,
.service-button:hover,
.service-button:focus-visible { transform: translateY(-3px); }
.wellness-button:focus-visible,
.service-button:focus-visible { outline: 3px solid rgba(111, 159, 152, 0.35); outline-offset: 4px; }
.wellness-button-light,
.service-button-light { background: #fff; color: var(--wellness-ink); border-color: #fff; }
.wellness-button-light:hover,
.service-button-light:hover { background: transparent; color: #fff; }
.wellness-button-dark { background: var(--wellness-ink); color: #fff; border-color: var(--wellness-ink); }
.wellness-button-dark:hover { background: transparent; color: var(--wellness-ink); }

.wellness-intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--wellness-paper);
}

.wellness-intro-grid,
.wellness-why-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 8vw, 8rem);
}

.wellness-section-label {
  position: relative;
  padding-top: 0.45rem;
}

.wellness-section-label::before {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--wellness-clay);
}

.wellness-section-label span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wellness-intro h2,
.wellness-pricing h2,
.wellness-why h2,
.wellness-cta h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.wellness-lead {
  margin: 2rem 0 1.25rem;
  color: var(--wellness-ink);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.55;
}

.wellness-intro-grid > div:last-child > p:last-child,
.wellness-why-grid > div:last-child p,
.wellness-pricing-grid > div:first-child > p:last-child,
.wellness-cta p:not(.wellness-kicker) {
  color: #587071;
  font-size: 1rem;
  line-height: 1.85;
}

.wellness-services {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--wellness-sand);
}

.wellness-service {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  padding-bottom: clamp(7rem, 13vw, 12rem);
}

.wellness-service:last-child { padding-bottom: 0; }
.wellness-service-reverse .wellness-photo-frame { order: 2; }
.wellness-service-reverse .wellness-service-copy { order: 1; }

.wellness-photo-frame {
  position: relative;
  padding: clamp(0.8rem, 2vw, 1.5rem);
  background: rgba(255, 255, 255, 0.55);
}

.wellness-photo-frame::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 44%;
  height: 42%;
  z-index: -1;
  background: var(--wellness-mist);
}

.wellness-photo-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.wellness-number {
  position: absolute;
  top: -2.4rem;
  left: -0.25rem;
  z-index: 2;
  color: var(--wellness-clay);
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  font-style: italic;
  line-height: 1;
}

.wellness-service-copy h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.wellness-service-copy > p:not(.wellness-kicker),
.wellness-mini-service p {
  color: #52696a;
  line-height: 1.8;
}

.wellness-service-copy h3 {
  margin: 2rem 0 0.85rem;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wellness-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.25rem;
  list-style: none;
}

.wellness-benefits li {
  position: relative;
  padding-left: 1.2rem;
  color: #52696a;
  font-size: 0.88rem;
  line-height: 1.55;
}

.wellness-benefits li::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wellness-clay);
}

.wellness-benefits-detailed { grid-template-columns: 1fr; }
.wellness-benefits-detailed strong { display: block; color: var(--wellness-ink); }

.wellness-session {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(36, 56, 58, 0.22);
  border-bottom: 1px solid rgba(36, 56, 58, 0.22);
}

.wellness-session span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wellness-session strong {
  color: var(--wellness-clay);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.wellness-mini-service + .wellness-mini-service {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(36, 56, 58, 0.2);
}

.wellness-mini-service h3 { margin-top: 0; }

.wellness-pricing {
  padding: clamp(5rem, 10vw, 9rem) 0;
  color: #fff;
  background: var(--wellness-ink);
}

.wellness-pricing .wellness-kicker { color: #a9ccc5; }

.wellness-pricing-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.wellness-pricing-grid > div:first-child > p:last-child {
  max-width: 360px;
  margin-top: 1.5rem;
  color: #b8c7c5;
}

.wellness-price-list { border-top: 1px solid rgba(255, 255, 255, 0.22); }

.wellness-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.wellness-price-row span {
  display: block;
  margin-bottom: 0.2rem;
  color: #a9ccc5;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.wellness-price-row h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
}

.wellness-price-row > strong {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  white-space: nowrap;
}

.wellness-price-row small { font-family: 'Roboto', sans-serif; font-size: 0.72rem; font-weight: 400; }
.wellness-price-featured > strong { color: #d8a087; }

.wellness-why {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--wellness-mist);
}

.wellness-why-grid { align-items: end; }

.wellness-cta {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--wellness-clay);
}

.wellness-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
}

.wellness-cta .wellness-kicker { color: var(--wellness-ink); }
.wellness-cta h2 { max-width: 700px; }
.wellness-cta p:not(.wellness-kicker) { max-width: 760px; margin-top: 1rem; color: #304849; }
.wellness-cta .wellness-button { margin-top: 0; white-space: nowrap; }

.wellness-disclaimer {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  color: #6b7776;
  font-size: 0.72rem;
  text-align: center;
}

@keyframes wellnessHeroIn {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 860px) {
  .wellness-hero,
  .service-hero { min-height: 680px; }
  .wellness-hero-shade,
  .service-hero-shade { background: linear-gradient(0deg, rgba(24, 45, 45, 0.9) 0%, rgba(24, 45, 45, 0.38) 65%, rgba(24, 45, 45, 0.12) 100%); }
  .service-hero--dense .service-hero-shade { background: linear-gradient(0deg, rgba(20, 38, 38, 0.94) 0%, rgba(20, 38, 38, 0.6) 60%, rgba(20, 38, 38, 0.45) 100%); }
  .wellness-hero-copy,
  .service-hero-copy { padding-bottom: 4.5rem; }
  .wellness-intro-grid,
  .wellness-service,
  .wellness-pricing-grid,
  .wellness-why-grid,
  .wellness-cta-inner { grid-template-columns: 1fr; }
  .wellness-service { gap: 3rem; }
  .wellness-service-reverse .wellness-photo-frame,
  .wellness-service-reverse .wellness-service-copy { order: initial; }
  .wellness-cta .wellness-button { justify-self: start; }
}

@media (max-width: 560px) {
  .wellness-shell,
  .wellness-hero-copy,
  .service-hero-copy { width: min(100% - 2rem, 1180px); }
  .wellness-hero,
  .service-hero { min-height: 620px; }
  .wellness-hero h1,
  .service-hero h1 { font-size: clamp(2.45rem, 12vw, 3.75rem); }
  .wellness-services { overflow: hidden; }
  .wellness-service { padding-bottom: 7rem; }
  .wellness-number { left: 0; }
  .wellness-benefits { grid-template-columns: 1fr; }
  .wellness-session { align-items: flex-start; flex-direction: column; }
  .wellness-price-row { grid-template-columns: 1fr; gap: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .wellness-hero > img,
  .service-hero > img { animation: none; }
  .wellness-button { transition: none; }
}

/* UV tanning page */
.uv-tanning-page {
  --uv-ink: #26393d;
  --uv-soft: #eef5f4;
  --uv-cream: #f8f3ec;
  --uv-accent: #b68d62;
}

.uv-tanning-hero {
  height: min(560px, 62vw);
  min-height: 420px;
  justify-content: flex-start;
  isolation: isolate;
}

.uv-tanning-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(22, 38, 41, 0.78) 0%, rgba(22, 38, 41, 0.42) 42%, rgba(22, 38, 41, 0.04) 76%);
}

.uv-tanning-hero img {
  opacity: 1;
  object-position: center;
}

.uv-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.page-hero .uv-hero-copy h1 {
  max-width: 620px;
  padding: 0;
  text-align: left;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.98;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.32);
}

.uv-intro {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background: #fff;
}

.uv-intro-grid,
.uv-equipment-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.uv-section-heading h2,
.uv-equipment h2,
.uv-personalized h2,
.uv-pricing h2,
.uv-medications h2,
.uv-lotions h2 {
  color: var(--uv-ink);
  font-size: clamp(2.15rem, 5vw, 3.6rem);
  line-height: 1.08;
}

.uv-eyebrow {
  margin-bottom: 0.75rem;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.uv-prose p {
  color: #536368;
  font-size: 1rem;
  line-height: 1.85;
}

.uv-prose p + p { margin-top: 1.25rem; }

.uv-lead-copy p:first-child {
  color: var(--uv-ink);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.28rem, 2.4vw, 1.65rem);
  line-height: 1.55;
}

.uv-equipment {
  background: var(--uv-ink);
  color: #fff;
}

.uv-equipment h2 { color: #fff; }
.uv-equipment .uv-eyebrow { color: #a9d4d8; }

.uv-feature-list {
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.uv-feature-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.uv-feature-list li::before {
  content: "";
  position: absolute;
  top: 1.45rem;
  left: 0.25rem;
  width: 8px;
  height: 8px;
  border: 1px solid #a9d4d8;
  transform: rotate(45deg);
}

.uv-personalized { background: var(--uv-soft); }

.uv-personalized-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: #fff;
  box-shadow: 0 20px 55px rgba(38, 57, 61, 0.09);
}

.uv-personalized-card::after {
  content: "33";
  position: absolute;
  right: -0.2rem;
  bottom: -4.6rem;
  color: rgba(131, 188, 202, 0.11);
  font-family: 'Playfair Display', serif;
  font-size: clamp(9rem, 25vw, 18rem);
  line-height: 1;
}

.uv-personalized-card > * {
  position: relative;
  z-index: 1;
}

.uv-personalized-card h2 {
  max-width: 720px;
  margin-bottom: 2rem;
}

.uv-personalized-card .uv-prose {
  max-width: 760px;
}

.uv-pricing {
  padding-top: clamp(5rem, 9vw, 7rem);
  padding-bottom: clamp(5rem, 9vw, 7rem);
  background: var(--uv-cream);
}

.uv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.uv-price-card {
  min-height: 270px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(38, 57, 61, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.uv-price-card h3 {
  max-width: 220px;
  margin: 0 0 2rem;
  color: var(--uv-ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.uv-price-card strong {
  margin-top: auto;
  color: var(--uv-ink);
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.uv-price-card strong span {
  margin-left: 0.2rem;
  color: #68777b;
  font-family: 'Roboto', sans-serif;
  font-size: 0.78rem;
}

.uv-price-card-featured {
  border-color: var(--teal-dark);
  background: var(--uv-ink);
  transform: translateY(-1rem);
  box-shadow: 0 18px 40px rgba(38, 57, 61, 0.18);
}

.uv-price-card-featured h3,
.uv-price-card-featured strong { color: #fff; }
.uv-price-card-featured strong span { color: rgba(255, 255, 255, 0.64); }

.uv-faq-section {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background: #fff;
}

.uv-faq-heading { margin-bottom: 2.5rem; }

.uv-faq-list {
  border-top: 1px solid #dce5e5;
}

.uv-faq-item {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: 2.25rem 0;
  border-bottom: 1px solid #dce5e5;
}

.uv-faq-item h3 {
  color: var(--uv-ink);
  font-size: 1.22rem;
  line-height: 1.4;
}

.uv-faq-item p {
  color: #5a686c;
  font-size: 0.94rem;
  line-height: 1.8;
}

.uv-medications {
  padding-top: 0;
  background: #fff;
}

.uv-medications-card {
  padding: clamp(2.5rem, 6vw, 4.5rem);
  border-left: 5px solid var(--uv-accent);
  background: var(--uv-cream);
}

.uv-medications-card h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.uv-medications-card > p:last-child {
  max-width: 820px;
  color: #58666a;
  line-height: 1.8;
}

.uv-lotions {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background: var(--uv-soft);
}

.uv-lotions-heading {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.uv-lotions-copy {
  column-count: 2;
  column-gap: clamp(2.5rem, 7vw, 5rem);
}

.uv-lotions-copy p {
  break-inside: avoid;
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.uv-booking-action {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(38, 57, 61, 0.14);
}

.uv-booking-action .btn {
  padding: 14px 34px;
  font-size: 0.9rem;
}

/* Body contouring page */
.body-contouring-hero img { object-position: center 42%; }

.concerns-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: 5rem;
}

.concerns-image-wrap {
  position: relative;
  padding: 0 1.25rem 1.25rem 0;
}

.concerns-image-wrap::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 72%;
  height: 72%;
  background: var(--teal-light);
  border-radius: 6px;
  z-index: 0;
}

.concerns-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(51, 51, 51, 0.14);
}

.eyebrow {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.concerns-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.concerns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.25rem;
}

.concerns-list li {
  position: relative;
  list-style: none;
  color: var(--text-gray);
  font-size: 0.95rem;
  padding-left: 1.25rem;
}

.concerns-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.treatment-intro {
  max-width: 780px;
  margin: 0 auto 1rem;
  color: var(--text-gray);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-style: italic;
  line-height: 1.65;
}

.body-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 520px;
  margin: 0 auto 0.5rem;
}

.body-pricing-grid > div {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
}

.body-pricing-grid p { margin-bottom: 0; }
.body-pricing-grid .body-price { color: #fff; font-size: 2rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.3rem; }
.cta-box .body-pricing-save { margin: 1rem 0 0; font-weight: 500; letter-spacing: 0.02em; }

.ems-treatment {
  margin: 5rem 0 0;
  padding-top: 4.5rem;
  border-top: 1px solid #e6e1db;
}

.ems-heading { max-width: 760px; margin: 0 auto 2.5rem; }
.ems-heading .section-subtitle { margin-bottom: 0; }

.ems-intro { align-items: center; }

.ems-intro img {
  box-shadow: 0 18px 45px rgba(51, 51, 51, 0.14);
}

.ems-intro p {
  color: var(--text-gray);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.65;
}

.ems-how-it-works { margin-bottom: 3rem; }

.ems-explanation {
  max-width: 780px;
  margin: 0 auto;
}

.ems-explanation p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.ems-explanation p:last-child { margin-bottom: 0; }
.ems-pricing { margin-bottom: 0; }

.results-section { margin: 4rem 0 3rem; }

.before-after-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.before-after-gallery img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(51, 51, 51, 0.12);
}

.consultation-btn { font-size: 1rem; padding: 14px 36px; }

/* Contact/Location specific */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  margin-top: 6px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--teal); }

.contact-form label { font-size: 14px; color: #555; font-weight: 500; }

.contact-form .field { margin-bottom: 1.25rem; }

.location-card {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Push the buttons + map to the bottom of the card so both maps line up */
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.location-card h3 { font-size: 1.4rem; margin-bottom: 1.25rem; }

.location-card p { color: #666; font-size: 14px; margin-bottom: 0.75rem; }
.location-card strong { color: #444; }
.location-card a:not(.btn) { color: var(--teal); }
.location-card a:not(.btn):hover { text-decoration: underline; }

.map-embed {
  width: 100%;
  max-width: 400px;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 6px;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
}

.location-map {
  max-width: none;
}

.specials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.special-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #faf7f2, #eef6f6);
  padding: 2rem;
  border: 1px solid rgba(131,188,202,0.3);
  border-radius: 16px;
  box-shadow: 0 16px 45px rgba(50,87,91,0.09);
}

.special-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: rgba(131,188,202,0.14);
}

.special-card h3 { font-size: 1.45rem; margin: 0.5rem 0; }

.special-day {
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.special-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.special-price span { display: block; }

.special-card p { color: var(--text-gray); font-size: 14px; margin-bottom: 0.75rem; }
.special-card ul { list-style: none; padding: 0; }
.special-card li { font-size: 13px; color: var(--text-gray); padding: 2px 0; }
.special-card li::before { content: "• "; color: var(--teal); }
.special-card a { color: var(--teal); font-size: 13px; font-weight: 600; }

.memberships-section {
  margin: 1rem 0 3rem;
  padding: 3.25rem;
  border-radius: 20px;
  background: #274e53;
  color: #fff;
}

.memberships-heading {
  max-width: 650px;
  margin-bottom: 2rem;
}

.memberships-heading .section-kicker { color: #b9dce0; }
.memberships-heading .section-title { color: #fff; margin-bottom: 0.5rem; }
.memberships-heading p { color: rgba(255,255,255,0.72); }

.memberships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.membership-card {
  position: relative;
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
}

.membership-card-featured {
  transform: translateY(-10px);
  background: #f5eee6;
  color: var(--text-dark);
  box-shadow: 0 20px 40px rgba(18,42,45,0.28);
}

.membership-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--teal-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.membership-price { margin-bottom: 1rem; color: #b9dce0; }
.membership-card-featured .membership-price { color: var(--teal-dark); }
.membership-price span { font-family: 'Playfair Display', serif; font-size: 2.6rem; line-height: 1; }
.membership-price small { margin-left: 0.2rem; font-size: 0.75rem; opacity: 0.75; }
.membership-card h3 { margin-bottom: 0.65rem; font-size: 1.2rem; }
.membership-card p { color: rgba(255,255,255,0.72); font-size: 0.86rem; }
.membership-card-featured p { color: var(--text-gray); }
.memberships-action { margin-top: 2rem; text-align: center; }
.memberships-action .btn { background: #fff; color: #274e53; }
.memberships-action .btn:hover { background: #f5eee6; }

.serving-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
}

.map-placeholder {
  background: #e5e7eb;
  height: 350px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 3rem;
  text-align: center;
}

.map-placeholder p { color: #666; margin-bottom: 1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav.desktop-nav, .phone-btn { display: none; }
  .hamburger { display: flex; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse > * { order: unset !important; }
  .info-section { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr; }
  .memberships-grid { grid-template-columns: 1fr; }
  .membership-card-featured { transform: none; }
  .concerns-section { grid-template-columns: 1fr; }
  .uv-intro-grid, .uv-equipment-grid { grid-template-columns: 1fr; }
  .uv-pricing-grid { grid-template-columns: 1fr; }
  .uv-price-card { min-height: 220px; }
  .uv-price-card-featured { transform: none; }
  .uv-faq-item { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 640px) {
  .home-hero { height: 380px; }
  .page-hero { height: 280px; }
  .gradient-hero { min-height: 340px; height: auto; padding: 3.5rem 1.25rem; }
  .gradient-hero::before { right: -45%; }
  .gradient-hero::after { right: 2%; }
  .memberships-section { padding: 2rem 1.25rem; border-radius: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .popup-box { padding: 1.5rem; }
  .serving-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bar-inner { justify-content: center; text-align: center; }
  .concerns-section { margin-bottom: 3.5rem; }
  .ems-treatment { margin-top: 3.5rem; padding-top: 3.5rem; }
  .concerns-list { grid-template-columns: 1fr; }
  .body-pricing-grid { grid-template-columns: 1fr; }
  .before-after-gallery { grid-template-columns: repeat(2, 1fr); }
  .uv-tanning-hero { height: 390px; min-height: 390px; align-items: flex-end; padding-bottom: 3rem; }
  .uv-tanning-hero::after { background: linear-gradient(0deg, rgba(22, 38, 41, 0.82) 0%, rgba(22, 38, 41, 0.18) 76%); }
  .uv-tanning-hero img { object-position: 62% center; }
  .uv-hero-copy { padding: 0 1.25rem; }
  .page-hero .uv-hero-copy h1 { font-size: clamp(2.65rem, 15vw, 4rem); }
  .uv-personalized-card, .uv-price-card, .uv-medications-card { padding: 2rem 1.5rem; }
  .uv-lotions-copy { column-count: 1; }
}

/* ===== ADVANCED AESTHETIC SERVICES ===== */
.aesthetic-page {
  --aesthetic-blue: #173fb7;
  --aesthetic-blue-dark: #102c78;
  --aesthetic-ink: #171a22;
  --aesthetic-muted: #626873;
  --aesthetic-ivory: #f7f4ed;
  --aesthetic-white: #fefdfb;
  --aesthetic-line: rgba(23, 63, 183, 0.18);
  background: var(--aesthetic-white);
  color: var(--aesthetic-ink);
}

.aesthetic-page sup { font-size: 0.48em; vertical-align: super; }

.aesthetic-shell {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.aesthetic-hero {
  position: relative;
  min-height: min(760px, 66.67vw);
  overflow: hidden;
  isolation: isolate;
  background: #f5f5f4;
}

.aesthetic-hero > img {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--aesthetic-parallax-y, 0), 0) scale(1.02);
  will-change: transform;
  animation: aestheticImageIn 1.15s cubic-bezier(.2,.7,.2,1) both;
}

.aesthetic-hero-panel {
  position: absolute;
  right: clamp(1.5rem, 5vw, 5rem);
  bottom: clamp(1.5rem, 5vw, 4rem);
  width: min(440px, calc(100% - 3rem));
  padding: clamp(1.5rem, 4vw, 2.75rem);
  color: #fff;
  background: rgba(16, 44, 120, 0.93);
  box-shadow: 0 24px 65px rgba(17, 30, 66, 0.25);
  animation: aestheticPanelIn 0.8s 0.25s ease-out both;
}

.aesthetic-hero-panel p,
.aesthetic-eyebrow {
  color: var(--aesthetic-blue);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.aesthetic-hero-panel p { color: rgba(255, 255, 255, 0.72); }

.aesthetic-hero-panel h1 {
  margin: 0.65rem 0 1.4rem;
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.aesthetic-hero-panel a {
  display: inline-flex;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.75);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.aesthetic-hero-panel a:hover,
.aesthetic-hero-panel a:focus-visible { border-color: transparent; transform: translateX(5px); }

.aesthetic-intro { padding: clamp(5.5rem, 11vw, 10rem) 0; }

.aesthetic-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.aesthetic-heading-block { position: sticky; top: 120px; }

.aesthetic-heading-block h2,
.aesthetic-section-head h2,
.aesthetic-glymed h2,
.aesthetic-upgrades h2,
.aesthetic-difference h2,
.aesthetic-procell h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.55rem, 5.6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.aesthetic-intro-copy {
  padding-top: 2.4rem;
  border-top: 1px solid var(--aesthetic-line);
}

.aesthetic-intro-copy p,
.aesthetic-glymed-grid > p,
.aesthetic-upgrade-title > p:last-child,
.aesthetic-difference-inner > p:not(.aesthetic-eyebrow),
.aesthetic-procell-copy > p:not(.aesthetic-number):not(.aesthetic-eyebrow) {
  color: var(--aesthetic-muted);
  font-size: 1rem;
  line-height: 1.9;
}

.aesthetic-intro-copy p + p { margin-top: 1.25rem; }

.aesthetic-intro-copy .aesthetic-lead {
  color: var(--aesthetic-ink);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.5;
}

.aesthetic-treatment {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--aesthetic-ivory);
}

.aesthetic-treatment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.aesthetic-image-frame { position: relative; }

.aesthetic-image-frame::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  width: 38%;
  height: 52%;
  z-index: 0;
  border: 1px solid var(--aesthetic-blue);
}

.aesthetic-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: 0 24px 65px rgba(45, 44, 41, 0.13);
}

.aesthetic-image-frame figcaption {
  position: relative;
  z-index: 2;
  width: max-content;
  max-width: 90%;
  margin: -1.4rem 1.5rem 0 auto;
  padding: 0.8rem 1.2rem;
  color: #fff;
  background: var(--aesthetic-blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.aesthetic-number {
  margin-bottom: 1rem;
  color: var(--aesthetic-blue);
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-style: italic;
  line-height: 1;
}

.aesthetic-treatment-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.05;
}

.aesthetic-checklist { list-style: none; }

.aesthetic-checklist li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.6rem;
  border-bottom: 1px solid rgba(23, 26, 34, 0.1);
  color: #4d535d;
  font-size: 0.92rem;
}

.aesthetic-checklist li::before {
  content: "";
  position: absolute;
  top: 1.18rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--aesthetic-blue);
}

.aesthetic-benefits { padding: clamp(5rem, 10vw, 9rem) 0; }

.aesthetic-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.aesthetic-section-head h2 { margin: 0; }

.aesthetic-benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  border-top: 1px solid var(--aesthetic-line);
}

.aesthetic-benefit-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1.35rem 1rem 1.35rem 0;
  border-bottom: 1px solid var(--aesthetic-line);
  color: #434955;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.aesthetic-benefit-list li:nth-child(odd) { margin-right: 2rem; }
.aesthetic-benefit-list span { color: var(--aesthetic-blue); font-family: 'Roboto', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; }

.aesthetic-glymed {
  padding: clamp(5rem, 10vw, 8rem) 0;
  color: #fff;
  background: var(--aesthetic-blue-dark);
}

.aesthetic-glymed-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
}

.aesthetic-glymed .aesthetic-eyebrow { color: #9db4ff; }
.aesthetic-glymed h2 { color: #fff; }
.aesthetic-glymed-grid > p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }

.aesthetic-upgrades { padding: clamp(5rem, 10vw, 9rem) 0; background: var(--aesthetic-ivory); }

.aesthetic-upgrade-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.aesthetic-upgrade-title > p:last-child { max-width: 390px; margin-top: 1.5rem; }

.aesthetic-upgrade-list { border-top: 1px solid rgba(23,26,34,0.16); }

.aesthetic-upgrade-list span {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(23,26,34,0.16);
  color: #383e49;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  transition: color 0.2s ease, transform 0.2s ease;
}

.aesthetic-upgrade-list span:hover { color: var(--aesthetic-blue); transform: translateX(7px); }

.aesthetic-difference {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 11rem) 0;
  text-align: center;
}

.aesthetic-difference::before,
.aesthetic-difference::after {
  content: "";
  position: absolute;
  border: 1px solid var(--aesthetic-line);
  border-radius: 50%;
  pointer-events: none;
}

.aesthetic-difference::before { top: -240px; left: -180px; width: 520px; height: 520px; }
.aesthetic-difference::after { right: -140px; bottom: -210px; width: 420px; height: 420px; }
.aesthetic-difference-inner { position: relative; z-index: 1; max-width: 850px; }
.aesthetic-difference h2 { margin: 1rem auto 2rem; }
.aesthetic-difference-inner > p:not(.aesthetic-eyebrow) { max-width: 760px; margin-inline: auto; }
.aesthetic-difference-inner > p + p { margin-top: 1rem; }

.aesthetic-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 2.25rem;
  padding: 0.85rem 1.65rem;
  border: 1px solid var(--aesthetic-blue);
  color: #fff;
  background: var(--aesthetic-blue);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.aesthetic-button:hover,
.aesthetic-button:focus-visible { color: var(--aesthetic-blue); background: transparent; transform: translateY(-3px); }
.aesthetic-button:focus-visible,
.aesthetic-text-link:focus-visible { outline: 3px solid rgba(23,63,183,0.25); outline-offset: 4px; }

.aesthetic-procell { padding: clamp(5rem, 10vw, 9rem) 0; background: #edf1fb; }

.aesthetic-procell-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.aesthetic-procell h2 { font-size: clamp(2.5rem, 5vw, 4.8rem); }
.aesthetic-procell-copy > p:not(.aesthetic-number):not(.aesthetic-eyebrow) { margin-top: 1.5rem; }

.aesthetic-text-link {
  display: inline-flex;
  gap: 0.7rem;
  margin-top: 1.8rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--aesthetic-blue);
  color: var(--aesthetic-blue);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aesthetic-text-link span { transition: transform 0.2s ease; }
.aesthetic-text-link:hover span { transform: translateX(5px); }

.aesthetic-procell-image {
  padding: clamp(0.7rem, 1.5vw, 1.2rem);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 24px 65px rgba(36, 50, 84, 0.14);
}

.aesthetic-procell-image img { width: 100%; }

@keyframes aestheticImageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes aestheticPanelIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .aesthetic-hero { min-height: auto; padding-bottom: 0; }
  .aesthetic-hero > img {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    transform: none;
    will-change: auto;
  }
  .aesthetic-hero-panel { position: relative; right: auto; bottom: auto; width: 100%; max-width: none; }
  .aesthetic-intro-grid,
  .aesthetic-treatment-grid,
  .aesthetic-glymed-grid,
  .aesthetic-upgrade-grid,
  .aesthetic-procell-grid { grid-template-columns: 1fr; }
  .aesthetic-heading-block { position: static; }
  .aesthetic-treatment-copy { max-width: 680px; }
  .aesthetic-procell-image { order: -1; }
}

@media (max-width: 640px) {
  .aesthetic-shell { width: min(100% - 2rem, 1180px); }
  .aesthetic-hero-panel { padding: 1.75rem 1rem 2rem; }
  .aesthetic-hero-panel h1 { font-size: 2.45rem; }
  .aesthetic-intro,
  .aesthetic-treatment,
  .aesthetic-benefits,
  .aesthetic-glymed,
  .aesthetic-upgrades,
  .aesthetic-procell { padding-block: 4.5rem; }
  .aesthetic-intro-copy { padding-top: 1.5rem; }
  .aesthetic-image-frame::before { top: -12px; left: -8px; }
  .aesthetic-image-frame figcaption { margin-right: 0.75rem; }
  .aesthetic-benefit-list { grid-template-columns: 1fr; }
  .aesthetic-benefit-list li:nth-child(odd) { margin-right: 0; }
  .aesthetic-section-head { display: block; }
  .aesthetic-section-head .aesthetic-eyebrow { margin-bottom: 0.75rem; }
  .aesthetic-difference { padding-block: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .aesthetic-hero > img,
  .aesthetic-hero-panel { animation: none; }
  .aesthetic-hero > img { transform: none; will-change: auto; }
  .aesthetic-page * { scroll-behavior: auto; }
}

/* ===== PELVIC FLOOR THERAPY ===== */
/* Both photos on this page sit on a pure-white studio background, so the layout
   is built light-on-light instead of using the scrimmed .service-hero pattern —
   a dark overlay would have nothing to sit on. */
.pelvic-page {
  --pelvic-ink: #223b45;
  --pelvic-blue: #83bcca;
  --pelvic-deep: #4d7f92;
  --pelvic-mist: #eaf2f5;
  --pelvic-paper: #fbfcfd;
  --pelvic-sand: #f5f1ea;
  background: var(--pelvic-paper);
  color: var(--pelvic-ink);
}

.pelvic-shell {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.pelvic-page h1,
.pelvic-page h2 { letter-spacing: -0.025em; }

.pelvic-eyebrow {
  margin-bottom: 1rem;
  color: var(--pelvic-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

/* --- Hero --- */
/* This page uses the shared .service-hero / .service-hero--dense header that every
   other service page uses; only the sections below it are page-specific. */
.pelvic-intro {
  padding: clamp(3.5rem, 7vw, 6rem) 0 0;
  background: var(--pelvic-paper);
}

.pelvic-lead {
  margin: 0 0 1.25rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
}

.pelvic-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.9rem;
  list-style: none;
}

.pelvic-promise li {
  padding: 0.5rem 1.1rem;
  border: 1px solid rgba(34, 59, 69, 0.16);
  border-radius: 999px;
  background: #fff;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pelvic-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.pelvic-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.6rem;
  border: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pelvic-button:hover,
.pelvic-button:focus-visible { transform: translateY(-3px); }
.pelvic-button:focus-visible { outline: 3px solid rgba(77, 127, 146, 0.35); outline-offset: 4px; }

.pelvic-button-dark {
  color: #fff;
  background: var(--pelvic-ink);
  border-color: var(--pelvic-ink);
}

.pelvic-button-dark:hover {
  color: var(--pelvic-ink);
  background: transparent;
}

.pelvic-button-ghost { color: var(--pelvic-ink); background: transparent; }
.pelvic-button-ghost:hover { color: #fff; background: var(--pelvic-ink); }

/* The branded artwork carries its own headline and small body type, so it is shown
   whole in a frame rather than stretched behind hero copy — full-bleed would crop
   its composition and blur that type well past its native 936px. */
.pelvic-showcase {
  padding: clamp(2.5rem, 5vw, 3.75rem) 1.5rem clamp(3.5rem, 7vw, 6rem);
  background: var(--pelvic-paper);
}

.pelvic-showcase-frame {
  max-width: 960px;
  margin-inline: auto;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: #fff;
  outline: 1px solid rgba(131, 188, 202, 0.55);
  outline-offset: 13px;
  box-shadow: 0 20px 50px rgba(34, 59, 69, 0.1);
}

.pelvic-showcase-frame img { width: 100%; height: auto; }

/* --- Shared two-column section frame --- */
.pelvic-split {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.pelvic-section-label {
  position: relative;
  padding-top: 0.45rem;
}

.pelvic-section-label::before {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  margin-bottom: 1rem;
  background: var(--pelvic-blue);
}

.pelvic-section-label span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pelvic-qualify,
.pelvic-benefits,
.pelvic-how,
.pelvic-expect,
.pelvic-conditions { padding: clamp(4rem, 8vw, 7rem) 0; }

.pelvic-qualify h2,
.pelvic-benefits h2,
.pelvic-how h2,
.pelvic-expect h2,
.pelvic-conditions h2,
.pelvic-cta h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.06;
}

.pelvic-qualify { background: var(--pelvic-sand); }

.pelvic-note {
  margin-top: 1.5rem;
  color: #56707b;
  font-size: 0.95rem;
}

.pelvic-checklist {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
  list-style: none;
}

.pelvic-checklist li {
  position: relative;
  padding: 0 0 0.85rem 2.1rem;
  border-bottom: 1px solid rgba(34, 59, 69, 0.12);
  color: #46616c;
  line-height: 1.65;
}

.pelvic-checklist li:last-child { border-bottom: 0; padding-bottom: 0; }

.pelvic-checklist li::before {
  content: "\2713";
  position: absolute;
  top: -0.05rem;
  left: 0;
  color: var(--pelvic-deep);
  font-size: 1.05rem;
  font-weight: 700;
}

/* --- Benefits --- */
.pelvic-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem 2rem;
  margin-top: 2rem;
  list-style: none;
}

.pelvic-benefit-grid li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.5rem;
  border-top: 1px solid rgba(34, 59, 69, 0.12);
  color: #46616c;
  font-size: 0.95rem;
}

.pelvic-benefit-grid li::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pelvic-blue);
}

/* --- How it works --- */
.pelvic-how {
  color: #fff;
  background: var(--pelvic-ink);
}

.pelvic-how p { max-width: 720px; margin-top: 1.4rem; color: #bcd0d8; line-height: 1.85; }

.pelvic-stat {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.pelvic-stat > strong {
  color: var(--pelvic-blue);
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.6rem, 9vw, 6.5rem);
  font-weight: 400;
  line-height: 0.9;
}

.pelvic-stat span {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pelvic-stat p {
  max-width: 480px;
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-style: italic;
  color: #e2ecf0;
  line-height: 1.55;
}

/* --- What to expect --- */
.pelvic-spec-list { margin-top: 2rem; border-top: 1px solid rgba(34, 59, 69, 0.14); }

.pelvic-spec {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem 2rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(34, 59, 69, 0.14);
}

.pelvic-spec dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pelvic-spec dd {
  color: var(--pelvic-deep);
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.pelvic-expect .pelvic-note { margin-top: 1.75rem; max-width: 640px; line-height: 1.8; }

/* --- Conditions --- */
.pelvic-conditions { background: var(--pelvic-mist); }

.pelvic-condition-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
  list-style: none;
}

.pelvic-condition-list li {
  padding: 0.75rem 1.25rem;
  background: #fff;
  border-left: 3px solid var(--pelvic-blue);
  color: #3d5a65;
  font-size: 0.92rem;
}

/* --- CTA --- */
.pelvic-cta {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--pelvic-blue);
}

.pelvic-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.pelvic-cta .pelvic-eyebrow { color: #2c4c58; }
.pelvic-cta h2 { max-width: 620px; }
.pelvic-cta p:not(.pelvic-eyebrow) { max-width: 640px; margin-top: 1rem; color: #274550; line-height: 1.8; }
.pelvic-cta .pelvic-actions { margin-top: 0; flex-direction: column; }
.pelvic-cta .pelvic-button { white-space: nowrap; }

.pelvic-disclaimer {
  padding: 1.6rem 0 2rem;
  color: #7d8c92;
  font-size: 0.72rem;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 900px) {
  .pelvic-split,
  .pelvic-cta-inner { grid-template-columns: 1fr; }
  .pelvic-cta .pelvic-actions { flex-direction: row; }
}

@media (max-width: 560px) {
  .pelvic-shell { width: min(100% - 2rem, 1180px); }
  .pelvic-actions { flex-direction: column; align-items: stretch; }
  .pelvic-button { width: 100%; }
  .pelvic-cta .pelvic-actions { flex-direction: column; }
  .pelvic-stat { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .pelvic-spec { grid-template-columns: 1fr; gap: 0.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  .pelvic-button { transition: none; }
}
