:root {
  --ivory: #fbf6f2;
  --linen: #f3e8e2;
  --blush: #e9c5c3;
  --rose: #c9898c;
  --rose-2: #b46f76;
  --wine: #6f1230;
  --wine-2: #8c2945;
  --ink: #331421;
  --muted: #765964;
  --white: #fffefe;
  --line: rgba(111, 18, 48, 0.14);
  --shadow: 0 24px 70px rgba(111, 18, 48, 0.14);
  --max: 1180px;
  --header-height: 130px;
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip !important;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  width: 100%;
  max-width: 100%;
  max-inline-size: 100%;
  min-width: 0;
  overflow-x: clip !important;
  overflow-y: visible;
  position: relative;
  padding-top: var(--header-height);
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(111, 18, 48, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(111, 18, 48, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 58px 58px;
  line-height: 1.65;
}

main,
.site-header,
.site-footer {
  width: 100%;
  max-inline-size: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.container > * {
  max-width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(111, 18, 48, 0.08);
  background: rgba(251, 246, 242, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  background: rgba(251, 246, 242, 0.96);
  box-shadow: 0 14px 36px rgba(111, 18, 48, 0.1);
}

.site-header {
  overflow: visible;
}

.site-header .container {
  max-width: 1360px;
}

.nav-wrap {
  min-height: var(--header-height);
  padding-block: .5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: 0;
}

.logo-copy {
  min-width: 0;
}

.logo-mark {
  width: 80px;
  height: 80px;
  flex: 0 0 auto;
  object-fit: contain;
  transform: translateY(7px);
}

.logo-copy {
  display: grid;
  line-height: 1.1;
}

.logo-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--wine);
}

.logo-copy small {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.4vw, 2rem);
  flex: 1;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2.1vw, 1.8rem);
  list-style: none;
}

.menu a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.5rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rose-2);
  transition: transform .2s ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--wine);
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(111, 18, 48, 0.34), rgba(233, 197, 195, 0.72)) border-box;
  color: var(--wine);
  font-size: 1.2rem;
  box-shadow: 0 12px 24px rgba(111, 18, 48, 0.1);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease;
}

.whatsapp-cta,
.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: .92rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  text-align: center;
  letter-spacing: .01em;
  white-space: nowrap;
  transform: translateY(0);
  will-change: transform;
  transition: transform .24s ease, box-shadow .24s ease, color .24s ease, border-color .24s ease, background .24s ease;
}

.whatsapp-cta::before,
.btn::before,
.instagram-link::before,
.wa-float::before,
.menu-toggle::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0 28%, rgba(255, 255, 255, 0.42) 45%, transparent 62% 100%);
  transform: translateX(-125%);
  transition: transform .58s ease;
  pointer-events: none;
}

.whatsapp-cta::after,
.btn::after {
  content: "";
  position: absolute;
  inset: auto 17% 7px;
  z-index: -2;
  height: 14px;
  border-radius: 999px;
  background: rgba(111, 18, 48, 0.22);
  filter: blur(14px);
  opacity: .58;
  transition: opacity .24s ease, transform .24s ease;
}

.whatsapp-cta i,
.btn i,
.instagram-link i,
.wa-float i {
  transition: transform .24s ease;
}

.nav-instagram {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  line-height: 1;
  text-decoration: none;
  transition: transform .24s ease, filter .24s ease;
}

.nav-instagram i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.72), transparent 18%),
    linear-gradient(135deg, #f7b267, #d9447a 48%, #6f1230);
  font-size: 1.72rem;
  box-shadow: 0 10px 22px rgba(111, 18, 48, 0.16);
}

.nav-instagram:hover,
.nav-instagram:focus-visible {
  transform: translateY(-3px) scale(1.04);
  filter: drop-shadow(0 12px 18px rgba(111, 18, 48, 0.2));
}

.whatsapp-cta,
.btn-primary {
  border: 1px solid rgba(111, 18, 48, 0.24);
  color: #fff8f8;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, var(--wine), var(--wine-2) 48%, var(--rose-2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 34px rgba(111, 18, 48, 0.22);
}

.btn-outline {
  border: 1px solid rgba(111, 18, 48, 0.22);
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)) padding-box,
    linear-gradient(135deg, rgba(111, 18, 48, 0.22), rgba(233, 197, 195, 0.72)) border-box;
  color: var(--wine);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 28px rgba(111, 18, 48, 0.11);
}

.whatsapp-cta:hover,
.btn:hover,
.whatsapp-cta:focus-visible,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 44px rgba(111, 18, 48, 0.26);
}

.whatsapp-cta:hover::before,
.btn:hover::before,
.instagram-link:hover::before,
.wa-float:hover::before,
.menu-toggle:hover::before,
.whatsapp-cta:focus-visible::before,
.btn:focus-visible::before,
.instagram-link:focus-visible::before,
.wa-float:focus-visible::before,
.menu-toggle:focus-visible::before {
  transform: translateX(125%);
}

.whatsapp-cta:hover::after,
.btn:hover::after,
.whatsapp-cta:focus-visible::after,
.btn:focus-visible::after {
  opacity: .82;
  transform: translateY(5px) scaleX(1.08);
}

