@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy-950: #071f31;
  --navy-900: #0b3553;
  --navy-800: #124664;
  --teal-600: #0f9e8e;
  --teal-500: #12a996;
  --teal-100: #d9f5f0;
  --sky-50: #f4f8fa;
  --ink: #102d42;
  --muted: #5a7181;
  --line: #dce7ec;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 31, 49, 0.13);
  --shadow-soft: 0 12px 36px rgba(7, 31, 49, 0.09);
  --radius-lg: 34px;
  --radius-md: 22px;
  --content: 1220px;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  color-scheme: light;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffc857;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: var(--white);
  background: var(--navy-950);
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.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;
}

.notice {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
  min-height: 44px;
  padding: 0.55rem 1.25rem;
  color: var(--white);
  background: var(--navy-950);
  font-size: 0.9rem;
}

.notice span {
  color: #cce0ea;
}

.notice a {
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--teal-500);
  text-underline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 3rem), var(--content));
  min-height: 96px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.site-header::before {
  position: fixed;
  inset: 44px 0 auto;
  z-index: -1;
  height: 96px;
  content: "";
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 231, 236, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand .brand-mark {
  width: 58px;
  height: 65px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.26rem;
  line-height: 1;
}

.brand-text strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 1.8vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.brand-text strong span {
  color: var(--teal-600);
}

.brand-text small {
  display: flex;
  gap: 0.42rem;
  color: #38586c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.25;
  white-space: nowrap;
}

.brand-text small span + span::before {
  margin-right: 0.42rem;
  content: "·";
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.7vw, 1.55rem);
  margin-left: auto;
  margin-right: 2rem;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 750;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-meta > div {
  display: grid;
  gap: 0.1rem;
  text-align: right;
}

.meta-label {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal-600);
  box-shadow: 0 12px 28px rgba(15, 158, 142, 0.24);
}

.button-primary:hover {
  background: #0b897c;
  box-shadow: 0 15px 32px rgba(15, 158, 142, 0.3);
}

.button-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.button-secondary:hover {
  background: var(--sky-50);
}

