:root {
  --ink: #102d32;
  --ink-soft: #4d6569;
  --teal-950: #073d45;
  --teal-900: #0a4a53;
  --teal-800: #0f5d65;
  --teal-100: #dceceb;
  --green: #43a047;
  --orange: #ec7b31;
  --cream: #f7f4ed;
  --sand: #ebe5d8;
  --white: #fff;
  --line: rgba(16, 45, 50, 0.12);
  --shadow: 0 24px 70px rgba(6, 49, 56, 0.14);
  --radius: 22px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfaf7;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--teal-950);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.topbar {
  position: relative;
  z-index: 20;
  color: #e9f4f3;
  background: var(--teal-950);
  font-size: 13px;
}

.topbar-inner,
.topbar-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-inner {
  min-height: 38px;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}

.topbar-links {
  gap: 26px;
}

.topbar a {
  color: white;
  font-weight: 700;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #75d285;
  box-shadow: 0 0 0 4px rgba(117, 210, 133, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(11, 51, 57, 0.08);
}

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

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #2d484d;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--teal-800);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-radius: 999px;
  color: white;
  background: var(--teal-900);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  background: #073d45;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--teal-100);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--teal-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  background: #eef1ed;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 42, 49, 0.82) 0%, rgba(4, 42, 49, 0.67) 38%, rgba(4, 42, 49, 0.23) 68%, rgba(4, 42, 49, 0.06) 100%),
    linear-gradient(180deg, rgba(3, 35, 41, 0.05) 45%, rgba(3, 35, 41, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 670px;
  align-items: center;
  padding-block: 72px 106px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-800);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.hero h1,
.section-heading h2,
.doctor-copy h2,
.why-intro h2,
.appointment-copy h2,
.location-card h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 650px;
  margin: 22px 0 22px;
  color: white;
  font-size: clamp(56px, 6.2vw, 84px);
  text-shadow: 0 3px 28px rgba(1, 28, 33, 0.24);
}

.hero-copy > p {
  max-width: 550px;
  margin: 0;
  color: #e7f0f1;
  font-size: 18px;
  line-height: 1.7;
}

.hero .eyebrow {
  color: #bce8c4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button svg,
.quick-card svg,
.location-icon svg,
.mobile-side-cta svg,
.service-icon svg,
.contact-notes svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: white;
  background: var(--teal-900);
  box-shadow: 0 13px 28px rgba(6, 72, 81, 0.2);
}

.button-primary:hover {
  background: var(--teal-950);
  box-shadow: 0 17px 32px rgba(6, 72, 81, 0.25);
  transform: translateY(-2px);
}

.button-secondary {
  border: 1px solid rgba(12, 75, 84, 0.2);
  color: var(--teal-950);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

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

.hero .button-primary {
  color: var(--teal-950);
  background: white;
  box-shadow: 0 13px 30px rgba(1, 28, 33, 0.22);
}

.hero .button-primary:hover {
  color: white;
  background: var(--teal-900);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: white;
  background: rgba(4, 42, 49, 0.34);
}

.hero .button-secondary:hover {
  color: var(--teal-950);
  background: white;
}

.hero-trust {
  display: flex;
  align-items: stretch;
  margin-top: 43px;
}

.hero-trust div {
  display: flex;
  min-width: 138px;
  flex-direction: column;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-trust div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-trust strong {
  color: white;
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
}

.hero-trust span {
  margin-top: 4px;
  color: #d9e7e8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quick-contact {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}

.quick-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(11, 66, 74, 0.09);
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow);
  grid-template-columns: repeat(3, 1fr);
}

.quick-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-left: 1px solid var(--line);
  transition: background 0.2s ease;
}

.quick-card:first-child {
  border-left: 0;
}

.quick-card:hover {
  background: #f4f8f6;
}

.icon-box {
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--teal-800);
  background: var(--teal-100);
}

.icon-box svg {
  width: 21px;
  height: 21px;
}

.quick-card > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.quick-card small,
.contact-notes small,
.location-details small {
  color: #738589;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-card strong {
  margin-top: 2px;
  font-size: 15px;
}

.arrow {
  margin-left: auto;
  color: var(--orange);
  font-weight: 700;
}

.section {
  padding-block: 128px;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
  grid-template-columns: 1.3fr 0.7fr;
}

