:root {
  --cream: #fffaf6;
  --warm: #f6ece4;
  --blush: #ead0c8;
  --rose: #c48d7f;
  --rose-deep: #a96f63;
  --gold: #b88a4a;
  --charcoal: #211f1e;
  --muted: #746b66;
  --line: rgba(33, 31, 30, 0.12);
  --shadow: 0 22px 70px rgba(72, 45, 34, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
  min-height: 88px;
  padding: 0 64px;
  background: rgba(255, 252, 249, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: min-height 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  min-height: 72px;
  border-color: rgba(33, 31, 30, 0.09);
  box-shadow: 0 12px 40px rgba(33, 31, 30, 0.07);
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 11px; min-width: 220px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 12px 28px rgba(184, 138, 74, 0.24);
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-family: "Cormorant Garamond", serif; font-size: 27px; letter-spacing: 0; }
.brand-text span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

.site-nav { display: flex; align-items: center; justify-content: flex-end; flex: 1; gap: clamp(14px, 2vw, 24px); font-size: 14px; font-weight: 700; }
.site-nav > a, .services-trigger { color: #514944;}
.site-nav a.active, .site-nav a:hover, .nav-dropdown.active .services-trigger, .services-trigger:hover { color: var(--gold); }
.services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.btn, .btn-appointment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn-appointment {
  flex: 0 0 auto;
  height: 42px;
  min-height: 42px;
  margin-left: 8px;
  padding: 0 28px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #c98f6a 0%, #b9795c 45%, #d6a56f 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 24px rgba(185, 121, 92, 0.22);
  gap: 8px;
  line-height: 1;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: visible;
}
.btn-appointment i,
.btn-appointment svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  font-size: 15px;
  line-height: 1;
}
.btn-primary { color: #fff !important; background: linear-gradient(135deg, #2d2926, #8b6158 58%, var(--gold)); box-shadow: 0 18px 42px rgba(139, 97, 88, 0.24); }
.btn-secondary { background: rgba(255, 255, 255, 0.72); border-color: var(--line); color: var(--charcoal); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(139, 97, 88, 0.28); }
.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(185, 121, 92, 0.30);
  color: #ffffff !important;
}

.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: -160px;
  width: min(920px, calc(100vw - 48px));
  padding: 18px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.2fr;
  gap: 14px;
  background: rgba(255, 250, 246, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.22s ease;
}
.dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.mega-feature {
  padding: 20px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, var(--warm));
  border: 1px solid rgba(184, 138, 74, 0.16);
}
.mega-feature span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
}
.mega-feature h3 { font-size: 26px; }
.mega-feature p { margin: 9px 0 14px; font-size: 14px; line-height: 1.55; }
.mega-feature a { color: var(--gold); font-weight: 900; }
.mega-group { display: grid; align-content: start; gap: 4px; padding: 8px; }
.mega-group h4 {
  margin: 0 0 8px;
  color: var(--rose-deep);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mega-group a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 6px;
  color: #514944;
  font-size: 13px;
  line-height: 1.25;
}
.mega-group a i { width: 18px; color: var(--gold); }
.mega-group a.nested-link { margin-left: 28px; color: var(--muted); }
.mega-group a.nested-link::before { content: ""; width: 8px; height: 1px; background: var(--gold); }
.dropdown-panel a:hover { background: var(--warm); }
.nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-toggle { display: none; border: 0; background: var(--charcoal); color: #fff; width: 44px; height: 44px; border-radius: 50%; }

.hero, .page-hero, .split-section, .content-band, .why-section, .category-section, .cta-section, .form-layout {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 88% 18%, rgba(196, 141, 127, 0.18), transparent 30%),
    linear-gradient(135deg, #fffaf6 0%, #f3e5dc 52%, #fdf8f3 100%);
}

.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.02; font-family: "Cormorant Garamond", serif; letter-spacing: 0; }
h1 { font-size: clamp(46px, 7vw, 92px); max-width: 850px; }
h2 { font-size: clamp(34px, 4vw, 58px); }
h3 { font-size: 27px; }
p { color: var(--muted); }
.hero-copy p:not(.eyebrow), .page-hero p, .large-text { font-size: clamp(17px, 2vw, 21px); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: rgba(255, 250, 246, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(33, 31, 30, 0.12);
  font-weight: 800;
  animation: float 4.5s ease-in-out infinite;
}
.float-card.top { top: 28px; left: -16px; }
.float-card.bottom { right: -14px; bottom: 32px; animation-delay: -1.4s; }
.float-card i { color: var(--gold); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.page-hero {
  background: linear-gradient(135deg, var(--warm), #fffdfb);
  border-bottom: 1px solid var(--line);
}

.split-section { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(26px, 5vw, 72px); align-items: center; }
.split-section.alt { background: #fff; }
.section-copy p { max-width: 760px; }
.info-panel, .lux-form {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.note { padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; }

.content-band { background: #fff; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.services-grid, .benefit-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.services-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card, .mini-card, .category-card {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.22s ease;
}
.service-card:hover, .mini-card:hover, .category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(184, 138, 74, 0.36); }
.service-card > i, .mini-card > i, .category-card > i, .service-emblem i {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(184, 138, 74, 0.12);
}
.service-card h3, .mini-card h3 { margin-bottom: 10px; }
.service-card a { color: var(--gold); font-weight: 900; }
.service-category { color: var(--rose); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; }

.services-hierarchy { display: grid; gap: 24px; }
.service-group {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.82);
  box-shadow: 0 16px 48px rgba(72, 45, 34, 0.08);
}
.service-group.featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #fffaf6, #f8ebe4);
}
.service-group.featured p { max-width: 780px; }
.group-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.group-heading > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 14px 34px rgba(184, 138, 74, 0.22);
}
.hierarchy-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hierarchy-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nested-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(184, 138, 74, 0.16);
}
.nested-services h3 {
  margin-right: 8px;
  font-size: 23px;
}
.nested-services a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--warm);
  color: #514944;
  font-weight: 800;
}
.nested-services i { color: var(--gold); }