.button-small {
  min-height: 46px;
  padding: 0.7rem 1.15rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
  width: min(calc(100% - 3rem), var(--content));
  min-height: calc(100vh - 140px);
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.hero::before {
  position: absolute;
  top: 8%;
  left: -18%;
  z-index: -1;
  width: 480px;
  height: 480px;
  content: "";
  background: radial-gradient(circle, rgba(18, 169, 150, 0.13), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal-600);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(3.15rem, 5.4vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 680px;
  margin: 1.65rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 2.35rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr;
  gap: 0;
  margin: 0;
  padding: 1.05rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts > div {
  min-width: 0;
  padding: 0 1.15rem;
  border-left: 1px solid var(--line);
}

.quick-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.quick-facts dt {
  margin-bottom: 0.18rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  position: absolute;
  inset: -18px 22px 30px -18px;
  z-index: -1;
  content: "";
  background: var(--teal-100);
  border-radius: var(--radius-lg);
  transform: rotate(-2.5deg);
}

.hero-visual > img {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  object-position: 58% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.schedule-card {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: min(390px, calc(100% - 1.5rem));
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.schedule-card > div {
  display: grid;
}

.schedule-card strong {
  color: var(--navy-900);
  line-height: 1.25;
}

.schedule-card span:last-child {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.35;
}

.schedule-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--teal-600);
  border-radius: 13px;
  font-size: 1.45rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 3.5rem max(1.5rem, calc((100% - var(--content)) / 2));
  color: var(--muted);
  background: var(--sky-50);
}

.site-footer img {
  width: 290px;
  margin-bottom: 0.9rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--teal-600);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.section {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.25rem;
}

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

.section-heading-compact {
  grid-template-columns: minmax(0, 820px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  background: var(--navy-950);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.trust-strip > div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.45rem 1.65rem;
  color: var(--white);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip > div:first-child {
  border-left: 0;
}

.trust-strip > div > div {
  display: grid;
  gap: 0.2rem;
}

.trust-strip strong {
  line-height: 1.25;
}

.trust-strip div span:last-child {
  color: #b9ceda;
  font-size: 0.86rem;
  line-height: 1.4;
}

.trust-number {
  color: var(--teal-500) !important;
  font-size: 0.76rem !important;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.services {
  padding-bottom: 5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 28px;
}

.service-card {
  min-height: 260px;
  padding: 2rem;
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  position: relative;
  z-index: 1;
  background: var(--sky-50);
}

.service-card-featured {
  color: var(--white);
  background: var(--teal-600);
}

.service-card-featured:hover {
  background: #0b897c;
}

.service-index {
  display: inline-block;
  margin-bottom: 2.6rem;
  color: var(--teal-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card-featured .service-index {
  color: var(--white);
}

.service-card h3 {
  margin: 0 0 0.8rem;
  color: var(--navy-900);
  font-size: 1.2rem;
  line-height: 1.2;
}

.service-card-featured h3 {
  color: var(--white);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: 1.35rem;
  color: var(--teal-600);
  font-size: 0.9rem;
  font-weight: 850;
}

.service-card-link span {
  transition: transform 160ms ease;
}

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

.service-card-featured p {
  color: #d6f5ef;
}

.service-card-featured .service-card-link {
  color: var(--white);
}

.specialty-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(18, 169, 150, 0.38), transparent 29%),
    var(--navy-950);
  border-radius: 28px;
}

.specialty-feature h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.specialty-feature p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #c5d7e0;
}

.emergency {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  width: min(calc(100% - 3rem), 1320px);
  padding: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background: var(--navy-950);
  border-radius: 36px;
}

.eyebrow-light {
  color: #69d5c7;
}

.emergency h2,
.contact h2 {
  color: var(--white);
}

.emergency-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 1.4rem 0 2rem;
  color: #c6d7df;
  font-size: 1.06rem;
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.button-light:hover {
  background: var(--teal-100);
}

.emergency-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.emergency-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-height: 58px;
  color: #e7f0f4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.emergency-list span {
  color: var(--teal-500);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.doctor-card {
  position: relative;
  display: grid;
  min-height: 490px;
  align-content: end;
  padding: clamp(2rem, 4vw, 3.25rem);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 18%, rgba(18, 169, 150, 0.32), transparent 28%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.doctor-card::before {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.doctor-monogram {
  display: grid;
  width: 112px;
  height: 112px;
  margin-bottom: auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--teal-100);
  border: 7px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.doctor-card p {
  margin: 3.5rem 0 0.25rem;
  color: #76d9ce;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.doctor-card h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.doctor-card > span {
  color: #c7dbe4;
  font-size: 0.94rem;
}

.about-mark {
  display: grid;
  min-height: 490px;
  place-items: center;
  align-content: center;
  gap: 1.4rem;
  background: linear-gradient(145deg, var(--sky-50), var(--teal-100));
  border: 1px solid var(--line);
  border-radius: 36px;
}

.about-mark img {
  width: 180px;
  filter: drop-shadow(0 18px 25px rgba(7, 31, 49, 0.16));
}

.about-mark span {
  color: var(--navy-900);
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 1.6rem 0 2.4rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-points div {
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
  border-top: 2px solid var(--teal-500);
}

.about-points strong {
  color: var(--navy-900);
}

.about-points span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  margin-top: 2rem;
  color: var(--teal-600);
  font-weight: 850;
}

.text-link span {
  transition: transform 160ms ease;
}

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

.doctor-profile-button {
  margin-top: 2rem;
}

.doctor-profile-button span {
  transition: transform 160ms ease;
}

.doctor-profile-button:hover span {
  transform: translateX(4px);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.62fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.profile-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.profile-lead {
  max-width: 760px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.profile-credentials {
  display: grid;
  gap: 1.35rem;
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  background: var(--navy-950);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.profile-credentials .doctor-monogram {
  margin-bottom: 0.5rem;
}

.credential-item {
  display: grid;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.credential-item span {
  color: #9db8c6;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.credential-item strong {
  line-height: 1.35;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.profile-section h2 {
  font-size: clamp(2.4rem, 4.7vw, 4.4rem);
}

.profile-prose {
  display: grid;
  gap: 1.25rem;
}

.profile-prose > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.expertise-grid article {
  padding: 1.5rem;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.expertise-grid span {
  color: var(--teal-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.expertise-grid h3 {
  margin: 1.3rem 0 0.5rem;
  color: var(--navy-900);
  line-height: 1.2;
}

.expertise-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.profile-history {
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  background: var(--teal-600);
  border-radius: 28px;
}

.profile-history strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.profile-history p {
  max-width: 700px;
  margin: 0;
  color: #e3faf6;
}

.profile-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto 5rem;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  background: var(--navy-950);
  border-radius: 32px;
}

.profile-cta h2 {
  margin: 0 0 0.6rem;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.profile-cta p {
  margin: 0;
  color: #bcd1dc;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--teal-600);
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.58fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.service-hero h1 {
  max-width: 900px;
  font-size: clamp(3.25rem, 6.5vw, 6.2rem);
}

.service-hero-lead {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
}

.service-summary {
  padding: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  background: var(--navy-950);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.service-summary > span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 1.6rem;
  place-items: center;
  color: var(--navy-950);
  background: var(--teal-100);
  border-radius: 16px;
  font-weight: 900;
}

.service-summary h2 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.service-summary ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  color: #c7d9e2;
  list-style: none;
}

.service-summary li {
  position: relative;
  padding-left: 1.25rem;
}

.service-summary li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--teal-500);
  border-radius: 50%;
}

.service-page-section {
  border-top: 1px solid var(--line);
}

.service-page-section > .section-heading {
  align-items: start;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.signal-card {
  min-height: 190px;
  padding: 1.55rem;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.signal-card span {
  color: var(--teal-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.signal-card h3 {
  margin: 1.25rem 0 0.5rem;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.25;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.care-path {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.care-path h2 {
  font-size: clamp(2.4rem, 4.7vw, 4.4rem);
}

.care-steps {
  margin: 0;
  padding: 0;
  counter-reset: care-step;
  list-style: none;
  border-top: 1px solid var(--line);
}

.care-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  counter-increment: care-step;
}

.care-steps li::before {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  background: var(--teal-600);
  border-radius: 12px;
  content: counter(care-step, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 900;
}

.care-steps strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy-900);
}

.care-steps p {
  margin: 0;
  color: var(--muted);
}

.service-note {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  color: var(--navy-900);
  background: var(--teal-100);
  border-left: 4px solid var(--teal-600);
  border-radius: 0 16px 16px 0;
}

.service-note strong {
  display: block;
  margin-bottom: 0.25rem;
}

.service-note p {
  margin: 0;
}

.service-source-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.service-source-note a {
  color: var(--teal-600);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.review-grid figure {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  margin: 0;
  padding: 2rem;
  background: var(--sky-50);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.stars {
  color: #dc9629;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
}

.review-grid blockquote {
  margin: 2.2rem 0 auto;
  color: var(--navy-900);
  font-size: 1.17rem;
  font-weight: 680;
  line-height: 1.5;
}

.review-grid figcaption {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.83rem;
}

.reviews-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  width: min(calc(100% - 3rem), 1320px);
  margin-bottom: 5rem;
  padding: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background: var(--teal-600);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.4rem 0 2rem;
  color: #d7f5f0;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-details {
  margin: 0;
  padding: 0;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-details div {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  border-top: 1px solid var(--line);
}

.contact-details div:first-child {
  border-top: 0;
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.35;
}

.contact-map {
  min-height: 230px;
  overflow: hidden;
  background: var(--white);
  border: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

.mobile-actions {
  display: none;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-content: center;
  width: min(calc(100% - 2rem), 760px);
  margin: 0 auto;
  padding: 4rem 0;
}

.not-found > img {
  width: 260px;
  margin-bottom: 3rem;
}

.not-found h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.not-found > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 86px;
  }

  .site-header::before {
    height: 86px;
  }

  .main-nav {
    display: none;
  }

  .header-meta > div {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 4.5rem;
  }

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

  .hero-visual {
    max-width: 720px;
  }

  .hero-visual > img {
    aspect-ratio: 16 / 10;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip > div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .trust-strip > div:first-child {
    border-top: 0;
  }

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

  .emergency,
  .about,
  .contact,
  .profile-hero,
  .profile-section,
  .service-hero,
  .care-path {
    grid-template-columns: 1fr;
  }

  .about-mark {
    min-height: 350px;
  }

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

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

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

  .review-grid figure {
    min-height: 230px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .notice {
    display: grid;
    gap: 0;
    justify-items: center;
    padding: 0.55rem 0.8rem;
    text-align: center;
  }

  .notice span {
    display: none;
  }

  .site-header {
    width: min(calc(100% - 2rem), var(--content));
    min-height: 78px;
  }

  .site-header::before {
    top: 36px;
    height: 78px;
  }

  .brand img {
    width: auto;
  }

  .brand {
    gap: 0.58rem;
  }

  .brand .brand-mark {
    width: 50px;
    height: 56px;
  }

  .brand-text {
    gap: 0.16rem;
  }

  .brand-text strong {
    font-size: 1.18rem;
  }

  .brand-text small {
    display: grid;
    gap: 0.02rem;
    font-size: 0.68rem;
    letter-spacing: 0;
    line-height: 1.18;
  }

  .brand-text small span + span::before {
    display: none;
  }

  .header-meta .button {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: grid;
    gap: 4px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 11px;
    color: var(--navy-900);
    background: var(--sky-50);
    border: 1px solid var(--line);
    border-radius: 13px;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    gap: 0;
    margin: 0;
    padding: 0.55rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav[data-open="true"] {
    display: grid;
  }

  .main-nav a {
    padding: 0.8rem 0.9rem;
    border-radius: 11px;
  }

  .main-nav a:hover {
    color: var(--navy-900);
    background: var(--sky-50);
  }

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

  .hero {
    width: min(calc(100% - 2rem), var(--content));
    gap: 3.5rem;
    padding: 3.25rem 0 5rem;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 3.8rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions > .button[href^="tel:"] {
    display: none;
  }

  .button {
    width: 100%;
  }

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

  .quick-facts > div,
  .quick-facts > div:first-child {
    padding: 0.85rem 0;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .quick-facts > div:first-child {
    border-top: 0;
  }

  .hero-visual::before {
    inset: -12px 18px 24px -10px;
  }

  .hero-visual > img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
    border-radius: 26px;
  }

  .schedule-card {
    right: 0;
    bottom: -2.25rem;
  }

  .section,
  .trust-strip,
  .emergency,
  .contact {
    width: min(calc(100% - 2rem), var(--content));
  }

  .section {
    padding: 5rem 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

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

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

  .service-card {
    min-height: 220px;
  }

  .emergency,
  .contact {
    gap: 2.5rem;
    padding: 2.25rem 1.4rem;
    border-radius: 28px;
  }

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

  .about-mark {
    min-height: 300px;
  }

  .doctor-card {
    min-height: 420px;
  }

  .profile-hero,
  .profile-cta,
  .service-hero {
    width: min(calc(100% - 2rem), var(--content));
  }

  .profile-hero {
    padding: 4rem 0 5rem;
  }

  .service-hero {
    padding: 3.5rem 0 5rem;
  }

  .profile-cta {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
    padding: 2.25rem 1.4rem;
  }

  .specialty-feature {
    grid-template-columns: 1fr;
    padding: 2rem 1.4rem;
  }

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

  .contact {
    margin-bottom: 2rem;
  }

  .contact-actions {
    display: grid;
  }

  .contact-details div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 260px;
    height: 260px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    padding: 2.35rem 1rem 1.5rem;
  }

  .site-footer img {
    width: min(270px, 88vw);
    margin-bottom: 0.55rem;
  }

  .site-footer .copyright {
    padding-top: 0.9rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-actions {
    position: fixed;
    right: 0.75rem;
    bottom: 0.65rem;
    left: 0.75rem;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    color: var(--navy-900);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(7, 31, 49, 0.24);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 56px;
    font-weight: 850;
  }

  .mobile-actions a:first-child {
    color: var(--white);
    background: var(--teal-600);
  }
}

@media (max-width: 360px) {
  .notice {
    padding-right: 0.35rem;
    padding-left: 0.35rem;
    font-size: 0.8rem;
  }

  .notice a {
    white-space: nowrap;
  }
}

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

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