:root {
  --navy: #073466;
  --navy-dark: #05284f;
  --teal: #087a94;
  --gold: #d59a25;
  --ink: #18212b;
  --muted: #68727e;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --border: #e1e6eb;
  --shadow: 0 10px 30px rgba(9, 39, 70, 0.09);
  --radius: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, textarea {
  font: inherit;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: auto;
  height: 64px;
  max-width: 190px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: #263441;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 29, 56, .83) 0%, rgba(3, 29, 56, .52) 42%, rgba(3, 29, 56, .08) 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 82px 0;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #0030d4;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}

.hero p {
  max-width: 640px;
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255, 255, 255, .9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 9px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #10233a;
  background: var(--gold);
}

.button-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}

/* Sections */
.section {
  padding: 40px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2,
.content-main h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.2;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

/* Homepage card system
   Editorial treatment: restrained borders, generous whitespace and clear hierarchy. */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}


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

.post-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dbe2e8;
  border-radius: 14px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  border-color: #bac8d5;
  box-shadow: 0 12px 26px rgba(7, 52, 102, .08);
}

.post-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e8edf2;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.025);
}

.post-card-body {
  position: relative;
  padding: 20px 20px 22px;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--teal);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.25;
}

.post-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 800;
}

.card-link::after {
  content: "→";
  color: var(--gold);
  transition: transform .18s ease;
}

.post-card:hover .card-link::after {
  transform: translateX(3px);
}

/* Variant A: editorial cards with a subtle top accent. */
.card-editorial::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 42%;
  height: 3px;
  background: var(--gold);
}

/* Variant B: image-led cards with content over the photograph. */
.card-overlay {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  border: 0;
  background: var(--navy-dark);
}

.card-overlay .post-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.card-overlay .post-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(9 9 9 / 55%) 20%, rgb(0 0 0 / 90%) 100%);
}

.card-overlay .post-card-body {
  z-index: 2;
  width: 100%;
  padding: 24px;
  color: #fff;
}

.card-overlay .card-kicker {
  color: #77ffad;
}

.card-overlay h3,
.card-overlay .card-link {
  color: #fff;
}

.card-overlay p {
  color: rgba(255,255,255,.82);
}