.whatsapp-cta:hover i,
.btn:hover i,
.instagram-link:hover i,
.wa-float:hover i,
.whatsapp-cta:focus-visible i,
.btn:focus-visible i,
.instagram-link:focus-visible i,
.wa-float:focus-visible i {
  transform: translateY(-1px) scale(1.08);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(111, 18, 48, 0.34);
  color: var(--wine);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.75), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 225, 225, 0.74));
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, var(--wine), var(--rose-2));
  box-shadow: 0 16px 32px rgba(111, 18, 48, 0.2);
}

.whatsapp-cta:focus-visible,
.btn:focus-visible,
.instagram-link:focus-visible,
.nav-instagram:focus-visible,
.wa-float:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(233, 197, 195, 0.82);
  outline-offset: 4px;
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  align-items: center;
  padding: clamp(1.5rem, 2.5vw, 2.5rem) clamp(1rem, 1vw, 2rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 246, 242, 0.96) 0 44%, rgba(251, 246, 242, 0.42) 58%, rgba(185, 114, 120, 0.18)),
    url("img/diva-roma-hero.png") right center / min(54vw, 760px) auto no-repeat;
  opacity: .8;
}

.hero::before,
.benefits-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  width: 48vw;
  max-width: 540px;
  aspect-ratio: 1;
  border: 1px solid rgba(111, 18, 48, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  left: -18vw;
  top: 7%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(620px, 620px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: var(--wine);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.03;
  color: var(--wine);
}

h1 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 5.4vw, 4.45rem);
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 55ch;
  margin: .75rem 0 0;
  color: var(--muted);
  font-size: clamp(.98rem, .55vw + .8rem, 1.2rem);
}

.cta-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.25rem;
}

.hero-card {
  position: relative;
  width: 100%;
  justify-self: end;
  margin-right: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(111, 18, 48, 0.12);
  box-shadow: var(--shadow);
  background: var(--linen);
}

.hero-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: right center;
}

section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
  padding: clamp(2.4rem, 4.8vw, 4rem) 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto clamp(.9rem, 2vw, 1.6rem);
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.benefits h2,
.contact-text h2,
.faq h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.section-heading p {
  margin-top: .75rem;
  color: var(--muted);
}

.about {
  background: url("img/background.webp") center / cover no-repeat;
  padding: clamp(4rem, 6vw, 4rem) 0 clamp(1rem, 2.4vw, 1.7rem);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) minmax(220px, .72fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.about .section-heading {
  max-width: 620px;
  margin-left: clamp(1.25rem, 4vw, 3rem);
  padding-top: clamp(.9rem, 2vw, 1.35rem);
}

.about .section-heading h2,
.treatments .section-heading h2,
.experience .section-heading h2,
.results-intro .section-heading h2 {
  font-size: clamp(2.15rem, 3.9vw, 3.65rem);
  line-height: 1.04;
}

.about .section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.section-slogan {
  position: relative;
  display: block;
  max-width: 28rem;
  margin-top: clamp(2.8rem, 4.8vw, 4.2rem);
  padding-top: 1.05rem;
  color: var(--wine);
  font-size: clamp(.78rem, .38vw + .72rem, .95rem);
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.55;
  text-transform: uppercase;
}

.section-slogan::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 84px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wine), rgba(111, 18, 48, 0.08));
}

.about-copy {
  position: relative;
  max-width: 62ch;
  padding: clamp(1.2rem, 3vw, 1.75rem) 0 clamp(1.2rem, 3vw, 1.75rem) clamp(1.1rem, 3vw, 1.8rem);
  border-left: 1px solid rgba(111, 18, 48, 0.28);
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.about-copy::before {
  content: "";
  position: absolute;
  left: -3px;
  top: clamp(1.2rem, 3vw, 1.75rem);
  width: 5px;
  height: 54px;
  border-radius: 999px;
  background: var(--wine);
}

.about-copy p {
  max-width: 58ch;
}

.about-copy p + p {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(111, 18, 48, 0.14);
}

.about-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-self: stretch;
  min-height: 360px;
  border-radius: 42% 42% 10px 10px / 28% 28% 10px 10px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.7), transparent 34%),
    linear-gradient(145deg, rgba(243, 232, 226, 0.84), rgba(233, 197, 195, 0.34));
  box-shadow: 0 18px 48px rgba(111, 18, 48, 0.12);
  transform: translateY(0);
  transition: transform .42s ease, box-shadow .42s ease, filter .42s ease;
}

.about-photo::before,
.about-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.about-photo::before {
  inset: 0;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.42), transparent 34%),
    radial-gradient(circle at 50% 92%, rgba(111, 18, 48, 0.14), transparent 42%);
  opacity: .7;
  transition: opacity .42s ease;
}

.about-photo::after {
  top: -30%;
  left: -76%;
  width: 56%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  opacity: 0;
  transform: rotate(16deg);
  transition: left .66s ease, opacity .42s ease;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .52s ease, filter .52s ease;
}

.about-photo:hover {
  box-shadow: 0 28px 68px rgba(111, 18, 48, 0.18);
  filter: saturate(1.04);
  transform: translateY(-8px) rotate(1deg);
}

