:root {
  --ink: #10292b;
  --ink-deep: #091c1e;
  --forest: #1b3b3d;
  --sage: #6f8780;
  --gold: #b69a70;
  --gold-pale: #d9c8aa;
  --paper: #f4f0e9;
  --paper-deep: #e9e3da;
  --white: #fff;
  --graphite: #202625;
  --muted: #6d7470;
  --line: rgba(16, 41, 43, 0.15);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: min(1180px, calc(100vw - 80px));
  --header-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--graphite);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

button,
a,
[tabindex] {
  outline-offset: 4px;
}

:focus-visible {
  outline: 2px solid var(--gold);
}

::selection {
  color: var(--white);
  background: var(--forest);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold-pale);
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  font-weight: 400;
}

h2 {
  font-size: clamp(2.75rem, 5vw, 5.35rem);
}

p {
  margin: 0;
}

.lead {
  color: #3d4845;
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease);
}

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

.button--light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: transparent;
}

.button--large {
  min-height: 62px;
  padding-inline: 34px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link span {
  font-size: 1rem;
}

.text-link--light {
  color: var(--white);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: height 0.4s var(--ease), color 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  height: 76px;
  color: var(--ink);
  background: rgba(248, 246, 241, 0.93);
  border-color: var(--line);
  box-shadow: 0 10px 36px rgba(10, 28, 30, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1380px, calc(100vw - 56px));
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 50px);
  margin-inline: auto;
}

.brand {
  display: flex;
  min-width: 205px;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}

.brand-specialty {
  margin-top: 7px;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.7vw, 30px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.button--header {
  min-height: 44px;
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.site-header.scrolled .button--header,
.site-header.menu-open .button--header {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--header:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}

.site-header.scrolled .button--header:hover {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.menu-toggle {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-deep);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 52% center;
  animation: hero-in 1.6s var(--ease) both;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 24, 27, 0.88) 0%, rgba(5, 24, 27, 0.66) 28%, rgba(5, 24, 27, 0.25) 57%, rgba(5, 24, 27, 0.06) 82%),
    linear-gradient(0deg, rgba(5, 24, 27, 0.52) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: clamp(88px, 12vh, 142px);
}

.hero-copy {
  width: min(680px, 53vw);
  animation: copy-in 1s 0.2s var(--ease) both;
}

.hero-eyebrow {
  color: var(--gold-pale);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(4.6rem, 7.8vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.hero h1 em {
  display: inline-block;
  color: var(--gold-pale);
  font-size: 0.76em;
}

.hero-identification {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
  font-family: var(--serif);
  font-size: 1.38rem;
}

.hero-identification span {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 570px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.96rem, 1.25vw, 1.1rem);
  line-height: 1.65;
}

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

.credentials {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.credentials span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 3.5vw;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  position: relative;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: cue 2.2s ease-in-out infinite;
}

/* Shared sections */
.section {
  padding-block: clamp(100px, 12vw, 180px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.65fr 0.6fr;
  align-items: end;
  gap: 9vw;
  margin-bottom: 66px;
}

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

.section-heading--split > p {
  max-width: 360px;
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Video */
.section--video {
  background: var(--paper);
}

.video-cover {
  position: relative;
  width: 100%;
  height: min(67vw, 700px);
  max-height: 72vh;
  min-height: 470px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: var(--ink);
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transition: transform 1.2s var(--ease), filter 0.8s ease;
}

.video-cover:hover img {
  filter: saturate(0.88);
  transform: scale(1.025);
}

.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 30, 32, 0.7) 0%, rgba(8, 30, 32, 0.04) 64%);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--white);
  background: rgba(8, 30, 32, 0.2);
  transform: translate(-50%, -50%);
  transition: background 0.35s ease, transform 0.45s var(--ease);
  backdrop-filter: blur(6px);
}

.play-button i {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
}

.video-cover:hover .play-button {
  background: rgba(182, 154, 112, 0.78);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-caption {
  position: absolute;
  right: 50px;
  bottom: 42px;
  left: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
  text-align: left;
}

.video-caption b {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}

.video-caption small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* About */
.section--about {
  background: #ebe7df;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(70px, 9vw, 145px);
}

.portrait-frame {
  position: relative;
  height: min(760px, 73vw);
  overflow: hidden;
}

.portrait-frame::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  content: "";
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 1s var(--ease);
}

.portrait-frame:hover img {
  transform: scale(1.018);
}

.portrait-mark {
  position: absolute;
  right: -2px;
  bottom: -18px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 1;
}

.about-copy h2 {
  max-width: 700px;
}

.about-copy > .lead {
  max-width: 660px;
  margin-top: 38px;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
}

.about-copy strong {
  color: var(--ink);
  font-weight: 600;
}

