:root {
  --ink: #100f10;
  --muted: #5e5557;
  --rose: #df6f8a;
  --rose-deep: #cf5879;
  --rose-pale: #fbe6eb;
  --blush: #fff5f6;
  --line: #efc7cf;
  --white: #fffafa;
  --footer: #101010;
  --shadow: 0 18px 60px rgba(134, 58, 78, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --script: "Allura", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 82% 7%, rgba(238, 126, 156, 0.22), transparent 34rem),
    linear-gradient(120deg, #fff8f8 0%, #fff 42%, #fff0f3 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(24px, 5vw, 70px);
  background: linear-gradient(180deg, rgba(255, 248, 249, 0.96), rgba(255, 248, 249, 0.76) 72%, rgba(255, 248, 249, 0));
  backdrop-filter: blur(18px);
  border-bottom: 0;
  transition: transform 0.28s ease, background 0.28s ease;
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(-110%);
}

.logo-link img {
  width: 220px;
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.04) saturate(1.04);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  border: 0;
  text-decoration: none;
}

.main-nav a::after {
  display: none;
  content: none;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 34px;
  border: 1px solid var(--rose);
  border-radius: 8px;
  background: linear-gradient(135deg, #e77792, #d85d7f);
  color: white;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(216, 93, 127, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(216, 93, 127, 0.3);
}

.button-small {
  min-height: 40px;
  padding: 0 22px;
  border-radius: 8px;
}

.button-outline {
  background: rgba(255, 255, 255, 0.42);
  color: var(--rose-deep);
  box-shadow: none;
}

.button.light {
  background: white;
  color: var(--rose-deep);
  border-color: white;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
  align-items: end;
  margin-top: -1px;
  padding: 34px clamp(24px, 4vw, 54px) 0;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 560px;
  padding: 34px 0 38px;
}

.script {
  margin: 0 0 8px;
  color: var(--rose);
  font-family: var(--script);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.center {
  text-align: center;
}

h1,
.hero h2,
.section-title,
.booking-hero h2,
.contact-band h2,
.lead-form h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 580px;
  font-size: clamp(54px, 5.1vw, 68px);
}

h1 span {
  display: block;
  white-space: nowrap;
}

.lede {
  max-width: 500px;
  margin: 24px 0 28px;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
}

.trust-row {
  margin-top: 28px;
}

.trust-row span {
  position: relative;
  padding-left: 26px;
  font-weight: 500;
}

.trust-row span::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 2px solid var(--rose);
  border-radius: 50%;
  color: var(--rose);
  content: "✓";
  font-size: 11px;
  line-height: 14px;
  text-align: center;
}

.trust-row.compact span + span {
  margin-left: 22px;
}

.hero-art {
  position: absolute;
  z-index: 1;
  left: 38%;
  bottom: -34px;
  width: min(520px, 44vw);
  margin: 0;
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  right: -8vw;
  bottom: 0;
  width: min(640px, 76vw);
  aspect-ratio: 1;
  border-radius: 50% 50% 0 0;
  content: "";
  background: radial-gradient(circle, rgba(241, 169, 185, 0.45), rgba(250, 223, 229, 0.5) 58%, transparent 59%);
}

.hero-art::after {
  position: absolute;
  right: -10vw;
  bottom: 155px;
  z-index: 0;
  width: 420px;
  height: 255px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  content: "";
  transform: rotate(18deg);
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  mix-blend-mode: multiply;
  filter: saturate(1.03) contrast(1.02);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 19%, #000 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 19%, #000 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.hero-lead {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: clamp(42px, 5.2vw, 82px);
  width: min(350px, 27vw);
  margin: 0;
  padding: 18px 22px 16px;
  background: linear-gradient(160deg, rgba(255, 232, 238, 0.84), rgba(255, 246, 248, 0.9));
}

.hero-lead h2 {
  font-size: 34px;
}

.hero-lead > p {
  margin: 6px 0 12px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.38;
}

.hero-lead input,
.hero-lead select {
  min-height: 40px;
  margin-bottom: 8px;
  padding: 0 15px;
}

.hero-lead .checkbox {
  margin: 2px 0 12px;
  font-size: 12px;
  line-height: 1.3;
}

.hero-lead .button {
  width: 100%;
  min-height: 44px;
  padding: 0 18px;
  font-size: 13px;
}

.hero-lead .privacy {
  font-size: 12px;
  line-height: 1.35;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 10px clamp(24px, 7vw, 96px);
  background: linear-gradient(90deg, #fff5f7, #fde6eb);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip article {
  min-height: 112px;
  padding: 12px 30px;
  text-align: center;
}

.feature-strip article + article {
  border-left: 1px solid var(--line);
}

.feature-strip h2,
.treatment-card h3 {
  margin: 6px 0 5px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
}

.feature-strip p,
.treatment-card p,
.section-copy {
  color: var(--muted);
  line-height: 1.45;
}

.feature-strip p {
  max-width: 230px;
  margin: 0 auto;
  font-size: 13px;
}

.line-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  color: var(--rose);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clock {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid var(--rose);
  color: var(--rose);
}

section {
  scroll-margin-top: 96px;
}

.results-preview,
.treatments,
.testimonials,
.booking {
  padding: 54px clamp(24px, 5vw, 70px);
}

.section-title {
  text-align: center;
  font-size: clamp(42px, 5vw, 62px);
}

.section-copy {
  max-width: 710px;
  margin: 10px auto 28px;
  text-align: center;
}

.quick-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 28px auto;
}

.ba-card,
.treatment-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ba-card {
  position: relative;
  padding: 0;
}

.compare-slider,
.ba-card img,
.treatment-card img,
.testimonial-grid img {
  width: 100%;
  height: 210px;
}

.compare-slider {
  --position: 50%;
  --slider-width: 320px;
  --slider-height: 210px;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background: var(--rose-pale);
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
}

.treatment-card .compare-slider,
.testimonial-grid .compare-slider {
  border-radius: 6px 6px 0 0;
}

.compare-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: var(--compare-bg-size, calc(var(--slider-width) * 2) var(--slider-height));
}