.about-photo:hover::before {
  opacity: .34;
}

.about-photo:hover::after {
  left: 118%;
  opacity: 1;
}

.about-photo:hover img {
  filter: contrast(1.03);
  transform: scale(1.06);
}

.quote-panel {
  grid-column: 1 / -1;
  position: relative;
  justify-self: center;
  width: min(100%, 960px);
  margin-top: 0;
  padding: clamp(.18rem, .8vw, .4rem) clamp(1.4rem, 5vw, 3.4rem) clamp(1.1rem, 2.6vw, 1.8rem);
  text-align: center;
  border-radius: 52% 48% 50% 50% / 22% 24% 20% 22%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.72), rgba(255, 241, 242, 0.46) 58%, rgba(255, 241, 242, 0) 72%);
}

.quote-panel p {
  position: relative;
  max-width: 44ch;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  color: var(--wine);
  font-size: clamp(1.75rem, 3.8vw, 2.95rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.14;
}

.quote-panel p::before,
.quote-panel p::after {
  color: rgba(111, 18, 48, 0.48);
  font-size: 1.35em;
  line-height: 0;
}

.quote-panel p::before {
  content: "\201C";
  margin-right: .12em;
}

.quote-panel p::after {
  content: "\201D";
  margin-left: .12em;
}

.treatments {
  background: var(--ivory);
}

.treatments .section-heading {
  margin-bottom: clamp(1.1rem, 2.6vw, 1.8rem);
}

.technology-highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
  max-width: 980px;
  margin: 0 auto clamp(1rem, 2.5vw, 1.5rem);
}

.tech-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1rem;
  border: 1px solid rgba(111, 18, 48, 0.2);
  border-radius: 999px;
  color: var(--wine);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.55)),
    radial-gradient(circle at top left, rgba(233, 197, 195, 0.45), transparent 46%);
  box-shadow: 0 12px 28px rgba(111, 18, 48, 0.08);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: border-color .28s ease, box-shadow .28s ease, color .28s ease, transform .28s ease, background .28s ease;
}

.tech-pill:hover {
  border-color: rgba(111, 18, 48, 0.34);
  color: var(--rose);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 244, 0.72)),
    radial-gradient(circle at top left, rgba(201, 137, 140, 0.58), transparent 48%);
  box-shadow: 0 18px 34px rgba(111, 18, 48, 0.15);
  transform: translateY(-4px);
}

.treatment-summary {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 1rem;
  margin-bottom: clamp(1.3rem, 3vw, 2.2rem);
}

.treatment-summary article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  border: 1px solid rgba(111, 18, 48, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 232, 226, 0.66)),
    radial-gradient(circle at 92% 10%, rgba(201, 137, 140, 0.22), transparent 36%);
  box-shadow: 0 16px 42px rgba(111, 18, 48, 0.08);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.treatment-summary article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(111, 18, 48, 0.08), transparent 48%),
    radial-gradient(circle at 88% 12%, rgba(201, 137, 140, 0.3), transparent 34%);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.treatment-summary article:hover {
  border-color: rgba(111, 18, 48, 0.28);
  box-shadow: 0 24px 60px rgba(111, 18, 48, 0.14);
  transform: translateY(-6px);
}

.treatment-summary article:hover::before {
  opacity: 1;
}

.treatment-summary i {
  position: relative;
  z-index: 1;
  color: var(--rose-2);
  font-size: 1.5rem;
  transition: color .28s ease, transform .28s ease;
}

.treatment-summary article:hover i {
  color: var(--rose);
  transform: translateY(-2px) scale(1.08);
}

.treatment-summary h3 {
  position: relative;
  z-index: 1;
  margin: .8rem 0 .55rem;
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
}

.treatment-summary p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.72;
}

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

.treatment-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at top right, rgba(201, 137, 140, 0.2), transparent 38%);
  box-shadow: 0 14px 40px rgba(111, 18, 48, 0.07);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.treatment-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(111, 18, 48, 0.08), transparent 46%),
    radial-gradient(circle at 80% 16%, rgba(201, 137, 140, 0.28), transparent 34%);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}

.treatment-card:hover {
  border-color: rgba(111, 18, 48, 0.28);
  box-shadow: 0 24px 60px rgba(111, 18, 48, 0.14);
  transform: translateY(-6px);
}

.treatment-card:hover::before {
  opacity: 1;
}

.treatment-card i {
  position: relative;
  z-index: 1;
  color: var(--rose-2);
  font-size: 1.55rem;
  transition: color .28s ease, transform .28s ease;
}

.treatment-card:hover i {
  color: var(--rose);
  transform: translateY(-2px) scale(1.08);
}

.treatment-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin: 1.2rem 0 .55rem;
  color: var(--rose-2);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.treatment-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: .7rem;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
}

.treatment-card p {
  position: relative;
  z-index: 1;
}

.treatment-card p,
.benefit-list p,
.steps p,
.faq p,
.mini-testimonial p,
.contact-text p {
  color: var(--muted);
}

.benefits-section {
  overflow: hidden;
  padding-top: clamp(1.25rem, 2.6vw, 2.2rem);
  background:
    linear-gradient(120deg, rgba(111, 18, 48, 0.07), rgba(255, 255, 255, 0.44)),
    var(--linen);
}

