:root {
  color-scheme: light;
  --ink: #173049;
  --muted: #5a7187;
  --soft: #eaf7ff;
  --soft-2: #f4fbff;
  --paper: #ffffff;
  --line: rgba(76, 128, 164, 0.18);
  --blue: #075f9f;
  --blue-deep: #0b4775;
  --cyan: #79d7ff;
  --green: #45ef82;
  --shadow: 0 26px 70px rgba(29, 86, 126, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 48% 8%, rgba(255, 255, 255, 0.96), transparent 18rem),
    radial-gradient(circle at 88% 10%, rgba(134, 217, 255, 0.72), transparent 24rem),
    linear-gradient(180deg, #d8effd 0%, #eef7ff 42%, #f8fbff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

main,
section,
article,
div {
  min-width: 0;
}

a {
  color: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(100% - 64px, 1320px);
  margin: 0 auto;
  padding: 18px 0;
}

.brand,
.header-cta,
nav a,
.primary-btn,
.round-btn {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: #0d486d;
  color: var(--green);
  box-shadow: 0 14px 30px rgba(10, 69, 108, 0.18);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: var(--green);
  stroke: #0d486d;
  stroke-width: 1.8;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: #17314b;
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(23, 48, 73, 0.64);
  font-size: 11px;
  font-weight: 850;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
}

nav a {
  position: relative;
  color: rgba(23, 48, 73, 0.8);
  font-size: 14px;
  font-weight: 760;
}

nav a:first-child {
  color: var(--paper);
}

nav a:first-child::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--paper);
  content: "";
}

.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 14px;
  padding: 7px 8px 7px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(31, 91, 134, 0.12);
  color: #17314b;
  font-size: 14px;
  font-weight: 850;
}

.header-cta svg,
.round-btn,
.quick-services a {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #08334f;
}

.header-cta svg {
  width: 36px;
  height: 36px;
  padding: 9px;
}

main {
  width: min(100% - 64px, 1320px);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.92fr) minmax(320px, 0.72fr) minmax(280px, 0.62fr);
  gap: 22px;
  min-height: 660px;
  align-items: center;
  padding: 46px 0 36px;
}

.hero::before {
  position: absolute;
  inset: 0 -120px 6%;
  z-index: -1;
  border-radius: 0 0 80px 80px;
  background:
    linear-gradient(90deg, rgba(205, 237, 255, 0.92), rgba(224, 246, 255, 0.42) 42%, rgba(171, 223, 250, 0.78)),
    radial-gradient(circle at 35% 42%, rgba(255, 255, 255, 0.7), transparent 21rem);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.mini-chip {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 32px rgba(43, 92, 128, 0.1);
  color: #17314b;
  font-size: 14px;
  font-weight: 850;
}

.mini-chip svg {
  color: #075f9f;
}

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

h1 {
  max-width: 660px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 950;
  line-height: 0.93;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(23, 48, 73, 0.82);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.hero-actions,
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.primary-btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #075f9f, #063e70);
  color: var(--paper);
  box-shadow: 0 18px 34px rgba(10, 75, 123, 0.2);
  font-size: 15px;
  font-weight: 900;
}

.primary-btn svg {
  width: 18px;
  height: 18px;
}

.round-btn {
  width: 54px;
  height: 54px;
  box-shadow: 0 18px 34px rgba(13, 122, 66, 0.16);
}

.hero-media {
  position: relative;
  min-height: 570px;
}

.photo-orb {
  position: absolute;
  inset: 2% -8% 3% -12%;
  overflow: hidden;
  border-radius: 46% 46% 34% 34% / 44% 44% 40% 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(172, 226, 253, 0.52));
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.46);
}

.photo-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: saturate(1.04) contrast(1.02);
}

.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 38px rgba(35, 88, 126, 0.14);
  backdrop-filter: blur(18px);
}

.award-card {
  top: 8%;
  right: -4%;
  width: 92px;
  padding: 18px 12px;
  text-align: center;
}

.award-card strong {
  display: block;
  color: #075f9f;
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}

.award-card span {
  display: block;
  margin-top: 4px;
  color: #38586f;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.support-card {
  top: 9%;
  left: -12%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  width: 250px;
  align-items: center;
  padding: 14px 16px;
}

