:root {
  --ink: #17243a;
  --muted: #607086;
  --blue: #0757a6;
  --blue-dark: #073b73;
  --teal: #0f8a8f;
  --gold: #f3c044;
  --red: #c7483c;
  --paper: #ffffff;
  --soft: #eef6f8;
  --line: #d8e5ea;
  --shadow: 0 18px 55px rgba(23, 36, 58, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
}

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

.brand strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  color: #35465d;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 12px;
  border-radius: 8px;
}

.main-nav a:hover {
  color: var(--blue);
  background: var(--soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: clamp(36px, 5vw, 68px);
  background:
    linear-gradient(115deg, rgba(238, 246, 248, 0.96) 0%, rgba(255, 255, 255, 0.92) 58%, rgba(225, 242, 245, 0.9) 100%),
    radial-gradient(circle at 84% 18%, rgba(243, 192, 68, 0.28), transparent 32%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.25;
}

.lead {
  max-width: 650px;
  color: #34445b;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 850;
  border-radius: 8px;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.secondary {
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
}

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

.trust-signals div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-signals dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-signals dd {
  margin: 5px 0 0;
  font-weight: 800;
  line-height: 1.35;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  content: "";
  background: var(--blue);
  border-radius: 8px;
}

.hero-media img {
  width: 100%;
  height: min(66vh, 620px);
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.band {
  background: var(--soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.intro-grid article,
.admission-grid article,
.leader-grid article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-grid p,
.admission-grid p,
.leader-grid span,
.mission-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-weight: 900;
  background: #f7d66e;
  border-radius: 8px;
}

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

.course-card {
  min-height: 210px;
  padding: 22px;
  color: #fff;
  background: var(--blue-dark);
  border-radius: 8px;
}

.course-card.featured {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.course-card p {
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.course-card h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.course-card span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.48;
}

.facilities {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  font-weight: 750;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 16px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.check-list li::after {
  position: absolute;
  top: 20px;
  left: 21px;
  width: 8px;
  height: 4px;
  content: "";
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-45deg);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: end;
}

.photo-stack img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-stack img:nth-child(2) {
  height: 360px;
  object-position: center center;
}

.mission {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 72px);
}

.mission-copy {
  font-size: 1.06rem;
}

.leader-grid article {
  border-top: 5px solid var(--teal);
}

.leader-grid p {
  color: var(--blue);
  font-weight: 900;
}

.hospital-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hospital-list span {
  padding: 13px 15px;
  font-weight: 750;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.contact-panel {
  max-width: 1120px;
  margin: 0 auto;
  color: #fff;
}

.contact-panel .eyebrow {
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.75fr;
  gap: 16px;
}

.contact-grid > * {
  min-width: 0;
  padding: 22px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.65;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

address {
  font-style: normal;
}

.contact-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.contact-grid a {
  display: block;
  color: #fff;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: #d7e4f4;
  background: #071c38;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 1040px) {
  .hero,
  .facilities,
  .mission {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    height: 560px;
  }

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

  .intro-grid,
  .admission-grid,
  .leader-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-actions,
  .trust-signals,
  .intro-grid,
  .admission-grid,
  .leader-grid,
  .contact-grid,
  .course-grid,
  .photo-stack {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-media::before {
    inset: -10px 10px 10px -10px;
  }

  .hero-media img,
  .photo-stack img,
  .photo-stack img:nth-child(2) {
    height: auto;
    max-height: none;
  }

  .course-card {
    min-height: 170px;
  }

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