/* Compact information cards used for supporting homepage links. */
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.info-card {
  min-height: 132px;
  padding: 26px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.info-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

/* Section title with a deliberately designed editorial rhythm. */
.section-heading-row {
  display: grid;
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading-row .section-heading {
  margin-bottom: 0;
}

.section-note {
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: .94rem;
}

/* Inner page content */
.breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
}

.breadcrumb a {
  color: var(--teal);
  font-weight: 700;
}

.content-layout {
  display: block;
  max-width: 940px;
  margin-inline: auto;
}

.content-main {
  width: 100%;
  min-width: 0;
}

.content-main > p:first-of-type {
  font-size: 1.08rem;
  color: #3d4853;
}

.content-main h2 {
  margin-top: 38px;
}

.content-main h3 {
  margin-top: 28px;
  color: #24364a;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.sidebar-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}

.sidebar-links {
  display: grid;
  gap: 10px;
}

.sidebar-links a {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: #344554;
  font-weight: 700;
}

.sidebar-links a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.notice {
  margin-top: 34px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: #fff8e9;
  color: #5a4822;
}


/* Sources and references */
.source-references {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.source-references h2 {
  margin-top: 0;
}

.source-references p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .94rem;
}

.source-references a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.source-references a:hover {
  color: var(--navy);
}


/* Support page details */
.contact-panel,
.address-panel {
  margin: 30px 0 38px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-email {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-panel p,
.address-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.address-panel strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.content-main a:not(.button):not(.contact-email) {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}


/* Google location */
.google-location {
  margin-top: 44px;
}

.map-embed {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-action {
  margin-top: 14px;
}

.map-action a {
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 600px) {
  .map-embed iframe {
    height: 320px;
  }
}

/* Footer
   Three-column editorial grid: brand + academic links + information links. */
.site-footer {
  margin-top: 20px;
  color: rgba(255,255,255,.78);
  background: #05294f;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(170px, .75fr) minmax(210px, .9fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: 40px 0;
}

.footer-brand-block {
  max-width: 470px;
}

.footer-logo {
  display: flex;
}

.footer-logo img {
  width: auto;
  height: 110px;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.footer-brand-block p {
  
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .94rem;
  line-height: 1.75;
}

.footer-title {
  margin: 3px 0 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  transition: color .18s ease, transform .18s ease;
}

.footer-links a:hover {
  color: #f1c15e;
  transform: translateX(2px);
}

.footer-bottom {
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.56);
  font-size: .82rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

/* Forms */
.form-grid {
  display: grid;
  gap: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd6dd;
  border-radius: 9px;
  background: #fff;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

/* Tablet */
@media (max-width: 960px) {
  .container {
    width: min(calc(100% - 32px), var(--max-width));
  }

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

  .brand img {
    width: auto;
    height: 56px;
    max-width: 165px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(8, 33, 57, .08);
  }

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

  .site-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

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

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-note {
    max-width: 680px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }
.footer-grid {
    grid-template-columns: minmax(0, 1.4fr) 1fr 1fr;
    gap: 30px;
  }

  .footer-logo img {
    height: 110px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .college-experience-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand img {
    width: auto;
    height: 50px;
    max-width: 145px;
  }

  .hero {
    min-height: 390px;
  }

  .hero::after {
    background: rgba(3, 29, 56, .72);
  }

  .hero-content {
    padding: 64px 0;
  }

  .section {
    padding: 30px 0;
  }

  .card-grid,
  .info-card-grid {
    grid-template-columns: 1fr;
  }

  .card-overlay {
    min-height: 330px;
  }

  .post-card-image {
    aspect-ratio: 16 / 9;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
    padding: 10px 0 38px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    height: 130px;
  }
}


@media (max-width: 430px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Homepage informational sections */
.intro-copy {
  max-width: 900px;
}

.intro-copy p,
.content-split p,
.section-followup,
.location-panel p {
  color: #485663;
}

.text-link {
  color: var(--teal);
  font-weight: 800;
}

.text-link:hover {
  color: var(--navy);
}

.text-link-arrow::after {
  content: " →";
  color: var(--gold);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.fact-card {
  min-height: 118px;
  padding: 22px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.fact-card span,
.location-meta span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.fact-card strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.content-split-reverse {
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
}

.content-split h2,
.location-panel h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.17;
}

.feature-image-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  background: #e6ebef;
  box-shadow: var(--shadow);
}

.feature-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  max-height: 460px;
}

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

.stream-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.stream-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.stream-card h3,
.facility-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
}

.stream-card p,
.facility-item p {
  margin: 0;
  color: var(--muted);
}

.section-followup {
  margin: 24px 0 0;
}

.facility-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
}

.facility-item {
  min-height: 190px;
  padding: 26px;
  background: #fff;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 50px;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 18px;
  background: var(--surface-soft);
}

.location-panel .button {
  margin-top: 12px;
}

.location-meta {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-content: start;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.location-meta div {
  min-height: 106px;
  padding: 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.location-meta strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

@media (max-width: 960px) {
  .fact-grid,
  .facility-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .content-split,
  .content-split-reverse,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .content-split-reverse .feature-image-wrap {
    order: 2;
  }
}

@media (max-width: 600px) {
  .fact-grid,
  .facility-list-grid,
  .location-meta {
    grid-template-columns: 1fr;
  }

  .fact-card,
  .facility-item {
    min-height: auto;
  }

  .stream-card {
    padding: 24px;
  }

  .location-panel {
    gap: 30px;
    padding: 26px 22px;
  }
}

