:root {
  --ink: #1a161b;
  --ink-soft: #342d32;
  --muted: #74676e;
  --paper: #fffdfb;
  --ivory: #f8f2ee;
  --blush: #f7e9ed;
  --blush-deep: #ead1d9;
  --rose: #d2366b;
  --rose-dark: #b72a5b;
  --rose-soft: #ef709b;
  --beige: #cbb1a7;
  --line: rgba(26, 22, 27, 0.12);
  --shadow: 0 24px 70px rgba(82, 43, 59, 0.14);
  --serif: "Cormorant Garamond", "Baskerville", "Times New Roman", serif;
  --sans: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Allura", "Segoe Script", "Snell Roundhand", "Bradley Hand", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-is-open {
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

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

button,
input,
select,
textarea {
  min-width: 0;
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

section[id],
footer[id] {
  scroll-margin-top: 100px;
}

::selection {
  color: #fff;
  background: var(--rose);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(210, 54, 107, 0.35);
  outline-offset: 3px;
}

.site-grain {
  position: fixed;
  z-index: 40;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(26, 22, 27, 0.08) 0,
    rgba(26, 22, 27, 0.08) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: multiply;
}

.container {
  width: min(1180px, calc(100% - 52px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--rose);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow i,
.section-count i {
  font-style: normal;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(210, 54, 107, 0.1);
  animation: pulse-dot 3s ease-in-out infinite;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 14px 30px rgba(210, 54, 107, 0.23);
}

.button-primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 18px 36px rgba(210, 54, 107, 0.31);
}

.button-secondary {
  border-color: rgba(26, 22, 27, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 25px rgba(82, 43, 59, 0.06);
}

.button-secondary:hover {
  border-color: rgba(210, 54, 107, 0.28);
  color: var(--rose-dark);
  background: #fff;
  box-shadow: 0 16px 31px rgba(82, 43, 59, 0.1);
}

.button-call {
  border-color: rgba(210, 54, 107, 0.28);
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 25px rgba(82, 43, 59, 0.06);
  white-space: nowrap;
}

.button-call:hover {
  border-color: var(--rose);
  color: #fff;
  background: var(--rose);
  box-shadow: 0 16px 31px rgba(210, 54, 107, 0.2);
}

.phone-icon {
  font-size: 0.95em;
  line-height: 1;
}

.button-small {
  min-height: 44px;
  padding: 0 17px;
  font-size: 0.64rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms var(--ease);
}

.text-link:hover {
  gap: 15px;
  color: var(--rose);
}

.text-link > span {
  color: var(--rose);
  font-size: 1rem;
  line-height: 0;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 251, 0.38);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 251, 0.9);
  box-shadow: 0 10px 32px rgba(49, 28, 38, 0.07);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 134px;
  height: 67px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 29px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  white-space: nowrap;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--rose);
}

.phone-icon {
  color: currentColor;
  font-size: 0.9rem;
  line-height: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Hero */

.hero-luxe {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  padding: 143px 0 43px;
  background:
    radial-gradient(circle at 7% 12%, rgba(242, 214, 225, 0.75), transparent 28%),
    radial-gradient(circle at 94% 80%, rgba(218, 193, 181, 0.26), transparent 25%),
    linear-gradient(135deg, #fffdfb 0%, #fbf4f1 53%, #f6e8eb 100%);
}

.hero-bg-blur {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(55px);
}

.hero-bg-blur-one {
  top: 12%;
  left: -120px;
  width: 380px;
  height: 380px;
  background: rgba(238, 148, 180, 0.2);
}

.hero-bg-blur-two {
  right: -110px;
  bottom: 7%;
  width: 340px;
  height: 340px;
  background: rgba(206, 177, 165, 0.23);
}

.hero-luxe-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(38px, 5vw, 72px);
}

.hero-copy {
  position: relative;
  min-width: 0;
}

.hero-copy::before {
  position: absolute;
  top: -55px;
  left: -55px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(210, 54, 107, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-script-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 3px 0 12px;
}

.hero-script-row::after {
  width: 57px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(210, 54, 107, 0.68), rgba(210, 54, 107, 0));
}

.hero-script {
  display: inline-block;
  color: var(--rose);
  font: 400 clamp(1.9rem, 3.3vw, 3.3rem) / 0.95 var(--script);
}

.hero-luxe .hero-copy h1 {
  display: flex;
  max-width: 580px;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  font-weight: 400;
}

.hero-title-main {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.1vw, 5.25rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero-title-accent {
  display: block;
  margin-left: clamp(24px, 5vw, 69px);
  color: var(--rose);
  font: 400 clamp(2.7rem, 4.8vw, 4.75rem) / 0.94 var(--script);
}

.hero-luxe .hero-lead {
  max-width: 520px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 19px;
}

.hero-chip {
  display: inline-flex;
  min-height: 33px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(210, 54, 107, 0.13);
  border-radius: 999px;
  color: #705f68;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 20px rgba(82, 43, 59, 0.045);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 29px;
}

.hero-features-pro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  margin-top: 32px;
}

.hero-feature-card {
  position: relative;
  min-width: 0;
  min-height: 76px;
  padding: 14px 5px 11px 47px;
  border-top: 1px solid rgba(210, 54, 107, 0.17);
}

.hero-feature-card::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 31px;
  height: 31px;
  content: "";
  border: 1px solid rgba(210, 54, 107, 0.2);
  border-radius: 50%;
  background: rgba(210, 54, 107, 0.08);
}

.hero-feature-card strong {
  position: absolute;
  top: 23px;
  left: 9px;
  color: var(--rose);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-feature-card h3 {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-feature-card p {
  max-width: 180px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.1vw, 0.86rem);
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 660px;
}

.hero-visual-main {
  position: relative;
  width: min(100%, 660px);
  height: 640px;
  margin-top: -18px;
  margin-left: auto;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.62);
  border-radius: 46% 46% 28px 28px / 28% 28% 22px 22px;
  background: #f3e6e3;
  box-shadow: var(--shadow);
}

.hero-visual-main::after {
  position: absolute;
  z-index: 2;
  inset: 17px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.53);
  border-radius: inherit;
  pointer-events: none;
}

