:root {
  --ink: #0a0a0a;
  --muted: #686868;
  --soft: #f6f3f2;
  --line: #dedad7;
  --accent: #9b836f;
  --accent-light: #c9a587;
  --max: 1134px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 94px;
  display: grid;
  grid-template-columns: 170px 1fr 190px;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  color: #8c8c8c;
  background: rgba(254, 254, 254, 0);
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.has-scrolled {
  height: 82px;
  background: #fefefe;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 126px;
  height: 43px;
}

.brand img {
  width: 126px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  text-transform: uppercase;
}

.site-nav a,
.header-cta,
.hero-cta,
.primary-cta,
.secondary-cta,
.clinic-content a {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.header-cta,
.hero-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.header-cta {
  border-radius: 7px;
  text-transform: none;
}

.header-cta:hover,
.hero-cta:hover,
.primary-cta:hover {
  transform: translateY(-2px);
  background: #806a5a;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: linear-gradient(106deg, #fff 44%, #e6e2df 89%);
}

.hero-shell {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  height: 820px;
  margin: 0 auto;
}

.hero-symbol,
.hero-doctor,
.hero-copy,
.hero-specialty,
.hero-cta,
.hero h1 {
  position: absolute;
}

.hero-copy,
.hero-specialty,
.hero-cta {
  z-index: 3;
}

.hero-symbol {
  z-index: 0;
  left: 50%;
  top: 118px;
  width: min(560px, 49vw);
  opacity: 0.7;
  transform: translateX(-50%);
  transform-origin: 50% 50%;
  animation: hero-symbol-spin 58s linear infinite;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-copy {
  top: 210px;
  left: 0;
  width: 280px;
}

.hero-care {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 19px;
  width: max-content;
  max-width: 280px;
  white-space: nowrap;
}

.hero-care > img {
  flex: 0 0 auto;
  width: 67px;
  height: 66px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 8px;
  color: #515151;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  text-transform: uppercase;
}

.stacked {
  margin: 0;
  color: #8f8f8f;
  font-size: 18.4px;
  font-weight: 500;
  line-height: 1.41;
  text-transform: uppercase;
}

.care-mobile-precision,
.care-mobile-break {
  display: none;
}

.hero-note {
  width: 259px;
  margin: 196px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.46;
}

.hero-doctor {
  z-index: 2;
  left: 50%;
  top: 48px;
  width: min(550px, 48.5vw);
  height: 810px;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%) rotate(0.8deg);
}

.hero-specialty {
  top: 238px;
  right: 0;
  margin: 0;
  width: 245px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}

.hero-cta {
  right: 0;
  top: 494px;
  width: 268px;
  min-height: 72px;
  background: var(--accent-light);
  font-size: 16px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero h1 {
  z-index: 3;
  left: auto;
  right: 0;
  top: 592px;
  width: 268px;
  margin: 0;
  transform: none;
  opacity: 1;
  color: rgba(31, 31, 31, 0.45);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 10px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: normal;
}

.hero-title-mobile-break {
  display: none;
}

.section-band {
  background: var(--soft);
}

.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.procedures {
  overflow: hidden;
  padding: 110px 0 120px;
}

.procedures .section-inner {
  position: relative;
}

.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 55px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2,
.why h2,
.testimonials h2,
.about h2,
.process h2,
.clinic h2,
.faq h2,
.contact h2 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(32px, 4.4vw, 83px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 430px;
  font-size: 32px;
  line-height: 1.32;
}

.section-arrows {
  display: flex;
  gap: 8px;
}

.procedure-controls {
  position: absolute;
  top: 0;
  right: 0;
}

.section-arrows span,
.carousel-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(155, 131, 111, 0.48);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  color: #806a5a;
  font: inherit;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  border-color: var(--accent);
  background: #fff;
  color: var(--ink);
}

.procedure-carousel {
  --procedure-card-width: 354px;
  --procedure-step: 388px;
  width: calc(100% + 108px);
  overflow: hidden;
  margin-top: 55px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.procedure-carousel.is-dragging {
  cursor: grabbing;
}

.procedure-track {
  display: flex;
  gap: 34px;
  transform: translateX(calc((var(--procedure-index, 0) * var(--procedure-step) * -1) + var(--procedure-drag, 0px)));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.procedure-carousel.is-dragging .procedure-track {
  transition: none;
}

.procedure-card {
  position: relative;
  flex: 0 0 var(--procedure-card-width);
  min-height: 403px;
  overflow: hidden;
  border: 1px solid rgba(157, 157, 157, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.43);
}

.procedure-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(178deg, rgba(0, 0, 0, 0.08) 35%, rgba(0, 0, 0, 0.92) 98%);
  pointer-events: none;
}

.procedure-card img {
  width: 100%;
  height: 100%;
  min-height: 403px;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}

.procedure-card div {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: end;
  color: #fff;
}

.procedure-card h3 {
  position: relative;
  z-index: 4;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.procedure-card small {
  display: block;
  font-size: 12px;
}

.procedure-card span {
  font-size: 24px;
  line-height: 1;
}

.procedure-card button {
  position: relative;
  z-index: 5;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.procedure-card p {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  color: #d9d9d9;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.procedure-card.is-open p {
  display: block;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 94px;
  padding: 0 0 18px;
}

.metrics div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 132px;
  border-right: 1px solid #c2c2c2;
  padding: 0 28px;
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  color: #878483;
  font-size: clamp(46px, 4.9vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.metrics span {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.metrics-logo {
  width: 175px;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

.results {
  overflow: hidden;
  padding: 120px 0 38px;
}

.results-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.results-title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-left: 0;
}

.results-title .eyebrow {
  margin: 0 0 30px 210px;
}

.results-title-row {
  position: relative;
  display: grid;
  grid-template-columns: 182px auto;
  align-items: start;
  gap: 28px;
}

.results-title h2 {
  grid-column: 2;
  margin: 0;
  opacity: 0.5;
  color: #1f1f1f;
  font-size: clamp(58px, 5.3vw, 82px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  mix-blend-mode: multiply;
}

.results-title span {
  position: absolute;
  left: 468px;
  top: 112px;
  margin: 0;
  color: #cfa582;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.34;
  text-transform: uppercase;
}

.rotating-seal {
  animation: seal-spin 16s linear infinite;
  transform-origin: 50% 50%;
}

.results-seal {
  grid-column: 1;
  width: 182px;
  margin-top: 0;
  opacity: 0.9;
  flex: 0 0 182px;
}

.results-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  min-width: 291px;
  margin-top: 72px;
  padding: 0 32px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.results-cta:hover,
.results-cta:focus-visible {
  background: #806a5a;
}

@keyframes seal-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-symbol-spin {
  from {
    transform: translateX(-50%) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

.results-carousel {
  --results-card-width: 478px;
  --results-step: 512px;
  overflow: hidden;
  width: calc((var(--results-card-width) * 2) + var(--results-step) * 0.32);
  margin-top: 58px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.results-carousel.is-dragging {
  cursor: grabbing;
}

.results-track {
  display: flex;
  gap: 38px;
  transform: translateX(calc((var(--results-index, 0) * var(--results-step) * -1) + var(--results-drag, 0px)));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.results-carousel.is-dragging .results-track {
  transition: none;
}

.results-track article {
  flex: 0 0 var(--results-card-width);
}

.results-track article h3 {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.before-after {
  min-height: 462px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e4e4e4 0 49%, #fff 49% 51%, #f4f4f4 51% 100%);
}

.before-after.light {
  background: linear-gradient(90deg, #f0f0f0 0 49%, #fff 49% 51%, #e6e2df 51% 100%);
}

.before-after.warm {
  background: linear-gradient(90deg, #ded9d4 0 49%, #fff 49% 51%, #eeeae6 51% 100%);
}

.results-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 34px;
}

.why {
  position: relative;
  overflow: hidden;
  padding: 28px 0 104px;
  background: #fff;
}

.why-heading {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-heading > img {
  display: none;
}

.why-heading p {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  color: rgba(31, 31, 31, 0.72);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
}

.why-heading h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 1000px;
  color: rgba(31, 31, 31, 0.76);
  font-size: clamp(48px, 4.1vw, 74px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
  mix-blend-mode: multiply;
}

.why-heading h2 span {
  color: rgba(155, 131, 111, 0.62);
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1134px;
  margin: 42px auto 0;
  border: 1.5px solid #bdbdbd;
}

.why-grid::before,
.why-grid::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: #b7b7b7;
}

.why-grid::before {
  left: calc(100% / 3);
  top: 0;
  bottom: 0;
  width: 1.5px;
  box-shadow: calc((1134px / 3)) 0 0 #b7b7b7;
}

.why-grid::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
}

.why-grid article {
  min-height: 241px;
  padding: 41px 36px 34px;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.why-grid article > img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.steps strong {
  color: rgba(155, 131, 111, 0.19);
  font-size: 80px;
  font-weight: 500;
  line-height: 0.8;
}

.why-grid h3,
.steps h3 {
  margin: 42px 0 12px;
  font-size: 16px;
  text-transform: uppercase;
}

.why-grid h3 {
  max-width: 303px;
  color: #4f4f4f;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
}

.why-grid p,
.steps p,
.about p {
  margin: 0;
  color: #8c8c8c;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
}

.why-grid p {
  max-width: 303px;
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.5;
}

.why-cta {
  display: flex;
  width: 376px;
  min-height: 72px;
  margin: 64px auto 0;
}

.testimonials {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 98px 0 48px;
  background: #9b836f url("assets/Frame 34.png") center / cover no-repeat;
  color: #fff;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(155, 131, 111, 0.12);
  mix-blend-mode: hard-light;
}

.testimonials-doctor {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(841px, 48vw);
  height: 940px;
  object-fit: cover;
  object-position: left center;
}

.testimonial-layout {
  position: relative;
  z-index: 1;
  display: block;
}

.testimonials h2 {
  max-width: 930px;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(52px, 4.4vw, 83px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 20px;
}

.testimonial-rating img:first-child {
  width: 140px;
  height: auto;
  object-fit: contain;
}

.testimonial-rating strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.testimonial-rating img:last-child {
  width: 123px;
  height: auto;
  object-fit: contain;
}

.reviews-embed {
  --testimonial-step: 337px;
  overflow: hidden;
  width: 662px;
  max-width: min(662px, 54vw);
  margin-top: 54px;
  padding: 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.reviews-embed.is-dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  gap: 19px;
  transform: translateX(calc((var(--testimonial-index, 0) * var(--testimonial-step) * -1) + var(--testimonial-drag, 0px)));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reviews-embed.is-dragging .reviews-track {
  transition: none;
}

.review-card {
  flex: 0 0 318px;
  padding: 0;
  border-radius: 13px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.review-card img {
  width: 100%;
  height: 445px;
  object-fit: cover;
  border-radius: 13px;
  pointer-events: none;
  -webkit-user-drag: none;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.review-dots {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 0;
}

.review-dots span {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(217, 217, 217, 0.28);
}

.review-dots span:first-child {
  background: #d9d9d9;
}

.testimonial-arrows {
  display: flex;
  gap: 8px;
}

.testimonial-arrows .carousel-arrow {
  border-color: #fff;
  color: #fff;
  border-radius: 12px;
  background: transparent;
}

.testimonial-arrows .carousel-arrow:hover,
.testimonial-arrows .carousel-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.about,
.process,
.about-process,
.faq {
  padding: 110px 0;
}

.about-process {
  background: var(--soft);
}

.about-figma {
  display: grid;
  grid-template-columns: 388px 1fr;
  gap: 97px;
  align-items: start;
  padding-bottom: 95px;
  border-bottom: 1px solid #c9c6c4;
}

.video-card {
  position: relative;
  height: 635px;
  overflow: hidden;
  border-radius: 6px;
  background: #e4e4e4;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-figma-copy {
  padding-top: 18px;
}

.about-title-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 54px;
}

.about-title-row h2,
.process-title-wrap h2 {
  margin: 0;
  color: rgba(31, 31, 31, 0.5);
  font-size: clamp(52px, 4.4vw, 83px);
  font-weight: 500;
  line-height: 0.97;
  text-transform: uppercase;
  mix-blend-mode: multiply;
}

.about-seal {
  width: 164px;
  flex: 0 0 164px;
}

.about-figma-copy > p {
  max-width: 649px;
  margin: 32px 0 56px;
  color: rgba(10, 10, 10, 0.66);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.32;
}

.credentials-list {
  display: grid;
  max-width: 649px;
}

.credentials-list div {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.credentials-list strong,
.credentials-list span {
  display: block;
}

.credentials-list strong {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

.credentials-list span {
  margin-top: 7px;
  color: var(--ink);
  font-size: 17px;
}

.process-figma {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) 560px;
  align-items: center;
  gap: 48px;
  padding-top: 96px;
}

.process-title-wrap {
  position: relative;
  z-index: 2;
  max-width: 390px;
}

.process-figma h2 {
  white-space: nowrap;
}

.process-figma img {
  position: relative;
  z-index: 1;
  width: 560px;
  height: 330px;
  border-radius: 8px;
  object-fit: cover;
}

.process-title-wrap h2 {
  transform: translateX(0);
}

.process-figma .process-title-wrap + img {
  margin-left: 0;
}

.process-cta {
  min-height: 72px;
  min-width: 376px;
  width: max-content;
  margin: 0 auto;
  display: flex;
  background: var(--accent-light);
}

.about-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: center;
  gap: 78px;
}

.about-layout img {
  width: 250px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.about h2 {
  color: #686868;
}

.about p {
  max-width: 610px;
  margin-top: 24px;
  font-size: 16px;
}

.about dl {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 34px;
  margin: 36px 0 0;
}

.about dt {
  color: #8c8c8c;
  font-size: 12px;
  text-transform: uppercase;
}

.about dd {
  margin: 6px 0 0;
  font-size: 20px;
  font-weight: 600;
}

.process {
  border-top: 1px solid var(--line);
}

.process-hero {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 64px;
  align-items: start;
}

.process h2 {
  color: #1f1f1f;
  opacity: 0.5;
}

.process-hero img {
  height: 280px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 70px 0;
}

.process .primary-cta {
  min-height: 72px;
  min-width: 376px;
  margin: 0 auto;
  display: flex;
  width: max-content;
}

.clinic {
  position: relative;
  min-height: 1033px;
  overflow: hidden;
}

.clinic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.7));
}

.clinic > img {
  width: 100%;
  height: 1033px;
  object-fit: cover;
}

.clinic-content {
  position: absolute;
  z-index: 1;
  left: calc(50% - 567px);
  bottom: 142px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
  width: min(var(--max), calc(100% - 48px));
  color: #fff;
}

.clinic h2 {
  max-width: 700px;
  color: #f6f3f2;
}

.clinic h2 img {
  display: inline-block;
  width: 66px;
  height: 66px;
  margin-left: 10px;
  vertical-align: -13px;
  object-fit: contain;
}

.clinic-content a,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 32px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.clinic-content a:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
  background: #fff;
  color: var(--ink);
}

.faq h2 {
  margin-bottom: 72px;
  color: #1f1f1f;
  opacity: 0.5;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 45px;
  gap: 28px;
  align-items: center;
  min-height: 92px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 20px;
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  color: #e0e0e0;
  font-size: 16px;
}

.faq-item b {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f2f2f0;
  color: #8c8c8c;
  font-weight: 400;
}

.faq-item.is-active button {
  color: var(--accent);
  font-weight: 500;
}

.faq-item.is-active b {
  background: var(--accent);
  color: #fff;
}

.faq-item p {
  display: none;
  max-width: 865px;
  margin: -18px 0 28px 76px;
  color: #8c8c8c;
  font-size: 17px;
  line-height: 1.5;
}

.faq-item.is-active p {
  display: block;
}

.contact {
  display: grid;
  grid-template-columns:
    max(24px, calc((100% - var(--max)) / 2))
    minmax(0, 700px)
    minmax(0, 1fr);
  min-height: 746px;
  background: var(--soft);
}

.contact-copy {
  grid-column: 2;
  align-self: center;
  position: relative;
  padding-right: 64px;
}

.contact h2 {
  margin-bottom: 82px;
  color: #1f1f1f;
  opacity: 0.5;
  white-space: nowrap;
}

.contact strong {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact p {
  max-width: 590px;
  margin: 0 0 36px;
  color: rgba(10, 10, 10, 0.66);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.32;
}

.contact-copy div {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact .primary-cta {
  min-height: 82px;
  font-size: 15px;
  font-weight: 700;
}

.contact img,
.contact-map {
  grid-column: 3;
  width: 100%;
  height: 746px;
  border: 0;
  object-fit: cover;
}

.site-footer {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 66px 0 56px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: #8c8c8c;
  font-size: 13px;
}

.site-footer > div {
  display: grid;
  grid-template-columns: 149px 1fr;
  gap: 48px;
  align-items: start;
}

.site-footer img {
  width: 149px;
  height: auto;
  object-fit: contain;
  grid-row: span 2;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  grid-column: 2;
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 760ms ease, transform 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.hero .reveal {
  transform: translateY(28px);
}

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

.hero-doctor.reveal {
  transform: translateX(-50%) translateY(28px) rotate(0.8deg);
}

.hero-doctor.reveal.is-visible {
  transform: translateX(-50%) rotate(0.8deg);
}

.hero h1.reveal {
  transform: translateY(28px);
}

.hero h1.reveal.is-visible {
  transform: none;
}

.hero-symbol.reveal,
.hero-symbol.reveal.is-visible {
  opacity: 0.7;
  transform: translateX(-50%);
  transition-duration: 960ms;
}

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

  .site-header,
  .site-nav a,
  .header-cta,
  .hero-cta,
  .primary-cta,
  .secondary-cta,
  .clinic-content a,
  .reveal {
    transition: none;
  }

  .reveal,
  .hero .reveal,
  .hero-symbol.reveal {
    opacity: 1;
    transform: none;
  }

  .hero-symbol.reveal,
  .hero-symbol.reveal.is-visible {
    animation: none;
    transform: translateX(-50%);
  }

  .hero-doctor.reveal,
  .hero-doctor.reveal.is-visible {
    transform: translateX(-50%) rotate(0.8deg);
  }

  .hero h1.reveal,
  .hero h1.reveal.is-visible {
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 140px auto 1fr;
    padding: 0 24px;
  }

  .site-nav {
    gap: 18px;
    font-size: 12px;
  }

  .hero-shell {
    width: calc(100% - 48px);
  }

  .hero-copy {
    left: 0;
  }

  .hero-specialty,
  .hero-cta {
    right: 0;
  }

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

  .why-heading {
    min-height: 240px;
  }

  .why-heading > img {
    left: 50%;
  }

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

  .results-carousel {
    --results-card-width: min(420px, calc((100vw - 88px) / 2));
    --results-step: calc(var(--results-card-width) + 28px);
    width: 100%;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .results-title .eyebrow {
    margin-left: 154px;
  }

  .results-title-row {
    grid-template-columns: 128px auto;
    gap: 24px;
  }

  .results-title span {
    left: 360px;
    top: 90px;
  }

  .results-seal {
    width: 128px;
    flex-basis: 128px;
  }

  .results-cta {
    margin-top: 12px;
  }

  .results-track {
    gap: 28px;
  }

  .procedure-carousel {
    --procedure-card-width: min(354px, calc((100vw - 82px) / 2));
    --procedure-step: calc(var(--procedure-card-width) + 24px);
    width: calc(100% + 64px);
  }

  .procedure-track {
    gap: 24px;
  }

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

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid #c2c2c2;
  }

  .testimonial-layout,
  .about-layout,
  .process-hero {
    grid-template-columns: 1fr;
  }

  .testimonials {
    min-height: 780px;
    padding-top: 86px;
  }

  .testimonials-doctor {
    width: 52vw;
    height: 780px;
  }

  .reviews-embed {
    --testimonial-step: 337px;
    max-width: 620px;
    margin-top: 54px;
  }

  .about-figma {
    grid-template-columns: 0.8fr 1fr;
    gap: 48px;
  }

  .process-figma {
    grid-template-columns: 1fr;
  }

  .process-figma .process-title-wrap + img {
    margin-left: 0;
  }

  .process-title-wrap {
    max-width: 100%;
  }

  .process-figma h2 {
    white-space: normal;
  }

  .clinic-content {
    left: 24px;
  }

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

  .contact-copy,
  .contact img,
  .contact-map {
    grid-column: 1;
  }

  .contact-copy {
    padding: 80px 24px;
  }
}

@media (max-width: 780px) {
  .site-header {
    height: 76px;
    grid-template-columns: 1fr auto;
    padding: 0 16px;
  }

  .site-header.has-scrolled {
    height: 70px;
  }

  .brand {
    width: 112px;
    height: 38px;
  }

  .brand img {
    width: 112px;
  }

  .menu-toggle {
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
  }

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

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  }

  .site-header.is-open .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid #eee;
  }

  .site-header.is-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 980px;
    padding-top: 0;
  }

  .hero-shell {
    width: calc(100% - 56px);
    height: 980px;
  }

  .hero-copy,
  .hero-specialty,
  .hero-cta,
  .hero h1,
  .hero-symbol,
  .hero-doctor {
    position: absolute;
  }

  .hero-copy {
    top: 96px;
    left: 0;
    width: 100%;
    margin: 0;
  }

  .stacked {
    color: #8f8f8f;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.18;
  }

  .hero-care {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 18px;
    width: max-content;
    max-width: 100%;
    white-space: normal;
  }

  .hero-care > img {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
  }

  .care-mobile-precision,
  .care-mobile-break {
    display: inline;
  }

  .care-desktop-precision {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .hero-specialty {
    top: 264px;
    left: 0;
    right: auto;
    width: min(390px, 100%);
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-cta {
    top: 346px;
    left: 0;
    right: auto;
    width: 100%;
    min-height: 76px;
    margin: 0;
    font-size: 16px;
    border-radius: 4px;
    white-space: nowrap;
  }

  .hero-doctor {
    z-index: 2;
    left: 50%;
    top: 472px;
    width: min(520px, 132vw);
    height: 540px;
    margin: 0;
    transform: translateX(-50%) rotate(0.8deg);
  }

  .hero-symbol {
    left: 50%;
    top: 456px;
    width: min(520px, 134vw);
    opacity: 0.72;
    transform: translateX(-50%);
  }

  .hero-symbol.reveal {
    transform: translateX(-50%);
  }

  .hero-symbol.reveal.is-visible {
    transform: translateX(-50%);
  }

  .hero-doctor.reveal {
    transform: translateX(-50%) translateY(28px) rotate(0.8deg);
  }

  .hero-doctor.reveal.is-visible {
    transform: translateX(-50%) rotate(0.8deg);
  }

  .hero h1.reveal,
  .hero h1.reveal.is-visible {
    transform: none;
  }

  .hero h1 {
    left: 0;
    right: auto;
    top: 440px;
    bottom: auto;
    width: 100%;
    transform: none;
    white-space: nowrap;
    font-size: 10px;
    line-height: 1.3;
    opacity: 1;
    letter-spacing: 11px;
    text-align: center;
  }

  .hero-title-mobile-break {
    display: none;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .procedures,
  .results,
  .why,
  .about,
  .process,
  .faq {
    padding: 72px 0;
  }

  .results {
    padding: 62px 0 28px;
  }

  .split {
    align-items: start;
    padding-bottom: 32px;
  }

  .section-heading h2 {
    max-width: 320px;
    font-size: 28px;
    line-height: 1.42;
  }

  .section-arrows {
    display: none;
  }

  .procedure-grid,
  .why-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why {
    padding: 34px 0 56px;
  }

  .why-heading {
    min-height: 156px;
  }

  .why-heading > img {
    width: 420px;
    max-width: 120vw;
    left: 50%;
    top: 50%;
  }

  .why-heading p {
    max-width: 280px;
    margin: 16px auto 0;
    font-size: 15px;
    text-align: center;
  }

  .why-heading h2 {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.18;
    text-align: center;
    overflow-wrap: normal;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
    border-width: 1.5px;
  }

  .why-grid::before,
  .why-grid::after {
    display: none;
  }

  .why-grid article {
    min-height: 176px;
    padding: 28px 24px;
    border-width: 1.5px;
  }

  .why-grid article:not(:last-child) {
    border-bottom: 1.5px solid #bdbdbd;
  }

  .why-grid h3 {
    margin-top: 28px;
    font-size: 18px;
  }

  .why-cta {
    width: 100%;
    margin-top: 24px;
  }

  .procedure-carousel {
    --procedure-card-width: min(320px, calc(100vw - 78px));
    --procedure-step: calc(var(--procedure-card-width) + 18px);
    width: calc(100% + 12px);
    margin-top: 34px;
  }

  .procedure-track {
    gap: 18px;
  }

  .section-arrows {
    display: flex;
  }

  .procedure-controls {
    position: static;
    justify-content: center;
    margin-top: 28px;
  }

  .metrics {
    margin-top: 48px;
  }

  .metrics strong {
    font-size: 42px;
  }

  .metrics div {
    justify-content: flex-start;
    gap: 16px;
    min-height: 96px;
  }

  .metrics span {
    font-size: 18px;
  }

  .metrics-logo {
    width: 113px;
  }

  .results-header {
    display: contents;
  }

  .results .section-inner {
    display: flex;
    flex-direction: column;
  }

  .results-title {
    order: 1;
    width: 100% !important;
    max-width: 100%;
  }

  .results-title .eyebrow {
    margin: 0 0 24px 4px;
  }

  .results-title-row {
    position: relative;
    display: block;
    width: 100%;
    min-height: 176px;
  }

  .results-title h2 {
    width: 100%;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .results-title span {
    position: absolute;
    left: 4px;
    right: auto;
    top: 126px;
    width: max-content;
    margin: 0;
    font-size: 14px;
    letter-spacing: 7px;
    white-space: nowrap;
  }

  .results-title span br {
    display: none;
  }

  .results-seal {
    position: absolute;
    right: 6px;
    top: 64px;
    z-index: 2;
    width: clamp(74px, 22vw, 86px);
    flex-basis: clamp(74px, 22vw, 86px);
    margin-top: 0;
  }

  .results-cta {
    order: 4;
    width: 100%;
    min-width: 0;
    min-height: 72px;
    margin-top: 28px;
    font-size: 15px;
  }

  .results-carousel {
    order: 2;
    --results-card-width: calc(100vw - 74px);
    --results-step: calc(var(--results-card-width) + 10px);
    width: calc(100% + 12px);
    margin-top: 28px;
  }

  .results-track {
    gap: 10px;
  }

  .results-track article h3 {
    margin-top: 12px;
    font-size: 13px;
    white-space: nowrap;
  }

  .results-controls {
    order: 3;
    justify-content: center;
    margin-top: 26px;
  }

  .before-after {
    min-height: 340px;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials {
    width: 100%;
    min-height: 100vh;
    padding: 64px 0 40px;
    background: #9b836f url("assets/Frame 1707478400.png") center top / cover no-repeat;
  }

  .testimonials .section-inner {
    width: 100%;
    padding: 0 16px;
  }

  .testimonial-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .testimonials-doctor {
    display: none;
  }

  .testimonials h2 {
    max-width: 390px;
    font-size: 38px;
  }

  .testimonial-rating {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 310px;
  }

  .testimonial-rating img:first-child {
    width: 112px;
  }

  .testimonial-rating strong {
    font-size: 13px;
  }

  .testimonial-rating img:last-child {
    width: 104px;
  }

  .reviews-embed {
    --testimonial-step: calc(100% + 16px);
    width: 100%;
    max-width: none;
    margin-top: 32px;
  }

  .reviews-track {
    gap: 16px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .about-figma {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 64px;
  }

  .video-card {
    height: auto;
    aspect-ratio: 9 / 14;
  }

  .about-title-row {
    gap: 20px;
  }

  .about-seal {
    width: 96px;
    flex-basis: 96px;
  }

  .about-figma-copy > p {
    margin: 24px 0 34px;
    font-size: 16px;
  }

  .credentials-list span {
    font-size: 15px;
  }

  .process-figma {
    padding-top: 64px;
  }

  .process-figma img {
    width: min(100%, 520px);
    height: 260px;
  }

  .process-cta {
    width: 100%;
    min-width: 0;
  }

  .about dl {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process .primary-cta {
    width: 100%;
    min-width: 0;
  }

  .clinic {
    min-height: 720px;
  }

  .clinic > img {
    height: 720px;
  }

  .clinic-content {
    left: 16px;
    bottom: 72px;
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq h2 {
    margin-bottom: 36px;
  }

  .faq-item button {
    grid-template-columns: 32px 1fr 40px;
    gap: 14px;
    min-height: 86px;
    font-size: 16px;
  }

  .faq-item b {
    width: 40px;
    height: 40px;
  }

  .faq-item p {
    margin-left: 46px;
    font-size: 15px;
  }

  .contact img,
  .contact-map {
    height: 420px;
  }

  .contact h2 {
    margin-bottom: 40px;
  }

  .contact-copy div,
  .secondary-cta,
  .contact .primary-cta {
    width: 100%;
  }

  .contact .primary-cta {
    min-height: 74px;
    font-size: 14px;
  }

  .site-footer,
  .site-footer > div,
  .site-footer nav {
    display: grid;
  }

  .site-footer > div {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer img,
  .site-footer p:last-child {
    grid-column: 1;
  }
}
