:root {
  --cream: #FAF7F2;
  --warm-white: #FDFCF9;
  --taupe: #B88A6A;
  --gold: #C9A84C;
  --sage: #B7C4B2;
  --sage-dark: #70866e;
  --text: #3A3A3A;
  --muted: #6b6861;
  --line: rgba(58, 58, 58, 0.13);
  --shadow: 0 22px 64px rgba(58, 58, 58, 0.13);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.top-offer-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  padding: 11px 18px;
  color: #2e2b25;
  background: linear-gradient(135deg, #f6e4a4, #d7b957);
  font-size: 0.95rem;
}
.top-offer-banner strong,
.top-offer-banner a {
  font-weight: 900;
}
.top-offer-banner a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(16px, 5vw, 62px);
  color: #fdfcf9;
  background: #7f988a;
  box-shadow: 0 1px 0 rgba(58, 58, 58, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled, .site-header.is-open {
  color: #fdfcf9;
  background: #7f988a;
  box-shadow: 0 1px 0 rgba(58, 58, 58, 0.12);
  backdrop-filter: blur(14px);
}
.brand img {
  width: clamp(300px, 34vw, 460px);
  height: 122px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}
.brand { grid-column: 2; justify-self: center; }
.site-nav { grid-column: 1; grid-row: 1; justify-self: start; display: flex; flex-wrap: nowrap; gap: clamp(16px, 2vw, 30px); font-size: 0.94rem; }
.site-nav a { opacity: 0.88; }
.site-nav a:hover, .site-nav a.active { color: #ffe7a0; opacity: 1; }
.header-cta, .button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 18px;
  border: 1px solid currentColor;
  font-weight: 800;
  white-space: nowrap;
}
.header-cta {
  grid-column: 3;
  justify-self: end;
  color: #2e2b25;
  border-color: var(--gold);
  background: var(--gold);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; }
.coming-soon-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #f7e9c9;
  color: #203a32;
  font-weight: 800;
  text-align: center;
}
.coming-soon-strip a {
  color: #203a32;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #293f36;
}
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(41, 63, 54, 0.82), rgba(41, 63, 54, 0.28) 58%, rgba(41, 63, 54, 0.42)),
    linear-gradient(0deg, rgba(41, 63, 54, 0.76), transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 44px;
  color: var(--warm-white);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero .eyebrow { color: #efe4c1; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.04; }
h1, h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 500;
}
h1 { max-width: 900px; font-size: clamp(2.75rem, 5.8vw, 5.9rem); }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.15rem; }
.hero-copy { max-width: 760px; margin: 22px 0 0; color: rgba(253, 252, 249, 0.88); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(253, 252, 249, 0.24);
  border-radius: var(--radius);
  color: var(--warm-white);
  background: rgba(253, 252, 249, 0.12);
  font-weight: 850;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button-primary { color: #2e2b25; border-color: var(--gold); background: var(--gold); }
.button-primary:hover { background: #b9983f; }
.button-secondary {
  color: #2e2b25;
  border-color: var(--warm-white);
  background: rgba(253, 252, 249, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}
.button-secondary:hover { background: var(--warm-white); }
.button-secondary.light {
  border-color: var(--line);
  color: var(--text);
  background: var(--warm-white);
  box-shadow: none;
}

.trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.trust-strip div { padding: 24px clamp(18px, 4vw, 48px); background: var(--warm-white); }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { margin-top: 4px; color: var(--muted); }
.hydrafacial-spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  color: var(--warm-white);
  background:
    linear-gradient(135deg, rgba(63, 91, 76, 0.96), rgba(127, 152, 138, 0.92)),
    #3f5b4c;
}
.hydrafacial-spotlight .eyebrow { color: #f6e4a4; }
.hydrafacial-spotlight h2 {
  margin-bottom: 12px;
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
}
.hydrafacial-spotlight p:not(.eyebrow) {
  max-width: 920px;
  margin: 0;
  color: rgba(253, 252, 249, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}
.hydrafacial-price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(246, 228, 164, 0.42);
  border-radius: var(--radius);
  background: rgba(253, 252, 249, 0.11);
}
.hydrafacial-price-line strong,
.hydrafacial-price-line span {
  color: var(--warm-white);
}
.hydrafacial-price-line span {
  font-weight: 900;
}
.hydrafacial-price-line small {
  color: rgba(253, 252, 249, 0.72);
  font-weight: 750;
}
.hydrafacial-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.section { padding: clamp(66px, 9vw, 126px) clamp(18px, 5vw, 72px); }
.intro, .split, .booking-panel, .contact-page { display: grid; grid-template-columns: minmax(270px, 0.86fr) minmax(290px, 0.78fr); gap: clamp(32px, 7vw, 90px); align-items: start; }
.intro p:last-child, .feature-copy p, .membership p, .booking-panel p, .site-footer p, .split p { color: var(--muted); font-size: 1.04rem; }
.intro .intro-callout {
  position: relative;
  align-self: center;
  max-width: 720px;
  margin: 0;
  padding: 30px 34px 30px 42px;
  border: 1px solid rgba(201, 168, 76, 0.34);
  border-radius: var(--radius);
  color: #34483f;
  background: linear-gradient(135deg, rgba(183, 196, 178, 0.28), rgba(253, 252, 249, 0.92));
  box-shadow: 0 18px 46px rgba(58, 58, 58, 0.08);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.28;
}
.intro .intro-callout::before {
  content: "";
  position: absolute;
  inset: 24px auto 24px 20px;
  width: 4px;
  border-radius: 999px;
  background: var(--gold);
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; background: var(--warm-white); }
.why-grid article, .service-card, .blog-grid article, .financing-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(253, 252, 249, 0.78);
}
.why-grid p, .service-card p, .blog-grid p { color: var(--muted); }
.services, .booking, .gallery-page { background: #f2efe7; }
.section-heading { margin-bottom: 34px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { min-height: 244px; }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  border-radius: 50%;
  color: #2e2b25;
  background: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
}
.treatment-details {
  background: var(--warm-white);
}
.treatment-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.treatment-detail {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  min-height: 560px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
  box-shadow: 0 14px 34px rgba(58, 58, 58, 0.06);
  overflow: hidden;
}
.treatment-photo {
  width: calc(100% + 52px);
  height: 210px;
  margin: -26px -26px 2px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}
.treatment-detail h2 {
  font-size: clamp(1.6rem, 2.1vw, 2.45rem);
}
.treatment-detail p {
  margin-top: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.treatment-detail ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 18px 0 20px;
  padding-left: 18px;
  color: var(--muted);
}
.text-link {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--taupe);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.text-link:hover {
  color: var(--gold);
}
.treatment-detail .service-icon {
  margin-bottom: 22px;
}
.why-choose-treatment {
  background: #f2efe7;
}
.featured-treatments-link {
  margin-top: 26px;
}
.treatments-provider {
  display: grid;
  grid-template-columns: minmax(250px, 0.44fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  color: var(--warm-white);
  background: #3f5b4c;
}
.treatments-provider-photo {
  overflow: hidden;
  border: 1px solid rgba(253, 252, 249, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(253, 252, 249, 0.9), rgba(242, 239, 231, 0.74));
  box-shadow: var(--shadow);
}
.treatments-provider-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center center;
}
.treatments-provider > div:last-child > p:not(.eyebrow) {
  color: rgba(253, 252, 249, 0.82);
  font-size: 1.06rem;
}
.treatment-provider-credentials {
  color: rgba(253, 252, 249, 0.94) !important;
}
.treatments-provider .provider-availability {
  width: fit-content;
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  color: var(--warm-white) !important;
  background: rgba(253, 252, 249, 0.08);
  line-height: 1.55;
}
.treatment-why-grid {
  padding: 0;
  background: transparent;
}
.before-after-prompt {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--warm-white);
}
.before-after-prompt p {
  color: var(--muted);
  font-size: 1.04rem;
}
.serving-section {
  text-align: center;
  color: var(--warm-white);
  background: #315044;
}
.serving-section .eyebrow {
  color: #f3d984;
}
.serving-section h2 {
  max-width: 1200px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}
.botox-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}
.botox-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}
.botox-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: #f2efe7;
}
.botox-info-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}
.botox-info-grid article > p {
  color: var(--muted);
}
.botox-gallery-prompt {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  background: var(--warm-white);
}
.provider-guide,
.contact-provider {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}
.provider-guide img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  object-position: center center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(253, 252, 249, 0.9), rgba(242, 239, 231, 0.74));
  box-shadow: var(--shadow);
}
.provider-guide p,
.contact-provider p {
  color: var(--muted);
  font-size: 1.06rem;
}
.contact-provider {
  background: var(--warm-white);
}
.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(240px, 0.46fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(66px, 8vw, 118px) clamp(72px, 7vw, 128px);
  color: var(--warm-white);
  background: #3f5b4c;
}
.feature-band .eyebrow { color: #eee0ae; }
.feature-band h2 { font-size: clamp(2rem, 4vw, 4.25rem); }
.provider-name {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
}
.provider-credentials {
  margin: 14px 0 18px;
  color: rgba(253, 252, 249, 0.92);
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  font-weight: 500;
  line-height: 1.3;
}
.feature-copy p, .credential-list p { color: rgba(253, 252, 249, 0.78); }
.provider-photo-card {
  align-self: stretch;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(253, 252, 249, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(253, 252, 249, 0.92), rgba(242, 239, 231, 0.78));
}
.provider-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.credential-list {
  padding: 30px;
  border: 1px solid rgba(253, 252, 249, 0.2);
  border-radius: var(--radius);
  background: rgba(253, 252, 249, 0.08);
}
.credential-list strong { display: block; margin-top: 18px; color: #f6e4a4; }
.credential-list strong:first-child { margin-top: 0; }
.membership { display: flex; align-items: center; justify-content: space-between; gap: 32px; background: var(--cream); }
.membership > div { max-width: 760px; }
.brand-confidence {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: center;
  background: var(--warm-white);
}
.brand-wordmarks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.brand-wordmarks span {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #3f5b4c;
  background: #f2efe7;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.1vw, 2rem);
  text-align: center;
}
.financing-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--warm-white);
  background: #315044;
}
.financing-strip .eyebrow {
  color: #f6e4a4;
}
.financing-strip p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(253, 252, 249, 0.82);
}
.gallery-preview { display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(300px, 1fr); gap: 40px; align-items: center; }
.comparison-panel, .directions-panel, .gallery-grid div {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(58, 58, 58, 0.28);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(253, 252, 249, 0.68);
}
.comparison-panel { grid-template-columns: 1fr 1fr; overflow: hidden; }
.comparison-panel span:first-child { width: 100%; height: 100%; display: grid; place-items: center; background: #e9e1d4; }
.comparison-panel span:last-child { width: 100%; height: 100%; display: grid; place-items: center; background: #dfe8dc; }
.results-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--warm-white);
}
.directions-panel {
  gap: 12px;
  text-align: center;
}
.directions-panel span {
  color: var(--muted);
}
.reviews, .faq-preview { background: var(--warm-white); }
.faq-list { display: grid; gap: 12px; }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--warm-white);
}
summary { cursor: pointer; font-weight: 850; }
details p { color: var(--muted); }
.page-hero {
  padding: 86px clamp(18px, 5vw, 72px) 70px;
  color: var(--warm-white);
  background:
    linear-gradient(90deg, rgba(48, 72, 61, 0.94), rgba(48, 72, 61, 0.72)),
    url("assets/logo-original.jpeg") center / cover;
}
.page-hero p { max-width: 760px; color: rgba(253, 252, 249, 0.84); font-size: 1.1rem; }
.hydrafacial-page-hero {
  background:
    linear-gradient(90deg, rgba(41, 63, 54, 0.9), rgba(41, 63, 54, 0.5)),
    url("assets/treatments/hydrafacial.jpg") center / cover;
}
.treatments-hero h1 {
  max-width: 1120px;
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 1.02;
}
.treatments-hero p {
  max-width: 900px;
}
.page-hero-cta {
  margin-top: 24px;
}
.hydrafacial-promo {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  color: #2e2b25;
  background: linear-gradient(135deg, #f6e4a4, #d7b957);
}
.hydrafacial-promo h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}
.hydrafacial-promo p {
  max-width: 760px;
  margin: 0;
}
.hydrafacial-packages {
  background: var(--warm-white);
}
.hydrafacial-packages article small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}
.treatment-standard {
  background: var(--warm-white);
}
.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.standard-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f2efe7;
}
.standard-grid p {
  color: var(--muted);
}
.related-treatments {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: center;
  color: var(--warm-white);
  background: #315044;
}
.related-treatments .eyebrow {
  color: #f6e4a4;
}
.related-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.related-link-list .text-link {
  margin: 0;
  color: #2e2b25;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 10px 14px;
}
.hydrafacial-machine-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  color: var(--warm-white);
  background: #3f5b4c;
}
.hydrafacial-machine-feature .eyebrow {
  color: #f6e4a4;
}
.hydrafacial-machine-feature p {
  color: rgba(253, 252, 249, 0.82);
  font-size: 1.08rem;
}
.hydrafacial-machine-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.provider-hero {
  min-height: 430px;
  display: grid;
  align-content: center;
}
.about-provider-title {
  white-space: nowrap;
  font-size: clamp(3.3rem, 5.8vw, 6.2rem);
}
.page-hero .provider-credentials {
  max-width: 920px;
  margin-top: 18px;
  color: rgba(253, 252, 249, 0.92);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
}
.about-provider-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}
.about-provider-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(253, 252, 249, 0.94), rgba(242, 239, 231, 0.78));
}
.about-provider-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center center;
}
.check-list { padding-left: 20px; color: var(--muted); }
.check-list li { margin: 8px 0; }
form { display: grid; gap: 14px; }
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
label { display: grid; gap: 7px; color: var(--muted); font-size: 0.92rem; font-weight: 750; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(58, 58, 58, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--text);
  background: var(--warm-white);
  font: inherit;
}
textarea { resize: vertical; }
form .button { width: 100%; margin-top: 4px; cursor: pointer; }
.contact-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; background: var(--warm-white); }
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-method-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}
.contact-method-grid article p {
  margin: 0;
  color: var(--muted);
}
.contact-options {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}
.contact-options h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
}
.contact-options p {
  margin: 0 0 8px;
}
.contact-options a {
  color: var(--sage-dark);
}
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.filter-row button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}
.gallery-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.membership-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
}
.legal-page h2 {
  margin-top: 28px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}
