@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --wine: #4a1723;
  --wine-deep: #271016;
  --wine-soft: #75404a;
  --cream: #f5f0e8;
  --paper: #fffdfa;
  --ink: #282021;
  --muted: #766c69;
  --gold: #b88b59;
  --line: #ded5ca;
  --shadow: 0 20px 54px rgba(48, 24, 27, 0.11);
  --radius: 3px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

button {
  cursor: pointer;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #6e3745;
  background: var(--wine);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-shrink: 0;
}

.brand strong {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.brand span {
  color: #dec4c5;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 31px);
  margin-left: auto;
  color: #fff;
  font-size: 0.84rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: #e7bd88;
  content: '';
  opacity: 0;
  transform: scaleX(0.2);
  transition: 0.2s ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--wine);
  border-radius: var(--radius);
  background: var(--wine);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--wine-soft);
  transform: translateY(-2px);
}

.button-small {
  min-height: 41px;
  padding: 0 16px;
  font-size: 0.76rem;
}

.site-header .button-small {
  border-color: #e8c28e;
  background: transparent;
  color: #fff;
}

.site-header .button-small:hover {
  background: #6b2d3e;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: 0.86rem;
  font-weight: 700;
}

.text-link span {
  color: var(--gold);
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.menu-toggle {
  display: none;
}

.mobile-nav-cta {
  display: none;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.45rem, 4.4vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero {
  position: relative;
  min-height: 600px;
  background: var(--wine);
  color: #fff;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 600px;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.hero-slide {
  position: relative;
  display: grid;
  min-width: 100%;
  min-height: 600px;
  place-items: center;
  isolation: isolate;
}

.hero-slide > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-slide-solid {
  background: var(--wine);
}

.hero-slide-split {
  background: var(--wine);
}

.hero-slide-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-slide-overlay-strong {
  background: rgba(0, 0, 0, 0.35);
}

.hero-split-layout {
  display: flex;
  min-height: 600px;
  align-items: center;
  justify-content: center;
}

.hero-slide:nth-child(1) > img {
  object-position: center 38%;
}

.hero-slide:nth-child(2) > img {
  object-position: center 27%;
}

.hero-slide:nth-child(3) > img {
  object-position: center 40%;
}

.hero-content {
  display: flex;
  max-width: 1110px;
  min-height: 385px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content-left {
  position: relative;
  z-index: 1;
  align-items: center;
  text-align: center;
}

.hero-content-left .hero-actions {
  justify-content: center;
}

.hero-kicker {
  margin: 0 0 28px;
  color: #e6bd88;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1000px;
  margin: 0;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3.4rem, 7vw, 7.15rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.93;
  text-shadow: 0 2px 22px rgba(30, 10, 15, 0.35);
}

.hero-intro {
  max-width: 650px;
  margin: 38px 0 0;
  color: #eadbda;
  font-size: 1rem;
  text-shadow: 0 2px 14px rgba(30, 10, 15, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-top: 27px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 3px;
  border-bottom: 1px solid #e7bd88;
  color: #fff;
  font-size: 0.91rem;
  font-weight: 600;
}

.hero-link span {
  color: #e7bd88;
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.hero-link:hover span {
  transform: translateX(4px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(74, 23, 35, 0.32);
  color: #fff;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  border-color: #e7bd88;
  background: var(--wine);
}

.hero-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-arrow-prev {
  left: max(20px, calc((100vw - 1320px) / 2));
}

.hero-arrow-next {
  right: max(20px, calc((100vw - 1320px) / 2));
}

.hero-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-indicator {
  width: 29px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-indicator.active {
  background: #e7bd88;
  transform: scaleX(1.18);
}

.clinic-intro {
  padding: 76px 0 82px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.clinic-intro-content {
  max-width: 1010px;
}

.clinic-intro-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
}

.clinic-intro h2 {
  margin: 0 0 13px;
  color: #8f784e;
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.clinic-intro-content > p:not(.clinic-intro-kicker) {
  max-width: 990px;
  margin: 0;
  color: #655d59;
  font-size: 0.9rem;
  line-height: 1.55;
}

.clinic-intro-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 30px;
  border: 1px solid #d7ba67;
  background: #d7ba67;
  color: #fff;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.clinic-intro-button:hover {
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-2px);
}

.doctor-feature {
  display: grid;
  min-height: 340px;
  grid-template-columns: 1fr 1fr;
  background: #e7d5c4;
}

.doctor-feature-media {
  height: 340px;
  min-height: 340px;
  overflow: hidden;
}

.doctor-feature-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.86) sepia(0.08);
}

.doctor-feature-content {
  display: flex;
  align-items: center;
  padding: 34px clamp(36px, 8vw, 120px);
}

.doctor-feature-content > div {
  max-width: 540px;
}

.doctor-feature-kicker {
  margin: 0 0 10px;
  color: var(--wine-soft);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
}

.doctor-feature h2 {
  margin: 0 0 13px;
  color: var(--wine);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.doctor-feature-content > div > p:not(.doctor-feature-kicker):not(.doctor-feature-areas) {
  margin: 0;
  color: #645656;
  font-size: 0.82rem;
  line-height: 1.5;
}

.doctor-feature-areas {
  margin: 15px 0 0;
  color: var(--wine-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.doctor-feature-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  margin-top: 19px;
  padding: 0 22px;
  border: 1px solid var(--wine);
  background: var(--wine);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.doctor-feature-button:hover {
  background: var(--wine-soft);
  transform: translateY(-2px);
}

.section {
  padding: clamp(76px, 10vw, 132px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading h2 {
  max-width: 690px;
}

.treatments {
  padding: 82px 0 74px;
  background: var(--wine);
  color: #fff;
}

.treatments-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 28px;
}

.treatments-heading .eyebrow {
  grid-column: 1;
  margin-bottom: 8px;
  color: #e7bd88;
}

.treatments-heading h2 {
  grid-column: 1;
  max-width: 700px;
  margin-bottom: 0;
  color: #fff;
}

.treatments-heading > p:last-child {
  grid-row: 1 / span 2;
  grid-column: 2;
  margin: 0 0 7px;
  color: #ddcacc;
  font-size: 0.9rem;
}

.treatments-showcase {
  display: grid;
  height: 480px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
  align-items: center;
}

.treatment-card {
  position: relative;
  height: 370px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--wine-deep);
  box-shadow: 0 16px 34px rgba(24, 7, 12, 0.18);
  isolation: isolate;
  transition: height 0.42s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease;
}

.treatment-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.treatment-card:nth-child(2) > img,
.treatment-card:nth-child(4) > img {
  object-position: center 32%;
}

.treatment-card-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(39, 16, 22, 0.18), rgba(39, 16, 22, 0.72));
  transition: background 0.4s ease;
}

.treatment-card-content {
  position: absolute;
  top: 50%;
  right: 20px;
  left: 20px;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
  transition: top 0.42s ease, transform 0.42s ease;
}

.treatment-category {
  margin: 0 0 7px;
  color: #edc996;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.treatment-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.03;
}

.treatment-card-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: max-height 0.42s ease, opacity 0.32s ease, transform 0.42s ease;
}

.treatment-card-details p {
  margin: 22px 0 20px;
  color: #f2e7e4;
  font-size: 0.76rem;
  line-height: 1.45;
}

.treatment-card:hover,
.treatment-card:focus-within {
  height: 450px;
  box-shadow: 0 24px 48px rgba(24, 7, 12, 0.32);
  transform: translateY(-8px);
}

.treatment-card:hover > img,
.treatment-card:focus-within > img {
  transform: scale(1.06);
}

.treatment-card:hover .treatment-card-overlay,
.treatment-card:focus-within .treatment-card-overlay {
  background: linear-gradient(180deg, rgba(39, 16, 22, 0.42), rgba(39, 16, 22, 0.9));
}

.treatment-card:hover .treatment-card-content,
.treatment-card:focus-within .treatment-card-content {
  top: 28px;
  transform: translateY(0);
}

.treatment-card:hover .treatment-card-details,
.treatment-card:focus-within .treatment-card-details {
  max-height: 270px;
  opacity: 1;
  transform: translateY(0);
}

.treatments-note {
  max-width: 760px;
  margin: 8px 0 0;
  color: #c7afb3;
  font-size: 0.7rem;
}

.procedure-highlight {
  display: grid;
  height: 560px;
  min-height: 560px;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.procedure-highlight-media {
  position: relative;
  height: 560px;
  min-height: 560px;
  overflow: hidden;
  background: var(--cream);
}

.procedure-highlight-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.procedure-highlight-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(74, 23, 35, 0.13), transparent 50%);
  content: '';
  pointer-events: none;
}

.procedure-highlight-content {
  display: flex;
  height: 560px;
  align-items: center;
  padding: clamp(55px, 8vw, 110px);
}

.procedure-highlight-content > div {
  max-width: 570px;
}

.procedure-highlight-content h2 {
  margin-bottom: 20px;
  color: var(--wine);
}

.procedure-highlight-content p {
  color: var(--muted);
  font-size: 0.92rem;
}

.procedure-highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.procedure-highlight-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 19px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.procedure-highlight-actions a:hover {
  background: var(--wine);
  color: #fff;
}

.procedure-highlight-reverse {
  border-top: 1px solid var(--line);
}

.procedure-highlight-reverse .procedure-highlight-content {
  background: #fbf6f0;
}

.procedure-highlight-reverse .procedure-highlight-media img {
  object-position: center 38%;
}

.procedure-highlight-mammary {
  border-top: 1px solid var(--line);
}

.procedure-highlight-mammary .procedure-highlight-media img {
  object-position: center 27%;
}

.evaluation-banner {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.evaluation-banner > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.06) brightness(1.03);
}

.evaluation-banner-overlay {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(20, 21, 24, 0.42);
}

.evaluation-banner-content {
  padding: 72px 0;
  color: #fff;
  text-align: center;
}

.evaluation-banner-content > p {
  margin: 0 0 20px;
  color: #e7bd88;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.evaluation-banner h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.evaluation-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}

.evaluation-banner-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.evaluation-banner-actions a:hover {
  transform: translateY(-2px);
}

.evaluation-banner-actions .evaluation-banner-primary {
  border-color: #d7ba67;
  background: #d7ba67;
  color: var(--wine-deep);
}

.evaluation-banner-actions .evaluation-banner-primary:hover {
  border-color: #e6ca7a;
  background: #e6ca7a;
}

.evaluation-banner-actions .evaluation-banner-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.evaluation-banner-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.results {
  background: #fbf8f4;
}

.results-layout {
  display: grid;
  grid-template-columns: 0.66fr 1.12fr;
  gap: clamp(45px, 8vw, 105px);
  align-items: center;
}

.results-intro h2 {
  color: var(--wine);
}

.results-intro > p:not(.eyebrow) {
  max-width: 410px;
  color: var(--muted);
}

.case-list {
  margin-top: 34px;
}

.case-button {
  display: grid;
  width: 100%;
  grid-template-columns: 30px 1fr;
  gap: 2px 12px;
  padding: 15px;
  border: 1px solid #c7b7ad;
  border-left: 3px solid var(--wine);
  background: transparent;
  color: var(--wine);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.case-button span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 0.7rem;
}

.case-button small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 400;
}

.case-list > p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.comparison-panel {
  max-width: 690px;
}

.comparison {
  position: relative;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  background: #d7d0c9;
  touch-action: pan-y;
}

.comparison img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  user-select: none;
}

.comparison-after {
  clip-path: inset(0 0 0 var(--position));
}

.comparison-label {
  position: absolute;
  top: 17px;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(39, 16, 22, 0.82);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.label-before {
  left: 17px;
}

.label-after {
  right: 17px;
}

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

.comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 3;
  width: 2px;
  background: #fff;
  pointer-events: none;
  transform: translateX(-50%);
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--wine);
  font-size: 1.15rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.comparison-range:focus-visible + .comparison-divider span {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.drag-note {
  margin: 11px 0 0;
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.medical-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.48;
}

.process {
  background: var(--wine);
  color: #fff;
}

.process .eyebrow {
  color: #e7bd88;
}

.process h2 {
  color: #fff;
}

.process-heading > p {
  color: #dac8c6;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #92616a;
  list-style: none;
}

.process-list li {
  min-height: 178px;
  padding: 24px 24px 16px 0;
  border-right: 1px solid #92616a;
}

.process-list li + li {
  padding-left: 24px;
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  color: #e7bd88;
  font-size: 0.74rem;
  font-weight: 700;
}

.process-list h3 {
  margin: 21px 0 7px;
  font-size: 1.4rem;
}

.process-list p {
  margin: 0;
  color: #dbc8c6;
  font-size: 0.8rem;
  line-height: 1.45;
}

.testimonials {
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-grid figure {
  display: flex;
  min-height: 226px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 27px;
  border-top: 2px solid var(--gold);
  background: var(--paper);
}

.testimonial-grid blockquote {
  margin: 0;
  color: #443636;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.45;
}

.testimonial-grid figcaption {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.71rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(52px, 10vw, 136px);
}

.faq-layout > div:first-child > p:not(.eyebrow) {
  max-width: 360px;
  color: var(--muted);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--wine);
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
}

.faq-list details p {
  max-width: 650px;
  margin: 12px 38px 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.final-cta {
  padding: clamp(70px, 9vw, 118px) 0;
  background: #ead9c8;
}

.cta-layout {
  display: grid;
  grid-template-columns: 0.88fr 0.9fr;
  gap: clamp(48px, 10vw, 138px);
  align-items: start;
}

.final-cta h2 {
  color: var(--wine);
}

.final-cta > p,
.cta-layout > div > p:not(.eyebrow) {
  max-width: 440px;
  color: #665554;
}

.cta-contact {
  display: grid;
  gap: 8px;
  margin-top: 29px;
}

.cta-contact p {
  margin: 0;
  color: #625252;
  font-size: 0.83rem;
}

.cta-contact strong {
  display: block;
  margin-bottom: 2px;
  color: var(--wine);
  font-size: 0.69rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.evaluation-form {
  padding: 31px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.field-row label {
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 700;
}

.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: #fff;
  color: var(--ink);
}

.field-row textarea {
  resize: vertical;
}

.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 2px rgba(74, 23, 35, 0.1);
}

.evaluation-form .button {
  width: 100%;
}

.form-note {
  display: none;
  margin: 14px 0 0;
  padding: 10px 12px;
  background: #f1e9df;
  color: #62514e;
  font-size: 0.76rem;
  line-height: 1.4;
}

.form-note.show {
  display: block;
}

.site-footer {
  padding-top: 62px;
  background: var(--wine-deep);
  color: #d6c5c1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 0.9fr);
  gap: 38px;
  padding-bottom: 50px;
}

.footer-brand .brand strong {
  color: #fff;
}

.footer-brand .brand span {
  color: #c9b1ad;
}

.footer-brand > p {
  max-width: 300px;
  margin: 19px 0 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-grid h2 {
  margin: 0 0 15px;
  color: #e8bc86;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid > div:not(.footer-brand) p {
  display: block;
  margin: 0 0 7px;
  color: #d6c5c1;
  font-size: 0.78rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  border-top: 1px solid #59343b;
}

.footer-bottom p {
  margin: 0;
  color: #aa9695;
  font-size: 0.67rem;
}

@media (max-width: 960px) {
  .nav-links {
    gap: 15px;
    font-size: 0.75rem;
  }

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

  .hero {
    min-height: 540px;
  }

  .hero-slider-track,
  .hero-slide,
  .hero-split-layout {
    min-height: 540px;
  }

  .treatments-showcase {
    grid-template-columns: repeat(5, minmax(210px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }

  .treatment-card {
    scroll-snap-align: start;
  }

  .procedure-highlight {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .procedure-highlight-media {
    height: 500px;
    min-height: 0;
  }

  .procedure-highlight-content {
    height: auto;
    min-height: 340px;
    padding: 64px 40px 72px;
  }

  .comparison-panel {
    width: min(100%, 690px);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    position: relative;
    min-height: 64px;
  }

  .brand span,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 38px;
    height: 38px;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid #a87980;
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 16px;
    height: 1px;
    background: #fff;
    transition: 0.2s ease;
  }

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

  .menu-toggle.is-open > span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 63px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px 16px 16px;
    border: 1px solid #6e3745;
    background: var(--wine);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 0.88rem;
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero-slider-track,
  .hero-slide,
  .hero-split-layout {
    min-height: 560px;
  }

  .hero-split-layout {
    grid-template-columns: 1fr;
  }

  .hero-content {
    min-height: 430px;
    padding: 48px 0 62px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .hero-intro {
    margin-top: 27px;
    font-size: 0.96rem;
  }

  .hero-actions {
    gap: 18px;
  }

  .hero-arrow {
    top: auto;
    bottom: 22px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .hero-arrow-prev {
    left: 20px;
  }

  .hero-arrow-next {
    right: 20px;
  }

  .hero-indicators {
    bottom: 39px;
  }

  .clinic-intro {
    padding: 56px 0 60px;
  }

  .clinic-intro h2 {
    font-size: 2.35rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 31px;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .section-heading > p {
    margin-bottom: 0;
  }

  .treatments {
    padding: 68px 0 58px;
  }

  .treatments-heading {
    display: block;
  }

  .treatments-heading > p:last-child {
    margin-top: 16px;
  }

  .treatments-showcase {
    height: 455px;
    grid-template-columns: repeat(5, 270px);
    gap: 12px;
  }

  .treatment-card,
  .treatment-card:hover,
  .treatment-card:focus-within {
    height: 420px;
    transform: none;
  }

  .treatment-card-content,
  .treatment-card:hover .treatment-card-content,
  .treatment-card:focus-within .treatment-card-content {
    top: 25px;
    transform: none;
  }

  .treatment-card-details,
  .treatment-card:hover .treatment-card-details,
  .treatment-card:focus-within .treatment-card-details {
    max-height: 270px;
    opacity: 1;
    transform: none;
  }

  .procedure-highlight-media {
    height: 390px;
  }

  .procedure-highlight-content {
    min-height: 300px;
    padding: 50px 24px 58px;
  }

  .evaluation-banner {
    min-height: 440px;
  }

  .evaluation-banner-content {
    padding: 62px 0;
  }

  .evaluation-banner h2 {
    font-size: clamp(2.2rem, 10vw, 3.1rem);
  }

  .evaluation-banner-actions {
    align-items: center;
    flex-direction: column;
  }

  .evaluation-banner-actions a {
    width: min(100%, 310px);
  }

  .doctor-feature {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .doctor-feature-media {
    height: 360px;
    min-height: 0;
  }

  .doctor-feature-content {
    padding: 38px 24px 42px;
  }

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

  .process-list li {
    min-height: 155px;
    padding: 21px 16px 14px 0;
    border-bottom: 1px solid #92616a;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
  }

  .process-list li + li {
    padding-left: 16px;
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
  }

  .process-list li:nth-child(n + 3) {
    border-bottom: 0;
  }

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

  .testimonial-grid figure {
    min-height: 0;
  }

  .evaluation-form {
    padding: 24px;
  }

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

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li + li,
  .process-list li:nth-child(3) {
    min-height: 0;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid #92616a;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1100px) and (min-width: 761px) {
  .nav {
    gap: 16px;
  }

  .brand span {
    display: none;
  }

  .site-header .button-small {
    padding-inline: 13px;
  }

  .hero h1 {
    max-width: 880px;
    font-size: clamp(3.35rem, 6.7vw, 5.1rem);
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 26px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 64px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    z-index: 50;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100dvh - 64px);
    padding: 14px 20px 20px;
    overflow-y: auto;
    border-right: 0;
    border-left: 0;
  }

  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-links .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 10px;
    padding: 0 18px;
    border: 1px solid #e7bd88;
    color: #fff;
    font-weight: 700;
  }

  .hero-slider-track,
  .hero-slide,
  .hero-split-layout {
    min-height: 670px;
  }

  .hero-slide > img {
    object-position: 62% center;
  }

  .hero-slide:nth-child(2) > img {
    object-position: 60% center;
  }

  .hero-slide:nth-child(3) > img {
    object-position: 67% center;
  }

  .hero-slide-overlay {
    background: linear-gradient(90deg, rgba(24, 8, 12, 0.72), rgba(0, 0, 0, 0.38));
  }

  .hero-slide-overlay-strong {
    background: linear-gradient(90deg, rgba(24, 8, 12, 0.75), rgba(0, 0, 0, 0.42));
  }

  .hero-content {
    width: 100%;
    min-height: 670px;
    align-items: flex-start;
    justify-content: center;
    padding: 58px 34px 116px;
    text-align: left;
  }

  .hero-content-left {
    align-items: flex-start;
    text-align: left;
  }

  .hero-content-left .hero-actions,
  .hero-actions {
    justify-content: flex-start;
  }

  .hero-kicker {
    margin-bottom: 20px;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(2.55rem, 11.2vw, 3.65rem);
    letter-spacing: -0.06em;
    line-height: 0.98;
  }

  .hero-intro {
    max-width: 560px;
    margin-top: 24px;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-top: 24px;
  }

  .hero-link {
    min-height: 30px;
    font-size: 0.84rem;
  }

  .hero-arrow {
    bottom: 24px;
  }

  .hero-indicators {
    bottom: 42px;
  }

  .clinic-intro-content {
    max-width: none;
  }

  .clinic-intro h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .clinic-intro-content > p:not(.clinic-intro-kicker) {
    font-size: 0.88rem;
  }

  .doctor-feature-media {
    height: clamp(300px, 92vw, 420px);
  }

  .doctor-feature-media img {
    object-position: center 24%;
  }

  .doctor-feature-content {
    padding: 40px 24px 46px;
  }

  .doctor-feature h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .treatments-showcase {
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
    scrollbar-width: none;
  }

  .treatments-showcase::-webkit-scrollbar {
    display: none;
  }

  .treatment-card {
    border-radius: 16px;
  }

  .procedure-highlight,
  .procedure-highlight-reverse,
  .procedure-highlight-mammary {
    display: flex;
    flex-direction: column;
  }

  .procedure-highlight-reverse .procedure-highlight-content {
    order: 2;
  }

  .procedure-highlight-reverse .procedure-highlight-media {
    order: 1;
  }

  .procedure-highlight-media {
    height: clamp(310px, 92vw, 410px);
  }

  .procedure-highlight-content {
    min-height: 0;
    padding: 43px 24px 49px;
  }

  .procedure-highlight-content h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

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

  .procedure-highlight-actions a {
    width: 100%;
    min-height: 44px;
  }

  .evaluation-banner {
    min-height: 500px;
  }

  .evaluation-banner > img {
    object-position: 62% center;
  }

  .evaluation-banner-overlay {
    background: rgba(20, 21, 24, 0.52);
  }

  .evaluation-banner-content {
    padding: 68px 0 76px;
  }

  .evaluation-banner-content > p {
    max-width: 310px;
    margin-inline: auto;
    line-height: 1.55;
  }

  .evaluation-banner h2 {
    max-width: 520px;
    font-size: clamp(2.25rem, 10.3vw, 3.25rem);
  }

  .section {
    padding: 64px 0 70px;
  }

  .faq-layout {
    gap: 31px;
  }

  .faq-layout h2 {
    font-size: clamp(2.3rem, 10.5vw, 3.1rem);
  }

  .faq-list details {
    padding: 18px 0;
  }

  .faq-list summary {
    gap: 16px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .faq-list summary span {
    flex: 0 0 auto;
  }

  .faq-list details p {
    margin-right: 28px;
    font-size: 0.84rem;
  }

  .site-footer {
    padding-top: 50px;
  }

  .footer-grid {
    gap: 34px 24px;
    padding-bottom: 40px;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 40px);
  }

  .brand strong {
    font-size: 1.45rem;
  }

  .hero-slider-track,
  .hero-slide,
  .hero-split-layout,
  .hero-content {
    min-height: 690px;
  }

  .hero-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-arrow-prev {
    left: 16px;
  }

  .hero-arrow-next {
    right: 16px;
  }

  .clinic-intro {
    padding: 50px 0 55px;
  }

  .clinic-intro-button,
  .doctor-feature-button {
    width: 100%;
  }

  .treatments {
    padding: 58px 0 48px;
  }

  .treatments-showcase {
    height: 430px;
    grid-template-columns: repeat(5, minmax(245px, 82vw));
  }

  .treatment-card,
  .treatment-card:hover,
  .treatment-card:focus-within {
    height: 395px;
  }

  .evaluation-banner-actions {
    width: 100%;
  }

  .evaluation-banner-actions a {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 20px 0 24px;
  }
}

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

  .hero-slider-track,
  .hero-slide,
  .hero-split-layout,
  .hero-content {
    min-height: 720px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-intro {
    font-size: 0.85rem;
  }

  .treatments-showcase {
    grid-template-columns: repeat(5, minmax(230px, 84vw));
  }
}

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

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