:root {
  --teal-950: #4f5e4b;
  --teal-900: #6f7d64;
  --teal-800: #879476;
  --teal-700: #aeb89f;
  --sage: #d8dece;
  --ivory: #fbf6ec;
  --cream: #f4eadc;
  --linen: #dfcfba;
  --skin: #dfcfba;
  --gold: #a67d46;
  --gold-soft: #d9bd87;
  --burgundy: #8a2830;
  --ink: #343c32;
  --muted: #737969;
  --white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(79, 94, 75, 0.11);
  --shadow-card: 0 18px 48px rgba(79, 94, 75, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(223, 207, 186, 0.28), transparent 24rem),
    radial-gradient(circle at 90% 18%, rgba(111, 125, 100, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--ivory), #f4eadc 42%, var(--ivory));
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--ivory);
  background: var(--teal-800);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--teal-900);
  color: var(--ivory);
  padding: 10px 16px;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.symbol-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-dark {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 12%, rgba(166, 125, 70, 0.14), transparent 24rem),
    radial-gradient(circle at 10% 76%, rgba(111, 125, 100, 0.2), transparent 28rem),
    linear-gradient(135deg, rgba(251, 246, 236, 0.98), rgba(244, 234, 220, 0.94));
}

.site-header {
  position: fixed;
  inset: 14px 14px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 28px));
  margin-inline: auto;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(111, 125, 100, 0.12);
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.84);
  box-shadow: 0 16px 48px rgba(79, 94, 75, 0.1);
  backdrop-filter: blur(22px);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 246, 236, 0.96);
  box-shadow: 0 18px 54px rgba(79, 94, 75, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    inset 0 0 0 1px rgba(217, 189, 135, 0.28),
    0 10px 24px rgba(79, 94, 75, 0.16);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  color: var(--teal-950);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.2;
}

.main-nav {
  position: fixed;
  inset: 82px 14px auto;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(79, 94, 75, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(251, 246, 236, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  border-radius: 999px;
  color: var(--teal-950);
  font-size: 0.94rem;
  padding: 12px 14px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(79, 94, 75, 0.08);
  outline: none;
}

.nav-cta {
  color: var(--ivory) !important;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(232, 214, 173, 0.25);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--teal-950);
  background: rgba(79, 94, 75, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(42deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-42deg);
}

.hero {
  min-height: 100svh;
  padding: 122px 0 76px;
  overflow: hidden;
}

.hero::after,
.protocols-section::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 72px;
  background: var(--ivory);
  clip-path: ellipse(66% 100% at 50% 100%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.7;
}

.orb-one {
  width: 260px;
  height: 260px;
  right: -90px;
  top: 16%;
  background: radial-gradient(circle, rgba(166, 125, 70, 0.26), transparent 68%);
  animation: floatSlow 12s ease-in-out infinite;
}

.orb-two {
  width: 210px;
  height: 210px;
  left: -70px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(159, 182, 164, 0.22), transparent 68%);
  animation: floatSlow 14s ease-in-out infinite reverse;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 38px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--gold);
}

.rating-pill,
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(166, 125, 70, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--teal-950);
  padding: 9px 13px;
  font-size: 0.88rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rating-pill span,
.review-badge span,
.testimonial-card > span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--teal-950);
  font-family: inherit;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--ink);
}

h1 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(3rem, 7vw, 5.05rem);
  font-weight: 720;
}

h2 {
  font-size: clamp(2.1rem, 5.8vw, 4.25rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-lead {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 3vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--teal-900), var(--teal-800));
  box-shadow: 0 14px 34px rgba(111, 125, 100, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 40px rgba(111, 125, 100, 0.28);
}

.button-ghost {
  border: 1px solid rgba(111, 125, 100, 0.22);
  color: var(--teal-950);
  background: rgba(255, 255, 255, 0.54);
}

.button-ghost.dark {
  border-color: rgba(79, 94, 75, 0.18);
  color: var(--teal-950);
  background: rgba(255, 255, 255, 0.42);
}

.microcopy {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(251, 246, 236, 0.72);
  font-size: 0.95rem;
}

.hero-media {
  min-width: 0;
}

.video-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(166, 125, 70, 0.2);
  border-radius: clamp(28px, 5vw, 46px);
  background: var(--sage);
  box-shadow: 0 34px 82px rgba(79, 94, 75, 0.18);
  cursor: pointer;
}

.video-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 16px;
  border: 1px solid rgba(251, 246, 236, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(47, 59, 55, 0.02), rgba(47, 59, 55, 0.22)),
    radial-gradient(circle at 20% 20%, rgba(217, 189, 135, 0.2), transparent 46%);
}

.video-card {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  left: 18px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background: rgba(47, 59, 55, 0.52);
  padding: 16px;
  color: var(--ivory);
  backdrop-filter: blur(16px);
}

.video-frame:focus-visible {
  outline: 3px solid rgba(217, 189, 135, 0.7);
  outline-offset: 5px;
}