.why-section { background: linear-gradient(135deg, #2a2725, #47352f); color: #fff; }
.why-section p, .why-section .eyebrow { color: #eacfc3; }
.why-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.why-item { display: flex; gap: 12px; align-items: center; padding: 18px; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); background: rgba(255,255,255,0.06); }
.why-item i { color: #e2b879; }

.category-section { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; background: var(--warm); }
.category-card { min-height: 172px; display: grid; align-content: center; text-align: center; background: rgba(255,255,255,0.64); }
.category-card i { margin-inline: auto; }

.cta-section {
  margin: clamp(22px, 5vw, 56px);
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f1d9d0, #fff8f2 55%, #f7e8dd);
  border: 1px solid var(--line);
}
.cta-section p { margin-inline: auto; max-width: 680px; }

.service-hero { display: grid; grid-template-columns: 1fr 260px; align-items: center; }
.service-emblem { justify-self: end; }
.service-emblem i { width: 160px; height: 160px; font-size: 58px; background: rgba(196, 141, 127, 0.16); }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr); gap: 26px; align-items: start; background: #fff; }
.form-layout.single { grid-template-columns: minmax(0, 920px); justify-content: center; }
.lux-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; font-weight: 800; color: #403a36; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fffaf6;
  color: var(--charcoal);
  font: inherit;
}
textarea { resize: vertical; }
.success-message { padding: 14px 16px; border-radius: var(--radius); background: #edf8ef; color: #236535; font-weight: 800; }
.contact-stack { display: grid; gap: 16px; }
.map-placeholder {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  border: 1px dashed rgba(184, 138, 74, 0.55);
  border-radius: var(--radius);
  background: var(--warm);
  color: var(--gold);
  font-weight: 900;
}
.map-placeholder i { font-size: 34px; }
.contact-cta { width: 100%; }

.site-footer { padding: 60px clamp(18px, 5vw, 72px) 24px; background: linear-gradient(135deg, #201d1b, #2f2522); color: #fff; }
.site-footer p, .site-footer a { color: rgba(255, 255, 255, 0.72); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.7fr 0.9fr 1fr; gap: clamp(22px, 4vw, 44px); align-items: start; }
.site-footer h3 { margin-bottom: 13px; color: #fff; font-size: 24px; }
.footer-column a, .footer-contact p { display: flex; align-items: center; gap: 9px; margin: 8px 0; }
.footer-column a:hover, .footer-bottom a:hover { color: #e2b879; }
.footer-about p { max-width: 390px; }
.footer-brand { margin-bottom: 16px; }
.footer-brand .brand-text strong, .footer-brand .brand-text span { color: #fff; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); }
.socials a:hover { background: rgba(226, 184, 121, 0.16); color: #fff; }
.footer-btn { margin-top: 12px; margin-left: 0; width: fit-content; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.64); font-size: 14px; }
.footer-bottom a { color: #e2b879; font-weight: 900; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.62s ease, transform 0.62s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1200px) {
  .site-header {
    padding: 0 32px;
  }
}

@media (max-width: 1060px) {
  body.menu-open { overflow: hidden; }
  .site-header {
    min-height: 72px;
    padding: 0 18px;
  }
  .site-nav {
    position: fixed;
    inset: 78px 14px auto 14px;
    display: none;
    align-items: stretch;
    gap: 6px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 18px;
    background: rgba(255, 250, 246, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .menu-toggle { display: grid; place-items: center; }
  .site-nav > a, .services-trigger {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 6px;
  }
  .site-nav > a:hover, .services-trigger:hover { background: var(--warm); }
  .services-trigger { justify-content: space-between; }
  .site-nav .btn-appointment {
    width: 100%;
    height: 46px;
    min-height: 46px;
    margin-top: 16px;
    margin-left: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
  .dropdown-panel {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    padding: 12px;
    box-shadow: none;
    background: var(--warm);
  }
  .dropdown-panel.open { display: grid; }
  .nav-dropdown:hover .dropdown-panel:not(.open) { display: none; }
  .dropdown-panel::before { display: none; }
  .mega-feature { padding: 16px; }
  .mega-group { padding: 8px 4px; border-top: 1px solid rgba(33,31,30,0.08); }
  .mega-group a { min-height: 42px; }
  .hero, .split-section, .form-layout, .service-hero { grid-template-columns: 1fr; }
  .service-emblem { justify-self: start; }
  .services-grid, .benefit-grid, .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hierarchy-grid, .hierarchy-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-list, .category-section, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .brand { min-width: 0; }
  .brand-text strong { font-size: 24px; }
  .brand-text span { font-size: 10px; }
  .hero { min-height: auto; }
  .hero-actions, .form-row, .footer-bottom { display: grid; grid-template-columns: 1fr; }
  .btn, .btn-appointment { width: 100%; }
  .float-card { position: static; margin-top: 12px; animation: none; }
  .services-grid, .services-grid.compact, .hierarchy-grid, .hierarchy-grid.two, .benefit-grid, .values-grid, .why-list, .category-section, .footer-grid { grid-template-columns: 1fr; }
  .service-group.featured, .group-heading { align-items: flex-start; flex-direction: column; }
  .nested-services { display: grid; }
  .nested-services h3 { margin: 0; }
  .footer-btn { width: 100%; }
  .hero, .page-hero, .split-section, .content-band, .why-section, .category-section, .cta-section, .form-layout { padding: 48px 18px; }
  .cta-section { margin: 18px; }
}

/* Modern homepage redesign */
.home-hero,
.luxe-section,
.category-showcase,
.technology-section,
.results-philosophy,
.journey-section,
.testimonials-section,
.final-cta {
  position: relative;
  overflow: hidden;
}

.home-hero {
  isolation: isolate;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(56px, 8vw, 112px) clamp(18px, 6vw, 86px) clamp(48px, 7vw, 96px);
  background:
    radial-gradient(circle at 16% 24%, rgba(199, 164, 107, 0.2), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(198, 141, 120, 0.25), transparent 28%),
    linear-gradient(135deg, #fffdf9 0%, #fbf7f2 46%, #f1dfd6 100%);
}

.home-hero-copy {
  min-width: 0;
}

.hero-atmosphere,
.hero-atmosphere::before,
.hero-atmosphere::after {
  position: absolute;
  content: "";
  inset: auto;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.72;
  animation: slow-float 9s ease-in-out infinite;
}

.hero-atmosphere {
  width: 31vw;
  height: 31vw;
  right: -11vw;
  top: 9vh;
  background: rgba(199, 164, 107, 0.18);
}

.hero-atmosphere::before {
  width: 24vw;
  height: 24vw;
  left: -72vw;
  top: 44vh;
  background: rgba(198, 141, 120, 0.16);
  animation-delay: -2.4s;
}

.hero-atmosphere::after {
  width: 16vw;
  height: 16vw;
  left: -20vw;
  top: 5vh;
  background: rgba(57, 44, 50, 0.08);
  animation-delay: -4.2s;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 660px;
  margin-top: 22px;
  color: #5f5653;
  font-size: clamp(17px, 1.6vw, 22px);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
  color: #514944;
  font-size: 13px;
  font-weight: 900;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-strip i,
.text-link i,
.animated-link i {
  color: var(--gold);
}

.home-hero-visual {
  position: relative;
  min-height: 560px;
}

.organic-frame {
  position: absolute;
  inset: 28px 18px 18px 34px;
  border-radius: 44% 56% 40% 60% / 48% 38% 62% 52%;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(234, 210, 197, 0.56));
  box-shadow: 0 28px 90px rgba(57, 44, 50, 0.18);
  padding: 14px;
}

.organic-frame::before {
  position: absolute;
  content: "";
  inset: -24px 28px 28px -24px;
  z-index: -1;
  border: 1px solid rgba(199, 164, 107, 0.5);
  border-radius: inherit;
}

.organic-frame img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: inherit;
}

.sparkle {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 20px 42px rgba(184, 138, 74, 0.24);
  animation: float 4.8s ease-in-out infinite;
}

.sparkle.one { top: 32px; right: 34px; }
.sparkle.two { left: 12px; bottom: 126px; animation-delay: -1.2s; }

.hero-floating-card,
.care-badge,
.experience-badge,
.review-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 253, 249, 0.84);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(57, 44, 50, 0.14);
}

.hero-floating-card {
  left: 0;
  bottom: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 270px;
  padding: 16px;
  border-radius: 8px;
  color: #514944;
  font-size: 14px;
  font-weight: 800;
  animation: float 5.5s ease-in-out infinite;
}

.hero-floating-card i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--plum, #392c32);
}

.care-badge {
  right: 0;
  top: 96px;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 999px;
}

.care-badge strong,
.experience-badge strong {
  color: var(--charcoal);
  line-height: 1.1;
}

.care-badge span,
.experience-badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.luxe-section,
.category-showcase,
.journey-section,
.testimonials-section {
  padding: clamp(62px, 8vw, 118px) clamp(18px, 6vw, 86px);
}

.brand-story {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: #fffdf9;
}

.story-media,
.why-collage,
.tech-media {
  position: relative;
}

.story-media::before,
.why-collage::before {
  position: absolute;
  content: "";
  inset: 24px -18px -22px 28px;
  border: 1px solid rgba(199, 164, 107, 0.45);
  border-radius: 36px;
}

.story-media img,
.why-collage img,
.tech-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px 44px 8px 44px;
  box-shadow: var(--shadow);
}

.experience-badge {
  right: -12px;
  bottom: 34px;
  display: grid;
  gap: 4px;
  max-width: 210px;
  padding: 16px 18px;
  border-radius: 8px;
}

.section-copy > p:not(.eyebrow),
.why-copy > p,
.tech-copy > p {
  max-width: 680px;
  font-size: clamp(16px, 1.4vw, 19px);
}

.refined-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 18px;
  margin: 26px 0;
}

.refined-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #514944;
  font-weight: 850;
}

.refined-list i {
  color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rose-deep);
  font-weight: 900;
}

.animated-link i,
.treatment-card em i {
  transition: transform 0.22s ease;
}

.animated-link:hover i,
.treatment-card:hover em i {
  transform: translateX(4px);
}

.treatments-showcase {
  background:
    linear-gradient(180deg, #fbf7f2 0%, #fffdf9 100%);
}

.treatment-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  grid-auto-rows: minmax(260px, 1fr);
  gap: 18px;
}

.treatment-card {
  position: relative;
  isolation: isolate;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 18px 60px rgba(57, 44, 50, 0.12);
}

.treatment-card.featured {
  grid-row: span 2;
  min-height: 560px;
}

.treatment-card img,
.final-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.image-focus-botox { object-position: 48% 42%; }
.image-focus-filler { object-position: 52% 42%; }
.image-focus-microneedling { object-position: 54% 44%; }
.image-focus-laser { object-position: 50% 44%; }
.image-focus-iv { object-position: 50% 45%; }
.image-focus-consultation { object-position: 54% 44%; }
.image-focus-personalized-care { object-position: 52% 44%; }
.image-focus-technology { object-position: 48% 50%; }
.image-focus-results { object-position: 50% 35%; }
.image-focus-cta { object-position: center; }

.treatment-card::after,
.final-cta::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(33, 31, 30, 0) 18%, rgba(33, 31, 30, 0.18) 52%, rgba(33, 31, 30, 0.76) 100%);
}

.treatment-card a {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 26px;
  color: #fff;
}

.treatment-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.treatment-card small {
  max-width: 330px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
}

.treatment-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #f4d7a6;
  font-style: normal;
  font-weight: 900;
}

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