.legal-page h2:first-child { margin-top: 0; }
.legal-page p { color: var(--muted); }
.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto auto;
  gap: 32px;
  padding: 44px clamp(18px, 5vw, 72px) 82px;
  border-top: 1px solid var(--line);
  background: var(--warm-white);
}
.footer-logo { width: 250px; height: 78px; object-fit: contain; border-radius: 6px; }
.footer-disclaimer {
  max-width: 420px;
  font-size: 0.9rem !important;
}
.footer-legal {
  display: grid;
  gap: 8px;
  align-content: start;
}
.footer-legal a {
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-legal a:hover { color: var(--gold); }
address { display: grid; gap: 8px; color: var(--muted); font-style: normal; }
address a:hover { color: var(--gold); }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}
.social-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  color: var(--text);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 76, 0.72);
  box-shadow: 0 10px 24px rgba(58, 58, 58, 0.12);
}
.social-link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-link.facebook svg,
.social-link.tiktok svg,
.social-link.google svg {
  fill: currentColor;
  stroke: none;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0 18%, #fa7e1e 32%, #d62976 55%, #962fbf 78%, #4f5bd5 100%);
  color: #fff;
  border-color: transparent;
}
.facebook {
  background: #1877f2;
  color: #fff;
  border-color: transparent;
}
.tiktok {
  background: #111;
  color: #fff;
  border-color: transparent;
}
.google {
  background: #fff;
  color: #4285f4;
}
.floating-book {
  display: none;
}
.mobile-booking-bar { display: none; }

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    justify-content: stretch;
    gap: 10px;
  }
  .brand { grid-column: 2; justify-self: center; }
  .site-nav { grid-column: auto; grid-row: auto; }
  .nav-toggle { display: block; }
  .nav-toggle { grid-column: 3; justify-self: end; }
  .site-nav { display: none; }
  .header-cta {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    display: inline-flex;
    min-height: 40px;
    padding: 0 20px;
  }
  .site-header.is-open .site-nav {
    position: absolute;
    inset: 100% 14px auto;
    display: grid;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #7f988a;
    box-shadow: var(--shadow);
  }
  .site-header.is-open .site-nav a { padding: 13px 12px; }
  .trust-strip, .hydrafacial-spotlight, .intro, .split, .booking-panel, .feature-band, .contact-page, .contact-method-grid, .gallery-preview, .contact-strip, .site-footer, .membership-detail, .before-after-prompt, .about-provider-section, .botox-intro, .botox-info-grid, .botox-gallery-prompt, .provider-guide, .contact-provider, .treatments-provider, .brand-confidence, .hydrafacial-machine-feature, .related-treatments { grid-template-columns: 1fr; }
  .hydrafacial-spotlight-actions { justify-content: flex-start; }
  .treatment-detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .standard-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid, .service-grid, .gallery-grid, .blog-grid, .contact-method-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-wordmarks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .financing-strip { display: grid; }
  .membership { display: grid; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 14px; }
  .brand img { width: 240px; height: 86px; }
  .header-cta { min-height: 38px; width: min(220px, 80vw); }
  .provider-name { white-space: normal; }
  .about-provider-title { white-space: normal; font-size: clamp(3rem, 14vw, 4.5rem); }
  .feature-band { padding: 58px 18px; }
  .hero { min-height: 62vh; }
  .hero-content { width: calc(100% - 32px); padding-top: 114px; padding-bottom: 78px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .top-offer-banner { align-items: stretch; }
  .top-offer-banner strong,
  .top-offer-banner span,
  .top-offer-banner a { width: 100%; text-align: center; }
  .why-grid, .service-grid, .gallery-grid, .blog-grid, .brand-wordmarks, .contact-method-grid { grid-template-columns: 1fr; }
  .treatment-detail-grid { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .hydrafacial-promo { display: grid; }
  .hero-badges span,
  .hydrafacial-price-line,
  .hydrafacial-spotlight-actions,
  .hydrafacial-spotlight-actions .button,
  .financing-strip .button { width: 100%; }
  .service-card { min-height: auto; }
  .floating-book { display: none; }
  .mobile-booking-bar {
    position: fixed;
    inset: auto 0 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--warm-white);
    box-shadow: 0 -1px 0 var(--line);
  }
  .mobile-booking-bar a {
    min-height: 54px;
    display: grid;
    place-items: center;
    font-weight: 900;
  }
  .mobile-booking-bar a:last-child { color: #2e2b25; background: var(--gold); }
}