.video-hint {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ivory);
  padding: 0;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  transform: translateX(-50%);
  transition:
    opacity 0.2s ease;
}

.sound-icon {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--gold-soft);
}

.sound-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.55;
}

.video-frame:hover .video-hint,
.video-frame:focus-visible .video-hint {
  opacity: 0.82;
}

.video-frame.is-sound-on .sound-icon {
  box-shadow:
    inset 0 0 0 2px var(--gold-soft),
    0 0 0 5px rgba(217, 189, 135, 0.16);
}

.video-card span {
  color: var(--gold-soft);
  letter-spacing: 0.08em;
}

.video-card small {
  color: rgba(251, 246, 236, 0.72);
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -30px;
}

.trust-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(79, 94, 75, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(79, 94, 75, 0.1);
  box-shadow: var(--shadow-soft);
}

.trust-grid div {
  display: grid;
  gap: 2px;
  background: rgba(251, 246, 236, 0.94);
  padding: 20px;
}

.trust-grid strong {
  color: var(--teal-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.split-layout,
.intro-editorial,
.chooser-grid,
.faq-grid,
.testimonials-head,
.location-panel {
  display: grid;
  gap: 34px;
}

.section-heading p:not(.eyebrow),
.intro-copy,
.about-copy p,
.protocols-intro p,
.large-text,
.testimonials-head p,
.location-panel p,
.final-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(79, 94, 75, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(251, 246, 236, 0.52)),
    rgba(255, 255, 255, 0.64);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 24px 70px rgba(79, 94, 75, 0.08);
}

.intro-copy p {
  margin: 0;
}

.need-list {
  display: grid;
  gap: 10px;
}

.need-list span {
  position: relative;
  border: 1px solid rgba(79, 94, 75, 0.08);
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.84);
  color: var(--teal-900);
  padding: 12px 16px 12px 38px;
  font-weight: 780;
}

.need-list span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.concern-cards {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.concern-card,
.service-card,
.difference-card,
.testimonial-card,
.protocol-card {
  border: 1px solid rgba(79, 94, 75, 0.09);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-card);
}

.concern-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  padding: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(166, 125, 70, 0.12), transparent 9rem),
    rgba(255, 255, 255, 0.7);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.concern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(79, 94, 75, 0.14);
}

.concern-card span,
.difference-card span,
.protocol-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.concern-card h3 {
  margin-top: 34px;
  max-width: 18rem;
}

.concern-card p,
.service-card p,
.difference-card p,
.protocol-card p,
.testimonial-card blockquote {
  color: var(--muted);
}

.about-section {
  background:
    linear-gradient(180deg, rgba(244, 235, 220, 0.4), rgba(251, 246, 236, 0.5)),
    var(--cream);
  overflow: hidden;
}

.about-section::before,
.difference-section::before {
  content: "";
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border: 1px solid rgba(166, 125, 70, 0.18);
  border-radius: 44% 56% 52% 48% / 45% 38% 62% 55%;
  pointer-events: none;
}

.about-section::before {
  right: -180px;
  top: 80px;
}

.about-grid {
  display: grid;
  gap: 36px;
  align-items: center;
}

.portrait-wrap {
  position: relative;
}

.portrait-wrap img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: 50% 32%;
  border-radius: clamp(28px, 7vw, 58px);
  box-shadow: 0 34px 80px rgba(79, 94, 75, 0.18);
}

.portrait-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  background: rgba(251, 246, 236, 0.86);
  padding: 16px;
  backdrop-filter: blur(14px);
}

.portrait-note strong {
  color: var(--teal-950);
}

.portrait-note span {
  color: var(--muted);
}

.highlight-grid {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.highlight-grid span {
  border: 1px solid rgba(79, 94, 75, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--teal-900);
  padding: 12px 16px;
  font-weight: 750;
}

.advanced-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(166, 125, 70, 0.14), transparent 22rem),
    linear-gradient(180deg, rgba(251, 246, 236, 0.88), rgba(223, 207, 186, 0.34));
}

.advanced-layout,
.laser-detail-grid {
  display: grid;
  gap: 34px;
}

.advanced-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.advanced-copy p:not(.eyebrow),
.advanced-copy small {
  max-width: 610px;
  color: var(--muted);
}

.advanced-copy small,
.protocol-note {
  display: block;
  border-left: 2px solid var(--gold);
  color: var(--teal-900);
  font-size: 0.84rem;
  line-height: 1.5;
  padding-left: 12px;
}

