:root {
  --brand: #65b5eb;
  --brand-2: #4d96dc;
  --brand-dark: #1c5f9f;
  --cyan: #97d9f6;
  --mint: #eaf8ff;
  --mint-2: #f5fbff;
  --ink: #14344f;
  --text: #36516a;
  --muted: #667d92;
  --line: #d9edf8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(33, 100, 145, .14);
  --shadow-soft: 0 16px 46px rgba(33, 100, 145, .10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(139, 211, 247, .36), transparent 32rem),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 34%, #f7fcff 100%);
  line-height: 1.6;
  min-width: 320px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(44, 123, 181, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 123, 181, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black 0, transparent 80%);
}

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

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

a:hover {
  color: var(--brand-dark);
}

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

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brand-dark);
  border-radius: 12px;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(204, 232, 246, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(30, 99, 147, .06);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.logo-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 236px;
  min-height: 78px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 20px 42px rgba(48, 123, 177, .12);
}

.logo-stage img {
  width: 210px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
}

.nav a {
  padding: 11px 13px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: #edf8ff;
  color: var(--brand-dark);
  outline: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 28px rgba(70, 151, 220, .25);
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 15px;
  color: var(--ink);
  background: #edf8ff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span:not(.sr-only) {
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 74px;
}

.hero::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - var(--container)) / 2));
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 164, 226, .36), transparent);
  z-index: -1;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: .9;
  z-index: -2;
}

.hero-glow-one {
  width: 540px;
  height: 540px;
  left: -210px;
  top: -220px;
  background: rgba(125, 202, 243, .34);
}

.hero-glow-two {
  width: 520px;
  height: 520px;
  right: -180px;
  top: 110px;
  background: rgba(78, 150, 220, .18);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: 54px;
}

.eyebrow,
.section-kicker,
.city-label {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 3.9rem);
  line-height: .96;
  letter-spacing: -.07em;
  max-width: 780px;
}

.hero h1 span {
  color: var(--brand-2);
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 670px;
  color: #4d657b;
  font-size: clamp(1.08rem, 2.1vw, 1.38rem);
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 34px rgba(69, 150, 220, .25);
}

.button-primary:hover {
  color: var(--white);
  box-shadow: 0 22px 44px rgba(69, 150, 220, .32);
}

.button-ghost,
.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border-color: #d7edf8;
  box-shadow: 0 12px 25px rgba(27, 89, 135, .08);
}

.button-ghost:hover,
.button-light:hover {
  background: #eff9ff;
}

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

.hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: #315a7d;
  font-size: .92rem;
  font-weight: 750;
  background: rgba(255, 255, 255, .74);
  border: 1px solid #d9edf8;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(48, 123, 177, .07);
}

.hero-visual {
  position: relative;
  min-height: 450px;
}

.visual-card {
  position: relative;
  padding: 20px;
  border-radius: 46px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(239,248,255,.82));
  border: 1px solid rgba(204, 232, 246, .9);
  box-shadow: var(--shadow);
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.visual-card::before {
  width: 90px;
  height: 90px;
  right: 44px;
  top: 30px;
  background: rgba(102, 184, 234, .16);
}

.visual-card::after {
  width: 42px;
  height: 42px;
  left: 46px;
  bottom: 42px;
  background: rgba(54, 147, 218, .12);
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 1px;
  min-width: 210px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(207, 236, 249, .94);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(35, 93, 134, .12);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  font-size: 1.1rem;
}

.floating-card span {
  color: var(--muted);
  font-size: .92rem;
}

.floating-card-top {
  top: 34px;
  left: -28px;
}

.floating-card-bottom {
  right: -18px;
  bottom: 38px;
}

.section,
.section-tight {
  padding: 88px 0;
}

.section-tight {
  padding-top: 42px;
  padding-bottom: 52px;
}

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

.mini-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid #d9edf8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.mini-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: rgba(101, 181, 235, .12);
}

.mini-card-soft {
  background: linear-gradient(145deg, #ffffff, #eff9ff);
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(73, 152, 220, .24);
}

.mini-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.mini-card p {
  margin: 0 0 18px;
}

.mini-card p span {
  color: var(--muted);
}

.mini-card a,
.text-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  color: var(--brand-dark);
  font-weight: 850;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.patient-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 4.3vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.06em;
}

.section-heading p:not(.section-kicker),
.patient-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.clinic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.clinic-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: clamp(26px, 4vw, 42px);
  color: var(--text);
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(240,249,255,.86));
  border: 1px solid #d4ebf8;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.clinic-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -124px;
  top: -118px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 181, 235, .2), transparent 68%);
}

.clinic-card-alt::before {
  background: radial-gradient(circle, rgba(42, 165, 198, .18), transparent 68%);
}