.category-showcase {
  background: #fffdf9;
}

.category-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(190px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x proximity;
}

.category-pill {
  position: relative;
  scroll-snap-align: start;
  min-height: 210px;
  padding: 22px 18px;
  border-bottom: 2px solid rgba(184, 138, 74, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.category-pill::before {
  position: absolute;
  content: "";
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: transparent;
  transition: background 0.22s ease;
}

.category-pill.active::before,
.category-pill:hover::before {
  background: linear-gradient(90deg, var(--rose), var(--gold));
}

.category-pill:hover {
  transform: translateY(-5px);
  background: rgba(246, 236, 228, 0.46);
  border-color: rgba(184, 138, 74, 0.45);
}

.category-pill i {
  color: var(--gold);
  font-size: 24px;
}

.category-pill h3 {
  margin-top: 20px;
  font-size: 25px;
}

.category-pill p {
  margin-bottom: 0;
  font-size: 14px;
}

.why-modern {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  background: linear-gradient(135deg, #fffaf6, #f4e3dc);
}

.why-collage img {
  aspect-ratio: 1 / 1.08;
}

.review-card {
  left: 28px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  max-width: 270px;
  padding: 18px;
  border-radius: 8px;
}

.review-card i,
.stars {
  color: var(--gold);
}

.review-card span {
  color: #514944;
  font-weight: 850;
}

.review-card strong {
  color: var(--rose-deep);
  font-size: 13px;
}

.benefit-rows {
  display: grid;
  gap: 2px;
  margin-top: 30px;
}

.benefit-row {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
}

.benefit-row::after {
  position: absolute;
  content: "";
  left: 64px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 138, 74, 0.5), transparent);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform 0.42s ease;
}

.benefit-row:hover::after {
  transform: scaleX(1);
}

.benefit-row > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
}

.benefit-row h3 {
  font-size: 25px;
}

.benefit-row p {
  margin: 6px 0 0;
}

.technology-section {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(62px, 8vw, 118px) clamp(18px, 6vw, 86px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(199, 164, 107, 0.22), transparent 28%),
    linear-gradient(135deg, #242124, #392c32 58%, #211f1e);
}

.technology-section p {
  color: rgba(255,255,255,0.76);
}

.technology-section .eyebrow {
  color: #e8c98d;
}

.tech-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.tech-highlights span {
  position: relative;
  padding: 14px 0 14px 18px;
  color: rgba(255,255,255,0.9);
  font-weight: 850;
}

.tech-highlights span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 16px;
  width: 2px;
  height: calc(100% - 32px);
  background: linear-gradient(var(--rose), var(--gold));
}

.tech-media::after {
  position: absolute;
  content: "";
  inset: 16px -16px -16px 16px;
  z-index: 0;
  border: 1px solid rgba(232, 201, 141, 0.32);
  border-radius: 44px 8px 44px 8px;
}

.tech-media img {
  z-index: 1;
  aspect-ratio: 4 / 4.5;
  border-radius: 44px 8px 44px 8px;
}

.results-philosophy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(62px, 8vw, 118px) clamp(18px, 6vw, 86px);
  background: #fffdf9;
}

.results-copy blockquote {
  max-width: 820px;
  margin: 28px 0 0;
  color: #392c32;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4.4vw, 64px);
  line-height: 1.04;
}

.results-philosophy img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 999px 999px 8px 8px;
  box-shadow: var(--shadow);
}

.journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.journey-line::before {
  position: absolute;
  content: "";
  left: 12%;
  right: 12%;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.journey-line.visible::before {
  transform: scaleX(1);
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.journey-step span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 7px solid #fbf7f2;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 16px 38px rgba(184, 138, 74, 0.24);
  font-weight: 900;
}

.journey-step i {
  margin-top: 22px;
  color: var(--gold);
  font-size: 24px;
}

.journey-step h3 {
  margin-top: 14px;
  font-size: 28px;
}

.journey-step p {
  max-width: 310px;
}

.testimonials-section {
  background: linear-gradient(135deg, #fbf7f2, #fffdf9);
}

.testimonial-slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(26px, 5vw, 54px);
  text-align: center;
}

.testimonial-slide p {
  max-width: 760px;
  margin: 0;
  color: #392c32;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(29px, 4vw, 54px);
  line-height: 1.08;
}

.testimonial-slide strong {
  color: var(--rose-deep);
}

.stars {
  display: flex;
  gap: 5px;
  font-size: 13px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 138, 74, 0.28);
  border-radius: 50%;
  color: var(--charcoal);
  background: rgba(255,255,255,0.72);
  cursor: pointer;
}

.testimonial-controls button:hover {
  color: #fff;
  background: var(--charcoal);
}

.final-cta {
  min-height: 560px;
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
}

.final-cta img {
  position: absolute;
  inset: 0;
}

.final-cta::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 164, 107, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(33,31,30,0.78), rgba(57,44,50,0.58));
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  text-align: center;
}

.final-cta-copy .eyebrow,
.final-cta-copy p {
  color: rgba(255,255,255,0.82);
}

.final-cta-copy .hero-actions {
  justify-content: center;
}

.image-reveal {
  clip-path: inset(0 0 12% 0);
  transition: opacity 0.72s ease, transform 0.72s ease, clip-path 0.72s ease;
}

.image-reveal.visible {
  clip-path: inset(0);
}

@keyframes slow-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@media (max-width: 1120px) {
  .home-hero,
  .brand-story,
  .why-modern,
  .technology-section,
  .results-philosophy {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 520px;
  }

  .treatment-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-card.featured {
    grid-column: span 2;
    grid-row: auto;
    min-height: 420px;
  }
}

/* Branded error pages */
.error-page {
  min-height: 62vh;
  display: grid;
  place-items: center;
  padding: clamp(72px, 10vw, 130px) 20px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(198,141,120,0.18), transparent 28%),
    linear-gradient(135deg, #fffdf9, #f5e5de);
}

.error-panel {
  width: min(720px, 100%);
}