.advanced-visual {
  position: relative;
  display: grid;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(111, 125, 100, 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 75% 20%, rgba(166, 125, 70, 0.2), transparent 10rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(223, 207, 186, 0.45));
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.advanced-lines span,
.advanced-lines i {
  position: absolute;
  display: block;
}

.advanced-lines span {
  left: 10%;
  right: 10%;
  height: 80px;
  border: 1.5px solid rgba(79, 94, 75, 0.28);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.advanced-lines span:nth-child(1) { top: 54px; }
.advanced-lines span:nth-child(2) { top: 103px; left: 17%; right: 17%; border-color: rgba(111, 125, 100, 0.32); }
.advanced-lines span:nth-child(3) { top: 150px; left: 25%; right: 25%; border-color: rgba(166, 125, 70, 0.42); }

.advanced-lines i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(166, 125, 70, 0.1);
}

.advanced-lines i:nth-of-type(1) { left: 29%; top: 135px; }
.advanced-lines i:nth-of-type(2) { left: 52%; top: 183px; }
.advanced-lines i:nth-of-type(3) { left: 70%; top: 113px; }

.advanced-concepts {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  gap: 10px;
}

.advanced-concepts article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  border-top: 1px solid rgba(111, 125, 100, 0.16);
  padding-top: 12px;
}

.advanced-concepts span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}

.advanced-concepts strong { color: var(--teal-950); }
.advanced-concepts p { grid-column: 2; margin: 3px 0 0; color: var(--muted); font-size: 0.84rem; }

.chooser-section {
  padding-bottom: 34px;
}

