:root {
  --ink: #10202b;
  --muted: #667785;
  --line: #dbe7ea;
  --teal: #006c6d;
  --teal-dark: #073f46;
  --mint: #14b8a6;
  --gold: #d6a23a;
  --coral: #d65f4a;
  --cloud: #f4f9f8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(9, 51, 60, .16);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "DM Sans", "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(20,184,166,.13), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(214,162,58,.12), transparent 26%),
    linear-gradient(180deg, #f7fbfb 0%, #eef7f5 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); }
h1, h2, h3 { line-height: 1.2; margin: 0 0 14px; letter-spacing: 0; }
h1 { max-width: 760px; font-size: clamp(40px, 5.2vw, 72px); }
h2 { font-size: clamp(28px, 3vw, 44px); }
h3 { font-size: 21px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(219,231,234,.85);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 250px; }
.brand img { width: 238px; height: 48px; object-fit: contain; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 6px; flex: 1; flex-wrap: nowrap; }
.main-nav > a, .has-submenu > a { padding: 10px 12px; border-radius: 8px; color: #29424d; font-size: 14px; font-weight: 700; white-space: nowrap; }
.main-nav > a:hover, .main-nav > a.active, .has-submenu:hover > a, .has-submenu.active > a { background: #e8f5f2; color: var(--teal); }
.has-submenu { position: relative; display: flex; align-items: center; }
.has-submenu > a::after { content: "v"; margin-left: 7px; font-size: 10px; }
.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 235px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.has-submenu:hover .submenu, .has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a { padding: 10px 12px; border-radius: 8px; color: #29424d; font-size: 14px; font-weight: 700; }
.submenu a:hover { background: #e8f5f2; color: var(--teal); }
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.header-cta, .btn.primary { color: white; background: linear-gradient(135deg, var(--teal), var(--mint)); box-shadow: 0 12px 30px rgba(0,108,109,.24); }
.btn.secondary { color: white; border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.12); }
.nav-toggle, .nav-button { display: none; }
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 36px;
  padding: clamp(80px, 10vw, 150px) clamp(18px, 5vw, 78px) 48px;
  color: white;
  background:
    linear-gradient(90deg, rgba(6,35,45,.78) 0%, rgba(6,35,45,.46) 42%, rgba(6,35,45,.03) 100%),
    var(--hero-image) right center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, transparent, rgba(244,249,248,.96));
  pointer-events: none;
}
.hero-content, .hero-panel { position: relative; z-index: 1; }
.hero p { color: rgba(255,255,255,.86); font-size: 19px; max-width: 720px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold) !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px !important;
  font-weight: 900;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-panel {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-panel strong, .hero-panel span { display: block; }
.hero-panel span { color: var(--muted); margin-top: 8px; }
main, .section, .split-section, .feature-band, .page-hero, .cta-section, .stats-band, .gallery-grid, .contact-grid, .doc-list, .steps, .trust-strip, .signature-panel, .program-finder, .facilities-showcase, .outcome-section, .journey-section, .life-section, .learning-stack, .admission-support, .reading-zone, .policy-banner, .media-callout {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}
.section, .split-section, .feature-band, .cta-section, .stats-band, .gallery-grid, .contact-grid, .doc-list, .steps, .trust-strip, .signature-panel, .program-finder, .facilities-showcase, .outcome-section, .journey-section, .life-section, .learning-stack, .admission-support, .reading-zone, .policy-banner, .media-callout { margin-top: 82px; }
.section-head { max-width: 820px; margin-bottom: 30px; }
.section-head p:not(.eyebrow) { font-size: 18px; }
.page-hero {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 42px;
  padding: 40px 0 16px;
}
.page-hero h1 { color: var(--teal-dark); }
.page-hero p { font-size: 17px; }
.page-hero img, .split-section img, .feature-band img, .leader-card img, .gallery-grid img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.page-hero img { aspect-ratio: 4 / 3; width: 100%; }
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(16,32,43,.08);
  transform: translateY(-26px);
  margin-top: 0;
  position: relative;
  z-index: 2;
}
.stats-band div, .program-overview div {
  background: white;
  padding: 26px;
}
.stats-band strong, .program-overview strong {
  display: block;
  color: var(--teal);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
}
.stats-band span, .program-overview span { display: block; margin-top: 10px; color: var(--muted); font-weight: 700; }
.split-section, .feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-section img, .feature-band img { aspect-ratio: 5 / 4; width: 100%; }
.section > p, .split-section p, .feature-band p { font-size: 18px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(16,32,43,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
}
.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform .3s ease;
}
.info-card:hover .card-media { transform: scale(1.035); }
.card-body { padding: 28px; }
.info-card:hover { transform: translateY(-6px); border-color: rgba(20,184,166,.45); box-shadow: 0 26px 66px rgba(16,32,43,.13); }
.info-card span {
  display: inline-flex;
  padding: 6px 10px;
  background: #e8f5f2;
  color: var(--teal);
  border-radius: 8px;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.info-card a { color: var(--teal); font-weight: 900; }
.feature-band {
  width: 100%;
  max-width: none;
  padding: 72px max(18px, calc((100vw - 1180px) / 2));
  background: linear-gradient(135deg, #073f46, #0f766e 58%, #d6a23a);
  color: white;
}
.feature-band p { color: rgba(255,255,255,.82); }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.mini-grid span {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  font-weight: 800;
}
.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 82px;
}
.program-overview {
  width: min(1180px, calc(100% - 36px));
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.program-overview strong { font-size: 16px; }
.table-wrap { overflow-x: auto; background: white; border-radius: 8px; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 780px; }
th { background: var(--teal-dark); color: white; text-align: left; }
th, td { padding: 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article { padding: 28px; background: linear-gradient(180deg, white, #eef8f6); border: 1px solid var(--line); border-radius: 8px; }
.steps span { color: var(--coral); font-weight: 900; font-size: 28px; }
.leader-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.leader-card img { width: 100%; aspect-ratio: 4 / 3; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 170px; gap: 18px; margin-bottom: 82px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid img:nth-child(1), .gallery-grid img:nth-child(6) { grid-column: span 3; grid-row: span 2; }
.gallery-grid img:nth-child(2), .gallery-grid img:nth-child(3), .gallery-grid img:nth-child(4), .gallery-grid img:nth-child(5), .gallery-grid img:nth-child(7), .gallery-grid img:nth-child(8), .gallery-grid img:nth-child(9) { grid-column: span 2; }
.doc-list { display: grid; gap: 14px; margin-bottom: 82px; }
.doc-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(16,32,43,.06);
}
.doc-link strong { color: var(--teal); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; }
.contact-card, .contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-card a { color: var(--teal); font-weight: 800; }
.contact-form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: var(--teal-dark); font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fbfdfd;
}
.map-section { width: min(1180px, calc(100% - 36px)); margin: 40px auto 82px; }
.map-section iframe { width: 100%; height: 420px; border: 0; border-radius: 8px; box-shadow: var(--shadow); }
.site-footer {
  background: #082f36;
  color: white;
  padding: 64px clamp(18px, 5vw, 78px) 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1.1fr;
  gap: 36px;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.75); }
.footer-grid a { display: block; margin: 10px 0; }
.footer-logo { width: 260px; height: 54px; object-fit: contain; background: white; border-radius: 8px; padding: 6px; margin-bottom: 18px; }
.footer-bottom { width: min(1180px, 100%); margin: 38px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.62); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 1px;
  background: rgba(219,231,234,.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(16,32,43,.08);
}
.trust-strip div, .trust-strip a {
  background: rgba(255,255,255,.9);
  padding: 22px;
}
.trust-strip span, .program-row span, .facility-card span, .learning-stack article span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.trust-strip strong { display: block; margin-top: 6px; color: var(--teal-dark); }
.trust-strip a { display: flex; align-items: center; color: var(--teal); font-weight: 900; }
.signature-panel {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(219,231,234,.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.signature-copy h2 { font-size: 19px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pill-row span {
  padding: 9px 12px;
  border-radius: 8px;
  background: #e8f5f2;
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 13px;
}
.signature-media { position: relative; }
.signature-media img { width: 100%; aspect-ratio: 4 / 4.2; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.floating-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(16,32,43,.16);
}
.floating-note strong, .floating-note span { display: block; }
.floating-note span { color: var(--muted); margin-top: 6px; }
.program-finder {
  padding: 40px;
  background: #082f36;
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.program-finder .section-head p { color: rgba(255,255,255,.72); }
.program-table { display: grid; gap: 12px; }
.program-row {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr .7fr 1.3fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.program-row strong { display: block; color: white; margin-top: 4px; }
.program-row p { color: rgba(255,255,255,.7); margin: 0; }
.program-row a { color: #ffe2a3; font-weight: 900; white-space: nowrap; }
.facilities-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 18px;
}
.facility-card {
  min-height: 230px;
  display: flex;
  align-items: end;
  padding: 24px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7,63,70,.08), rgba(7,63,70,.82)),
    var(--bg) center / cover no-repeat;
  box-shadow: var(--shadow);
}
.facility-card.large { grid-row: span 2; min-height: 478px; }
.facility-card h3 { color: white; max-width: 640px; }
.facility-card span { color: #ffe2a3; margin-bottom: 10px; }
.outcome-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.outcome-grid article, .life-grid article, .stack-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 14px 38px rgba(16,32,43,.07);
}
.outcome-grid span {
  display: block;
  color: var(--coral);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}
.journey-section {
  padding: 42px;
  background: linear-gradient(135deg, #ffffff, #e8f5f2);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.journey-line { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 26px; }
.journey-line article {
  position: relative;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.journey-line span { color: var(--gold); font-size: 30px; font-weight: 900; }
.life-grid, .stack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.life-media {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 22px;
}
.life-media img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.life-media div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  color: white;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.life-media p { color: rgba(255,255,255,.78); }
.life-grid strong { display: block; font-size: 18px; color: var(--teal-dark); margin-bottom: 10px; }
.learning-stack article span { color: var(--teal); margin-bottom: 14px; }
.admission-support, .reading-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 38px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.support-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.support-list span {
  padding: 16px;
  background: #e8f5f2;
  color: var(--teal-dark);
  border-radius: 8px;
  font-weight: 900;
}
.reading-zone img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.media-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff, #effaf8);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.media-callout img {
  width: 100%;
  aspect-ratio: 5 / 3.6;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16,32,43,.12);
}
.policy-banner {
  min-height: 440px;
  display: flex;
  align-items: end;
  padding: 42px;
  color: white;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7,47,54,.92), rgba(7,47,54,.24)),
    var(--policy-image) center / cover no-repeat;
  box-shadow: var(--shadow);
}
.policy-banner div { max-width: 680px; }
.policy-banner p { color: rgba(255,255,255,.82); }
@media (max-width: 1180px) {
  .site-header { align-items: center; flex-wrap: wrap; }
  .nav-button { display: grid; gap: 5px; margin-left: auto; cursor: pointer; }
  .nav-button span { width: 28px; height: 3px; background: var(--teal-dark); border-radius: 3px; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle:checked ~ .main-nav { display: grid; width: 100%; order: 5; grid-template-columns: repeat(2, 1fr); }
  .has-submenu { display: grid; align-items: stretch; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; margin-top: 6px; min-width: 0; background: #f5fbfa; }
  .hero, .page-hero, .split-section, .feature-band, .contact-grid, .leader-card, .signature-panel, .admission-support, .reading-zone, .media-callout, .life-media { grid-template-columns: 1fr; }
  .stats-band, .program-overview, .card-grid, .steps, .footer-grid, .outcome-grid, .life-grid, .stack-grid, .journey-line, .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-grid img:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .program-row { grid-template-columns: repeat(2, 1fr); }
  .facilities-showcase { grid-template-columns: 1fr; grid-template-rows: none; }
  .facility-card.large { grid-row: auto; min-height: 320px; }
}
@media (max-width: 640px) {
  .hero { min-height: 720px; grid-template-columns: 1fr; padding-top: 70px; }
  .stats-band, .program-overview, .card-grid, .steps, .gallery-grid, .footer-grid, .mini-grid, .trust-strip, .outcome-grid, .life-grid, .stack-grid, .journey-line, .program-row, .support-list { grid-template-columns: 1fr; }
  .cta-section { align-items: stretch; flex-direction: column; padding: 26px; }
  .page-hero { gap: 24px; }
  .site-header { min-height: 72px; }
  .brand { min-width: 0; }
  .brand img { width: 218px; height: 44px; }
  .signature-panel, .program-finder, .journey-section, .admission-support, .reading-zone, .policy-banner, .media-callout { padding: 24px; }
  .gallery-grid { grid-auto-rows: 240px; }
  .facility-card, .policy-banner { min-height: 300px; }
}
