:root {
  --ink: #172033;
  --muted: #647087;
  --paper: #f6f3ed;
  --surface: #ffffff;
  --line: #dde3eb;
  --navy: #253466;
  --teal: #1b7c7a;
  --gold: #d7a83f;
  --coral: #b8453d;
  --shadow: 0 18px 50px rgba(23, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  max-width: 100vw;
  overflow: hidden;
}

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

.brand img {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  max-width: 100%;
  min-width: 0;
  color: #344056;
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: min(860px, calc(100vh - 82px));
  padding: clamp(36px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #ffffff 0%, #eef7f4 48%, #f4ecdc 100%);
}

.page-hero {
  padding: clamp(54px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #ffffff 0%, #eef7f4 56%, #f4ecdc 100%);
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
  max-width: 860px;
  color: #3d4b5f;
  font-size: clamp(17px, 2vw, 22px);
}

.hero h1,
.section h2,
.site-footer h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 92px);
}

.hero p {
  max-width: 700px;
  color: #3d4b5f;
  font-size: clamp(17px, 2vw, 22px);
}

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

.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: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

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

.button.secondary {
  border-color: #b8c1cf;
  background: #fff;
  color: var(--navy);
}

.button.compact {
  min-height: 40px;
  padding: 9px 14px;
}

.hero-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: min(620px, 64vh);
  object-fit: cover;
}

.section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.section h2 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
}

.section h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
}

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

.home-feature-grid article {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(23, 32, 51, 0.06);
}

.home-feature-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-feature-grid article > div {
  padding: 18px;
}

.home-feature-grid a {
  color: var(--navy);
  font-weight: 700;
}

.text-stack p,
.section-heading p,
.support-section p,
.campus-section p {
  color: var(--muted);
  font-size: 17px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.stats-band div {
  padding: 30px;
  background: #ffffff;
}

.stats-band strong {
  display: block;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.campus-section,
.videos-section,
.press-section {
  background: #fff;
}

.campus-section figure {
  margin: 0;
  padding: 12px;
  background: #edf2f5;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.campus-section img {
  width: 100%;
  border-radius: 4px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading > p {
  max-width: 720px;
}

.section-heading .eyebrow,
.section-heading h2,
.section-heading > p:not(.eyebrow) {
  grid-column: 1;
}

.section-heading .button {
  grid-column: 2;
  grid-row: 2;
}

.vision-feature {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.vision-feature img,
.vision-grid img,
.press-grid img,
.prospectus-grid img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
}

.vision-feature img {
  max-height: 620px;
  border-radius: 6px;
}

.vision-grid,
.gallery-grid,
.video-grid,
.prospectus-grid,
.press-grid {
  display: grid;
  gap: 18px;
}

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

.vision-grid figure,
.press-grid article {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.vision-grid img {
  aspect-ratio: 3 / 4;
}

.vision-grid figcaption {
  padding: 14px;
  color: var(--muted);
  font-size: 14px;
}

.action-grid figcaption strong {
  color: var(--ink);
}

.value-grid-section,
.action-steps,
.document-section,
.reading-section,
.action-detail-section,
.contact-section {
  background: #fff;
}

.value-grid,
.step-list,
.document-grid,
.reading-grid,
.action-detail-grid,
.contact-grid,
.quick-link-grid {
  display: grid;
  gap: 18px;
}

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

.step-list,
.document-grid,
.reading-grid,
action-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-grid article,
.step-list article,
.document-grid article,
.reading-grid article,
.action-detail-grid article,
.contact-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-grid span,
.step-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 700;
}

.value-grid p,
.step-list p,
.document-grid p,
.reading-grid p,
.action-detail-grid p,
.contact-card p {
  color: var(--muted);
}

.reading-grid article,
.action-detail-grid article {
  display: grid;
  align-content: start;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.9fr));
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.contact-card h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.contact-primary-card {
  grid-row: span 2;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.quick-link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-link-grid a {
  padding: 22px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.document-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
}

.document-grid h2 {
  font-size: clamp(28px, 4vw, 42px);
}

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

.press-grid article {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
}

.press-grid img {
  height: 100%;
  min-height: 280px;
}

.press-grid article div {
  padding: 22px;
}

.press-grid a {
  color: var(--navy);
  font-weight: 700;
}

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

.gallery-grid-large {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gallery-grid button {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  transition: transform 180ms ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
  padding: 72px clamp(14px, 4vw, 42px) 36px;
  background: rgba(16, 24, 39, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  margin: 0;
}

.lightbox-frame img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  cursor: zoom-out;
}

.lightbox-frame figcaption {
  color: #f4f7fb;
  text-align: center;
  font-size: 14px;
}

.lightbox-close,
.lightbox-arrow {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.lightbox-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 40px;
  line-height: 1;
}

.lightbox-prev {
  justify-self: end;
}

.lightbox-next {
  justify-self: start;
}

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

.video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-card h3 {
  padding: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

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

.prospectus-grid img {
  aspect-ratio: 0.72;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.08);
}

.support-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
  color: #fff;
  background: var(--navy);
}

.support-section .eyebrow,
.site-footer .eyebrow {
  color: var(--gold);
}

.support-section p {
  color: #dce4ef;
}

.bank-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(240px, 360px);
  gap: 28px;
  padding: 46px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #101827;
}

.site-footer p {
  max-width: 760px;
  color: #c7d0dd;
}

.site-footer address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.site-footer a {
  color: #fff;
}

@media (max-width: 1000px) {
  .hero,
  .split,
  .vision-feature,
  .support-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .gallery-grid,
  .prospectus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-grid,
  .video-grid,
  .press-grid,
  .home-feature-grid,
  .value-grid,
  .step-list,
  .document-grid,
  .reading-grid,
  .action-detail-grid,
  .contact-grid,
  .quick-link-grid {
    grid-template-columns: 1fr;
  }

  .contact-primary-card {
    grid-row: auto;
  }

  .press-grid article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    width: 100%;
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    overflow: hidden;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-copy,
  .hero-media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-media {
    max-width: 320px;
  }

  .hero h1 {
    max-width: 300px;
    font-size: 27px;
    overflow-wrap: break-word;
  }

  .hero p {
    max-width: 320px;
    font-size: 15px;
  }

  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 0.05em;
  }

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

  .button {
    width: 100%;
  }

  .hero-media img {
    height: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .button {
    grid-column: 1;
    grid-row: auto;
  }

  .stats-band,
  .gallery-grid,
  .prospectus-grid {
    grid-template-columns: 1fr;
  }

  .lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 6px;
    padding: 70px 8px 28px;
  }

  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .lightbox-frame img {
    max-height: calc(100vh - 150px);
  }
}