.concern-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.chip {
  border: 1px solid rgba(79, 94, 75, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--teal-950);
  cursor: pointer;
  padding: 12px 15px;
  font-weight: 800;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.chip:hover,
.chip:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.chip.is-active {
  color: var(--ivory);
  background: var(--teal-900);
}

.treatments-section {
  padding-top: 50px;
}

.centered {
  max-width: 760px;
  text-align: center;
}

.service-grid {
  display: grid;
  gap: 16px;
  align-items: start;
  margin-top: 42px;
}

.service-card {
  display: grid;
  min-height: 0;
  align-self: start;
  border-radius: 22px;
  padding: 20px;
  background:
    radial-gradient(circle at 90% 8%, rgba(166, 125, 70, 0.08), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 246, 236, 0.76)),
    var(--white);
  overflow: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.service-card:hover,
.service-card.is-highlighted {
  border-color: rgba(166, 125, 70, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(79, 94, 75, 0.13);
}

.service-card.is-dimmed {
  opacity: 0.34;
}

.service-card-feature {
  background:
    radial-gradient(circle at 88% 14%, rgba(217, 189, 135, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(79, 94, 75, 0.98), rgba(21, 95, 85, 0.96)),
    var(--teal-900);
}

.service-card-feature h3,
.service-card-feature .price,
.service-card-feature a,
.service-card-feature summary {
  color: var(--ivory);
}

.service-card-feature p,
.service-card-feature dd,
.service-card-feature .service-details {
  color: rgba(251, 246, 236, 0.84);
}

.service-card.service-card-feature p {
  color: rgba(251, 246, 236, 0.88);
}

.service-card.service-card-feature a {
  color: var(--ivory);
}

.service-card.service-card-feature .service-details summary {
  color: var(--ivory);
}

.service-card-feature dt {
  color: var(--gold-soft);
}

.service-card-feature .price {
  background: rgba(251, 246, 236, 0.16);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.price {
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--teal-900);
  background: rgba(166, 125, 70, 0.12);
  padding: 7px 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card dl {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
}

.service-card dt {
  color: var(--teal-900);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card dd {
  margin: 0 0 9px;
  color: var(--muted);
}

.service-card a {
  margin-top: 16px;
  padding-top: 0;
  color: var(--teal-900);
  font-weight: 900;
}

.service-card a::after,
.protocol-card a::after {
  content: " ->";
}

.service-details {
  margin-top: 18px;
  border: 1px solid rgba(79, 94, 75, 0.08);
  border-radius: 18px;
  background: rgba(251, 246, 236, 0.62);
  overflow: hidden;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.service-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: var(--teal-900);
  font-size: 0.9rem;
  font-weight: 900;
  list-style: none;
  padding: 12px 13px;
}

.service-details summary::-webkit-details-marker {
  display: none;
}

.details-icon {
  position: relative;
  display: block;
  flex: 0 0 26px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(166, 125, 70, 0.14);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.details-icon::before,
.details-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-900);
  transform: translate(-50%, -50%);
}

.details-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-details[open] {
  border-color: rgba(166, 125, 70, 0.24);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-details[open] .details-icon {
  background: rgba(79, 94, 75, 0.12);
  transform: rotate(180deg);
}

.service-details[open] .details-icon::after {
  opacity: 0;
}

.service-details dl {
  border-top: 1px solid rgba(79, 94, 75, 0.08);
  padding: 14px 13px 4px;
  animation: detailsIn 0.24s ease;
}

.service-card-feature .service-details {
  border-color: rgba(251, 246, 236, 0.14);
  background: rgba(251, 246, 236, 0.08);
}

.service-card-feature .details-icon {
  background: rgba(251, 246, 236, 0.16);
}

.service-card-feature .details-icon::before,
.service-card-feature .details-icon::after {
  background: var(--ivory);
}

.service-card-feature .service-details dl {
  border-top-color: rgba(251, 246, 236, 0.14);
}

.treatment-guide {
  padding-bottom: 36px;
  background:
    radial-gradient(circle at 12% 28%, rgba(223, 207, 186, 0.2), transparent 22rem),
    linear-gradient(180deg, rgba(251, 246, 236, 0.82), rgba(248, 242, 232, 0.62));
}

.guide-shell {
  display: grid;
  gap: 26px;
  align-items: end;
}

.guide-intro {
  max-width: 690px;
}

.guide-intro p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.guide-picker {
  align-self: end;
  justify-content: flex-start;
}

.filter-status {
  position: relative;
  z-index: 2;
  scroll-margin-top: 96px;
  border-top: 1px solid rgba(111, 125, 100, 0.14);
  border-bottom: 1px solid rgba(111, 125, 100, 0.14);
  background: rgba(251, 246, 236, 0.96);
}

.filter-status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 18px;
}

.filter-status p {
  margin: 0;
  color: var(--teal-950);
  font-weight: 800;
}

.filter-status button {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  color: var(--teal-900);
  cursor: pointer;
  padding: 5px 0;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
}

.filter-status button:focus-visible {
  outline: 3px solid rgba(166, 125, 70, 0.35);
  outline-offset: 5px;
}

.treatment-section {
  scroll-margin-top: 96px;
  overflow: clip;
  background:
    radial-gradient(circle at 88% 12%, rgba(111, 125, 100, 0.13), transparent 26rem),
    linear-gradient(180deg, rgba(251, 246, 236, 0.98), rgba(250, 246, 238, 0.76));
}

.body-menu {
  background:
    radial-gradient(circle at 12% 12%, rgba(223, 207, 186, 0.22), transparent 24rem),
    radial-gradient(circle at 86% 26%, rgba(111, 125, 100, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(250, 246, 238, 0.8), rgba(251, 246, 236, 0.98));
}

.capillary-menu {
  background:
    radial-gradient(circle at 82% 16%, rgba(166, 125, 70, 0.13), transparent 22rem),
    linear-gradient(180deg, rgba(244, 234, 220, 0.56), rgba(251, 246, 236, 0.94));
}

.capillary-simple {
  display: grid;
  max-width: 900px;
  gap: 28px;
}

.capillary-simple .section-heading {
  max-width: 720px;
}

.capillary-simple .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.treatment-layout {
  display: grid;
  gap: 34px;
}

.treatment-panel {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: start;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(111, 125, 100, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(248, 242, 232, 0.66)),
    rgba(251, 246, 236, 0.86);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 24px 68px rgba(79, 94, 75, 0.08);
}

.treatment-panel h2 {
  max-width: 8ch;
}

.treatment-panel p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
}

.panel-art {
  position: relative;
  min-height: 280px;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(111, 125, 100, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 70% 18%, rgba(223, 207, 186, 0.28), transparent 11rem),
    linear-gradient(145deg, rgba(251, 246, 236, 0.94), rgba(255, 255, 255, 0.62));
}

.panel-art span {
  position: absolute;
  display: block;
}

.face-line {
  left: 14%;
  top: 17%;
  width: 64%;
  height: 74%;
  border: 1.6px solid rgba(79, 94, 75, 0.26);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 48% 52% 42% 58% / 35% 45% 55% 65%;
  transform: rotate(-9deg);
}

.skin-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(79, 94, 75, 0.34);
}

.dot-one {
  left: 34%;
  top: 42%;
}

.dot-two {
  left: 47%;
  top: 34%;
  width: 6px;
  height: 6px;
}

.dot-three {
  left: 56%;
  top: 52%;
  width: 5px;
  height: 5px;
  background: rgba(166, 125, 70, 0.52);
}

.wave {
  left: 18%;
  right: 16%;
  height: 32px;
  border: 1.5px solid rgba(111, 125, 100, 0.28);
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.wave-one {
  bottom: 52px;
  animation: waveEase 5.5s ease-in-out infinite;
}

.wave-two {
  bottom: 32px;
  animation: waveEase 5.5s ease-in-out infinite 0.4s;
}

.drop {
  right: 20%;
  top: 26%;
  width: 28px;
  height: 38px;
  border: 1.8px solid rgba(166, 125, 70, 0.45);
  border-radius: 60% 60% 68% 68% / 74% 74% 44% 44%;
  transform: rotate(10deg);
}

.body-contour {
  left: 44%;
  top: 12%;
  width: 26%;
  height: 74%;
  border: 1.7px solid rgba(79, 94, 75, 0.28);
  border-left: 0;
  border-radius: 0 70% 58% 0 / 0 48% 52% 0;
}

.lymph-line {
  left: 14%;
  right: 22%;
  height: 34px;
  border: 1.5px solid rgba(111, 125, 100, 0.28);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  animation: waveEase 6s ease-in-out infinite;
}

.line-one {
  top: 34%;
}

.line-two {
  top: 48%;
  animation-delay: 0.5s;
}

.cup {
  width: 48px;
  height: 48px;
  border: 1.8px solid rgba(166, 125, 70, 0.36);
  border-radius: 50%;
}

.cup-one {
  left: 18%;
  bottom: 22%;
}

.cup-two {
  left: 31%;
  bottom: 18%;
}

.hand-flow {
  right: 12%;
  bottom: 24%;
  width: 110px;
  height: 50px;
  border: 1.7px solid rgba(79, 94, 75, 0.22);
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 60px 0;
  transform: rotate(-14deg);
}

.treatment-menu {
  display: grid;
  gap: 10px;
}

.menu-helper {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.treatment-item {
  border: 1px solid rgba(111, 125, 100, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(251, 246, 236, 0.72)),
    var(--ivory);
  box-shadow: 0 14px 38px rgba(79, 94, 75, 0.055);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.treatment-item:hover,
.treatment-item.is-highlighted {
  border-color: rgba(166, 125, 70, 0.28);
  box-shadow: 0 20px 54px rgba(79, 94, 75, 0.09);
}

.treatment-item.is-dimmed {
  opacity: 0.32;
}

.treatment-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
}

.treatment-item summary::-webkit-details-marker {
  display: none;
}

.treatment-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(111, 125, 100, 0.14);
  border-radius: 50%;
  background: rgba(215, 223, 210, 0.52);
  color: var(--teal-900);
}

.treatment-symbol svg {
  width: 28px;
  height: 28px;
  overflow: visible;
}

.treatment-row-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.treatment-row-copy strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
}

.treatment-row-copy small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.treatment-price {
  color: #8d6630;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.accordion-plus {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(166, 125, 70, 0.1);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.accordion-plus::before,
.accordion-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 1.7px;
  border-radius: 999px;
  background: var(--teal-900);
  transform: translate(-50%, -50%);
}

.accordion-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.treatment-item[open] .accordion-plus {
  background: rgba(79, 94, 75, 0.1);
  transform: rotate(180deg);
}

.treatment-item[open] .accordion-plus::after {
  opacity: 0;
}

.treatment-detail {
  border-top: 1px solid rgba(111, 125, 100, 0.13);
  padding: 0 18px 18px 74px;
  animation: detailsIn 0.24s ease;
}

.treatment-detail > p {
  max-width: 620px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.detail-columns {
  display: grid;
  gap: 16px;
}

.detail-columns h3 {
  margin-bottom: 8px;
  color: var(--teal-900);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-columns ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-columns li {
  position: relative;
  color: var(--ink);
  font-size: 0.9rem;
  padding-left: 16px;
}

.detail-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--teal-900);
  color: var(--ivory);
  padding: 11px 16px;
  font-weight: 850;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.detail-cta:hover,
.detail-cta:focus-visible {
  background: var(--teal-950);
  transform: translateY(-2px);
  outline: none;
}

.treatment-detail .protocol-note { margin: 16px 0 0; }

.is-featured {
  border-color: rgba(166, 125, 70, 0.24);
  background:
    radial-gradient(circle at 92% 18%, rgba(166, 125, 70, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 240, 229, 0.72));
}

@keyframes detailsIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.body-section {
  background:
    radial-gradient(circle at 92% 20%, rgba(166, 125, 70, 0.12), transparent 24rem),
    rgba(244, 235, 220, 0.46);
}

.protocols-section {
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(223, 207, 186, 0.22), transparent 26rem),
    radial-gradient(circle at 90% 8%, rgba(111, 125, 100, 0.16), transparent 28rem),
    linear-gradient(180deg, #fbf6ec 0%, #efe1d0 48%, #fbf6ec 100%);
}

.protocols-section::after {
  content: "";
  position: absolute;
  inset: 72px auto auto 6%;
  width: min(36vw, 420px);
  height: min(36vw, 420px);
  border: 1px solid rgba(111, 125, 100, 0.2);
  border-radius: 48% 52% 57% 43% / 45% 48% 52% 55%;
  pointer-events: none;
  animation: organicDrift 16s ease-in-out infinite;
}

.protocols-intro {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: none;
  gap: 22px;
}

.protocols-intro h2,
.protocols-intro p {
  color: var(--ink);
}

.protocols-intro p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.protocol-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-items: start;
  margin-top: 46px;
}

.protocol-card {
  position: relative;
  display: grid;
  min-height: 100%;
  gap: 15px;
  overflow: hidden;
  border: 1px solid rgba(111, 125, 100, 0.15);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 246, 236, 0.76)),
    var(--ivory);
  padding: 20px;
  color: var(--ink);
  box-shadow: 0 24px 66px rgba(79, 94, 75, 0.09);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.protocol-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(223, 207, 186, 0.18), transparent 38%),
    radial-gradient(circle at 88% 22%, rgba(111, 125, 100, 0.14), transparent 10rem);
  pointer-events: none;
}