.compare-before {
  z-index: 1;
  width: var(--position);
  background-position: var(--compare-before-position, left center);
}

.compare-after {
  background-position: var(--compare-after-position, right center);
}

.compare-slider::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 2;
  width: 3px;
  content: "";
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(16, 15, 16, 0.05), 0 0 18px rgba(16, 15, 16, 0.18);
  transform: translateX(-50%);
  pointer-events: none;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
}

.compare-range::-webkit-slider-thumb {
  width: 44px;
  height: 44px;
  appearance: none;
}

.compare-range::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.compare-handle {
  position: absolute;
  top: 50%;
  left: var(--position);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(16, 15, 16, 0.2);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.compare-handle::before,
.compare-handle::after {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  content: "";
  border-color: var(--rose-deep);
  border-style: solid;
}

.compare-handle::before {
  left: 11px;
  border-width: 0 0 3px 3px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-handle::after {
  right: 11px;
  border-width: 3px 3px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.compare-label {
  position: absolute;
  bottom: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(16, 15, 16, 0.48);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(16, 15, 16, 0.12);
  backdrop-filter: blur(4px);
}

.compare-label.before {
  left: 12px;
}

.compare-label.after {
  right: 12px;
}

.instagram {
  margin: 0 auto;
}

.filter-bar {
  display: flex;
  max-width: 1120px;
  margin: 32px auto 20px;
  padding: 9px;
  gap: 8px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.filter-bar button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.filter-bar button.active,
.filter-bar button:hover {
  background: var(--rose);
  color: white;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.treatment-card {
  padding-bottom: 24px;
  text-align: center;
}

.treatment-card h3,
.treatment-card p {
  padding: 0 24px;
}

.treatment-card a {
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking {
  background: rgba(255, 255, 255, 0.44);
  padding-top: clamp(34px, 4vw, 46px);
  padding-bottom: clamp(38px, 4vw, 48px);
}

.booking-hero {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(24px, 3.5vw, 36px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 24px;
}

.booking-hero h2 {
  max-width: 440px;
  font-size: clamp(48px, 4.5vw, 64px);
}

.booking-hero p:not(.script) {
  font-size: 17px;
  line-height: 1.45;
}

.booking-hero img {
  max-height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.booking .script.center {
  font-size: clamp(28px, 3vw, 36px);
}

.booking .section-title {
  font-size: clamp(34px, 3.6vw, 48px);
}

.session-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1120px;
  margin: 14px auto 0;
}

.session-card {
  min-height: 0;
  aspect-ratio: 1.2 / 1;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.session-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.session-card:hover,
.session-card.active {
  transform: translateY(-3px);
  border-color: var(--rose);
  background: white;
}

.clock {
  position: relative;
  border-radius: 50%;
}

.clock::before,
.clock::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  content: "";
  background: var(--rose);
  transform-origin: top;
}

.clock::before {
  height: 13px;
  transform: rotate(0deg);
}

.clock::after {
  height: 11px;
  transform: rotate(120deg);
}

.session-card strong {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1;
}

.session-card small {
  display: block;
  margin: 4px 0 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.session-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.session-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 7px;
  border: 1px solid rgba(216, 93, 127, 0.18);
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(216, 93, 127, 0.24);
}

.session-action svg {
  order: 2;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.session-card.active .session-action,
.session-card:hover .session-action {
  box-shadow: 0 16px 30px rgba(216, 93, 127, 0.32);
}

.session-card.active .session-action svg,
.session-card:hover .session-action svg {
  transform: translateX(3px);
}

.testimonials {
  position: relative;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 34px auto 44px;
  text-align: center;
}

.stats div + div {
  border-left: 1px solid var(--line);
}

.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 50px;
  line-height: 1;
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.testimonial-grid article {
  padding: 18px 18px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
  box-shadow: var(--shadow);
}

.testimonial-grid img {
  border-radius: 6px;
}

.stars {
  display: block;
  margin: 16px 0 10px;
  color: var(--rose);
  letter-spacing: 3px;
}

.testimonial-grid p {
  line-height: 1.65;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 28px;
  padding: 32px clamp(24px, 7vw, 96px);
  background: linear-gradient(135deg, #d75a7c, #e48299);
  color: white;
}

.contact-band h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.contact-band .script {
  color: white;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  width: 100%;
}

.inline-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
}

.inline-form input {
  min-width: 0;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(320px, 520px);
  justify-content: center;
  align-items: stretch;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(42px, 6vw, 64px) clamp(18px, 4vw, 32px);
  background: linear-gradient(160deg, rgba(255, 245, 247, 0.8), rgba(255, 255, 255, 0.7));
}

.lead-form {
  width: min(430px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 235, 240, 0.78), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow);
}

.contact-form-section .lead-form {
  width: 100%;
  min-width: 0;
  padding: clamp(26px, 3vw, 34px);
}

.lead-form h2 {
  font-size: 42px;
  text-align: center;
}

.contact-form-section .lead-form h2 {
  font-size: clamp(34px, 4vw, 42px);
}

.lead-form.hero-lead {
  width: min(350px, 27vw);
  padding: 18px 22px 16px;
}

.lead-form.hero-lead h2 {
  font-size: 34px;
}

.lead-form > p {
  text-align: center;
  line-height: 1.6;
}

.lead-form input,
.lead-form select {
  margin-bottom: 12px;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkbox input {
  width: 18px;
  min-height: auto;
  margin-top: 2px;
}

.privacy {
  margin-top: -2px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 250, 0.74);
  box-shadow: var(--shadow);
}

.contact-info-card .script {
  margin-bottom: 4px;
  font-size: clamp(30px, 4vw, 38px);
}

.contact-info-card h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 42px);
  line-height: 0.95;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(239, 199, 207, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-list span {
  display: block;
  margin-bottom: 3px;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info-card iframe {
  flex: 1;
  width: 100%;
  min-height: clamp(220px, 30vw, 300px);
  border: 0;
  border-radius: 8px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 52px;
  padding: 54px clamp(24px, 7vw, 96px) 70px;
  background:
    radial-gradient(circle at 20% 0%, rgba(223, 111, 138, 0.18), transparent 24rem),
    var(--footer);
  color: white;
}

.site-footer img {
  width: 240px;
  filter: none;
}

.site-footer h2 {
  margin: 0 0 16px;
  font: 700 14px var(--sans);
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer .button {
  display: inline-flex;
  width: auto;
  min-width: 150px;
  min-height: 46px;
  margin-top: 18px;
  padding: 0 28px;
  color: white;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
  width: fit-content;
}

.social-links a {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--rose);
  border-radius: 8px;
  color: var(--rose);
  font-weight: 800;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.copyright {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  margin: 0;
  text-align: center;
  font-size: 12px;
}

.result-dialog,
.thank-you-dialog {
  position: relative;
  width: min(720px, calc(100% - 32px));
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-dialog {
  position: relative;
  width: min(500px, calc(100% - 32px));
  max-height: calc(100dvh - 36px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  box-shadow: var(--shadow);
  overflow: auto;
}

.booking-dialog[open] {
  position: fixed;
  inset: 50% auto auto 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.result-dialog::backdrop,
.thank-you-dialog::backdrop,
.booking-dialog::backdrop {
  background: rgba(20, 10, 14, 0.46);
}

.result-dialog h2,
.thank-you-dialog h2 {
  margin: 0 46px 18px 0;
  font-family: var(--serif);
  font-size: 42px;
}

.thank-you-dialog {
  width: min(470px, calc(100% - 32px));
  text-align: center;
}

.thank-you-dialog .script {
  margin-right: 38px;
  font-size: 38px;
}

.thank-you-dialog h2 {
  margin-right: 38px;
  line-height: 1;
}

.thank-you-dialog p:not(.script) {
  margin: 0 auto 22px;
  max-width: 340px;
  color: var(--muted);
  line-height: 1.55;
}

.result-dialog .compare-slider,
.result-dialog img {
  width: 100%;
  height: 410px;
  max-height: 410px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 24px;
}

.booking-dialog-form {
  width: 100%;
  padding: 30px;
  border: 0;
  box-shadow: none;
}

.booking-dialog-form .script {
  margin-right: 38px;
  font-size: 38px;
}

.booking-dialog-form h2 {
  margin-right: 38px;
  font-size: 40px;
  text-align: left;
}

.field-label {
  display: grid;
  gap: 7px;
  margin: 14px 0 18px;
}

.field-label span {
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-label select {
  margin: 0;
}

.selected-session {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
}

.selected-session strong {
  color: var(--rose-deep);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  padding: 14px 20px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 210px auto auto;
  }

  .main-nav {
    position: fixed;
    inset: 86px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: white;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero,
  .booking-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-art img {
    margin: 0 auto;
  }

  .hero-lead {
    position: relative;
    top: auto;
    right: auto;
    justify-self: stretch;
    width: min(520px, 100%);
    margin: 0 auto 42px;
  }

  .lead-form.hero-lead {
    width: min(520px, 100%);
    padding: 26px 28px 22px;
  }

  .hero-art {
    position: relative;
    left: auto;
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .feature-strip,
  .session-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip article:nth-child(3) {
    border-left: 0;
  }

  .quick-results,
  .treatment-grid,
  .testimonial-grid,
  .site-footer,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .inline-form {
    width: 100%;
  }

  .inline-form label,
  .inline-form input {
    width: 100%;
    min-width: 0;
  }

  .filter-bar {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }

  .filter-bar button {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 0;
    padding: 0 14px;
    white-space: normal;
  }

  .contact-form-section .lead-form,
  .contact-info-card {
    width: min(560px, 100%);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .contact-form-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 170px 1fr;
    padding: 14px 18px;
  }

  .site-header > .button {
    display: none;
  }

  .logo-link img {
    width: 168px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 50px);
  }

  h1 span {
    white-space: normal;
  }

  .hero {
    padding: 28px 18px 0;
    gap: 24px;
  }

  .hero-copy {
    padding: 18px 0 0;
  }

  .lede {
    margin: 20px 0 24px;
    font-size: 17px;
  }

  .hero-art {
    width: min(390px, 108%);
    margin: -8px auto 0;
  }

  .hero-lead {
    justify-self: center;
    margin-bottom: 22px;
  }

  .lead-form.hero-lead {
    width: min(420px, calc(100vw - 32px));
    padding: 18px 16px 16px;
  }

  .lead-form.hero-lead h2 {
    font-size: 32px;
  }

  .hero-lead > p {
    margin: 4px 0 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-lead input,
  .hero-lead select {
    min-height: 38px;
    margin-bottom: 7px;
    padding: 0 13px;
  }

  .hero-lead .checkbox {
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 1.28;
  }

  .hero-lead .button {
    min-height: 40px;
  }

  .hero-lead .privacy {
    font-size: 10px;
    line-height: 1.2;
  }

  .booking-hero {
    gap: 14px;
    margin-bottom: 24px;
  }

  .booking-hero h2 {
    font-size: 46px;
  }

  .booking-hero p:not(.script) {
    font-size: 16px;
    line-height: 1.4;
  }

  .booking-hero .trust-row,
  .booking-hero img {
    display: none;
  }

  .booking .script.center {
    font-size: 30px;
  }

  .booking .section-title {
    font-size: 38px;
  }

  .hero-actions,
  .inline-form {
    align-items: stretch;
  }

  .inline-form {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-row.compact span + span {
    margin-left: 0;
  }

  .feature-strip,
  .stats {
    grid-template-columns: 1fr;
  }

  .session-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 8px;
  }

  .session-card {
    aspect-ratio: auto;
    min-height: 168px;
    padding: 12px 8px 10px;
  }

  .session-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .session-card strong {
    margin-top: 8px;
    font-size: 25px;
  }

  .session-card small {
    margin-bottom: 0;
    font-size: 10px;
  }

  .session-card p {
    display: none;
  }

  .session-action {
    min-height: 34px;
    margin-top: 10px;
    padding: 0 12px;
    font-size: 10px;
  }

  .filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
  }

  .filter-bar button {
    flex: initial;
    min-width: 0;
    padding: 0 12px;
    font-size: 12px;
    white-space: normal;
  }

  .instagram {
    width: 100%;
    padding: 0 18px;
    font-size: 13px;
    text-align: center;
  }

  .booking-dialog {
    width: min(352px, calc(100% - 28px));
    max-height: calc(100dvh - 28px);
  }

  .booking-dialog-form {
    padding: 26px 18px 20px;
  }

  .booking-dialog-form .script {
    margin-right: 34px;
    font-size: 30px;
  }

  .booking-dialog-form h2 {
    margin-right: 34px;
    font-size: 34px;
  }

  .result-dialog,
  .thank-you-dialog {
    padding: 24px 18px;
  }

  .result-dialog h2,
  .thank-you-dialog h2 {
    font-size: 34px;
  }

  .thank-you-dialog .script {
    font-size: 32px;
  }

  .result-dialog .compare-slider,
  .result-dialog img {
    height: 260px;
  }

  .feature-strip article + article,
  .stats div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .results-preview,
  .treatments,
  .testimonials,
  .booking {
    padding: 36px 18px;
  }

  .booking {
    min-height: 100dvh;
    padding-top: 48px;
    padding-bottom: 44px;
    scroll-margin-top: 0;
  }

  .ba-card img,
  .treatment-card img,
  .testimonial-grid img {
    height: 180px;
  }

  .compare-slider {
    touch-action: pan-y;
  }

  .compare-range {
    left: calc(var(--position) - 28px);
    width: 56px;
  }

  .compare-label {
    bottom: 9px;
    padding: 4px 8px;
    font-size: 9px;
  }

  .contact-band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-form-section {
    padding: 42px 18px;
  }

  .contact-info-card {
    order: -1;
    padding: 28px;
  }

  .contact-info-card iframe {
    min-height: 260px;
  }
}

.main-nav a,
.main-nav a.active,
.main-nav a:hover,
.main-nav a:focus {
  border: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.main-nav a::before,
.main-nav a::after,
.main-nav a.active::before,
.main-nav a.active::after,
.main-nav a:hover::before,
.main-nav a:hover::after {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
  background: transparent !important;
  transform: none !important;
}