.benefits-section::before {
  right: -18vw;
  bottom: 6%;
}

.benefits-wrap {
  position: relative;
  z-index: 1;
}

.benefits {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.benefits .eyebrow {
  justify-content: center;
}

.benefits h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.04;
}

.benefit-list {
  display: grid;
  gap: .9rem;
  margin-top: 1.6rem;
}

.benefit-list div {
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--rose-2);
  background: rgba(255, 255, 255, 0.48);
}

.benefit-list strong {
  display: block;
  color: var(--wine);
  margin-bottom: .35rem;
}

.results-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 250, 0.92), rgba(243, 232, 226, 0.82)),
    url("img/background.webp") center / cover no-repeat;
}

.results-section::before {
  content: "";
  position: absolute;
  left: -12vw;
  top: 12%;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(111, 18, 48, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.results-section .container {
  position: relative;
  z-index: 1;
}

.results-intro {
  display: block;
  margin-bottom: clamp(1.35rem, 3vw, 2.4rem);
}

.results-intro .section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.04;
}

.results-slider {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 920px;
  margin-inline: auto;
  border: 1px solid rgba(111, 18, 48, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 247, 247, 0.58)),
    radial-gradient(circle at 92% 8%, rgba(201, 137, 140, 0.24), transparent 34%);
  box-shadow: 0 18px 44px rgba(111, 18, 48, 0.1);
}

.results-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(111, 18, 48, 0.08), transparent 48%);
  opacity: .85;
}

.results-viewport {
  position: relative;
  min-height: clamp(390px, 54vw, 620px);
}

.result-slide {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(28px);
  transition: opacity .36s ease, transform .36s ease, visibility .36s ease;
}

.result-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.result-media,
.result-media img,
.result-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: clamp(390px, 54vw, 620px);
  border-radius: 8px 8px 0 0;
}

.result-media {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}

.result-media::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 22%;
  background: linear-gradient(180deg, rgba(51, 20, 33, 0.12), transparent);
  pointer-events: none;
}

.result-media img {
  object-fit: cover;
}

.result-label {
  position: absolute;
  top: clamp(.65rem, 1.8vw, 1rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 36px;
  padding: .5rem .9rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: var(--wine);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 30px rgba(51, 20, 33, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.result-label-before {
  left: clamp(.65rem, 1.8vw, 1rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(243, 232, 226, 0.82)),
    rgba(255, 255, 255, 0.84);
}

.result-label-after {
  right: clamp(.65rem, 1.8vw, 1rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(180, 111, 118, 0.92), rgba(111, 18, 48, 0.86)),
    var(--wine);
}

.result-media-labels-bottom .result-label {
  top: auto;
  bottom: clamp(.65rem, 1.8vw, 1rem);
}

.result-image-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: .7rem;
  background:
    linear-gradient(135deg, rgba(111, 18, 48, 0.08), rgba(255, 255, 255, 0.38)),
    repeating-linear-gradient(135deg, rgba(111, 18, 48, 0.06) 0 1px, transparent 1px 18px);
  color: rgba(111, 18, 48, 0.58);
  text-align: center;
}

.result-image-placeholder i {
  font-size: clamp(2rem, 4vw, 3.4rem);
  opacity: .42;
}

.result-image-placeholder span {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.results-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 82px;
  padding: .85rem clamp(.7rem, 1.5vw, 1rem) 1.2rem;
}

.results-arrow,
.results-dot {
  border: 1px solid rgba(111, 18, 48, 0.18);
  background: rgba(255, 255, 255, 0.78);
  color: var(--wine);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.results-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(111, 18, 48, 0.1);
}

.results-arrow:hover,
.results-arrow:focus-visible,
.results-dot:hover,
.results-dot:focus-visible {
  border-color: rgba(180, 111, 118, 0.5);
  background: var(--wine);
  color: #fff;
  transform: translateY(-2px);
}

.results-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}

.results-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
}

.results-dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--rose-2);
  border-color: var(--rose-2);
}

.experience {
  padding-bottom: clamp(1rem, 2vw, 1.6rem);
  background: #fffafa;
}

.experience .section-heading {
  max-width: 980px;
}

.experience .section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

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

.steps article {
  min-height: 185px;
  padding: 1.35rem;
  border-top: 1px solid var(--line);
}

.steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: .55rem;
  font-size: 2rem;
}

.gallery-section {
  overflow: hidden;
  background: url("img/background.webp") center / cover no-repeat;
}

.gallery-section::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 12%;
  width: 40vw;
  max-width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(111, 18, 48, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.gallery-section .container {
  position: relative;
  z-index: 1;
}

.gallery-section .section-heading {
  max-width: 900px;
}

.gallery-section .section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.85rem);
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(160px, 18vw, 250px);
  gap: clamp(.65rem, 1.3vw, 1rem);
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
}

.gallery-responsive {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  max-width: 1120px;
  margin-inline: auto;
}

.gallery-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 0;
  border: 1px solid rgba(111, 18, 48, 0.15);
  border-radius: 8px;
  background: var(--linen);
  box-shadow: 0 16px 38px rgba(111, 18, 48, 0.09);
  transform: translateY(0);
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease;
}