.hero-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% 37%;
  transition: transform 800ms var(--ease);
}

.hero-visual-main:hover img {
  transform: scale(1.035);
}

.hero-note {
  position: absolute;
  z-index: 3;
}

.hero-note-left {
  bottom: 38px;
  left: 19px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 19px 20px 17px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  color: #715d68;
  background: rgba(255, 253, 251, 0.76);
  box-shadow: 0 16px 36px rgba(74, 43, 55, 0.13);
  backdrop-filter: blur(12px);
  font: 400 clamp(1.45rem, 2.2vw, 2.25rem) / 0.88 var(--script);
}

.hero-note-right {
  top: 67px;
  right: 0;
  display: grid;
  gap: 10px;
  padding: 18px 15px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  color: var(--ink-soft);
  background: rgba(248, 239, 236, 0.88);
  box-shadow: 0 16px 34px rgba(74, 43, 55, 0.11);
  backdrop-filter: blur(11px);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-side-card {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 16px;
  width: 258px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 46px rgba(72, 45, 57, 0.17);
  animation: gentle-float 6s ease-in-out infinite;
}

.hero-side-image {
  height: 168px;
  overflow: hidden;
}

.hero-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-copy {
  padding: 16px 18px 19px;
}

.hero-side-copy small {
  display: block;
  margin-bottom: 7px;
  color: var(--rose);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-side-copy strong {
  display: block;
  max-width: 205px;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 2.18rem;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.9;
}

.hero-side-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.hero-float-badge {
  position: absolute;
  z-index: 5;
  top: 205px;
  left: -24px;
  display: flex;
  width: 112px;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(210, 54, 107, 0.2);
  border-radius: 50%;
  color: var(--ink-soft);
  background: rgba(255, 253, 251, 0.78);
  box-shadow: 0 15px 34px rgba(82, 43, 59, 0.1);
  backdrop-filter: blur(12px);
  animation: spa-orbit 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-float-badge::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px dashed rgba(210, 54, 107, 0.25);
  border-radius: 50%;
}

.hero-float-badge > span {
  position: relative;
  color: var(--rose);
  font-size: 1.05rem;
}

.hero-float-badge > small {
  position: relative;
  max-width: 77px;
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.55;
  text-align: center;
}

.hero-bottom-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 1fr;
  gap: 14px;
  margin-top: 25px;
}

.hero-strip-card {
  min-width: 0;
  padding: 17px 21px;
  border: 1px solid rgba(24, 21, 26, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 11px 27px rgba(80, 47, 61, 0.06);
}

.hero-strip-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-strip-card strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

/* Static trust strip */

.marquee-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: #fff;
  background: #171319;
}

.marquee-track {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 17px 26px;
}

.marquee-track span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track i {
  color: var(--rose-soft);
  font-size: 0.75rem;
  font-style: normal;
}

/* About */

.about-section {
  position: relative;
  overflow: hidden;
  padding: 125px 0 130px;
  background: var(--paper);
}

.about-section::after {
  position: absolute;
  right: -190px;
  bottom: -220px;
  width: 490px;
  height: 490px;
  content: "";
  border: 1px solid rgba(210, 54, 107, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.about-visual {
  position: relative;
  min-width: 0;
  min-height: 555px;
}

.about-frame {
  width: min(100%, 405px);
  height: 500px;
  margin-left: 25px;
  overflow: hidden;
  border-radius: 210px 210px 18px 18px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mini {
  position: absolute;
  right: 0;
  bottom: 26px;
  width: 176px;
  height: 230px;
  overflow: hidden;
  border: 7px solid var(--paper);
  border-radius: 94px 94px 14px 14px;
  box-shadow: 0 20px 42px rgba(74, 44, 57, 0.16);
  transform: rotate(5deg);
}

.about-mini::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 36%, rgba(24, 21, 26, 0.2));
}

.about-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mini span {
  position: absolute;
  z-index: 1;
  right: 12px;
  bottom: 14px;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.24;
  text-align: right;
  text-shadow: 0 2px 12px rgba(24, 21, 26, 0.35);
  text-transform: uppercase;
}

.about-mini span b {
  color: #ffd4e2;
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -7px;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  gap: 4px;
  border: 1px solid rgba(210, 54, 107, 0.24);
  border-radius: 50%;
  color: var(--rose);
  background: var(--blush);
  font-family: var(--serif);
  line-height: 1;
  text-align: center;
  transform: rotate(-10deg);
}

.about-badge::before {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px dashed rgba(210, 54, 107, 0.36);
  border-radius: inherit;
}

.about-badge span {
  font-size: 0.77rem;
}

.about-badge strong {
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.02;
}

.about-copy {
  min-width: 0;
  max-width: 620px;
}

.about-copy h2,
.section-heading h2,
.appointment-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.about-copy h2 em,
.section-heading h2 em,
.appointment-copy h2 em {
  color: var(--rose);
  font-style: normal;
}

.about-copy > p:not(.about-note) {
  max-width: 535px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

.about-note {
  max-width: 535px;
  margin: 23px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--rose);
  color: var(--ink-soft);
  background: var(--ivory);
  font-family: var(--serif);
  font-size: 1.14rem;
  line-height: 1.2;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.about-stats > div {
  min-width: 92px;
}

.about-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-copy .text-link {
  margin-top: 28px;
}

/* Services carousel */

.services-gallery-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0 125px;
  background: var(--ivory);
}

.services-gallery-section::before {
  position: absolute;
  top: -150px;
  left: -130px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(203, 177, 167, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.services-gallery-head,
.reviews-polished-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
}

.services-gallery-head {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.services-gallery-head h2 {
  max-width: 640px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.9vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.services-gallery-head h2 em {
  color: var(--rose);
  font-style: normal;
}

.services-gallery-controls {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.services-arrow-group {
  display: flex;
  gap: 8px;
}

.service-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(26, 22, 27, 0.16);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms var(--ease), opacity 180ms ease;
}

.service-arrow:hover:not(:disabled) {
  border-color: var(--rose);
  color: #fff;
  background: var(--rose);
  transform: translateY(-3px);
}

.service-arrow:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.services-viewport,
.reviews-polished-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.services-slider,
.reviews-polished-slider {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  min-width: 0;
  padding: 5px 2px 14px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.services-slider::-webkit-scrollbar,
.reviews-polished-slider::-webkit-scrollbar {
  display: none;
}

.services-slider {
  grid-auto-columns: calc((100% - 48px) / 4);
}

.treatment-card {
  display: flex;
  min-width: 0;
  height: 650px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(26, 22, 27, 0.1);
  border-radius: 170px 170px 23px 23px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(68, 41, 52, 0.075);
  scroll-snap-align: start;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.treatment-card:hover {
  box-shadow: 0 26px 55px rgba(68, 41, 52, 0.15);
  transform: translateY(-7px);
}

.treatment-card-image {
  height: 386px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--blush);
}

.treatment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

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

.treatment-card-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 21px;
}

.treatment-card-body h3 {
  min-height: 2.15em;
  margin: 0 0 11px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.08rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.treatment-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.68;
}

.treatment-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--rose);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: gap 180ms var(--ease), color 180ms ease;
}

.treatment-link span {
  font-size: 1rem;
  line-height: 0;
}

.treatment-link:hover {
  gap: 15px;
  color: var(--rose-dark);
}

/* Before and after */

.results-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--paper);
}

.results-section::after {
  position: absolute;
  right: -175px;
  bottom: -220px;
  width: 460px;
  height: 460px;
  content: "";
  border: 1px solid rgba(210, 54, 107, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 42px;
}

.section-heading-side {
  max-width: 310px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.section-heading-side p {
  margin: 0 0 19px;
}

.results-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.result-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 13px 29px rgba(75, 47, 58, 0.055);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.result-card:hover {
  box-shadow: 0 25px 45px rgba(75, 47, 58, 0.14);
  transform: translateY(-6px);
}

.result-image {
  position: relative;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
  background: var(--blush);
}

.result-card-large .result-image {
  aspect-ratio: 1.58 / 1;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.result-card:hover .result-image img {
  transform: scale(1.04);
}

.result-labels {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.result-labels span {
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 251, 0.85);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}

.result-labels span:last-child {
  color: #fff;
  background: rgba(210, 54, 107, 0.9);
}

.result-index {
  position: absolute;
  top: 14px;
  right: 15px;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(24, 21, 26, 0.35);
}

.result-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 18px;
}

.result-card-footer small {
  display: block;
  margin-bottom: 5px;
  color: var(--rose);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.result-card-footer h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.result-card-footer > a {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.result-card-footer > a:hover {
  color: #fff;
  background: var(--rose);
  transform: rotate(8deg);
}

.results-disclaimer {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.6;
}

.results-disclaimer > span {
  margin-right: 5px;
  color: var(--rose);
}

/* Reviews */

.reviews-premium {
  position: relative;
  overflow: hidden;
  padding: 90px 0 94px;
  background:
    radial-gradient(circle at 5% 10%, rgba(245, 216, 226, 0.72), transparent 25%),
    linear-gradient(145deg, #fffdfb 0%, #fbf4f1 100%);
}

.reviews-premium::before {
  position: absolute;
  top: -210px;
  right: -150px;
  width: 430px;
  height: 430px;
  content: "";
  border: 1px solid rgba(210, 54, 107, 0.1);
  border-radius: 50%;
}

.reviews-premium-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(285px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(35px, 6vw, 80px);
}

.reviews-premium-intro {
  position: sticky;
  top: 110px;
  min-width: 0;
}

.reviews-premium-intro h2 {
  max-width: 490px;
  margin: 0 0 19px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.5vw, 4.55rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.reviews-premium-intro p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.72;
}

.reviews-summary-box-large {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 25px;
  padding: 25px 24px;
  border: 1px solid rgba(26, 22, 27, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(68, 41, 52, 0.08);
}

.reviews-summary-box-large strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 0.9;
}

.testimonial-card .stars {
  color: #e6a81e;
  letter-spacing: 0.16em;
}

.review-summary-kicker {
  color: var(--rose);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.summary-rule {
  width: 44px;
  height: 1px;
  margin: 3px 0 2px;
  background: var(--rose);
}

.reviews-summary-box-large small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.reviews-summary-box-large .button {
  margin-top: 8px;
}

.reviews-premium-stage {
  min-width: 0;
  padding: 20px 20px 21px;
  border: 1px solid rgba(26, 22, 27, 0.09);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 22px 55px rgba(68, 41, 52, 0.09);
}

.reviews-polished-controls {
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.reviews-polished-slider {
  grid-auto-columns: calc((100% - 32px) / 3);
}

.testimonial-card {
  display: flex;
  min-width: 0;
  min-height: 318px;
  flex-direction: column;
  padding: 23px 21px 22px;
  border: 1px solid rgba(210, 54, 107, 0.16);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(68, 41, 52, 0.06);
  scroll-snap-align: start;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.testimonial-card:hover {
  box-shadow: 0 19px 38px rgba(68, 41, 52, 0.12);
  transform: translateY(-4px);
}

.testimonial-top {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.testimonial-top > img:first-child {
  width: 51px;
  height: 51px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-top > div {
  min-width: 0;
}

.testimonial-top strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.2;
}

.testimonial-top span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.testimonial-card .stars {
  display: block;
  margin: 20px 0 12px;
  font-size: 0.8rem;
}

.testimonial-card p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.72;
}

.slider-dots {
  display: flex;
  gap: 6px;
}

.reviews-dots {
  justify-content: center;
  margin-top: 17px;
}

.reviews-polished-controls.is-static,
.reviews-dots.is-static {
  display: none;
}

.slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(210, 54, 107, 0.25);
  transition: width 180ms ease, background 180ms ease, border-radius 180ms ease;
}

.slider-dot.is-active {
  width: 23px;
  border-radius: 999px;
  background: var(--rose);
}

/* Appointment */

.appointment-section {
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background: var(--blush);
}

.appointment-bg,
.appointment-overlay {
  position: absolute;
  inset: 0;
}

.appointment-bg {
  z-index: 0;
}

.appointment-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
}

.appointment-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(247, 233, 237, 0.98) 0%, rgba(247, 233, 237, 0.88) 47%, rgba(247, 233, 237, 0.7) 100%);
}

.appointment-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 105px);
}

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

.appointment-copy h2 {
  max-width: 510px;
  font-size: clamp(3.3rem, 5.2vw, 5.7rem);
}

.appointment-copy > p {
  max-width: 420px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.75;
}

.appointment-perks {
  display: grid;
  gap: 12px;
  margin-top: 27px;
}

.appointment-perks > div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.appointment-perks > div > span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-size: 0.56rem;
  font-weight: 800;
}

.appointment-form {
  min-width: 0;
  padding: clamp(25px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  background: rgba(255, 253, 251, 0.82);
  box-shadow: 0 25px 60px rgba(79, 44, 56, 0.15);
  backdrop-filter: blur(14px);
}

.form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 23px;
}

.form-heading > div small {
  display: block;
  margin-bottom: 7px;
  color: var(--rose);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.form-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.form-heading > span {
  color: var(--rose);
  font-size: 1.4rem;
}

.form-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  margin-bottom: 29px;
}

.form-progress > i {
  height: 1px;
  background: rgba(26, 22, 27, 0.13);
}

.form-progress-step {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  text-align: left;
}

.form-progress-step strong {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(26, 22, 27, 0.16);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.form-progress-step span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.form-progress-step:not(:disabled) {
  cursor: pointer;
}

.form-progress-step:disabled {
  cursor: default;
  opacity: 0.52;
}

.form-progress-step.is-active,
.form-progress-step.is-complete {
  color: var(--rose-dark);
}

.form-progress-step.is-active strong,
.form-progress-step.is-complete strong {
  border-color: var(--rose);
  color: #fff;
  background: var(--rose);
}

.form-step {
  min-width: 0;
}

.form-step-heading {
  margin-bottom: 20px;
}

.form-step-heading > span {
  display: block;
  margin-bottom: 7px;
  color: var(--rose);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.form-step-heading h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.form-step-heading p {
  max-width: 470px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

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

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 126px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(210, 54, 107, 0.1);
}

.form-step-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px 17px;
  margin-top: 24px;
}

.form-step-actions .form-next,
.form-step-actions .form-submit {
  flex: 1 1 240px;
  width: auto;
  margin-top: 0;
}

.form-step-actions-final {
  align-items: stretch;
  flex-direction: column;
}

.form-step-actions-final .form-submit {
  flex: 0 0 auto;
  width: 100%;
}

.form-back,
.form-call-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.form-back:hover,
.form-call-link:hover {
  color: var(--rose);
}

.form-call-link {
  min-width: 205px;
  color: var(--rose-dark);
}

.form-call-link span {
  color: var(--muted);
  font-weight: 600;
}

.form-privacy,
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  min-height: 1em;
  color: var(--rose);
  font-weight: 800;
}

.form-status.is-success {
  color: #3e8062;
}

/* Footer */

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: #141116;
}

.footer-grid {
  display: grid;
  gap: 38px;
  padding: 72px 0 58px;
}

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

.footer-brand img {
  width: 145px;
  height: 73px;
  padding: 7px 11px;
  object-fit: contain;
  object-position: left center;
  border-radius: 11px;
  background: #fff;
}

.footer-brand p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.05;
}