.doctor-meta {
  display: flex;
  gap: 26px;
  margin-top: 30px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-facts div {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts b {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.about-facts span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.05em;
}

/* Specialty */
.specialty {
  min-height: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink-deep);
}

.specialty-image {
  min-height: 760px;
  overflow: hidden;
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 1.2s var(--ease);
}

.specialty-image:hover img {
  transform: scale(1.02);
}

.specialty-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 9vw, 150px);
}

.specialty-copy h2 {
  max-width: 680px;
  color: var(--white);
}

.specialty-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 36px;
}

.specialty-list {
  width: 100%;
  max-width: 620px;
  margin: 44px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.specialty-list li {
  position: relative;
  padding: 16px 20px 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.specialty-list li::after {
  position: absolute;
  top: 50%;
  right: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

/* Care */
.care {
  position: relative;
  min-height: 960px;
  display: grid;
  overflow: hidden;
  background: var(--paper-deep);
}

.care-image {
  position: absolute;
  inset: 0 0 0 23%;
  overflow: hidden;
}

.care-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  transition: transform 1.2s var(--ease);
}

.care-image:hover img {
  transform: scale(1.018);
}

.care-panel {
  position: relative;
  z-index: 2;
  width: min(615px, 44vw);
  align-self: center;
  margin-left: max(4vw, calc((100vw - 1180px) / 2));
  padding: clamp(55px, 6vw, 92px);
  background: rgba(244, 240, 233, 0.97);
}

.care-panel h2 {
  font-size: clamp(3.5rem, 6.2vw, 6.6rem);
}

.care-panel > p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 30px;
  color: var(--muted);
}

.care-values {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.care-values span {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Experience */
.section--experience {
  background: var(--paper);
}

.experience-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(65px, 10vw, 155px);
}

.experience-copy h2 {
  max-width: 580px;
}

.experience-copy .lead {
  max-width: 520px;
  margin-top: 38px;
}

.editorial-note {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-image {
  margin: 0;
}

.experience-image img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82);
  transition: filter 0.5s ease, transform 0.9s var(--ease);
}

.experience-image:hover img {
  filter: saturate(1);
  transform: scale(1.008);
}

.experience-image figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

/* Human block */
.human-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  color: rgba(255, 255, 255, 0.76);
  background: #122628;
}

.human-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.human-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.88;
  filter: saturate(0.72);
  transition: filter 0.8s ease, transform 1.2s var(--ease);
}

.human-image:hover img {
  filter: saturate(0.9);
  transform: scale(1.018);
}

.human-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 5vw, 80px) clamp(40px, 4.5vw, 72px);
}

.human-copy h2 {
  height: auto;
  max-width: 100%;
  overflow: visible;
  color: var(--white);
  font-size: clamp(2.75rem, 4vw, 4.25rem);
  line-height: 1.04;
}

.human-copy > p:not(.eyebrow) {
  max-width: 450px;
  margin-top: 32px;
}

/* Reviews */
.reviews {
  background: #e8e3da;
}

.reviews-top {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: end;
  gap: 9vw;
  margin-bottom: 76px;
}

.reviews-count {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.reviews-count strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 9.5rem);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: -0.06em;
}

.reviews-count span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reviews-heading h2 {
  max-width: 760px;
}

.reviews-heading > p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 26px;
  color: var(--muted);
}

.review-track {
  display: grid;
  grid-auto-columns: calc((100% - 48px) / 3);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid rgba(16, 41, 43, 0.14);
  background: rgba(244, 240, 233, 0.46);
  scroll-snap-align: start;
  transition: background 0.4s ease, transform 0.4s var(--ease);
}

.review-card:hover {
  background: var(--paper);
  transform: translateY(-4px);
}

.quote-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.7;
}

.review-card blockquote {
  margin: 35px 0 30px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.28;
}

.review-card p {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.slider-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  transition: color 0.3s ease, background 0.3s ease;
}

.slider-controls button:hover {
  color: var(--white);
  background: var(--ink);
}

.slider-controls > span {
  position: relative;
  width: 110px;
  height: 1px;
  overflow: hidden;
  background: rgba(16, 41, 43, 0.2);
}

.slider-controls i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 20%;
  background: var(--ink);
  transition: width 0.25s ease;
}

/* Clinic */
.clinic {
  min-height: 900px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--paper);
}

.clinic-image {
  min-height: 760px;
  overflow: hidden;
}

.clinic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(0.98);
  transition: filter 0.6s ease, transform 1.1s var(--ease);
}

.clinic-image:hover img {
  filter: saturate(0.9);
  transform: scale(1.015);
}

.clinic-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

.clinic-card h2 {
  max-width: 610px;
  font-size: clamp(3.3rem, 5vw, 5.4rem);
}