.protocol-card:hover,
.protocol-card.is-highlighted {
  border-color: rgba(166, 125, 70, 0.24);
  transform: translateY(-5px);
  box-shadow: 0 30px 76px rgba(79, 94, 75, 0.12);
}

.protocol-card.is-dimmed {
  opacity: 0.36;
}

.protocol-card.featured {
  border-color: rgba(166, 125, 70, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 246, 238, 0.82)),
    var(--ivory);
}

.protocol-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 0;
  font-size: clamp(1.38rem, 2.6vw, 1.78rem);
}

.protocol-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.protocol-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.protocol-card li {
  position: relative;
  border: 1px solid rgba(111, 125, 100, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  padding: 8px 11px 8px 32px;
  font-size: 0.88rem;
  font-weight: 720;
}

.protocol-card li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.protocol-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 4px;
  color: var(--teal-900);
  font-size: 0.94rem;
  font-weight: 850;
}

.protocol-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--teal-900);
  color: var(--ivory);
  font-weight: 900;
  padding: 11px 14px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.protocol-card a:hover,
.protocol-card a:focus-visible {
  background: var(--teal-950);
  transform: translateY(-2px);
  outline: none;
}

.protocol-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(166, 125, 70, 0.12);
  padding: 7px 10px;
  color: #a67d46;
  font-size: 0.66rem;
}