.footer-column {
  min-width: 0;
}

.footer-column > small {
  display: block;
  margin-bottom: 17px;
  color: #fff;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column > a,
.footer-column > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.73rem;
  line-height: 1.6;
}

.footer-column > a:hover {
  color: var(--rose-soft);
}

.footer-column > a.footer-call-button {
  display: inline-flex;
  width: auto;
  margin-bottom: 14px;
  color: var(--rose-soft);
}

.footer-column > a.footer-call-button:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.62rem;
}

.footer-bottom > span {
  min-width: 0;
}

.footer-bottom > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-bottom a:hover {
  color: var(--rose-soft);
}

.footer-bottom i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

/* Mobile booking bar */

.mobile-booking-bar {
  display: none;
}

/* Reveal and gentle motion */

.reveal {
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
}

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 5px rgba(210, 54, 107, 0.09);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(210, 54, 107, 0.02);
  }
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0) rotate(0.5deg);
  }
  50% {
    transform: translateY(-7px) rotate(-0.5deg);
  }
}

@keyframes spa-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(6px, -11px, 0) rotate(2deg);
  }
}

/* Responsive layout */

@media (max-width: 1180px) {
  .container {
    width: min(100% - 44px, 1080px);
  }

  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav a {
    font-size: 0.6rem;
  }

  .header-actions {
    gap: 9px;
  }

  .phone-link {
    font-size: 0.62rem;
  }

  .services-slider {
    grid-auto-columns: calc((100% - 16px) / 2.25);
  }

  .reviews-polished-slider {
    grid-auto-columns: calc((100% - 16px) / 2);
  }
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    padding: 0 22px;
    border-top: 1px solid transparent;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    background: rgba(255, 253, 251, 0.97);
    transition: max-height 300ms var(--ease), opacity 220ms ease, padding 300ms var(--ease), border-color 220ms ease;
  }

  .mobile-menu.is-open {
    max-height: 500px;
    padding-top: 8px;
    padding-bottom: 21px;
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .mobile-menu a:hover {
    color: var(--rose);
  }

  .mobile-menu .mobile-phone {
    color: var(--rose);
  }

  .hero-luxe-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 30px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .hero-visual-main {
    margin-top: 0;
    height: 570px;
  }

  .hero-side-card {
    bottom: 0;
    width: 230px;
  }

  .hero-side-image {
    height: 145px;
  }

  .hero-side-copy strong {
    font-size: 1.92rem;
  }

  .hero-bottom-strip {
    grid-template-columns: 1fr 1.45fr 1fr;
  }

  .about-grid {
    gap: 55px;
  }

  .reviews-premium-shell {
    gap: 38px;
  }
}

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

  .hero-luxe {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-luxe-grid {
    display: block;
  }

  .hero-copy {
    max-width: 620px;
    padding-bottom: 43px;
  }

  .hero-title-main {
    font-size: clamp(3.5rem, 8vw, 5.2rem);
  }

  .hero-title-accent {
    font-size: clamp(3rem, 7vw, 4.8rem);
  }

  .hero-visual {
    min-height: 610px;
  }

  .hero-float-badge {
    top: 185px;
    left: 3px;
    width: 96px;
    min-height: 96px;
  }

  .hero-visual-main {
    width: min(100%, 680px);
    height: 590px;
  }

  .hero-bottom-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-strip-card {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 17px;
  }

  .hero-strip-card span {
    margin: 0;
  }

  .hero-strip-card strong {
    text-align: right;
  }

  .about-section,
  .services-gallery-section,
  .results-section,
  .appointment-section {
    padding: 95px 0;
  }

  .reviews-premium {
    padding: 78px 0 82px;
  }

  .about-grid {
    grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
    gap: 38px;
  }

  .about-frame {
    height: 450px;
    margin-left: 0;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-mini {
    width: 145px;
    height: 195px;
  }

  .about-badge {
    left: -13px;
    width: 96px;
    height: 96px;
  }

  .section-heading {
    display: block;
  }

  .section-heading-side {
    margin-top: 23px;
  }

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

  .result-card-large {
    grid-column: 1 / -1;
  }

  .reviews-premium-shell {
    grid-template-columns: 1fr;
  }

  .reviews-premium-intro {
    position: static;
  }

  .reviews-premium-intro p {
    max-width: 550px;
  }

  .reviews-summary-box-large {
    max-width: 430px;
  }

  .appointment-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .appointment-copy {
    max-width: 620px;
  }

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

@media (max-width: 767px) {
  .container {
    width: min(100% - 30px, 560px);
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand img {
    width: 113px;
    height: 57px;
  }

  .hero-luxe {
    padding-top: 105px;
    padding-bottom: 28px;
  }

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

  .hero-script {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .hero-title-main {
    font-size: clamp(3.2rem, 14vw, 5.2rem);
  }

  .hero-title-accent {
    margin-left: 28px;
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .hero-luxe .hero-lead {
    margin-top: 21px;
    font-size: 0.88rem;
  }

  .hero-chip {
    min-height: 31px;
    padding: 0 10px;
    font-size: 0.53rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-features-pro {
    gap: 0 15px;
    margin-top: 28px;
  }

  .hero-feature-card {
    min-height: 70px;
    padding-top: 12px;
    padding-left: 40px;
  }

  .hero-feature-card h3 {
    font-size: 0.72rem;
  }

  .hero-feature-card p {
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 545px;
  }

  .hero-float-badge {
    top: 185px;
    left: 3px;
    width: 96px;
    min-height: 96px;
  }

  .hero-side-card {
    bottom: -8px;
  }

  .hero-visual-main {
    height: 470px;
    border-width: 6px;
    border-radius: 43% 43% 18px 18px / 25% 25% 16px 16px;
  }

  .hero-visual-main::after {
    inset: 12px;
  }

  .hero-note-left {
    bottom: 21px;
    left: 15px;
    padding: 14px 15px 13px;
    border-radius: 18px;
    font-size: 1.42rem;
  }

  .hero-note-right {
    top: 17px;
    right: 14px;
    gap: 7px;
    padding: 13px 11px;
    border-radius: 15px;
    font-size: 0.54rem;
  }

  .hero-side-card {
    position: relative;
    right: auto;
    bottom: auto;
    display: grid;
    width: 100%;
    grid-template-columns: 150px minmax(0, 1fr);
    margin-top: 18px;
    border-radius: 20px;
    animation: none;
  }

  .hero-side-image {
    height: 100%;
    min-height: 145px;
  }

  .hero-side-copy {
    padding: 16px 17px;
  }

  .hero-side-copy strong {
    font-size: 1.75rem;
  }

  .hero-side-copy p {
    font-size: 0.67rem;
  }

  .hero-strip-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .hero-strip-card strong {
    text-align: left;
  }

  .marquee-track {
    justify-content: flex-start;
    gap: 8px 13px;
    padding: 15px 15px;
  }

  .marquee-track span {
    font-size: 0.53rem;
  }

  .about-section,
  .services-gallery-section,
  .results-section,
  .appointment-section {
    padding: 82px 0;
  }

  .reviews-premium {
    padding: 70px 0 74px;
  }

  .about-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }

  .about-copy h2,
  .section-heading h2,
  .appointment-copy h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .about-copy > p:not(.about-note) {
    font-size: 0.87rem;
  }

  .about-note {
    font-size: 1.02rem;
  }

  .about-visual {
    min-height: 455px;
  }

  .about-frame {
    width: 78%;
    height: 420px;
  }

  .about-mini {
    right: 0;
    bottom: 13px;
    width: 145px;
    height: 190px;
  }

  .about-badge {
    top: 6px;
    left: -4px;
    width: 90px;
    height: 90px;
    font-size: 0.75rem;
  }

  .about-stats {
    gap: 18px;
  }

  .about-stats strong {
    font-size: 2rem;
  }

  .services-gallery-head {
    display: block;
  }

  .services-gallery-head h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .services-gallery-controls {
    justify-content: space-between;
    margin-top: 25px;
  }

  .services-slider {
    grid-auto-columns: 88%;
  }

  .treatment-card {
    height: 650px;
    border-radius: 135px 135px 20px 20px;
  }

  .treatment-card-image {
    height: 318px;
  }

  .treatment-card-body {
    padding: 22px 20px 19px;
  }

  .treatment-card-body h3 {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .treatment-card-body p {
    font-size: 0.82rem;
  }

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

  .result-card-large {
    grid-column: auto;
  }

  .result-card-large .result-image,
  .result-image {
    aspect-ratio: 1.5 / 1;
  }

  .reviews-summary-box-large {
    padding: 22px 20px;
  }

  .reviews-premium-stage {
    padding: 16px 13px 18px;
    border-radius: 20px;
  }

  .reviews-polished-controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .reviews-polished-slider {
    grid-auto-columns: 88%;
  }

  .testimonial-card {
    min-height: 300px;
    padding: 21px 18px 20px;
  }

  .testimonial-card p {
    font-size: 0.98rem;
  }

  .appointment-overlay {
    background: rgba(247, 233, 237, 0.88);
  }

  .appointment-layout {
    gap: 39px;
  }

  .appointment-form {
    padding: 23px 17px 24px;
    border-radius: 15px;
  }

  .form-heading h3 {
    font-size: 2.05rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-progress {
    grid-template-columns: minmax(0, 1fr) 10px minmax(0, 1fr) 10px minmax(0, 1fr);
    gap: 4px;
    margin-bottom: 25px;
  }

  .form-progress-step {
    align-items: center;
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  .form-progress-step strong {
    width: 27px;
    height: 27px;
  }

  .form-progress-step span {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .form-step-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .form-step-actions .form-next,
  .form-step-actions .form-submit,
  .form-call-link,
  .form-back {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }

  .footer-grid {
    padding: 56px 0 41px;
  }

  .footer-grid-clean {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding-bottom: 22px;
  }

  .mobile-booking-bar {
    position: fixed;
    z-index: 9999;
    right: auto;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 50%;
    display: grid;
    width: calc(100% - 28px);
    min-height: 64px;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 22px;
    color: #fff;
    background: rgba(183, 42, 91, 0.97);
    box-shadow: 0 15px 35px rgba(103, 39, 65, 0.3);
    transform: translateX(-50%);
  }

  .mobile-sticky-action {
    display: flex;
    min-width: 0;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 17px;
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
  }

  .mobile-sticky-action small,
  .mobile-sticky-action strong {
    display: block;
  }

  .mobile-sticky-action small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-sticky-action strong {
    overflow-wrap: normal;
    font-size: 0.71rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .mobile-sticky-icon {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: var(--rose-dark);
    background: #fff;
    font-size: 0.85rem;
  }

  .mobile-sticky-call {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-sticky-book {
    justify-content: space-between;
    padding-right: 8px;
    padding-left: 13px;
    background: #fff;
  }

  .mobile-sticky-book small {
    color: var(--rose);
  }

  .mobile-sticky-book strong {
    color: var(--rose-dark);
  }

  .mobile-sticky-book > span:last-child {
    display: grid;
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--rose);
    font-size: 0.95rem;
  }

  .site-footer {
    padding-bottom: 101px;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero-copy::before {
    top: -32px;
    left: -22px;
    width: 125px;
    height: 125px;
  }

  .hero-title-main {
    font-size: clamp(2.85rem, 14vw, 4.3rem);
  }

  .hero-title-accent {
    margin-left: 22px;
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .hero-features-pro {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 526px;
  }

  .hero-visual-main {
    height: 420px;
  }

  .hero-note-left {
    font-size: 1.3rem;
  }

  .hero-side-card {
    grid-template-columns: 128px minmax(0, 1fr);
  }

  .hero-side-copy strong {
    font-size: 1.52rem;
  }

  .hero-side-copy p {
    font-size: 0.61rem;
  }

  .about-visual {
    min-height: 408px;
  }

  .about-frame {
    height: 380px;
  }

  .about-mini {
    width: 126px;
    height: 164px;
  }

  .about-badge {
    width: 82px;
    height: 82px;
    font-size: 0.67rem;
  }

  .about-badge span {
    font-size: 0.62rem;
  }

  .about-badge strong {
    font-size: 0.7rem;
  }

  .treatment-card {
    height: 635px;
    border-radius: 115px 115px 18px 18px;
  }

  .treatment-card-image {
    height: 295px;
  }

  .treatment-card-body {
    padding-right: 17px;
    padding-left: 17px;
  }

  .treatment-card-body h3 {
    font-size: 1.75rem;
  }

  .testimonial-top > img:first-child {
    width: 46px;
    height: 46px;
  }

  .testimonial-card p {
    font-size: 0.96rem;
  }
}

@media (max-width: 360px) {
  .hero-side-card {
    grid-template-columns: 1fr;
  }

  .hero-side-image {
    height: 170px;
  }

  .hero-side-copy strong {
    font-size: 1.7rem;
  }

  .mobile-booking-bar {
    width: calc(100% - 20px);
  }

  .mobile-sticky-action {
    gap: 5px;
    padding-right: 5px;
    padding-left: 5px;
  }

  .mobile-sticky-action strong {
    font-size: 0.66rem;
  }

  .mobile-sticky-book {
    padding-right: 5px;
    padding-left: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Legal pages */

.legal-page {
  background: var(--ivory);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 251, 0.88);
}

.legal-header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-header .brand img {
  width: 125px;
  height: 63px;
}

.legal-main {
  padding: 78px 0 94px;
}

.legal-card {
  max-width: 820px;
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 22px 55px rgba(68, 41, 52, 0.08);
}

.legal-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.legal-intro {
  max-width: 600px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-updated {
  margin: 13px 0 43px;
  color: var(--rose);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-card h2 {
  margin: 30px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card h2 + p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.legal-card a:not(.button) {
  color: var(--rose);
  font-weight: 700;
}

.legal-card .button {
  margin-top: 36px;
}

.legal-footer {
  color: rgba(255, 255, 255, 0.55);
  background: #141116;
}

.legal-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  padding-bottom: 22px;
  font-size: 0.66rem;
}

.legal-footer a:hover {
  color: var(--rose-soft);
}

@media (max-width: 767px) {
  .legal-header-inner {
    min-height: 74px;
  }

  .legal-header .text-link {
    font-size: 0.58rem;
  }

  .legal-main {
    padding: 42px 0 58px;
  }

  .legal-card h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .legal-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