.clinic-name {
  display: flex;
  flex-direction: column;
  margin-top: 42px;
  color: var(--ink);
}

.clinic-name strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.clinic-name span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clinic-card address {
  margin-top: 27px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.clinic-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 43px;
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink-deep);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: clamp(115px, 14vw, 205px);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(4rem, 8vw, 8.2rem);
}

.final-cta h2 em {
  display: block;
  color: var(--gold-pale);
}

.final-cta__inner > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 32px;
}

.final-cta .button {
  margin-top: 42px;
}

.final-cta__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(72vw, 1050px);
  aspect-ratio: 1;
  border: 1px solid rgba(182, 154, 112, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-cta__line::before,
.final-cta__line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(182, 154, 112, 0.1);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta__line::before {
  width: 78%;
  height: 78%;
}

.final-cta__line::after {
  width: 54%;
  height: 54%;
}

/* Footer */
.site-footer {
  padding: 82px 0 34px;
  color: rgba(255, 255, 255, 0.7);
  background: #071719;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr 1fr 0.55fr;
  gap: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
}

.footer-brand .brand-name {
  font-size: 2rem;
}

.footer-label {
  margin-bottom: 15px;
  color: var(--gold-pale);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-grid a {
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
  letter-spacing: 0.03em;
}

/* Fixed contact actions */
.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 28px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 15px 8px 8px;
  color: var(--white);
  background: rgba(12, 45, 45, 0.93);
  box-shadow: 0 12px 32px rgba(7, 23, 25, 0.17);
  transition: transform 0.35s var(--ease), background 0.3s ease;
  backdrop-filter: blur(10px);
}

.whatsapp-float:hover {
  background: var(--ink);
  transform: translateY(-3px);
}

.whatsapp-float span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.whatsapp-float b {
  font-size: 0.63rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-cta {
  display: none;
}

/* Video modal */
.video-modal {
  width: min(430px, calc(56.25vh - 62px), calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 24px);
  padding: 0;
  overflow: visible;
  border: 0;
  color: var(--white);
  background: transparent;
}

.video-modal::backdrop {
  background: rgba(4, 16, 18, 0.88);
  backdrop-filter: blur(8px);
}

.video-modal__inner {
  position: relative;
  width: 100%;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: -38px;
  right: 0;
  padding: 4px 0;
  border: 0;
  color: rgba(255, 255, 255, 0.74);
  cursor: pointer;
  background: transparent;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.modal-close span {
  margin-left: 7px;
  font-size: 1.1rem;
}

.video-modal__title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.video-modal__player {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.video-modal__player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Reveal effects */
.js .reveal,
.js .reveal-left,
.js .reveal-right,
.js .reveal-image {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.js .reveal {
  transform: translateY(32px);
}

.js .reveal-left {
  transform: translateX(-36px);
}

.js .reveal-right {
  transform: translateX(36px);
}

.js .reveal-image {
  transform: translateY(20px) scale(0.985);
}

.js .is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

@keyframes hero-in {
  from { opacity: 0.55; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cue {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 56px, 1040px);
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.64rem;
  }

  .button--header {
    padding-inline: 18px;
  }

  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  }

  .specialty-copy,
  .clinic-card {
    padding: 70px;
  }

  .human-copy {
    padding: 48px 36px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 78px;
  }

  .header-inner {
    width: calc(100vw - 40px);
  }

  .brand {
    min-width: 0;
    margin-right: auto;
  }

  .button--header {
    order: 2;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    order: 3;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
  }

  .menu-toggle span {
    width: 16px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 0.3s ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 28px 24px;
    color: var(--ink);
    background: rgba(248, 246, 241, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(10, 28, 30, 0.09);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.76rem;
  }

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

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

  .hero-copy {
    width: min(630px, 72vw);
  }

  .hero h1 {
    font-size: clamp(4.6rem, 10vw, 7rem);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 42px;
  }

  .portrait-frame {
    height: 650px;
  }

  .about-facts div {
    padding-inline: 18px;
  }

  .specialty {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .specialty-copy {
    padding: 60px 46px;
  }

  .care {
    min-height: 820px;
  }

  .care-panel {
    width: min(560px, 60vw);
  }

  .experience-grid {
    gap: 55px;
  }

  .human-block,
  .clinic {
    grid-template-columns: 1fr 0.85fr;
  }

  .review-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .clinic-card {
    padding: 55px 46px;
  }

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

@media (min-width: 761px) and (max-width: 900px) {
  .human-copy h2 {
    font-size: clamp(2.2rem, 4.7vw, 2.65rem);
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 40px);
    --header-h: 72px;
  }

  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 58px;
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .section {
    padding-block: 92px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .header-inner {
    width: calc(100vw - 30px);
    gap: 10px;
  }

  .site-header,
  .site-header.scrolled,
  .site-header.menu-open {
    height: var(--header-h);
  }

  .brand-name {
    font-size: 1.16rem;
  }

  .brand-specialty {
    font-size: 0.46rem;
  }

  .button--header {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 24, 27, 0.94) 0%, rgba(5, 24, 27, 0.68) 45%, rgba(5, 24, 27, 0.08) 76%),
      linear-gradient(90deg, rgba(5, 24, 27, 0.28), transparent 75%);
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 104px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-eyebrow {
    max-width: 300px;
    font-size: 0.62rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 17vw, 5.4rem);
    line-height: 0.91;
  }

  .hero-identification {
    display: block;
    margin-top: 28px;
    font-size: 1.2rem;
  }

  .hero-identification span {
    display: block;
    margin-top: 6px;
    padding-left: 0;
    border-left: 0;
    font-size: 0.59rem;
  }

  .hero-text {
    max-width: 500px;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding-inline: 21px;
  }

  .credentials {
    margin-top: 22px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading--split {
    margin-bottom: 42px;
  }

  .video-cover {
    height: 118vw;
    min-height: 460px;
    max-height: 660px;
  }

  .video-cover img {
    object-position: center 34%;
  }

  .play-button {
    width: 78px;
    height: 78px;
  }

  .video-caption {
    right: 22px;
    bottom: 24px;
    left: 22px;
    display: block;
  }

  .video-caption b {
    display: block;
    font-size: 1.34rem;
  }

  .video-caption small {
    display: block;
    margin-top: 4px;
    font-size: 0.58rem;
  }

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

  .portrait-frame {
    width: calc(100% - 24px);
    height: 128vw;
    max-height: 720px;
  }

  .portrait-mark {
    right: -24px;
  }

  .about-copy > .lead {
    margin-top: 28px;
  }

  .doctor-meta {
    margin-top: 24px;
  }

  .about-facts {
    margin-top: 42px;
  }

  .about-facts div {
    min-height: 102px;
    padding: 16px;
  }

  .about-facts b {
    font-size: 1.48rem;
  }

  .about-facts span {
    font-size: 0.6rem;
  }

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

  .specialty-image {
    height: 128vw;
    min-height: 500px;
    max-height: 720px;
  }

  .specialty-image img {
    object-position: center 32%;
  }

  .specialty-copy {
    padding: 82px 20px 92px;
  }

  .specialty-copy > p:not(.eyebrow) {
    margin-top: 28px;
  }

  .specialty-list {
    margin: 34px 0 40px;
  }

  .care {
    min-height: 0;
    display: block;
    padding-bottom: 82px;
  }

  .care-image {
    position: relative;
    inset: auto;
    height: 136vw;
    max-height: 720px;
  }

  .care-panel {
    width: calc(100% - 40px);
    margin: -78px auto 0;
    padding: 46px 27px;
  }

  .care-panel h2 {
    font-size: clamp(3.2rem, 15vw, 4.5rem);
  }

  .care-values {
    display: grid;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .experience-copy .lead {
    margin-top: 28px;
  }

  .experience-image {
    margin-inline: -20px;
  }

  .experience-image figcaption {
    padding-inline: 20px;
  }

  .human-block {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .human-image {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .human-copy {
    padding: 52px 20px 70px;
  }

  .human-copy h2 {
    height: auto;
    overflow: visible;
    font-size: clamp(2.35rem, 10vw, 3.55rem);
    line-height: 1.06;
  }

  .reviews-top {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-bottom: 50px;
  }

  .reviews-count {
    max-width: 260px;
  }

  .reviews-count strong {
    font-size: 7.4rem;
  }

  .review-track {
    grid-auto-columns: 88%;
    gap: 16px;
  }

  .review-card {
    min-height: 330px;
    padding: 30px 26px;
  }

  .review-card blockquote {
    font-size: 1.5rem;
  }

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

  .clinic-image {
    height: 105vw;
    min-height: 380px;
    max-height: 600px;
  }

  .clinic-card {
    padding: 78px 20px 92px;
  }

  .clinic-card h2 {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .clinic-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta h2 {
    font-size: clamp(3.7rem, 16vw, 5.6rem);
  }

  .final-cta__line {
    width: 150vw;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 50px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 18px;
    color: var(--white);
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .video-modal {
    width: min(calc(100vw - 24px), calc(56.25vh - 40px));
    max-height: calc(100vh - 70px);
  }

  .video-modal__inner {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 3.6rem;
  }

  .hero-text {
    font-size: 0.84rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .review-track {
    grid-auto-columns: 94%;
  }
}

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

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

  .js .reveal,
  .js .reveal-left,
  .js .reveal-right,
  .js .reveal-image {
    opacity: 1;
    transform: none;
  }
}