.error-panel h1 {
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.error-panel p:not(.eyebrow) {
  max-width: 560px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.72;
}

.error-panel .hero-actions {
  justify-content: center;
}

@media (max-width: 768px) {
  .home-hero,
  .luxe-section,
  .category-showcase,
  .technology-section,
  .results-philosophy,
  .journey-section,
  .testimonials-section {
    padding: 52px 18px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 44px;
  }

  .home-hero-visual {
    min-height: auto;
    padding-top: 14px;
  }

  .organic-frame {
    position: relative;
    inset: auto;
  }

  .organic-frame img {
    min-height: 360px;
  }

  .hero-floating-card,
  .care-badge,
  .experience-badge,
  .review-card {
    position: relative;
    inset: auto;
    margin-top: 12px;
  }

  .sparkle {
    display: none;
  }

  .refined-list,
  .tech-highlights,
  .journey-line {
    grid-template-columns: 1fr;
  }

  .treatment-mosaic {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .treatment-card,
  .treatment-card.featured {
    flex: 0 0 min(86vw, 390px);
    min-height: 440px;
    scroll-snap-align: start;
  }

  .category-track {
    grid-template-columns: repeat(6, minmax(230px, 78vw));
  }

  .journey-line::before {
    left: 35px;
    right: auto;
    top: 10px;
    bottom: 10px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top;
  }

  .journey-line.visible::before {
    transform: scaleY(1);
  }

  .journey-step {
    grid-template-columns: 72px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
    column-gap: 18px;
  }

  .journey-step span {
    grid-row: span 3;
  }

  .journey-step i {
    margin-top: 0;
  }

  .journey-step h3 {
    margin-top: 6px;
  }

  .journey-step p {
    max-width: none;
  }

  .final-cta {
    min-height: 520px;
  }
}

@media (max-width: 480px) {
  .home-hero {
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr);
  }

  .home-hero-copy,
  .home-hero-copy p,
  .home-hero .hero-actions {
    width: 100%;
    max-width: min(100%, 320px);
  }

  .hero-lede {
    overflow-wrap: break-word;
  }

  .hero-title {
    max-width: 9.5ch;
    font-size: clamp(38px, 12vw, 48px);
  }

  .site-header {
    width: 100%;
  }

  .menu-toggle {
    position: absolute;
    top: 14px;
    right: auto;
    left: min(calc(100vw - 62px), 313px);
    flex: 0 0 44px;
    margin-left: auto;
  }

  .trust-strip {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .organic-frame img {
    min-height: 310px;
  }

  .story-media::before,
  .why-collage::before,
  .tech-media::after {
    display: none;
  }

  .treatment-card,
  .treatment-card.featured {
    flex-basis: 88vw;
    min-height: 390px;
  }

  .benefit-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .benefit-row > i {
    width: 42px;
    height: 42px;
  }

  .testimonial-slide {
    padding-left: 0;
    padding-right: 0;
  }
}

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

  .image-reveal {
    clip-path: none;
  }
}

/* Premium content polish */
.premium-subhero,
.service-detail-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(62px, 8vw, 118px) clamp(18px, 6vw, 86px);
  background:
    radial-gradient(circle at 88% 14%, rgba(199, 164, 107, 0.22), transparent 28%),
    linear-gradient(135deg, #fffdf9, #f4e3dc);
}

.subhero-copy p,
.service-hero-copy p {
  max-width: 720px;
  font-size: clamp(17px, 1.7vw, 21px);
}

.subhero-media,
.service-hero-media,
.category-preview-media,
.directory-media {
  position: relative;
}

.subhero-media::before,
.service-hero-media::before,
.category-preview-media::before {
  position: absolute;
  content: "";
  inset: 22px -16px -18px 28px;
  border: 1px solid rgba(184, 138, 74, 0.34);
  border-radius: 42px 8px 42px 8px;
}

.subhero-media img,
.service-hero-media img,
.directory-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: center;
  border-radius: 8px 48px 8px 48px;
  box-shadow: var(--shadow);
}

.media-badge,
.service-icon-badge {
  position: absolute;
  right: -10px;
  bottom: 26px;
  z-index: 2;
  display: grid;
  gap: 3px;
  max-width: 230px;
  padding: 15px 18px;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 18px 48px rgba(33, 31, 30, 0.12);
  font-weight: 900;
}

.media-badge span {
  color: var(--muted);
  font-size: 12px;
}

.service-icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
}

.service-icon-badge i {
  color: var(--gold);
}

.category-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
  padding: clamp(62px, 8vw, 118px) clamp(18px, 6vw, 86px);
  background:
    radial-gradient(circle at 15% 18%, rgba(196, 141, 127, 0.18), transparent 28%),
    linear-gradient(135deg, #fffdf9, #f6ece4);
}

.category-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
}

.category-preview-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 999px 999px 12px 12px;
  box-shadow: var(--shadow);
  transition: opacity 0.22s ease, transform 0.42s ease;
}

.category-editorial.is-changing .category-preview-media img {
  opacity: 0.72;
  transform: scale(0.985);
}

.category-preview-copy h2 {
  font-size: clamp(40px, 5vw, 76px);
}

.category-preview-copy p {
  max-width: 620px;
  font-size: clamp(16px, 1.4vw, 19px);
}

.category-service-tags,
.application-tags,
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-service-tags {
  margin: 24px 0 28px;
}

.category-service-tags span,
.application-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #514944;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(184, 138, 74, 0.18);
  font-weight: 800;
}

.category-selector {
  display: grid;
  gap: 10px;
}

.category-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(57, 44, 50, 0.1);
  color: #514944;
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.category-option::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width 0.24s ease;
}

.category-option i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(184, 138, 74, 0.11);
}

.category-option.active {
  color: var(--charcoal);
}

.category-option.active::after,
.category-option:hover::after {
  width: 100%;
}

.philosophy-section,
.about-offers,
.client-journey,
.services-directory,
.service-overview-section,
.service-benefits-section,
.service-applications-section,
.service-gallery-section,
.service-process-section,
.service-faq-section,
.related-treatment-section,
.service-final-cta,
.service-disclaimer {
  padding: clamp(62px, 8vw, 118px) clamp(18px, 6vw, 86px);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.philosophy-item {
  padding-top: 20px;
  border-top: 2px solid rgba(184, 138, 74, 0.28);
}

.philosophy-item i,
.service-benefit-row i,
.related-treatment-card i {
  color: var(--gold);
}

.philosophy-item h3 {
  margin-top: 16px;
}

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

.offer-editorial-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--charcoal);
}

.offer-editorial-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.offer-editorial-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(33,31,30,0.05), rgba(33,31,30,0.78));
}

.offer-editorial-card span,
.offer-editorial-card p,
.offer-editorial-card em {
  position: relative;
  z-index: 1;
  margin-left: 24px;
  margin-right: 24px;
}

.offer-editorial-card span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 260px;
  font-weight: 900;
}

.offer-editorial-card p {
  color: rgba(255,255,255,0.78);
}

.offer-editorial-card em {
  display: inline-flex;
  gap: 8px;
  color: #f4d7a6;
  font-style: normal;
  font-weight: 900;
}

.offer-editorial-card:hover img {
  transform: scale(1.06);
}

.values-dark {
  padding: clamp(62px, 8vw, 118px) clamp(18px, 6vw, 86px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(199, 164, 107, 0.18), transparent 28%),
    linear-gradient(135deg, #242124, #392c32);
}

.values-dark p,
.values-dark .eyebrow {
  color: #e8c98d;
}

.values-list span {
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  font-weight: 850;
}

.values-list i {
  margin-right: 8px;
  color: #e8c98d;
}

.services-directory {
  display: grid;
  gap: 28px;
  background: #fffdf9;
}

.service-directory-group {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
}

.service-directory-group:nth-child(even) .directory-media {
  order: 2;
}

.directory-media img {
  aspect-ratio: 4 / 3.5;
  border-radius: 8px 38px 8px 38px;
}

.directory-services {
  display: grid;
  gap: 8px;
}

.directory-service-link {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 24px;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(57,44,50,0.1);
}

.directory-service-link i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(184, 138, 74, 0.11);
}

.directory-service-link strong,
.directory-service-link small {
  display: block;
}

.directory-service-link small {
  color: var(--muted);
}

.directory-service-link em {
  color: var(--gold);
  font-style: normal;
}

.service-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #514944;
  font-size: 13px;
  font-weight: 850;
}

.service-trust-strip i {
  margin-right: 7px;
  color: var(--gold);
}

.service-overview-section,
.service-applications-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
  background: #fffdf9;
}

.service-quick-panel {
  padding: clamp(22px, 4vw, 34px);
  border-left: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(246,236,228,0.75), rgba(255,253,249,0.9));
}

.service-benefits-section {
  background: linear-gradient(135deg, #fbf7f2, #fffdf9);
}

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

.service-benefit-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(57,44,50,0.1);
}

.service-benefit-row p {
  margin: 0;
  color: #514944;
  font-weight: 780;
}

.service-gallery-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: minmax(220px, 1fr);
  gap: 16px;
  background: #fffdf9;
}