.protocol-visual {
  position: relative;
  z-index: 1;
  height: 94px;
  overflow: hidden;
  border: 1px solid rgba(111, 125, 100, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 74% 32%, rgba(223, 207, 186, 0.24), transparent 8rem),
    linear-gradient(145deg, rgba(248, 242, 232, 0.94), rgba(255, 255, 255, 0.68));
}

.protocol-visual span {
  position: absolute;
  display: block;
}

.protocol-visual.relief span {
  left: 12%;
  right: 12%;
  height: 26px;
  border: 2px solid rgba(111, 125, 100, 0.34);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  animation: waveEase 5s ease-in-out infinite;
}

.protocol-visual.relief span:nth-child(1) {
  top: 18px;
}

.protocol-visual.relief span:nth-child(2) {
  top: 38px;
  animation-delay: 0.35s;
}

.protocol-visual.relief span:nth-child(3) {
  top: 58px;
  animation-delay: 0.7s;
}

.protocol-visual.firm span {
  bottom: 18px;
  width: 18%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(166, 125, 70, 0.64), rgba(111, 125, 100, 0.42));
  animation: liftBars 4.8s ease-in-out infinite;
}

.protocol-visual.firm span:nth-child(1) {
  left: 23%;
  height: 36px;
}

.protocol-visual.firm span:nth-child(2) {
  left: 43%;
  height: 62px;
  animation-delay: 0.28s;
}

.protocol-visual.firm span:nth-child(3) {
  left: 63%;
  height: 48px;
  animation-delay: 0.56s;
}

.protocol-visual.remodel span {
  left: 50%;
  top: 50%;
  border: 2px solid rgba(111, 125, 100, 0.24);
  border-radius: 46% 54% 58% 42% / 42% 52% 48% 58%;
  transform: translate(-50%, -50%);
  animation: orbitSoft 9s ease-in-out infinite;
}

.protocol-visual.remodel span:nth-child(1) {
  width: 112px;
  height: 72px;
}

.protocol-visual.remodel span:nth-child(2) {
  width: 82px;
  height: 112px;
  border-color: rgba(166, 125, 70, 0.26);
  animation-delay: 0.8s;
}

.protocol-visual.remodel span:nth-child(3) {
  width: 34px;
  height: 34px;
  background: rgba(111, 125, 100, 0.2);
  border-color: transparent;
  animation-delay: 1.2s;
}

.difference-section {
  overflow: hidden;
}

.difference-section::before {
  left: -180px;
  bottom: 90px;
}

.large-text {
  margin: 0;
}

.difference-grid {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.difference-card {
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
}

.difference-card h3 {
  margin-top: 8px;
}

.testimonials-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(223, 207, 186, 0.2), transparent 24rem),
    linear-gradient(180deg, #f4eadc, #fbf6ec);
  color: var(--ink);
  overflow: hidden;
}

.testimonials-section h2 {
  color: var(--ink);
}

.testimonials-head p {
  max-width: 680px;
  color: var(--muted);
}