.gallery-item::before,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity .38s ease;
}

.gallery-item::before {
  background:
    linear-gradient(180deg, transparent 42%, rgba(51, 20, 33, 0.22)),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.28), transparent 24%);
  opacity: .72;
}

.gallery-item::after {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .58s ease, filter .58s ease;
}

.gallery-item:hover,
.gallery-item:focus-within {
  border-color: rgba(180, 111, 118, 0.42);
  box-shadow: 0 24px 56px rgba(111, 18, 48, 0.16);
  transform: translateY(-6px);
}

.gallery-item:hover::before,
.gallery-item:focus-within::before {
  opacity: .38;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.07);
}

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

.gallery-responsive .gallery-item {
  aspect-ratio: 4 / 5;
}

.gallery-responsive .gallery-item:first-child {
  border-radius: 8px 48px 8px 8px;
}

.gallery-responsive .gallery-item:last-child {
  border-radius: 48px 8px 8px 8px;
}

.gallery-responsive .gallery-item:last-child img {
  object-position: center top;
}

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

.gallery-item-wide {
  grid-column: span 2;
}

.social-proof {
  background: var(--ivory);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.35fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
}

.mini-testimonial,
.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(111, 18, 48, 0.08);
}

.mini-testimonial {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  background:
    radial-gradient(circle at 92% 12%, rgba(201, 137, 140, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 247, 0.72));
}

.mini-testimonial::before {
  content: "";
  position: absolute;
  inset: .65rem;
  border: 1px solid rgba(201, 137, 140, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.mini-testimonial i {
  position: relative;
  color: rgba(180, 111, 118, 0.72);
  font-size: 1.45rem;
  margin-bottom: .85rem;
}

.mini-testimonial p {
  position: relative;
  max-width: 100%;
  font-family: "Cormorant Garamond", serif;
  color: #724757;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.mini-testimonial strong {
  position: relative;
  display: inline-flex;
  margin-top: 1.2rem;
  padding: .38rem .78rem;
  border-radius: 999px;
  background: rgba(111, 18, 48, 0.08);
  color: var(--wine);
  font-size: .92rem;
  line-height: 1;
}

.faq {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  padding: clamp(1.2rem, 3vw, 1.8rem);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.faq .eyebrow {
  margin-bottom: .45rem;
}

.faq h2 {
  width: 100%;
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  line-height: .98;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
  overflow-x: visible;
}

.faq-tab {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  flex: 1 0 max-content;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  min-height: 42px;
  padding: .72rem .72rem;
  border: 1px solid rgba(111, 18, 48, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--wine);
  cursor: pointer;
  font: inherit;
  font-size: clamp(.68rem, .58vw, .78rem);
  font-weight: 800;
  line-height: 1.15;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.faq-tab i {
  flex: 0 0 auto;
  color: var(--rose-2);
  font-size: .92rem;
}

.faq-tab > span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: normal;
  text-align: center;
  white-space: nowrap;
}

.faq-tab-note {
  display: inline;
  margin-left: .25rem;
}

.faq-tab:hover,
.faq-tab.active {
  border-color: rgba(111, 18, 48, 0.82);
  background: var(--wine);
  color: #fff;
  box-shadow: 0 12px 26px rgba(111, 18, 48, 0.16);
  transform: translateY(-2px);
}

.faq-tab:hover i,
.faq-tab.active i {
  color: #fff;
}

.faq-list {
  display: grid;
  gap: .72rem;
}

.faq-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
  min-height: 42px;
  margin-top: .95rem;
}

.faq-controls:empty {
  display: none;
}

.faq-page-status {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.faq-page-button {
  min-height: 38px;
  padding: .62rem .95rem;
  border: 1px solid rgba(111, 18, 48, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--wine);
  cursor: pointer;
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, opacity .25s ease;
}

.faq-page-button:not(:disabled):hover {
  border-color: rgba(111, 18, 48, 0.82);
  background: var(--wine);
  color: #fff;
  transform: translateY(-2px);
}

.faq-page-button:disabled {
  cursor: not-allowed;
  opacity: .38;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(111, 18, 48, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.faq-item.open {
  border-color: rgba(111, 18, 48, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 247, 0.78)),
    radial-gradient(circle at top right, rgba(201, 137, 140, 0.18), transparent 36%);
  box-shadow: 0 14px 32px rgba(111, 18, 48, 0.1);
}

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  gap: .85rem;
  padding: .9rem 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--wine);
  font: inherit;
  font-weight: 800;
  line-height: 1.25;
  text-align: left;
}

.faq-question i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(111, 18, 48, 0.08);
  color: var(--rose-2);
  font-size: .82rem;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.faq-item.open .faq-question i {
  background: var(--wine);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1rem;
  opacity: 0;
  text-align: left;
  transition: grid-template-rows .28s ease, opacity .2s ease, padding .28s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 1rem;
  opacity: 1;
}

.faq-answer > * {
  min-height: 0;
  overflow: hidden;
}

.faq p,
.faq li {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.68;
}

.faq ul {
  display: grid;
  gap: .35rem;
  padding-left: 1.1rem;
}

.contact-section {
  overflow: hidden;
  padding-bottom: clamp(1.45rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, var(--wine), #8b334c 58%, var(--rose-2));
  color: #fff;
}

.contact-section::before {
  right: -14vw;
  top: 12%;
  border-color: rgba(255,255,255,.14);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.contact-section .eyebrow,
.contact-section h2,
.contact-section p {
  color: #fff;
}

.contact-section .btn-primary {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.95), transparent 30%),
    linear-gradient(135deg, #fffefe, #f5deda);
  color: var(--wine);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 42px rgba(44, 16, 28, 0.28);
}

.contact-section .btn-primary::after {
  background: rgba(44, 16, 28, 0.28);
}

.contact-section .btn-primary:hover,
.contact-section .btn-primary:focus-visible {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 1), transparent 30%),
    linear-gradient(135deg, #ffffff, #f0c7c4);
}

.contact-text h2 {
  max-width: 22ch;
  margin-bottom: .85rem;
  font-size: clamp(2.25rem, 4vw, 3.55rem);
  line-height: .9;
}

.instagram-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 52px;
  padding: .4rem .86rem .4rem .44rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.1);
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.instagram-link i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--wine);
  background: #fff;
  box-shadow: 0 8px 18px rgba(44, 16, 28, 0.16);
}