.service-gallery-item {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.service-gallery-item.large {
  grid-row: span 2;
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-process-section {
  color: #fff;
  background: linear-gradient(135deg, #242124, #392c32);
}

.service-process-section .eyebrow,
.service-process-section p {
  color: rgba(255,255,255,0.76);
}

.service-process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-process-line article {
  padding-top: 20px;
  border-top: 1px solid rgba(232,201,141,0.35);
}

.service-process-line span {
  color: #e8c98d;
  font-weight: 900;
}

.service-process-line h3 {
  margin-top: 12px;
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

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

.faq-item button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 18px 0;
  border: 0;
  color: var(--charcoal);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-item button i {
  color: var(--gold);
  transition: transform 0.22s ease;
}

.faq-item.open button i {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 0 18px;
  max-width: 780px;
}

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

.related-treatment-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 26px 0;
  border-top: 2px solid rgba(184,138,74,0.25);
}

.related-treatment-card i {
  font-size: 22px;
}

.related-treatment-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1;
}

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

.related-treatment-card em {
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.service-final-cta {
  text-align: center;
  background: linear-gradient(135deg, #f4e3dc, #fffdf9);
}

.service-final-cta p {
  max-width: 680px;
  margin-inline: auto;
}

.service-disclaimer {
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--muted);
  background: #fffdf9;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.service-disclaimer p {
  max-width: 1100px;
  margin: 0;
}

@media (max-width: 1120px) {
  .premium-subhero,
  .service-detail-hero,
  .category-editorial,
  .category-preview,
  .service-directory-group,
  .service-overview-section,
  .service-applications-section {
    grid-template-columns: 1fr;
  }

  .service-directory-group:nth-child(even) .directory-media {
    order: 0;
  }

  .philosophy-grid,
  .service-process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .premium-subhero,
  .service-detail-hero,
  .philosophy-section,
  .about-offers,
  .client-journey,
  .services-directory,
  .service-overview-section,
  .service-benefits-section,
  .service-applications-section,
  .service-gallery-section,
  .service-process-section,
  .service-faq-section,
  .related-treatment-section,
  .service-final-cta,
  .service-disclaimer,
  .category-editorial {
    padding: 52px 18px;
  }

  .premium-subhero,
  .service-detail-hero,
  .category-editorial,
  .category-preview {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100%;
    max-width: 100vw;
  }

  .subhero-copy,
  .service-hero-copy,
  .category-preview-copy,
  .subhero-media,
  .service-hero-media,
  .category-preview-media {
    min-width: 0;
    max-width: 100%;
  }

  .subhero-copy h1,
  .service-hero-copy h1,
  .category-preview-copy h2,
  .subhero-copy p,
  .service-hero-copy p,
  .category-preview-copy p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .subhero-media img,
  .service-hero-media img {
    width: 100%;
    aspect-ratio: 4 / 3.8;
  }

  .media-badge,
  .service-icon-badge {
    position: relative;
    inset: auto;
    margin-top: 12px;
  }

  .category-selector {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 10px;
  }

  .category-option {
    flex: 0 0 245px;
    scroll-snap-align: start;
  }

  .offer-editorial-grid,
  .related-treatment-grid,
  .service-benefit-list,
  .philosophy-grid,
  .service-process-line {
    grid-template-columns: 1fr;
  }

  .offer-editorial-card {
    min-height: 360px;
  }

  .offer-editorial-card span {
    margin-top: 220px;
  }

  .service-gallery-section {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-gallery-item.large {
    grid-row: auto;
  }

  .directory-service-link {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .directory-service-link em {
    display: none;
  }
}

@media (max-width: 480px) {
  .category-preview-copy h2,
  .subhero-copy h1,
  .service-hero-copy h1 {
    max-width: min(100%, 360px);
    font-size: clamp(34px, 10vw, 43px);
  }

  .subhero-copy p,
  .service-hero-copy p,
  .category-preview-copy p {
    max-width: min(100%, 350px);
  }

  .category-option {
    flex-basis: 82vw;
  }

  .application-tags,
  .category-service-tags,
  .values-list {
    display: grid;
  }

  .service-trust-strip {
    display: grid;
  }
}

/* Homepage treatment category selector refinement */
.category-editorial {
  display: block;
  padding: clamp(54px, 7vw, 96px) clamp(16px, 5vw, 56px);
  background:
    radial-gradient(circle at 8% 16%, rgba(196, 141, 127, 0.13), transparent 28%),
    linear-gradient(180deg, #fffdf9, #fbf7f2);
}

.category-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(300px, 0.32fr) minmax(300px, 0.3fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  width: min(1320px, 100%);
  min-height: clamp(620px, 48vw, 680px);
  margin-inline: auto;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(184, 138, 74, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.86), rgba(246,236,228,0.72)),
    #fffdf9;
  box-shadow: 0 30px 90px rgba(72, 45, 34, 0.12);
}

.category-shell .category-preview-media::before {
  inset: 18px -10px -14px 18px;
  z-index: 0;
  border-radius: 26px;
  border-color: rgba(199, 164, 107, 0.42);
}

.category-shell .category-preview-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(184, 138, 74, 0.18);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(57, 44, 50, 0.16);
  transition: opacity 0.24s ease, transform 0.36s ease;
}

.category-editorial.is-changing .category-preview-media img {
  opacity: 0.78;
  transform: scale(0.985);
}

.category-image-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 16px;
  color: var(--charcoal);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 44px rgba(33, 31, 30, 0.12);
  backdrop-filter: blur(12px);
}

.category-image-badge strong,
.category-image-badge span {
  display: block;
  line-height: 1.25;
}

.category-image-badge strong {
  font-weight: 900;
}

.category-image-badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.category-shell .category-preview-copy {
  align-self: center;
}

.category-shell .category-preview-copy h2 {
  max-width: 430px;
  font-size: clamp(42px, 4.2vw, 64px);
}

.category-shell .category-preview-copy h3 {
  margin-top: 28px;
  color: var(--rose-deep);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-shell .category-preview-copy p {
  max-width: 460px;
}

.category-intro {
  margin-top: 18px;
  color: #5f5651;
}

.category-shell .category-service-tags {
  margin: 22px 0 26px;
}

.category-shell .category-service-tags span {
  min-height: 36px;
  padding: 7px 12px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 10px 28px rgba(57, 44, 50, 0.06);
}

.category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.category-shell .category-selector {
  display: grid;
  gap: 10px;
  align-self: center;
}

.category-shell .category-option {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(57, 44, 50, 0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.5);
  box-shadow: none;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.category-shell .category-option::after {
  display: none;
}

.category-shell .category-option i {
  width: 42px;
  height: 42px;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.category-shell .category-option span {
  display: grid;
  gap: 2px;
}

.category-shell .category-option strong,
.category-shell .category-option small {
  display: block;
}

.category-shell .category-option strong {
  color: var(--charcoal);
  font-size: 14px;
}

.category-shell .category-option small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.category-shell .category-option em {
  color: var(--gold);
  font-style: normal;
  transition: transform 0.24s ease;
}

.category-shell .category-option:hover,
.category-shell .category-option:focus-visible,
.category-shell .category-option.active {
  transform: translateY(-2px);
  border-color: rgba(184, 138, 74, 0.34);
  background: linear-gradient(135deg, rgba(255,250,246,0.96), rgba(246,236,228,0.9));
  box-shadow: 0 16px 38px rgba(72, 45, 34, 0.1);
}

.category-shell .category-option:hover em,
.category-shell .category-option.active em {
  transform: translateX(4px);
}

.category-shell .category-option:hover i,
.category-shell .category-option.active i {
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  transform: scale(1.04);
}

@media (max-width: 1180px) {
  .category-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: auto;
  }

  .category-shell .category-selector {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-shell .category-preview-media img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .category-editorial {
    padding: 38px 18px;
  }

  .category-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border-radius: 22px;
  }

  .category-shell .category-preview-copy {
    order: 1;
  }

  .category-shell .category-preview-media {
    order: 2;
  }

  .category-shell .category-selector {
    order: 3;
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .category-shell .category-preview-media img {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .category-shell .category-preview-copy h2 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 48px);
  }

  .category-shell .category-option {
    flex: 0 0 min(82vw, 310px);
    min-height: 76px;
    scroll-snap-align: start;
  }

  .category-actions .btn,
  .category-actions .text-link {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .category-editorial {
    padding: 28px 12px;
  }

  .category-shell {
    padding: 16px;
  }

  .category-shell .category-preview-media img {
    aspect-ratio: 4 / 3;
  }

  .category-image-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
  }

  .category-shell .category-service-tags {
    display: flex;
  }
}

/* About page professional redesign */
.about-page {
  --about-ivory: #fbf7f2;
  --about-white: #fffdf9;
  --about-blush: #ead2c5;
  --about-gold: #c7a46b;
  --about-plum: #392c32;
  --about-charcoal: #242124;
  --about-muted: #746b68;
  background: var(--about-white);
  overflow-x: clip;
}

.about-container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.about-hero-v2 {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(58px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(196, 141, 127, 0.13), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(199, 164, 107, 0.16), transparent 24%),
    linear-gradient(135deg, #fffdf9, #f4e3dc);
}

.about-hero-v2::before {
  position: absolute;
  content: "";
  right: clamp(24px, 7vw, 120px);
  top: 120px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(199, 164, 107, 0.38);
  border-radius: 50%;
  z-index: -1;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.about-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 670px;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75;
}

.about-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 26px;
  color: #514944;
  font-size: 14px;
  font-weight: 850;
}

.about-trust-points i {
  margin-right: 7px;
  color: var(--gold);
}

.about-hero-media {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: end;
}

.about-hero-media::before {
  position: absolute;
  content: "";
  inset: 22px -18px -18px 22px;
  border: 1px solid rgba(199, 164, 107, 0.38);
  border-radius: 36px;
}

.about-hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(57, 44, 50, 0.16);
}

.about-image-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px 10px;
  max-width: 190px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 14px;
  background: rgba(255,253,249,0.9);
  box-shadow: 0 18px 44px rgba(33,31,30,0.12);
}

.about-image-badge i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
}

.about-image-badge strong {
  line-height: 1.15;
}

.about-image-badge span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.about-story-v2,
.about-approach-v2,
.about-offers-v2,
.about-journey-v2 {
  padding: clamp(88px, 9vw, 130px) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.about-story-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 500px;
  object-fit: cover;
  object-position: 54% 45%;
  border-radius: 28px;
  box-shadow: 0 22px 62px rgba(57,44,50,0.13);
}

.about-story-copy h2,
.about-section-copy h2,
.about-section-heading h2,
.about-values-copy h2,
.about-final-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.about-story-copy p,
.about-section-copy p,
.about-section-heading p,
.about-values-copy p,
.about-final-copy p {
  max-width: 700px;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.75;
}

.about-story-copy blockquote {
  margin: 26px 0 20px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--about-plum);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.12;
}

.about-support-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.about-support-points span {
  color: #514944;
  font-weight: 850;
}

.about-support-points i {
  margin-right: 8px;
  color: var(--gold);
}

.about-approach-v2 {
  background: linear-gradient(135deg, #fbf7f2, #fffdf9);
}

.about-approach-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}

.about-approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 28px;
}

