:root {
  color-scheme: light;
  --ink: #171514;
  --muted: #67615d;
  --soft: #f6f0e9;
  --soft-2: #edf8f8;
  --line: #e3d9cf;
  --gold: #9a6a35;
  --teal: #2f8587;
  --blue: #0b6fae;
  --white: #fff;
  --black: #080807;
  --shadow: 0 18px 45px rgba(35, 28, 20, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--black);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(227, 217, 207, 0.84);
  background: rgba(250, 247, 242, 0.91);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(154, 106, 53, 0.45);
  border-radius: 50%;
  background: var(--black);
  color: #d9ad75;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 16px;
}

.brand-text span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 14px;
  font-weight: 750;
}

.nav-links a {
  color: #3d3834;
  text-decoration: none;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white) !important;
}

.hero {
  position: relative;
  min-height: min(72vh, 720px);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(8, 8, 7, 0.88), rgba(8, 8, 7, 0.62) 44%, rgba(8, 8, 7, 0.25)),
    linear-gradient(0deg, rgba(8, 8, 7, 0.42), rgba(8, 8, 7, 0)),
    url("/wp-content/uploads/2026/05/11A76465-FB92-4377-9B91-DB9BEB4EB291.webp");
  background-position: center 45%;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}

.hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 116px 0 74px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d7b481;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.1;
  text-decoration: none;
}

.button.primary {
  background: var(--white);
  color: var(--black);
}

.button.dark {
  background: var(--black);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: -38px auto 0;
  box-shadow: var(--shadow);
}

.fact {
  min-height: 96px;
  padding: 22px 24px;
  background: var(--white);
}

.fact strong {
  display: block;
  font-size: 15px;
}

.fact span {
  color: var(--muted);
  font-size: 14px;
}

main {
  overflow: hidden;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding: 56px 0;
}

.section.quick-actions {
  padding: 28px 0 58px;
}

.section.white {
  background: var(--white);
}

.section.teal {
  background: #eaf7f7;
}

.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.6fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head.one {
  display: block;
  max-width: 820px;
}

h2,
.h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 9px;
  font-size: 24px;
  line-height: 1.14;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
}

.quick-grid,
.card-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.quick-card,
.info-card,
.guide-card,
.step,
.faq-item,
.treatment-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quick-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  text-decoration: none;
}

.quick-card:hover {
  border-color: rgba(47, 133, 135, 0.38);
  transform: translateY(-1px);
  transition: border-color 160ms ease, transform 160ms ease;
}

.quick-card b {
  font-size: 23px;
  line-height: 1.1;
}

.quick-card span {
  color: var(--muted);
}

.quick-label {
  color: var(--gold) !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.media {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ddd;
}

.media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media.treatment-photo img {
  object-position: 50% center;
}

.media.booster-photo img {
  padding: 26px;
  background: var(--black);
  object-fit: contain;
  object-position: center center;
}

.media.studio-photo img {
  min-height: 470px;
  object-position: center 42%;
}

.image-duo {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 16px;
  margin-top: 28px;
}

.image-duo .media img {
  min-height: 320px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  color: #3f3a36;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(47, 133, 135, 0.12);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  min-height: 228px;
  padding: 28px;
  border-top: 4px solid rgba(47, 133, 135, 0.72);
}

.step-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 24px;
  padding: 0 11px;
  border: 1px solid rgba(47, 133, 135, 0.28);
  border-radius: 999px;
  background: var(--soft-2);
  color: #2c7072;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step p,
.info-card p,
.guide-card p,
.treatment-card p,
.faq-item p {
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  min-height: 570px;
  background: var(--black);
  color: var(--white);
}

.split-band .content {
  align-self: center;
  width: min(560px, calc(100% - 36px));
  margin-left: auto;
  padding: 76px 42px 76px 0;
}

.split-band p,
.split-band li {
  color: rgba(255, 255, 255, 0.78);
}

.split-band .media {
  border: 0;
  border-radius: 0;
}

.split-band .media img {
  min-height: 570px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.treatment-card {
  padding: 24px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--soft-2);
  color: #2c7072;
  font-size: 13px;
  font-weight: 800;
}

.info-card {
  padding: 24px;
}

.quote-band {
  background: var(--teal);
  color: var(--white);
}

.quote-band .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 52px;
  align-items: center;
}

.quote-band p {
  color: rgba(255, 255, 255, 0.84);
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quote-band .mini-label {
  color: #f2d5ad;
}

.guide-card {
  min-height: 190px;
  padding: 22px;
  text-decoration: none;
}

.guide-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.14;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.cta-panel {
  padding: 40px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.86), rgba(8, 8, 7, 0.58)),
    url("/wp-content/uploads/2026/05/hydracialnyc.jpeg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.cta-panel p {
  max-width: 720px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.site-footer {
  padding: 48px 0 34px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  text-decoration: none;
}

.small {
  margin-top: 18px;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.page-hero {
  padding: 86px 0 56px;
  background:
    linear-gradient(120deg, rgba(8, 8, 7, 0.88), rgba(8, 8, 7, 0.62)),
    url("/wp-content/uploads/2026/05/B79AAE32-339D-49D9-B5F6-27ABAFA6BA67.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.page-hero .lead {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}

.article-body {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-body h2 {
  margin-top: 44px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  margin-top: 15px;
  color: var(--muted);
}

.article-body ul {
  margin: 18px 0 0;
  padding-left: 21px;
  color: var(--muted);
}

.article-body li + li {
  margin-top: 8px;
}

.sidebox {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.sidebox .actions {
  display: grid;
}

.breadcrumb {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 980px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 0;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 650px;
    background-position: 63% center;
  }

  .hero-inner {
    padding: 90px 0 58px;
  }

  .hero-facts,
  .quick-grid,
  .card-grid,
  .guide-grid,
  .image-duo,
  .steps,
  .treatment-grid,
  .faq-grid,
  .section-head,
  .two-col,
  .quote-band .wrap,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .split-band {
    grid-template-columns: 1fr;
  }

  .split-band .content {
    width: min(var(--max), calc(100% - 36px));
    margin: 0 auto;
    padding: 58px 0;
  }

  .split-band .media img {
    min-height: 360px;
  }

  .media.booster-photo img {
    padding: 18px;
  }

  .sidebox {
    position: static;
  }

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

@media (max-width: 620px) {
  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .quick-card,
  .step,
  .info-card,
  .guide-card,
  .faq-item,
  .treatment-card,
  .article-body,
  .sidebox,
  .cta-panel {
    padding: 22px;
  }

  .section {
    padding: 64px 0;
  }

  .section.quick-actions {
    padding: 26px 0 48px;
  }

  .hero-facts {
    margin-top: 0;
    width: 100%;
  }
}