.support-card img {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  object-fit: cover;
  object-position: center 24%;
  box-shadow: 0 14px 26px rgba(20, 75, 116, 0.18);
}

.avatar-dot {
  display: grid;
  grid-row: span 2;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #075f9f, #1cb2e5);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.support-card strong {
  color: #163047;
  font-size: 15px;
  font-weight: 950;
}

.support-card span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.boundary-card {
  right: 5%;
  bottom: 12%;
  display: flex;
  width: 214px;
  align-items: center;
  gap: 12px;
  padding: 15px;
  color: #17314b;
  font-size: 14px;
  font-weight: 900;
}

.boundary-card svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 12px;
  background: #eef9ff;
  color: #075f9f;
}

.clinical-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(46, 137, 188, 0.22)),
    linear-gradient(180deg, #dff5ff, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.86), 0 30px 70px rgba(36, 97, 139, 0.12);
}

.panel-glow {
  position: absolute;
  inset: 10% 12%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 44%, rgba(69, 239, 130, 0.5), transparent 12%),
    radial-gradient(circle at 48% 50%, rgba(5, 97, 158, 0.44), transparent 28%),
    radial-gradient(circle, rgba(126, 214, 255, 0.56), transparent 54%);
  filter: blur(2px);
}

.review-rings {
  position: absolute;
  inset: 19% 12% 18%;
  display: grid;
  place-items: center;
}

.review-rings span {
  position: absolute;
  display: block;
  border: 1px solid rgba(7, 95, 159, 0.24);
  border-radius: 999px;
}

.review-rings span:nth-child(1) {
  width: 68%;
  aspect-ratio: 1;
}

.review-rings span:nth-child(2) {
  width: 46%;
  aspect-ratio: 1;
  border-color: rgba(69, 239, 130, 0.45);
}

.review-rings span:nth-child(3) {
  width: 18%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.74);
}

.panel-title {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
}

.panel-title span,
.panel-note span,
.service-icon,
.info-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-title strong {
  display: block;
  margin-top: 4px;
  color: #0e3b61;
  font-size: 23px;
  font-weight: 950;
}

.panel-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.panel-note strong {
  display: block;
  color: #075f9f;
  font-size: 20px;
  font-weight: 950;
}

.panel-note span {
  display: block;
  margin-top: 7px;
  line-height: 1.45;
  text-transform: none;
}

.quick-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 12px;
}

.quick-services article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 42px rgba(35, 86, 122, 0.1);
}

.quick-services article::before {
  position: absolute;
  right: -32px;
  bottom: -58px;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(100, 211, 255, 0.66), rgba(100, 211, 255, 0.06) 68%);
  content: "";
}

.quick-services .featured-service {
  background: linear-gradient(135deg, #2e84bc, #075f9f);
  color: #fff;
}

.quick-services .featured-service .service-icon {
  color: rgba(255, 255, 255, 0.72);
}

.quick-services h2 {
  position: relative;
  z-index: 2;
  width: min-content;
  margin-top: 54px;
  font-size: 24px;
  font-weight: 950;
  line-height: 0.96;
  text-wrap: balance;
}

.quick-services a {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  color: #08334f;
}

.quick-services article:not(.featured-service) a {
  background: var(--green);
}

.about-section,
.content-section,
.contact-section,
.legal-note {
  margin-top: 76px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: 66px;
  align-items: center;
}

.facility-card {
  position: relative;
  overflow: hidden;
  min-height: 405px;
  border-radius: var(--radius-lg);
  background: #d9f1ff;
  box-shadow: var(--shadow);
}

.facility-card img {
  width: 100%;
  height: 100%;
  min-height: 405px;
  object-fit: cover;
  filter: saturate(1.08);
}

.date-card {
  position: absolute;
  top: 42px;
  right: 42px;
  width: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 42px rgba(30, 85, 124, 0.14);
  backdrop-filter: blur(16px);
}

.date-card span,
.green-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green);
  color: #0b4775;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.date-card strong {
  display: block;
  margin-top: 22px;
  color: #17314b;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.06;
}

.date-card p {
  margin-top: 12px;
  color: #4e677b;
  font-size: 14px;
  font-weight: 730;
  line-height: 1.38;
}