.about-approach-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(57,44,50,0.12);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.about-approach-item:hover {
  transform: translateY(-3px);
  border-color: rgba(184,138,74,0.42);
}

.about-approach-item > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(184,138,74,0.11);
}

.about-approach-item h3 {
  font-size: 25px;
}

.about-approach-item p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.68;
}

.about-section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.about-offer-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 18px 48px rgba(57,44,50,0.12);
}

.about-offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.about-offer-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(33,31,30,0.02) 20%, rgba(33,31,30,0.78) 100%);
}

.about-offer-card .about-offer-icon,
.about-offer-card div {
  position: relative;
  z-index: 1;
}

.about-offer-icon {
  position: absolute !important;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(199, 164, 107, 0.82);
}

.about-offer-card div {
  display: grid;
  align-content: end;
  min-height: 330px;
  padding: 24px;
}

.about-offer-card h3 {
  color: #fff;
}

.about-offer-card p {
  margin: 8px 0 12px;
  color: rgba(255,255,255,0.8);
}

.about-offer-card em {
  color: #f4d7a6;
  font-style: normal;
  font-weight: 900;
}

.about-offer-card:hover img {
  transform: scale(1.06);
}

.about-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-timeline::before {
  position: absolute;
  content: "";
  left: 6%;
  right: 6%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.about-timeline.visible::before {
  transform: scaleX(1);
}

.about-timeline-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 12px;
  padding-top: 4px;
}

.about-timeline-step span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 8px solid #fffdf9;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 14px 34px rgba(184,138,74,0.22);
  font-weight: 900;
}

.about-timeline-step > i {
  color: var(--gold);
  font-size: 22px;
}

.about-timeline-step h3 {
  font-size: 28px;
}

.about-timeline-step p {
  margin: 0;
  font-size: 16px;
}

.about-values-v2 {
  padding: clamp(80px, 9vw, 124px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 14%, rgba(199, 164, 107, 0.18), transparent 26%),
    linear-gradient(135deg, #242124, #392c32);
}

.about-values-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.about-values-v2 .eyebrow {
  color: #e8c98d;
}

.about-values-copy p {
  color: rgba(255,255,255,0.76);
}

.about-values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 22px;
}

.about-values-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-weight: 850;
}

.about-values-list i {
  color: #e8c98d;
}

.about-final-cta {
  position: relative;
  min-height: clamp(420px, 36vw, 480px);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.about-final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
}

.about-final-cta::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, rgba(33,31,30,0.82), rgba(57,44,50,0.58));
}

.about-final-copy {
  position: relative;
  z-index: 1;
  width: min(700px, calc(100% - 40px));
  text-align: center;
}

.about-final-copy .eyebrow,
.about-final-copy p {
  color: rgba(255,255,255,0.82);
}

.about-final-copy .hero-actions {
  justify-content: center;
}

@media (max-width: 1024px) {
  .about-hero-grid,
  .about-story-grid,
  .about-approach-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-media {
    justify-self: start;
    max-width: 560px;
  }

  .about-offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-timeline::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .about-container {
    width: min(100% - 36px, 1280px);
  }

  .about-page h1,
  .about-page h2,
  .about-page h3,
  .about-page p,
  .about-page a,
  .about-page span {
    overflow-wrap: anywhere;
  }

  .about-hero-v2 {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .about-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
    max-width: 100%;
  }

  .about-hero-copy p:not(.eyebrow) {
    max-width: 100%;
  }

  .about-trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-hero-media {
    max-width: 100%;
  }

  .about-hero-media::before {
    inset: 14px 10px -14px 14px;
  }

  .about-hero-media img {
    max-height: 460px;
    aspect-ratio: 4 / 4.5;
    border-radius: 24px;
  }

  .about-image-badge {
    left: 14px;
    bottom: 14px;
    max-width: min(220px, calc(100% - 28px));
  }

  .about-story-v2,
  .about-approach-v2,
  .about-offers-v2,
  .about-journey-v2 {
    padding: 68px 0;
  }

  .about-story-media {
    order: 0;
  }

  .about-approach-list,
  .about-offer-grid,
  .about-values-list,
  .about-timeline {
    grid-template-columns: 1fr;
  }

  .about-offer-card,
  .about-offer-card div {
    min-height: 300px;
  }

  .about-timeline {
    position: relative;
    gap: 22px;
  }

  .about-timeline::after {
    position: absolute;
    content: "";
    left: 34px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--rose), var(--gold));
  }

  .about-timeline-step {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 8px 16px;
  }

  .about-timeline-step span {
    grid-row: span 3;
  }

  .about-timeline-step > i {
    margin-top: 6px;
  }

  .about-final-cta {
    min-height: 430px;
  }

  .about-final-copy .hero-actions,
  .about-hero-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Premium individual service pages */
.service-page-v2 {
  --service-ivory: #fbf7f2;
  --service-white: #fffdf9;
  --service-blush: #ead2c5;
  --service-gold: #c7a46b;
  --service-rose: #c68d78;
  --service-plum: #392c32;
  --service-charcoal: #242124;
  --service-muted: #746b68;
  --service-line: rgba(57, 44, 50, 0.12);
  background: var(--service-white);
  overflow-x: clip;
}