.clinic-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.clinic-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.07em;
}

.map-pin {
  position: relative;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 34px rgba(79, 151, 219, .25);
}

.map-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 19px;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border: 6px solid var(--white);
  border-radius: 50%;
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 20px;
  height: 20px;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 3px 10px 10px 10px;
  background: var(--white);
  opacity: .95;
}

.clinic-card address {
  margin: 0;
  color: var(--ink);
  font-style: normal;
  font-size: 1.2rem;
}

.clinic-note {
  margin: 10px 0 28px;
  color: var(--muted);
}

.hours-box {
  display: grid;
  gap: 10px;
  margin: auto 0 28px;
  padding: 18px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #d8eef9;
  border-radius: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  color: var(--ink);
  border-bottom: 1px solid #e2f1f9;
}

.hours-row:first-child {
  padding-top: 4px;
}

.hours-row:last-child {
  padding-bottom: 4px;
  border-bottom: 0;
}

.hours-row span {
  color: var(--muted);
}

.hours-row strong {
  text-align: right;
}

.hours-muted {
  color: var(--muted);
}

.call-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .96rem;
}

.soft-panel-section {
  position: relative;
  overflow: hidden;
}

.soft-panel-section::before {
  content: "";
  position: absolute;
  inset: 20px 0;
  background: linear-gradient(135deg, rgba(234, 248, 255, .7), rgba(255, 255, 255, .4));
  z-index: -1;
}

.patient-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: center;
  padding: clamp(30px, 6vw, 58px);
  background: linear-gradient(135deg, #ffffff, #edf8ff 72%, #ffffff);
  border: 1px solid #d6edf8;
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.patient-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(93, 177, 233, .13);
}

.contact-chips {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.contact-chips a,
.large-links a {
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid #d7edf8;
  border-radius: 22px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-chips a:hover,
.large-links a:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 16px 34px rgba(40, 105, 151, .11);
}

.contact-chips span,
.large-links span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-chips strong,
.large-links strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.contact-section {
  padding-bottom: 104px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.contact-card {
  min-height: 100%;
  padding: 30px;
  background: rgba(255,255,255,.9);
  border: 1px solid #d8edf8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-card-blue {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.28), transparent 230px),
    linear-gradient(145deg, var(--brand-2), var(--brand-dark));
  border-color: rgba(255,255,255,.22);
}

.contact-card h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.55rem;
  letter-spacing: -.04em;
}

.contact-card-blue h3,
.contact-card-blue p,
.contact-card-blue .large-links span,
.contact-card-blue .large-links strong {
  color: var(--white);
}

.contact-card-blue p {
  opacity: .87;
}

.info-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.info-list div {
  padding-bottom: 16px;
  border-bottom: 1px solid #e0f0f8;
}

.info-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-list dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.info-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.info-list a {
  color: var(--brand-dark);
}

.large-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-card-blue .large-links a {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
}

.site-footer {
  color: #476a86;
  background: #f2faff;
  border-top: 1px solid #d9edf8;
}

.footer-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  font-weight: 850;
  color: var(--brand-dark);
}

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

html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 200;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  padding: 12px 18px;
  color: var(--white);
  font-weight: 800;
  background: var(--brand-dark);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(16, 59, 92, .24);
  transition: opacity .2s ease, transform .2s ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1060px) {
  .header-inner {
    gap: 16px;
  }

  .header-phone {
    display: none;
  }

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

  .hero-visual {
    max-width: 680px;
    min-height: auto;
    margin-inline: auto;
  }

  .overview-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .patient-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    background: rgba(255, 255, 255, .94);
  }

  .header-inner {
    min-height: 78px;
  }

  .logo-stage {
    width: 185px;
    min-height: 64px;
    padding: 8px 12px;
    border-radius: 0 0 22px 22px;
  }

  .logo-stage img {
    width: 164px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 12px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid #d9edf8;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

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

  .nav a {
    padding: 13px 14px;
  }

  .hero {
    padding: 64px 0 46px;
  }

  .hero h1 {
    letter-spacing: -.055em;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .section,
  .section-tight {
    padding: 64px 0;
  }

  .section-tight {
    padding-top: 24px;
  }

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

  .clinic-card {
    min-height: auto;
  }

  .hours-row {
    display: grid;
    gap: 3px;
  }

  .hours-row strong {
    text-align: left;
  }

  .contact-section {
    padding-bottom: 72px;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .mini-card,
  .clinic-card,
  .contact-card,
  .patient-panel {
    border-radius: 24px;
  }

  .clinic-card-head {
    display: grid;
  }

  .map-pin {
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

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

  html.js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