.review-badge {
  align-self: start;
  justify-self: start;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 24px;
  padding: 18px;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 84%);
  gap: 16px;
  margin-top: 36px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.testimonial-card {
  min-height: 260px;
  border: 1px solid rgba(111, 125, 100, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  padding: 24px;
  scroll-snap-align: start;
  box-shadow: 0 16px 44px rgba(79, 94, 75, 0.07);
}

.testimonial-card blockquote {
  margin: 18px 0 22px;
  color: var(--muted);
}

.testimonial-card cite {
  color: var(--teal-900);
  font-style: normal;
  font-weight: 900;
}

.location-section {
  background:
    linear-gradient(180deg, rgba(251, 246, 236, 0.96), rgba(248, 242, 232, 0.68)),
    var(--cream);
}

.location-panel {
  align-items: center;
  border: 1px solid rgba(79, 94, 75, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.56);
  padding: clamp(24px, 5vw, 48px);
  box-shadow: var(--shadow-soft);
}

address {
  margin-top: 18px;
  color: var(--teal-900);
  font-style: normal;
  font-weight: 900;
}

.map-card {
  position: relative;
  display: grid;
  min-height: 300px;
  place-content: center;
  gap: 8px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 74% 22%, rgba(217, 189, 135, 0.22), transparent 10rem),
    linear-gradient(135deg, rgba(111, 125, 100, 0.94), rgba(111, 125, 100, 0.86)),
    var(--teal-800);
  color: var(--ivory);
  padding: 28px;
  text-align: center;
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(232, 214, 173, 0.24);
  border-radius: 999px;
}

.map-card::before {
  width: 360px;
  height: 360px;
  left: -120px;
  top: -120px;
}

.map-card::after {
  width: 210px;
  height: 210px;
  right: -50px;
  bottom: -70px;
}

.map-card span,
.map-card strong,
.map-card small {
  position: relative;
  z-index: 1;
}

.map-card strong {
  font-size: 2rem;
  font-weight: 850;
}

.map-card span,
.map-card small {
  color: rgba(251, 246, 236, 0.72);
}

.faq-grid {
  align-items: start;
}

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

.faq-list details {
  border: 1px solid rgba(79, 94, 75, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  padding: 0 18px;
  box-shadow: 0 12px 30px rgba(79, 94, 75, 0.06);
}

.faq-list summary {
  cursor: pointer;
  color: var(--teal-950);
  font-weight: 900;
  padding: 18px 0;
}

.faq-list summary::marker {
  color: var(--gold);
}

.faq-list details p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
}

.final-cta {
  overflow: hidden;
}

.final-card {
  max-width: 860px;
  text-align: center;
}

.final-card p {
  max-width: 610px;
  margin-inline: auto;
  color: var(--muted);
}

.final-card .button {
  margin-top: 16px;
}

.laser-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(166, 125, 70, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--ivory), rgba(215, 222, 206, 0.52));
}

.laser-intro { max-width: 820px; }
.laser-copy { display: grid; gap: 16px; align-content: center; }
.laser-copy p:not(.eyebrow), .laser-copy small { max-width: 660px; color: var(--muted); }
.laser-copy small { color: var(--teal-900); font-size: 0.84rem; }

.laser-benefits { display: grid; gap: 10px; margin-top: 34px; }
.laser-benefits span { position: relative; border-left: 2px solid var(--gold); color: var(--teal-900); font-size: 0.92rem; padding-left: 12px; }

.laser-featured-prices { display: grid; gap: 14px; margin-top: 44px; }
.laser-feature { display: grid; gap: 5px; min-height: 178px; border: 1px solid rgba(217, 189, 135, 0.26); border-radius: 24px; background: rgba(251, 246, 236, 0.66); padding: 24px; box-shadow: var(--shadow-card); }
.laser-feature span { color: var(--teal-900); font-weight: 800; }.laser-feature strong { color: var(--teal-950); font-size: clamp(3rem, 8vw, 5rem); line-height: 0.95; }.laser-feature small { color: var(--muted); }
.laser-main-cta { align-self: center; justify-self: start; }

.laser-detail-grid { margin-top: 56px; align-items: start; }
.laser-packs, .laser-menu { border-top: 1px solid rgba(111, 125, 100, 0.18); padding-top: 20px; }
.pack-list { display: grid; margin-top: 18px; }
.laser-pack { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 7px 16px; border-bottom: 1px solid rgba(111, 125, 100, 0.16); padding: 16px 0; }
.laser-pack strong { color: var(--teal-950); line-height: 1.35; }.laser-pack > span { color: var(--gold); font-weight: 900; white-space: nowrap; }.laser-pack a { grid-column: 1 / -1; width: fit-content; color: var(--teal-900); font-size: 0.84rem; font-weight: 850; }.laser-pack a::after { content: " ->"; color: var(--gold); }

.laser-tabs { display: inline-flex; gap: 4px; margin: 16px 0 18px; border: 1px solid rgba(111, 125, 100, 0.16); border-radius: 999px; background: rgba(255, 255, 255, 0.56); padding: 4px; }
.laser-tabs button { min-width: 86px; border: 0; border-radius: 999px; background: transparent; color: var(--teal-900); cursor: pointer; padding: 9px 15px; font: inherit; font-size: 0.88rem; font-weight: 850; }
.laser-tabs button[aria-selected="true"] { background: var(--teal-900); color: var(--ivory); }.laser-tabs button:focus-visible { outline: 3px solid rgba(166, 125, 70, 0.4); outline-offset: 2px; }