.section-heading h2,
.doctor-copy h2,
.why-intro h2,
.appointment-copy h2,
.location-card h2 {
  margin: 16px 0 0;
  font-size: clamp(43px, 5vw, 64px);
}

.section-heading p {
  margin: 0 0 6px;
  color: var(--ink-soft);
}

.services {
  background: #fbfaf7;
}

.services-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  grid-column: span 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:nth-child(n + 4) {
  grid-column: span 3;
}

.service-card:hover {
  border-color: rgba(15, 93, 101, 0.25);
  box-shadow: 0 25px 45px rgba(16, 45, 50, 0.08);
  transform: translateY(-5px);
}

.service-featured {
  color: white;
  background: var(--teal-950);
  grid-row: auto;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 27px;
  color: #aab8b9;
  font-size: 12px;
  font-weight: 700;
}

.service-featured .service-number {
  color: rgba(255, 255, 255, 0.45);
}

.service-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--teal-800);
  background: #eaf3f1;
}

.service-featured .service-icon {
  color: #9cdea7;
  background: rgba(255, 255, 255, 0.09);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3 {
  margin: 22px 0 8px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: #65797c;
  font-size: 14px;
}

.service-featured p {
  color: #bfd0d2;
}

.service-card ul {
  display: grid;
  gap: 6px;
  margin: 16px 0 18px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 19px;
  color: #eef7f6;
  font-size: 13px;
}

.service-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #72c97f;
  content: "";
}

.service-card > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  color: var(--teal-800);
  font-size: 13px;
  font-weight: 700;
}

.service-featured > a {
  color: #9cdea7;
}

.service-card > a span {
  transition: transform 0.2s ease;
}

.service-card > a:hover span {
  transform: translateX(5px);
}

.doctor-section {
  padding-block: 132px;
  background: var(--cream);
}

.doctor-grid {
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: 0.95fr 1.05fr;
}

.doctor-visual {
  position: relative;
  max-width: 545px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px 76px 8px 8px;
  box-shadow: 0 26px 70px rgba(46, 47, 35, 0.14);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 61, 69, 0.18));
  content: "";
}

.portrait-frame img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.experience-card {
  position: absolute;
  right: -34px;
  bottom: 31px;
  display: flex;
  min-width: 210px;
  align-items: center;
  gap: 14px;
  padding: 21px 24px;
  border-radius: 4px;
  color: white;
  background: var(--teal-950);
  box-shadow: 0 16px 35px rgba(7, 61, 69, 0.25);
}

.experience-card span {
  font-family: "Newsreader", Georgia, serif;
  font-size: 43px;
  line-height: 1;
}

.experience-card p {
  margin: 0;
  color: #c4d5d6;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.visual-cross {
  position: absolute;
  z-index: 3;
  top: -33px;
  left: -31px;
  color: var(--orange);
  font-size: 76px;
  font-weight: 200;
  line-height: 1;
}

.doctor-copy {
  max-width: 560px;
}

.doctor-role {
  margin: 13px 0 24px;
  color: var(--teal-800);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.doctor-copy > p:not(.doctor-role) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.credentials {
  display: grid;
  gap: 17px;
  margin: 33px 0 29px;
  padding-block: 29px;
  border-block: 1px solid var(--line);
}

.credentials > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.credentials > div > span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.credentials p {
  display: flex;
  margin: 0;
  flex-direction: column;
  line-height: 1.35;
}

.credentials strong {
  font-size: 15px;
}

.credentials small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--teal-800);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--orange);
  transition: transform 0.2s ease;
}

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

.why-us {
  background: #fbfaf7;
}

.why-panel {
  position: relative;
  display: grid;
  gap: 80px;
  overflow: hidden;
  padding: 84px;
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 9% 8%, rgba(113, 193, 127, 0.2), transparent 24%),
    linear-gradient(135deg, #0b5059, #073b43);
  grid-template-columns: 0.8fr 1.2fr;
}

.why-panel::after {
  position: absolute;
  right: -90px;
  bottom: -165px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.015);
  content: "";
}

.section-kicker.light {
  color: #9fdba8;
}

.why-intro h2 {
  font-size: clamp(42px, 4.5vw, 59px);
}

.why-intro p {
  margin: 24px 0 31px;
  color: #c6d5d6;
}