.service-container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.service-hero-v2 {
  position: relative;
  isolation: isolate;
  min-height: clamp(620px, 72vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(60px, 7vw, 92px) 0;
  background:
    radial-gradient(circle at 12% 16%, rgba(198, 141, 120, 0.14), transparent 28%),
    radial-gradient(circle at 86% 15%, rgba(199, 164, 107, 0.16), transparent 26%),
    linear-gradient(135deg, #fffdf9, #f5e5de);
}

.service-hero-v2::before {
  position: absolute;
  content: "";
  right: clamp(22px, 7vw, 118px);
  top: 120px;
  width: 98px;
  height: 98px;
  border: 1px solid rgba(199, 164, 107, 0.38);
  border-radius: 999px;
  z-index: -1;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.service-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.service-hero-copy p:not(.eyebrow) {
  max-width: 710px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.78;
}

.service-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 26px;
  color: #514944;
  font-size: 14px;
  font-weight: 850;
}

.service-trust-points i {
  margin-right: 7px;
  color: var(--gold);
}

.service-hero-media-v2,
.service-areas-media,
.service-experience-large,
.service-philosophy-media {
  position: relative;
}

.service-hero-media-v2 {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.service-hero-media-v2::before {
  position: absolute;
  content: "";
  inset: 22px -18px -18px 22px;
  border: 1px solid rgba(199, 164, 107, 0.36);
  border-radius: 38px;
}

.service-hero-media-v2 img,
.service-areas-media img,
.service-experience-large img,
.service-philosophy-media img {
  position: relative;
  width: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 70px rgba(57, 44, 50, 0.15);
}

.service-hero-media-v2 img {
  aspect-ratio: 4 / 5;
  max-height: 570px;
  border-radius: 34px;
}

.service-floating-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 6px 10px;
  width: min(245px, calc(100% - 44px));
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 15px;
  background: rgba(255,253,249,0.92);
  box-shadow: 0 18px 46px rgba(33,31,30,0.14);
}

.service-floating-badge i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
}

.service-floating-badge strong {
  line-height: 1.1;
}

.service-floating-badge span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.service-quick-strip {
  border-block: 1px solid var(--service-line);
  background: rgba(255,253,249,0.86);
}

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

.service-quick-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 104px;
  padding: 22px clamp(12px, 2vw, 24px);
  border-right: 1px solid var(--service-line);
}

.service-quick-item:last-child {
  border-right: 0;
}

.service-quick-item i {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(199, 164, 107, 0.12);
}

.service-quick-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-quick-item strong {
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.3;
}

.service-intro-v2,
.service-benefits-v2,
.service-areas-v2,
.service-experience-v2,
.service-philosophy-v2,
.service-faq-v2,
.related-treatment-v2 {
  padding: clamp(82px, 8.5vw, 124px) 0;
}

.service-intro-grid,
.service-editorial-grid,
.service-areas-grid,
.service-experience-grid,
.service-philosophy-grid,
.service-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(320px, 0.45fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: center;
}

.service-section-copy h2,
.service-section-heading h2,
.service-final-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.service-section-copy p,
.service-section-heading p,
.service-final-copy p {
  max-width: 720px;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.76;
}

.service-highlight-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(199, 164, 107, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(199, 164, 107, 0.2), transparent 24%),
    linear-gradient(135deg, #fff7f1, #f7e6dc);
}

.service-highlight-panel > i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
}

.service-highlight-panel h3 {
  margin-bottom: 18px;
  font-size: 30px;
}

.service-highlight-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-highlight-panel li {
  position: relative;
  padding-left: 24px;
  color: #514944;
  font-weight: 750;
  line-height: 1.45;
}

.service-highlight-panel li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.service-benefits-v2,
.service-experience-v2 {
  background: var(--service-ivory);
}

.service-benefit-list-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

.service-benefit-item {
  display: grid;
  grid-template-columns: 44px 38px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 104px;
  padding: 22px 0;
  border-bottom: 1px solid var(--service-line);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-benefit-item:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 164, 107, 0.34);
}

.service-benefit-item span {
  color: rgba(57,44,50,0.35);
  font-weight: 900;
}

.service-benefit-item i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(199, 164, 107, 0.12);
  transition: transform 0.22s ease;
}

.service-benefit-item:hover i {
  transform: rotate(-8deg) scale(1.06);
}

.service-benefit-item p {
  margin: 0;
  color: #514944;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 760;
}

.service-areas-grid {
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.52fr);
}

.service-areas-media img {
  aspect-ratio: 5 / 4;
  max-height: 500px;
  border-radius: 30px;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-area-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(199, 164, 107, 0.22);
  border-radius: 999px;
  color: #514944;
  background: #fff;
  font-weight: 850;
}

.service-area-list i {
  color: var(--gold);
  font-size: 12px;
}

.service-experience-grid {
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 0.45fr);
}

.service-experience-large img {
  aspect-ratio: 16 / 11;
  max-height: 520px;
  border-radius: 28px;
}

.service-experience-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.service-experience-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #514944;
  font-weight: 850;
}

.service-experience-points i {
  color: var(--gold);
}

.service-process-v2 {
  padding: clamp(86px, 9vw, 132px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(199, 164, 107, 0.18), transparent 28%),
    linear-gradient(135deg, #242124, #392c32);
}

.service-process-v2 .eyebrow {
  color: #e8c98d;
}

.service-section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-process-line-v2 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-process-line-v2::before {
  position: absolute;
  content: "";
  left: 6%;
  right: 6%;
  top: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
}

.service-process-line-v2.visible::before {
  transform: scaleX(1);
}

.service-process-line-v2 article {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.service-process-line-v2 span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 8px solid #332930;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
  font-weight: 900;
}

.service-process-line-v2 i {
  color: #e8c98d;
  font-size: 21px;
}

.service-process-line-v2 h3 {
  color: #fff;
  font-size: 26px;
}

.service-process-line-v2 p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 16px;
  line-height: 1.62;
}

.service-philosophy-grid {
  grid-template-columns: minmax(0, 0.5fr) minmax(320px, 0.5fr);
}

.service-section-copy blockquote {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  color: var(--plum);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.14;
}

.service-philosophy-media img {
  aspect-ratio: 5 / 4;
  max-height: 500px;
  border-radius: 999px 999px 28px 28px;
}

.service-faq-v2 {
  background: var(--service-ivory);
}

.service-faq-grid {
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
}

.service-faq-v2 .faq-list {
  display: grid;
  gap: 12px;
}

.service-faq-v2 .faq-item {
  border: 1px solid rgba(57,44,50,0.1);
  border-radius: 16px;
  background: #fffdf9;
  overflow: hidden;
}

.service-faq-v2 .faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  color: var(--charcoal);
  background: transparent;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.service-faq-v2 .faq-item button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -4px;
}

.service-faq-v2 .faq-item button i {
  color: var(--gold);
}

.service-faq-v2 .faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.service-faq-v2 .faq-panel p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.related-treatment-card-v2 {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background: var(--plum);
  box-shadow: 0 20px 60px rgba(57,44,50,0.12);
}

.related-treatment-card-v2 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.related-treatment-card-v2::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(36,33,36,0.08), rgba(36,33,36,0.82));
}

.related-treatment-card-v2 div {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: grid;
  gap: 9px;
  padding: 24px;
}

.related-treatment-card-v2 span {
  color: #e8c98d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-treatment-card-v2 strong {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1;
}