.price-menu { display: grid; }.price-menu[hidden] { display: none; }.price-menu p { display: grid; grid-template-columns: minmax(0, auto) 1fr auto; align-items: baseline; gap: 10px; margin: 0; border-bottom: 1px solid rgba(111, 125, 100, 0.14); color: var(--teal-950); padding: 11px 0; }.price-menu p::after { content: ""; order: 1; border-bottom: 1px dotted rgba(166, 125, 70, 0.5); }.price-menu p strong { order: 2; color: var(--gold); white-space: nowrap; }
.laser-question { display: grid; gap: 8px; margin-top: 20px; color: var(--muted); }.laser-question a { color: var(--teal-900); font-weight: 900; }.laser-question a::after { content: " ->"; color: var(--gold); }

.site-footer {
  background: var(--ivory);
  padding: 56px 0 92px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 560px;
  margin: 8px 0;
  color: var(--muted);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--teal-700);
  outline: none;
}

.footer-brand {
  margin-bottom: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(14px, -18px, 0) scale(1.05);
  }
}

@keyframes organicDrift {
  0%,
  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(8deg) translate3d(18px, -10px, 0);
  }
}

@keyframes waveEase {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.62;
  }

  50% {
    transform: translateX(12px);
    opacity: 1;
  }
}

@keyframes liftBars {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(-8px) scaleY(1.08);
  }
}

@keyframes orbitSoft {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) rotate(12deg) scale(1.04);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 640px) {
  .trust-grid,
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-track {
    grid-auto-columns: minmax(320px, 46%);
  }

  .guide-shell {
    grid-template-columns: 0.78fr 1.22fr;
  }

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

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

  .laser-main-cta {
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (min-width: 860px) {
  .site-header {
    inset: 18px 20px auto;
    width: min(1180px, calc(100% - 40px));
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .nav-cta {
    padding-inline: 17px !important;
  }

  .hero {
    padding-top: 124px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.72fr);
  }

  .hero-copy {
    padding-bottom: 22px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .split-layout,
  .intro-editorial,
  .chooser-grid,
  .faq-grid,
  .testimonials-head,
  .location-panel {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .intro-editorial {
    grid-template-columns: 1fr 0.82fr;
    align-items: center;
  }

  .intro-editorial .section-heading {
    max-width: 650px;
  }

  .concern-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 0.88fr 1fr;
  }

  .advanced-layout,
  .laser-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .laser-detail-grid {
    align-items: start;
  }

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

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .treatment-layout {
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    align-items: start;
  }

  .treatment-panel {
    position: sticky;
    top: 118px;
  }

  .service-card-feature {
    grid-column: span 2;
  }

  .service-grid.compact .service-card-feature {
    grid-column: auto;
  }

  .protocol-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .laser-featured-prices {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: stretch;
  }

  .laser-main-cta {
    grid-column: auto;
    justify-self: start;
  }

  .difference-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial-track {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

  .review-badge {
    justify-self: end;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.9fr 0.7fr;
  }
}

@media (max-width: 859px) {
  .advanced-lines {
    display: none;
  }

  .advanced-visual {
    display: block;
    min-height: auto;
    padding-top: 24px;
  }

  .advanced-concepts {
    align-self: auto;
  }
}

@media (min-width: 1100px) {
  .section {
    padding: 118px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .video-frame,
  .video-frame video {
    min-height: 610px;
  }

  .service-grid {
    gap: 22px;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .brand strong {
    max-width: clamp(162px, 50vw, 205px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-actions .button {
    width: 100%;
  }

  .video-frame,
  .video-frame video {
    min-height: 430px;
  }

  .video-hint {
    width: max-content;
    max-width: calc(100% - 40px);
    font-size: 0.7rem;
  }

  .guide-shell,
  .treatment-layout {
    gap: 22px;
  }

  .filter-status-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 15px;
  }

  .treatment-panel {
    min-height: auto;
    padding: 22px;
  }

  .treatment-panel h2 {
    max-width: none;
  }

  .panel-art {
    min-height: 190px;
  }

  .treatment-item summary {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 9px;
    padding: 14px;
  }

  .treatment-symbol {
    width: 38px;
    height: 38px;
  }

  .treatment-symbol svg {
    width: 25px;
    height: 25px;
  }

  .treatment-price {
    font-size: 0.82rem;
  }

  .accordion-plus {
    width: 26px;
    height: 26px;
  }

  .treatment-detail {
    padding: 0 14px 16px;
  }

  .treatment-detail > p {
    margin-top: 14px;
  }

  .detail-cta {
    width: 100%;
  }

  .protocol-card {
    padding: 18px;
  }

  .protocol-visual {
    height: 92px;
  }

  .protocol-card li {
    border-radius: 16px;
  }

  .advanced-visual {
    min-height: 380px;
    padding: 20px;
  }

  .laser-pack {
    gap: 6px 12px;
  }

  .laser-tabs button {
    min-width: 72px;
    padding-inline: 12px;
  }

  .price-menu p {
    font-size: 0.92rem;
  }
}
