:root {
  color-scheme: light;
  --navy: #12324a;
  --ink: #13202a;
  --muted: #60717f;
  --teal: #0f9f9a;
  --teal-deep: #08746f;
  --aqua: #e9fbf7;
  --sage: #dce9df;
  --clay: #d96c4b;
  --paper: #ffffff;
  --mist: #f6f9fb;
  --line: #dfe8ee;
  --shadow: 0 28px 80px rgba(18, 50, 74, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 4.5vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 232, 238, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(190px, 18vw, 276px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: #243847;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: var(--teal);
  color: var(--teal-deep);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 30px rgba(15, 159, 154, 0.22);
}

.btn.secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.btn.full {
  width: 100%;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 6vw, 86px) clamp(18px, 6vw, 78px) clamp(38px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(18, 50, 74, 0.04), rgba(15, 159, 154, 0.08)),
    radial-gradient(circle at 8% 18%, rgba(217, 108, 75, 0.14), transparent 24%),
    #fbfdff;
  overflow: hidden;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #bff5ef;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.22;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-lede {
  max-width: 650px;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-lede strong {
  color: var(--navy);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 28px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
}

.hero-facts span {
  min-height: 84px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #40515f;
  font-size: 14px;
  line-height: 1.35;
  box-shadow: 0 12px 34px rgba(18, 50, 74, 0.06);
}

.hero-facts strong {
  display: block;
  margin-bottom: 4px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 38%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.doctor-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(88%, 360px);
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(18, 50, 74, 0.18);
}

.doctor-initials {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.doctor-card strong,
.doctor-card small {
  display: block;
}

.doctor-card strong {
  color: var(--navy);
}

.doctor-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px clamp(18px, 6vw, 78px);
  background: var(--navy);
}

.trust-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: clamp(68px, 8vw, 124px) clamp(18px, 6vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  background: #fff;
}

.intro p:last-child {
  margin-top: 8px;
  font-size: 19px;
}

.services-section {
  background:
    linear-gradient(180deg, #f7fbfb, #ffffff 55%),
    var(--mist);
}

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.center p {
  margin-right: auto;
  margin-left: auto;
  max-width: 680px;
}

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

.service-card,
.appointment-form,
.location-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(18, 50, 74, 0.07);
}

.service-card {
  min-height: 252px;
  padding: 26px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--teal-deep);
  font-weight: 900;
}

.service-card p {
  font-size: 15px;
}

.doctor-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: stretch;
  padding: clamp(68px, 8vw, 128px) clamp(18px, 6vw, 78px);
  background: var(--navy);
}

.credential-panel {
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(15, 159, 154, 0.36), transparent 26%),
    linear-gradient(135deg, #163a55, #0c263a);
  color: #fff;
}

.credential-panel h2 {
  color: #fff;
}

.credential-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credentials span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.process-panel {
  display: grid;
  gap: 14px;
}

.process-panel article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
}

.process-panel strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--clay);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.process-panel p {
  margin-bottom: 0;
  font-size: 15px;
}

.appointment {
  padding: clamp(68px, 8vw, 116px) clamp(18px, 6vw, 78px);
  background:
    radial-gradient(circle at 14% 24%, rgba(15, 159, 154, 0.14), transparent 28%),
    linear-gradient(180deg, #fff, #f8fbfc);
}

.appointment-form {
  width: min(100%, 780px);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
}

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

label {
  display: block;
  margin-bottom: 14px;
}

label span {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfdbe3;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(15, 159, 154, 0.14);
}

.location {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: clamp(68px, 8vw, 124px) clamp(18px, 6vw, 78px);
  background: #fff;
}

.location-copy {
  padding: clamp(28px, 4vw, 46px);
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-links a {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-deep);
  font-weight: 900;
  word-break: break-word;
}

.map-panel {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--mist);
}

.location-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  background: #edf6f4;
}

.map-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: var(--teal-deep);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(18, 50, 74, 0.18);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 6vw, 78px);
  background: #1f2933;
  color: #fff;
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    min-height: auto;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero,
  .intro,
  .doctor-section,
  .location {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img,
  .map-panel,
  .location-map {
    min-height: 410px;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-logo {
    width: 212px;
  }

  .header-cta {
    width: 100%;
  }

  h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .hero-facts,
  .services-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img,
  .map-panel,
  .location-map {
    min-height: 340px;
  }

  .doctor-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

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