.related-treatment-card-v2 p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.related-treatment-card-v2 em {
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.related-treatment-card-v2:hover img {
  transform: scale(1.06);
}

.service-final-cta-v2 {
  padding: clamp(88px, 10vw, 130px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(198, 141, 120, 0.18), transparent 28%),
    linear-gradient(135deg, #f5e5de, #fffdf9);
}

.service-final-copy {
  max-width: 790px;
  margin-inline: auto;
}

.service-final-copy .hero-actions {
  justify-content: center;
}

.service-disclaimer-v2 {
  padding: 24px 0;
  color: var(--muted);
  background: #fffdf9;
  border-top: 1px solid var(--service-line);
}

.service-disclaimer-v2 p {
  max-width: 1120px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .service-hero-grid,
  .service-intro-grid,
  .service-editorial-grid,
  .service-areas-grid,
  .service-experience-grid,
  .service-philosophy-grid,
  .service-faq-grid {
    grid-template-columns: 1fr;
  }

  .service-hero-media-v2 {
    justify-self: start;
    max-width: 560px;
  }

  .service-quick-grid,
  .service-process-line-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-quick-item:nth-child(2) {
    border-right: 0;
  }

  .service-process-line-v2::before {
    display: none;
  }

  .related-treatment-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .service-container {
    width: min(100% - 36px, 1280px);
  }

  .service-page-v2 h1,
  .service-page-v2 h2,
  .service-page-v2 h3,
  .service-page-v2 p,
  .service-page-v2 a,
  .service-page-v2 span {
    overflow-wrap: anywhere;
  }

  .service-hero-v2 {
    min-height: auto;
    padding: 62px 0 70px;
  }

  .service-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.5vw, 52px);
    line-height: 1.02;
  }

  .service-hero-copy p:not(.eyebrow) {
    max-width: 100%;
  }

  .service-hero-copy .hero-actions,
  .service-final-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-trust-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-hero-media-v2 {
    max-width: 100%;
  }

  .service-hero-media-v2::before {
    inset: 14px 10px -14px 14px;
  }

  .service-hero-media-v2 img {
    max-height: 460px;
    border-radius: 24px;
  }

  .service-floating-badge {
    left: 14px;
    bottom: 14px;
    width: min(235px, calc(100% - 28px));
  }

  .service-quick-grid,
  .service-benefit-list-v2,
  .service-process-line-v2,
  .related-treatment-grid-v2 {
    grid-template-columns: 1fr;
  }

  .service-quick-item {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--service-line);
  }

  .service-quick-item:last-child {
    border-bottom: 0;
  }

  .service-intro-v2,
  .service-benefits-v2,
  .service-areas-v2,
  .service-experience-v2,
  .service-philosophy-v2,
  .service-faq-v2,
  .related-treatment-v2,
  .service-process-v2,
  .service-final-cta-v2 {
    padding: 68px 0;
  }

  .service-benefit-item {
    grid-template-columns: 40px 34px minmax(0, 1fr);
  }

  .service-areas-media img,
  .service-experience-large img,
  .service-philosophy-media img {
    max-height: 430px;
    border-radius: 24px;
  }

  .service-process-line-v2 {
    position: relative;
    gap: 22px;
  }

  .service-process-line-v2::after {
    position: absolute;
    content: "";
    left: 36px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--rose), var(--gold));
  }

  .service-process-line-v2 article {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 8px 16px;
  }

  .service-process-line-v2 span {
    grid-row: span 3;
  }

  .related-treatment-card-v2 {
    min-height: 360px;
  }
}

/* Services directory redesign */
.services-page-v2 {
  background: var(--warm-white);
  overflow-x: clip;
}

.services-container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.services-hero-v2 {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 141, 120, 0.13), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(199, 164, 107, 0.16), transparent 24%),
    linear-gradient(135deg, #fffdf9, #f4e3dc);
}

.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
}

.services-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.services-hero-copy p:not(.eyebrow) {
  max-width: 710px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.76;
}

.services-hero-media {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: end;
}

.services-hero-media::before {
  position: absolute;
  content: "";
  inset: 20px -16px -16px 20px;
  border: 1px solid rgba(199, 164, 107, 0.36);
  border-radius: 36px;
}

.services-hero-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(57, 44, 50, 0.15);
}

.services-hero-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 6px 10px;
  width: min(260px, calc(100% - 44px));
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 15px;
  background: rgba(255,253,249,0.92);
  box-shadow: 0 18px 46px rgba(33,31,30,0.14);
}

.services-hero-badge i {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--gold));
}

.services-hero-badge strong {
  line-height: 1.1;
}

.services-hero-badge span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.services-category-nav {
  position: sticky;
  top: 84px;
  z-index: 20;
  border-block: 1px solid rgba(57, 44, 50, 0.1);
  background: rgba(255,253,249,0.92);
  backdrop-filter: blur(14px);
}

.services-category-scroll {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.services-category-scroll::-webkit-scrollbar {
  display: none;
}

.services-category-scroll a {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  color: #514944;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.services-category-scroll a:hover,
.services-category-scroll a:focus-visible {
  color: var(--charcoal);
  background: rgba(199, 164, 107, 0.13);
}

.services-featured-v2,
.services-complete-v2 {
  padding: clamp(76px, 8vw, 116px) 0;
}

.services-featured-v2 {
  background: #fffdf9;
}

.services-section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.services-section-heading h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.3rem);
}

.services-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.featured-service-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 24px;
  color: #fff;
  background: var(--plum);
  box-shadow: 0 18px 54px rgba(57,44,50,0.12);
}

.featured-service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.featured-service-card::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(36,33,36,0.04), rgba(36,33,36,0.84));
}

.featured-service-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 9px;
  padding: 22px;
}

.featured-service-card span,
.related-treatment-card-v2 span {
  color: #e8c98d;
}

.featured-service-card span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-service-card strong {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1;
}

.featured-service-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
}

.featured-service-card em {
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.featured-service-card:hover img {
  transform: scale(1.06);
}

.services-complete-v2 {
  background: var(--warm);
}

.services-category-groups {
  display: grid;
  gap: 26px;
}

.services-category-block {
  scroll-margin-top: 150px;
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(57,44,50,0.09);
  border-radius: 28px;
  background: rgba(255,253,249,0.76);
}

.services-category-block:nth-child(even) {
  background: rgba(255,255,255,0.92);
}

.services-category-block figure {
  margin: 0;
}

.services-category-block img {
  width: 100%;
  aspect-ratio: 5 / 4;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(57,44,50,0.11);
}

.services-category-copy h3 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.services-category-copy > p:not(.eyebrow) {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.72;
}

.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-mini-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-height: 136px;
  padding: 18px;
  border: 1px solid rgba(57,44,50,0.09);
  border-radius: 18px;
  color: var(--charcoal);
  background: #fffdf9;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199,164,107,0.32);
  box-shadow: 0 14px 40px rgba(57,44,50,0.09);
}

.service-mini-card > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(199,164,107,0.12);
}

.service-mini-card span {
  display: grid;
  gap: 6px;
}

.service-mini-card strong {
  font-size: 18px;
}

.service-mini-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.service-mini-card em {
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.services-final-cta {
  padding: clamp(72px, 8vw, 106px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 16% 22%, rgba(198,141,120,0.18), transparent 26%),
    linear-gradient(135deg, #f5e5de, #fffdf9);
}

.services-final-copy {
  max-width: 760px;
  margin-inline: auto;
}

.services-final-copy h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
}

.services-final-copy p {
  max-width: 680px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.72;
}

.services-final-copy .hero-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .services-hero-grid,
  .services-category-block {
    grid-template-columns: 1fr;
  }

  .services-hero-media {
    justify-self: start;
  }

  .services-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .services-container {
    width: min(100% - 64px, 1280px);
  }

  .services-page-v2 h1,
  .services-page-v2 h2,
  .services-page-v2 h3,
  .services-page-v2 p,
  .services-page-v2 a,
  .services-page-v2 span {
    overflow-wrap: anywhere;
  }

  .services-hero-v2 {
    padding: 62px 0 70px;
  }

  .services-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 9.5vw, 46px);
    line-height: 1.04;
  }

  .services-hero-copy,
  .services-hero-copy p:not(.eyebrow) {
    min-width: 0;
    max-width: 100%;
  }

  .services-hero-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.68;
    max-width: 340px;
  }

  .services-hero-copy .hero-actions,
  .services-final-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-hero-media {
    max-width: 100%;
  }

  .services-hero-media::before {
    inset: 14px 10px -14px 14px;
  }

  .services-hero-media img {
    max-height: 460px;
    border-radius: 24px;
  }

  .services-category-nav {
    top: 72px;
  }

  .services-category-scroll {
    justify-content: flex-start;
    width: min(100% - 20px, 1280px);
  }

  .services-featured-v2,
  .services-complete-v2,
  .services-final-cta {
    padding: 66px 0;
  }

  .services-featured-grid,
  .services-mini-grid {
    grid-template-columns: 1fr;
  }

  .featured-service-card {
    min-height: 360px;
  }

  .services-category-block {
    padding: 18px;
    border-radius: 22px;
  }

  .services-category-block img {
    max-height: 360px;
    border-radius: 20px;
  }
}