.about-copy h2,
.section-head h2,
.contact-section h2 {
  max-width: 760px;
  margin-top: 18px;
  color: #17314b;
  font-size: clamp(34px, 5vw, 55px);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-copy p,
.section-head p,
.contact-section p,
.legal-note p {
  max-width: 740px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.55;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #17314b;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.phone-link svg {
  width: 52px;
  height: 52px;
  padding: 15px;
  border-radius: 999px;
  background: rgba(226, 238, 248, 0.9);
  color: #075f9f;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 72px -32px 0;
  padding: 26px 32px;
  border-radius: 28px;
  background: rgba(222, 240, 255, 0.72);
}

.metric-strip div {
  text-align: center;
}

.metric-strip strong {
  display: block;
  color: #17314b;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 950;
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.content-section,
.contact-section,
.legal-note {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(35, 86, 122, 0.08);
}

.info-grid,
.service-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

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

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

.info-grid article,
.service-grid article,
.contact-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(35, 86, 122, 0.08);
}

.info-grid strong,
.service-grid h3,
.contact-card strong {
  display: block;
  margin-top: 12px;
  color: #17314b;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
}

.info-grid p,
.service-grid p,
.process-list span,
.contact-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  counter-increment: flow;
}

.process-list li::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #0b4775;
  content: counter(flow);
  font-weight: 950;
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  color: #17314b;
  font-size: 18px;
  font-weight: 950;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 32px;
  align-items: center;
}

.contact-card .primary-btn {
  width: 100%;
  margin-top: 24px;
}

.coordinator-card {
  min-height: 0;
}

.coordinator-card img {
  display: block;
  width: min(100%, 240px);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  object-fit: cover;
  object-position: center 18%;
  background: #f4fbff;
  box-shadow: 0 22px 46px rgba(29, 86, 126, 0.13);
}

.coordinator-card span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(69, 239, 130, 0.22);
  color: #0b4775;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-note {
  display: grid;
  gap: 8px;
  margin-bottom: 48px;
  background: rgba(235, 247, 255, 0.88);
  box-shadow: none;
}

.legal-note strong {
  color: #17314b;
  font-size: 18px;
  font-weight: 950;
}

.legal-note p {
  margin-top: 0;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

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

  .clinical-panel {
    grid-column: 1 / -1;
    min-height: 310px;
  }

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

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

@media (max-width: 860px) {
  .site-header,
  main {
    width: min(100% - 32px, 1320px);
  }

  .hero,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero::before {
    right: -32px;
    left: -32px;
  }

  .hero-media {
    min-height: 470px;
  }

  .photo-orb {
    inset: 0 4%;
  }

  .support-card {
    left: 0;
  }

  .quick-services,
  .metric-strip,
  .info-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .metric-strip {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    gap: 14px;
    padding-top: 14px;
  }

  .brand small,
  .header-cta span {
    display: none;
  }

  .header-cta {
    justify-self: end;
    padding: 6px;
  }

  nav {
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 8px;
    -webkit-overflow-scrolling: touch;
  }

  nav a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
  }

  nav a:first-child {
    color: var(--ink);
  }

  nav a:first-child::after {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    color: #ffffff;
    font-size: clamp(47px, 15vw, 68px);
  }

  .hero-copy p,
  .about-copy p,
  .section-head p,
  .contact-section p {
    font-size: 16px;
  }

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

  .primary-btn {
    width: 100%;
    padding: 0 18px;
  }

  .hero-media {
    min-height: 410px;
  }

  .award-card {
    top: 5%;
    right: 2%;
  }

  .support-card {
    top: 2%;
    width: min(100%, 238px);
  }

  .boundary-card {
    right: 2%;
    bottom: 7%;
    width: 196px;
  }

  .quick-services h2 {
    width: auto;
  }

  .about-section,
  .content-section,
  .contact-section,
  .legal-note {
    margin-top: 42px;
  }

  .facility-card,
  .facility-card img {
    min-height: 340px;
  }

  .date-card {
    right: 18px;
    bottom: 18px;
    top: auto;
    width: min(220px, calc(100% - 36px));
  }

  .about-copy h2,
  .section-head h2,
  .contact-section h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .content-section,
  .contact-section,
  .legal-note {
    padding: 22px;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }
}