.button-light {
  color: var(--teal-950);
  background: white;
}

.button-light:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.13);
  transform: translateY(-2px);
}

.benefit-list {
  display: grid;
}

.benefit-list article {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 38px 1fr;
}

.benefit-list article:first-child {
  padding-top: 4px;
  border-top: 0;
}

.benefit-list article > span {
  color: #79c985;
  font-size: 11px;
  font-weight: 700;
}

.benefit-list h3 {
  margin: 0 0 5px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  font-weight: 500;
}

.benefit-list p {
  margin: 0;
  color: #beced0;
  font-size: 14px;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background: #fbfaf7;
}

.reviews-section::before {
  position: absolute;
  top: -190px;
  right: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(15, 93, 101, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(15, 93, 101, 0.025), 0 0 0 110px rgba(15, 93, 101, 0.018);
  content: "";
  pointer-events: none;
}

.reviews-header {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 70px;
  margin-bottom: 44px;
  grid-template-columns: 1fr minmax(430px, 0.8fr);
}

.reviews-intro h2 {
  max-width: 650px;
  margin: 16px 0 13px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(48px, 5.4vw, 70px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.99;
}

.reviews-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.google-rating-card {
  display: grid;
  min-height: 154px;
  align-items: center;
  gap: 18px;
  padding: 25px 27px;
  border: 1px solid rgba(16, 45, 50, 0.09);
  border-radius: 22px;
  background: white;
  box-shadow: 0 20px 55px rgba(19, 44, 42, 0.09);
  grid-template-columns: 1fr auto;
}

.google-rating-main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.google-rating-main > div {
  display: flex;
  flex-direction: column;
}

.google-g {
  display: inline-grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 1;
  background: conic-gradient(from -35deg, #4285f4 0 26%, #34a853 26% 43%, #fbbc05 43% 67%, #ea4335 67% 82%, #4285f4 82% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.google-rating-main small {
  color: #75878a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-line strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 31px;
  line-height: 1.1;
}

.review-stars {
  color: #f6ad19;
  font-size: 14px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.review-count {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.review-count strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 33px;
  line-height: 1;
}

.review-count span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.google-review-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--teal-800);
  font-size: 12px;
  font-weight: 800;
}

.google-review-link span {
  color: var(--orange);
}

.reviews-slider {
  position: relative;
  z-index: 1;
}

.reviews-viewport {
  overflow: hidden;
  border-radius: 24px;
  cursor: grab;
  touch-action: pan-y;
}

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

.reviews-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.review-card {
  display: flex;
  min-height: 325px;
  flex: 0 0 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  border: 1px solid rgba(16, 45, 50, 0.09);
  border-radius: 24px;
  background: white;
  box-shadow: 0 18px 55px rgba(19, 44, 42, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
  border-color: rgba(15, 93, 101, 0.2);
  box-shadow: 0 25px 65px rgba(19, 44, 42, 0.11);
  transform: translateY(-4px);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #75878a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-source .google-g {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  font-size: 15px;
}

.review-card blockquote {
  max-width: 820px;
  margin: 34px 0 42px;
  color: var(--ink);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 2.6vw, 37px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.review-author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-950));
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.review-avatar.alt {
  color: var(--teal-950);
  background: linear-gradient(135deg, #c7e2d0, #9fdba8);
}

.review-author > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.review-author strong {
  font-size: 13px;
  line-height: 1.4;
}

.review-author small {
  color: #75878a;
  font-size: 11px;
}

.review-author svg {
  width: 35px;
  height: 35px;
  margin-left: auto;
  fill: rgba(15, 93, 101, 0.1);
}

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

.review-dots,
.review-arrows {
  display: flex;
  align-items: center;
  gap: 7px;
}

.review-dot {
  width: 9px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 93, 101, 0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.review-dot.is-active {
  width: 32px;
  background: var(--teal-800);
}

.review-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(16, 45, 50, 0.12);
  border-radius: 50%;
  place-items: center;
  color: var(--teal-950);
  background: white;
  box-shadow: 0 10px 26px rgba(19, 44, 42, 0.08);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.review-arrow:hover {
  color: white;
  background: var(--teal-800);
  transform: translateY(-2px);
}

.review-arrow:focus-visible,
.review-dot:focus-visible {
  outline: 3px solid rgba(236, 123, 49, 0.35);
  outline-offset: 3px;
}

.review-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.appointment-section {
  background: var(--cream);
}

.appointment-grid {
  display: grid;
  align-items: center;
  gap: 100px;
  grid-template-columns: 0.83fr 1.17fr;
}

.appointment-copy h2 {
  max-width: 510px;
}

.appointment-copy > p {
  max-width: 485px;
  margin: 25px 0 37px;
  color: var(--ink-soft);
  font-size: 16px;
}

.contact-notes {
  display: grid;
  gap: 15px;
}

.contact-notes a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-notes a > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-notes strong {
  font-size: 14px;
}

.appointment-form {
  padding: 42px;
  border: 1px solid rgba(16, 45, 50, 0.08);
  border-radius: 24px;
  background: white;
  box-shadow: 0 25px 75px rgba(28, 59, 54, 0.1);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
}

.form-heading small {
  color: #75878a;
  font-size: 11px;
}

.field-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.appointment-form label {
  display: block;
  margin-bottom: 17px;
}

.appointment-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #3f585c;
  font-size: 12px;
  font-weight: 700;
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  border: 1px solid #dce4e3;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: #fcfdfc;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.appointment-form input:focus,
.appointment-form select:focus {
  border-color: var(--teal-800);
  box-shadow: 0 0 0 3px rgba(15, 93, 101, 0.1);
}

.appointment-form input::placeholder {
  color: #9aa9ab;
}

.form-submit {
  width: 100%;
  margin-top: 5px;
}

.form-note {
  margin: 12px 0 0;
  color: #829092;
  font-size: 10px;
  text-align: center;
}

.location-section {
  display: grid;
  min-height: 0;
  align-items: stretch;
  justify-content: center;
  gap: 30px;
  padding: 80px 24px;
  background: var(--cream);
  grid-template-columns: repeat(2, minmax(0, 520px));
}

.map-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 548px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(7, 61, 69, 0.14);
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff, #f1eee6);
  box-shadow: 0 28px 70px rgba(19, 44, 42, 0.16), 0 4px 14px rgba(19, 44, 42, 0.08);
}

.map-wrap::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 42px;
  width: 92px;
  height: 4px;
  border-radius: 0 0 5px 5px;
  background: linear-gradient(90deg, var(--orange) 0 38%, var(--green) 38% 100%);
  content: "";
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 530px;
  border: 0;
  border-radius: 18px;
  filter: saturate(0.72) contrast(0.97);
}

.map-frame-label {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: calc(100% - 52px);
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(7, 61, 69, 0.18);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.map-frame-label > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.map-frame-label small {
  color: #738589;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.map-frame-label strong {
  overflow: hidden;
  color: var(--teal-950);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-frame-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--teal-800);
}

.map-frame-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.location-card {
  display: flex;
  width: 100%;
  min-height: 548px;
  flex-direction: column;
  align-self: stretch;
  justify-content: center;
  margin: 0;
  padding: 48px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 25px 65px rgba(19, 44, 42, 0.12);
}

.location-card h2 {
  font-size: 50px;
}

.location-details {
  display: grid;
  gap: 22px;
  margin: 30px 0;
  padding-block: 28px;
  border-block: 1px solid var(--line);
}

.location-details > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.location-icon {
  color: var(--teal-800);
}

.location-icon svg {
  width: 23px;
  height: 23px;
}

.location-details p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.location-details strong {
  margin-top: 3px;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer {
  padding: 76px 0 20px;
  color: #d4e0e1;
  background: #062f36;
}

.footer-main {
  display: grid;
  gap: 80px;
  padding-bottom: 62px;
  grid-template-columns: 0.8fr 1.2fr;
}

.brand-footer img {
  border-radius: 50%;
  mix-blend-mode: screen;
}

.brand-footer .brand-copy strong {
  color: white;
}

.brand-footer .brand-copy small {
  color: #9db0b2;
}

.footer-brand > p {
  max-width: 330px;
  margin: 20px 0 0;
  color: #9fb2b4;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(3, 1fr);
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: white;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: #9fb2b4;
  font-size: 13px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #82999c;
  font-size: 11px;
}

.mobile-contact-cta,
.mobile-side-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (min-width: 821px) {
  .hero {
    height: clamp(500px, calc(100svh - 187px), 700px);
    min-height: 0;
  }

  .hero-content {
    height: 100%;
    min-height: 0;
    padding-block: clamp(20px, 3.5vh, 38px) clamp(58px, 8vh, 72px);
  }

  .hero h1 {
    margin-block: 12px;
    font-size: clamp(50px, 4.4vw, 64px);
  }

  .hero-copy > p {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .hero .button {
    min-height: 50px;
  }

  .hero-trust {
    margin-top: 17px;
  }

  .hero-trust strong {
    font-size: 22px;
  }
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 20px;
  }

  .main-nav > a:not(.nav-cta) {
    display: none;
  }

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

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

  .service-card,
  .service-card:nth-child(n + 4) {
    grid-column: auto;
  }

  .doctor-grid,
  .appointment-grid {
    gap: 65px;
  }

  .why-panel {
    gap: 55px;
    padding: 62px;
  }
}

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

  .topbar-links span {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 20px;
  }

  .main-nav {
    position: absolute;
    z-index: 200;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 72px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px 24px;
    background: #fbfaf7;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    display: block;
    padding: 18px 6px;
    border-bottom: 1px solid var(--line);
    font-family: "Newsreader", Georgia, serif;
    font-size: 30px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

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

  .hero,
  .hero-content {
    min-height: 680px;
  }

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

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 42, 49, 0.82) 0%, rgba(4, 42, 49, 0.64) 55%, rgba(4, 42, 49, 0.2) 100%);
  }

  .hero-copy {
    max-width: 570px;
  }

  .hero h1 {
    max-width: 570px;
    font-size: clamp(51px, 9vw, 70px);
  }

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

  .quick-card {
    min-height: 90px;
    padding: 18px 23px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .quick-card:first-child {
    border-top: 0;
  }

  .section {
    padding-block: 100px;
  }

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

  .doctor-grid,
  .appointment-grid,
  .why-panel {
    grid-template-columns: 1fr;
  }

  .doctor-grid {
    gap: 75px;
  }

  .doctor-visual {
    width: calc(100% - 24px);
  }

  .why-panel {
    gap: 65px;
  }

  .reviews-header {
    align-items: stretch;
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .google-rating-card {
    width: min(560px, 100%);
  }

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

  .review-card {
    min-height: 300px;
  }

  .appointment-grid {
    gap: 55px;
  }

  .location-section {
    min-height: 0;
    gap: 22px;
    padding: 64px 18px;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr;
  }

  .map-wrap {
    width: min(560px, 100%);
    min-height: 500px;
  }

  .map-wrap iframe {
    width: 100%;
    min-height: 482px;
  }

  .map-wrap {
    margin: 0 auto;
  }

  .location-card {
    width: min(560px, 100%);
    min-height: 500px;
    margin: 0 auto;
  }

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

@media (max-width: 600px) {
  body {
    overflow-x: clip;
    padding-bottom: 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-inner {
    min-height: 34px;
  }

  .topbar p {
    font-size: 11px;
  }

  .topbar-links a {
    font-size: 11px;
  }

  .brand-copy small {
    display: none;
  }

  .main-nav {
    top: calc(100% + 8px);
    right: 14px;
    left: auto;
    width: min(270px, calc(100% - 28px));
    height: auto;
    max-height: calc(100dvh - 118px);
    padding: 10px 16px 16px;
    overflow-y: auto;
    border: 1px solid rgba(16, 45, 50, 0.1);
    border-radius: 18px;
    background: rgba(251, 250, 247, 0.98);
    box-shadow: 0 20px 55px rgba(7, 61, 69, 0.18);
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    backdrop-filter: blur(12px);
    overscroll-behavior: contain;
  }

  .main-nav.is-open {
    transform: translateY(0) scale(1);
  }

  .main-nav > a:not(.nav-cta) {
    padding: 11px 3px;
    font-size: 20px;
    line-height: 1.15;
  }

  .nav-cta {
    min-height: 42px;
    justify-content: center;
    margin-top: 13px;
    padding-inline: 15px;
    font-size: 12px;
  }

  .hero,
  .hero-content {
    min-height: 680px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 35, 41, 0.58) 0%, rgba(3, 35, 41, 0.45) 54%, rgba(3, 35, 41, 0.66) 100%),
      linear-gradient(90deg, rgba(3, 35, 41, 0.34) 0%, rgba(3, 35, 41, 0.08) 100%);
  }

  .hero-content {
    align-items: flex-start;
    padding-block: 52px 58px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(46px, 14vw, 61px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
  }

  .hero-trust div {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 12px;
  }

  .hero-trust strong {
    font-size: 21px;
  }

  .hero-trust span {
    font-size: 9px;
    line-height: 1.35;
  }

  .quick-contact {
    margin-top: -18px;
  }

  .quick-card {
    min-height: 80px;
    padding: 15px 18px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .doctor-copy h2,
  .why-intro h2,
  .appointment-copy h2,
  .location-card h2 {
    font-size: 43px;
  }

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

  .service-featured {
    min-height: 360px;
    grid-row: auto;
  }

  .service-card {
    min-height: 300px;
    padding: 24px;
  }

  .doctor-section {
    padding-block: 72px;
  }

  .portrait-frame {
    border-radius: 6px 48px 6px 6px;
  }

  .portrait-frame img {
    min-height: clamp(300px, 92vw, 390px);
  }

  .experience-card {
    right: -20px;
    bottom: -30px;
    min-width: 190px;
    padding: 17px 20px;
  }

  .experience-card span {
    font-size: 36px;
  }

  .visual-cross {
    top: -25px;
    left: -9px;
    font-size: 60px;
  }

  .why-panel {
    padding: 38px 26px;
    border-radius: 20px;
  }

  .reviews-section::before {
    display: none;
  }

  .reviews-header {
    margin-bottom: 28px;
  }

  .reviews-intro h2 {
    font-size: 46px;
  }

  .google-rating-card {
    gap: 14px;
    padding: 22px 20px;
  }

  .review-count {
    padding-left: 14px;
  }

  .review-card {
    min-height: 0;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .review-card blockquote {
    margin: 28px 0 34px;
    font-size: 29px;
  }

  .review-card-top {
    align-items: flex-start;
  }

  .review-source {
    font-size: 9px;
  }

  .appointment-form {
    padding: 24px 18px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .appointment-form input,
  .appointment-form select {
    font-size: 16px;
  }

  .contact-notes strong {
    overflow-wrap: anywhere;
  }

  .location-section {
    gap: 14px;
    padding: 14px;
  }

  .map-wrap {
    min-height: 500px;
  }

  .map-wrap iframe {
    height: 100%;
    min-height: 482px;
  }

  .map-frame-label {
    top: 22px;
    left: 22px;
    max-width: calc(100% - 44px);
  }

  .location-card {
    width: 100%;
    min-height: 500px;
    margin: 0;
    padding: 31px 25px;
  }

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

  .footer-links > div:last-child {
    grid-column: span 2;
  }

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

  .mobile-contact-cta {
    position: fixed;
    z-index: 300;
    right: 14px;
    bottom: max(18px, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .mobile-side-cta {
    display: inline-flex;
    width: 58px;
    height: 58px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: white;
    background: var(--teal-900);
    box-shadow: 0 14px 34px rgba(4, 42, 49, 0.3);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .mobile-side-cta.is-active {
    background: var(--orange);
    transform: rotate(8deg);
  }

  .mobile-side-cta svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-contact-menu {
    position: absolute;
    right: 0;
    bottom: 70px;
    display: grid;
    width: 222px;
    gap: 9px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.96);
    transform-origin: right bottom;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .mobile-contact-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-contact-menu > a {
    display: flex;
    min-height: 64px;
    align-items: center;
    gap: 12px;
    padding: 9px 14px 9px 10px;
    border: 1px solid rgba(7, 61, 69, 0.1);
    border-radius: 16px;
    color: var(--ink);
    background: white;
    box-shadow: 0 14px 36px rgba(4, 42, 49, 0.18);
  }

  .mobile-contact-menu > a > span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .mobile-contact-menu small {
    color: #75888b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-contact-menu strong {
    margin-top: 3px;
    font-size: 14px;
  }

  .contact-menu-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .contact-menu-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .whatsapp-icon {
    color: #168a42;
    background: #e0f4e6;
  }

  .call-icon {
    color: var(--teal-800);
    background: var(--teal-100);
  }

  .site-footer {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