.instagram-link:hover,
.instagram-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 32px rgba(44, 16, 28, 0.2);
}

.contact-card {
  min-height: 310px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: .7rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.contact-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.contact-card span {
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
}

.contact-card a {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: 1.4rem 0;
  background: #2c101c;
  color: rgba(255,255,255,.76);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-wrap a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 30;
  isolation: isolate;
  overflow: hidden;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, #21bd5f, #25d366 58%, #128c4a);
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 34px rgba(37, 211, 102, 0.34),
    0 0 0 8px rgba(37, 211, 102, 0.08);
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 24px 44px rgba(37, 211, 102, 0.38),
    0 0 0 10px rgba(37, 211, 102, 0.1);
  filter: saturate(1.05);
}

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

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

@media (max-width: 1160px) and (min-width: 981px) {
  .nav-wrap {
    gap: .65rem;
  }

  .menu-shell {
    gap: .65rem;
  }

  .menu {
    gap: .5rem;
  }

  .menu a {
    font-size: .84rem;
  }

  .whatsapp-cta {
    min-height: 42px;
    padding: .68rem .9rem;
    font-size: .76rem;
    white-space: nowrap;
  }

  .nav-instagram {
    width: 48px;
    height: 48px;
  }

  .nav-instagram i {
    width: 44px;
    height: 44px;
    font-size: 1.32rem;
  }

  .faq {
    width: 100%;
  }

  .faq-tab {
    flex: 1 1 100%;
    min-width: 0;
    font-size: .72rem;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .menu-shell {
    position: fixed;
    z-index: 30;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-height) + .65rem);
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    justify-items: center;
    gap: 1.15rem .75rem;
    padding: 1.35rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgb(251, 246, 242);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow: var(--shadow);
    text-align: center;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .menu-shell.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu {
    display: grid;
    align-items: center;
    justify-content: center;
    justify-items: center;
    grid-column: 1 / -1;
    gap: 1rem;
    width: 100%;
  }

  .menu li {
    width: 100%;
    display: grid;
    place-items: center;
    text-align: center;
  }

  .menu a {
    display: grid;
    place-items: center;
    width: 100%;
    padding: .36rem .35rem;
    text-align: center;
    font-size: 1.24rem;
    line-height: 1.25;
  }

  .menu a::after {
    display: none;
  }

  .menu-shell .whatsapp-cta {
    width: auto;
    max-width: 260px;
    min-height: 46px;
    padding: .78rem 1.25rem;
    font-size: .92rem;
    justify-self: center;
    margin-inline: auto;
    white-space: nowrap;
  }

  .menu-shell .nav-instagram {
    justify-self: center;
    margin-inline: auto;
    width: 54px;
    height: 54px;
  }

  .menu-shell .nav-instagram i {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .nav-wrap {
    gap: .75rem;
  }

  .hero-grid,
  .about-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    width: 100%;
    justify-items: stretch;
  }

  .faq {
    width: 100%;
    max-width: 100%;
  }

  .mini-testimonial,
  .faq {
    padding-inline: clamp(1rem, 3vw, 1.5rem);
  }

  .faq-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .faq-question span {
    overflow-wrap: anywhere;
  }

  .hero {
    padding-inline: 0;
  }

  .hero-grid {
    justify-items: center;
    text-align: center;
  }

  .hero-copy,
  .hero-copy p,
  .about .section-heading,
  .about-copy,
  .contact-text,
  .contact-text h2 {
    max-width: 100%;
  }

  .hero-copy {
    display: grid;
    justify-items: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  .hero-copy p,
  .about-copy p,
  .contact-text p {
    margin-inline: auto;
  }

  .hero-copy p {
    max-width: 62ch;
    font-size: clamp(.92rem, 1.2vw + .68rem, 1.06rem);
    line-height: 1.65;
  }

  .cta-row,
  .contact-actions {
    justify-content: center;
  }

  .hero-bg {
    opacity: .22;
    background-size: 900px auto;
    background-position: 44% center;
  }

  .about {
    background: url("img/background-mobile.webp") center / cover no-repeat;
    padding-top: clamp(2.4rem, 4vw, 3.2rem);
  }

  .gallery-section,
  .results-section {
    background: url("img/background-mobile.webp") center / cover no-repeat;
  }

  .about-grid {
    gap: clamp(.85rem, 2vw, 1.35rem);
  }

  h1 {
    max-width: 20ch;
  }

  .hero-card img {
    min-height: 360px;
    object-position: center;
  }

  .hero-card {
    width: min(100%, 830px);
    margin-right: 0;
    justify-self: center;
  }

  .about .section-heading {
    margin-inline: auto;
    padding-top: 0;
    text-align: center;
  }

  .about .section-heading .eyebrow {
    justify-content: center;
  }

  .about .section-heading h2 {
    max-width: 26ch;
    margin-inline: auto;
  }

  .section-slogan {
    justify-content: center;
    margin-inline: auto;
  }

  .about-copy {
    justify-self: center;
    width: min(100%, 62ch);
    max-width: 62ch;
    padding-top: .95rem;
    padding-bottom: .5rem;
    padding-left: clamp(.95rem, 2vw, 1.3rem);
    text-align: left;
  }

  .about-photo {
    justify-self: center;
    width: min(52vw, 280px);
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .about-photo img {
    min-height: 0;
  }

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

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

  .results-intro {
    grid-template-columns: 1fr;
  }

  .results-intro {
    gap: .75rem;
    text-align: center;
  }

  .results-intro .section-heading {
    margin-inline: auto;
  }

  .results-intro .eyebrow {
    justify-content: center;
  }

  .results-viewport {
    min-height: clamp(360px, 66vw, 560px);
  }

  .result-media,
  .result-media img,
  .result-image-placeholder {
    min-height: clamp(285px, 54vw, 470px);
  }

  .gallery-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: clamp(150px, 25vw, 230px);
  }

  .gallery-responsive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: clamp(.9rem, 2.4vw, 1.25rem);
  }

  .gallery-responsive .gallery-item:nth-child(2),
  .gallery-responsive .gallery-item:nth-child(3),
  .gallery-responsive .gallery-item:last-child {
    margin-top: 0;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 852px) {
  h1 {
    font-size: clamp(3.15rem, 6.3vw, 3.6rem);
  }

  .hero-copy p {
    max-width: 68ch;
    font-size: clamp(.92rem, 1.25vw + .68rem, 1.04rem);
    line-height: 1.6;
  }
}

@media (max-width: 760px) {
  .contact-text,
  .contact-text h2,
  .contact-text p {
    text-align: center;
  }

  .contact-section .eyebrow,
  .contact-actions {
    justify-content: center;
  }

  .contact-text h2,
  .contact-text p {
    margin-inline: auto;
  }

  .faq-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .faq-tab {
    flex: 1 1 100%;
    min-width: 0;
    padding-inline: .62rem;
    font-size: .64rem;
  }

  .faq-tab > span {
    white-space: nowrap;
  }

  .faq-tab-note {
    display: inline;
    margin-left: .25rem;
    font-size: .92em;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 74px;
  }

  .container {
    padding-inline: 1rem;
  }

  .logo-mark {
    width: 52px;
    height: 52px;
  }

  .logo-copy strong {
    font-size: 1.5rem;
  }

  .logo-copy small {
    font-size: .62rem;
    letter-spacing: .14em;
  }

  .hero {
    min-height: auto;
    padding-inline: 0;
    text-align: center;
  }

  .hero-grid,
  .section-heading,
  .benefits,
  .about-copy,
  .about-photo,
  .treatment-summary article,
  .treatment-card,
  .results-slider,
  .steps article,
  .mini-testimonial,
  .faq,
  .contact-text,
  .footer-wrap {
    text-align: center;
  }

  .eyebrow,
  .section-heading.centered .eyebrow,
  .benefits .eyebrow,
  .contact-section .eyebrow {
    justify-content: center;
  }

  .section-slogan {
    max-width: 30rem;
    margin-inline: auto;
    padding-top: .95rem;
    text-align: center;
    line-height: 1.45;
  }

  .section-slogan::before {
    left: 50%;
    transform: translateX(-50%);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 10.8vw, 3.25rem);
  }

  .hero-copy p {
    max-width: 52ch;
    font-size: clamp(1rem, 1.9vw + .68rem, 1.12rem);
  }

  .section-heading h2,
  .benefits h2,
  .contact-text h2,
  .faq h2 {
    font-size: clamp(2.2rem, 12vw, 3.15rem);
  }

  .faq .faq-title {
    font-size: clamp(1.35rem, 5vw, 1.8rem);
    line-height: 1.05;
  }

  .about .section-heading h2,
  .treatments .section-heading h2,
  .experience .section-heading h2,
  .results-intro .section-heading h2,
  .benefits h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.55rem);
  }

  .about .section-heading h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .contact-text h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.6vw, 2.55rem);
    line-height: .92;
  }

  .about {
    padding-block: clamp(1.8rem, 6vw, 2.7rem);
  }

  .hero-card img {
    min-height: 320px;
  }

  .about-copy {
    width: min(100%, 34rem);
    padding: .85rem 0 .35rem 1rem;
    border-left: 1px solid rgba(111, 18, 48, 0.28);
    border-top: 0;
    font-size: 1rem;
    text-align: left;
  }

  .about-copy::before {
    left: -3px;
    top: .85rem;
    width: 5px;
    height: 46px;
    transform: none;
  }

  .about-photo {
    width: min(68vw, 210px);
    min-height: 0;
  }

  .about-photo img {
    min-height: 0;
  }

  .quote-panel {
    width: 100%;
    margin-top: clamp(1.4rem, 6vw, 2.4rem);
    padding: .15rem .85rem 1.1rem;
  }

  .quote-panel p {
    max-width: 34ch;
    font-size: clamp(1.35rem, 6.2vw, 1.85rem);
  }

  .treatment-grid,
  .treatment-summary,
  .steps,
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .results-intro {
    margin-bottom: 1.1rem;
  }

  .results-viewport {
    min-height: clamp(315px, 78vw, 390px);
  }

  .result-media,
  .result-media img,
  .result-image-placeholder {
    min-height: clamp(245px, 62vw, 300px);
  }

  .result-media img {
    object-fit: contain;
    transform: none;
  }

  .gallery-mosaic {
    grid-auto-rows: minmax(240px, auto);
  }

  .gallery-responsive {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    width: min(82vw, 360px);
    margin-inline: auto;
    gap: clamp(.8rem, 3vw, 1.15rem);
  }

  .gallery-item,
  .gallery-item-large,
  .gallery-item-tall,
  .gallery-item-wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .technology-highlight {
    justify-content: center;
  }

  .faq h2 {
    max-width: none;
    margin-inline: auto;
  }

  .faq .eyebrow,
  .faq-tabs,
  .faq-controls {
    justify-content: center;
  }

  .faq-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .faq-question {
    text-align: left;
  }

  .tech-pill {
    min-height: 40px;
    padding: .65rem .82rem;
    font-size: .74rem;
    letter-spacing: .05em;
  }

  .treatment-summary article {
    min-height: auto;
  }

  .treatment-summary i,
  .treatment-card i,
  .steps span {
    margin-inline: auto;
  }

  .benefit-list div {
    border-left: 0;
    border-top: 3px solid var(--rose-2);
  }

  .btn,
  .whatsapp-cta {
    width: 100%;
    max-width: 360px;
  }

  .instagram-link {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  .contact-actions,
  .cta-row {
    align-items: center;
    flex-direction: column;
  }

  .contact-card {
    min-height: 240px;
    padding: 1.4rem;
  }

  .contact-card a {
    font-size: clamp(1.05rem, 5vw, 1.25rem);
    overflow-wrap: anywhere;
  }

  .footer-wrap {
    justify-content: center;
  }

  .wa-float {
    right: .85rem;
    bottom: .85rem;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 430px) {
  .container {
    padding-inline: .85rem;
  }

  .logo {
    gap: .55rem;
    min-width: 0;
  }

  .logo-copy strong {
    font-size: clamp(1.25rem, 8vw, 1.5rem);
  }

  .logo-copy small {
    font-size: .55rem;
    letter-spacing: .1em;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .menu-shell {
    left: .7rem;
    right: .7rem;
    grid-template-columns: 1fr;
    gap: 1.05rem .5rem;
    padding-inline: .8rem;
    max-height: none;
    overflow-y: visible;
  }

  .menu-shell .whatsapp-cta {
    width: min(100%, 220px);
    max-width: 100%;
    padding-inline: 1rem;
    font-size: .88rem;
  }

  .menu-shell .nav-instagram {
    grid-column: 1;
    width: 50px;
    height: 50px;
  }

  .menu-shell .nav-instagram i {
    width: 47px;
    height: 47px;
    font-size: 1.42rem;
  }

  h1 {
    font-size: clamp(2.4rem, 13.4vw, 3.15rem);
  }

  .hero-card img {
    min-height: 260px;
  }

  .gallery-responsive {
    width: min(82vw, 320px);
    gap: .75rem;
  }

  .section-heading h2,
  .benefits h2,
  .contact-text h2,
  .faq h2 {
    font-size: clamp(1.95rem, 11vw, 2.65rem);
  }

  .faq .faq-title {
    font-size: clamp(1.28rem, 7vw, 1.65rem);
    line-height: 1.05;
  }

  .treatment-card,
  .results-slider,
  .steps article,
  .faq,
  .mini-testimonial {
    padding-inline: 1rem;
  }

  .results-slider {
    padding-inline: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .results-slider::before {
    display: none;
  }

  .result-media,
  .result-media img,
  .result-image-placeholder {
    border-radius: 0;
  }

  .faq-tabs {
    gap: .45rem;
  }

  .faq-controls {
    flex-wrap: wrap;
  }

  .faq-tab {
    flex-basis: 100%;
    min-width: 0;
    padding-inline: .62rem;
    font-size: .6rem;
  }

  .faq-question {
    grid-template-columns: minmax(0, 1fr) 30px;
    min-height: 56px;
    padding-inline: .85rem;
    font-size: .94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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