:root {
  --paper: #f7f5ef;
  --surface: #ffffff;
  --mist: #e9f0ed;
  --line: #d9dfda;
  --ink: #17201c;
  --muted: #66716b;
  --forest: #2f6657;
  --lake: #49758c;
  --clay: #b8795a;
  --soft-blue: #dce9ee;
  --shadow: 0 18px 50px rgba(32, 48, 42, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.topline {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 8px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(217, 223, 218, 0.72);
  background: #eef4f1;
  color: #34413b;
  font-size: 0.78rem;
  font-weight: 700;
}

.topline a:hover {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(247, 245, 239, 0.88);
  border-bottom: 1px solid rgba(217, 223, 218, 0.8);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 44px;
  height: auto;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
}

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

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

.site-nav a {
  border-radius: 999px;
  color: #34413b;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 14px;
}

.site-nav a:hover {
  background: var(--mist);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: clamp(96px, 14vw, 160px) clamp(20px, 5vw, 72px) 32px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.95) 0%, rgba(247, 245, 239, 0.82) 42%, rgba(247, 245, 239, 0.26) 100%),
    linear-gradient(0deg, rgba(23, 32, 28, 0.24), rgba(23, 32, 28, 0.02));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.lead {
  max-width: 670px;
  color: #31403a;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

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

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

.button.primary {
  background: var(--forest);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 102, 87, 0.35);
  color: var(--forest);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 840px;
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid rgba(217, 223, 218, 0.88);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.hero-panel div {
  min-height: 110px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.8);
}

.hero-panel strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.home-gateway {
  background: var(--surface);
}

.gateway-lead {
  max-width: 1220px;
  margin: 0 auto 28px;
}

.gateway-lead h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.02;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.gateway-grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fbfaf6;
}

.gateway-grid a:nth-child(2) {
  background: #f2f7f6;
}

.gateway-grid a:nth-child(3) {
  background: #f4f0e9;
}

.gateway-grid a:nth-child(4) {
  background: #eef4f7;
}

.gateway-grid span {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gateway-grid strong {
  display: block;
  margin: 26px 0 8px;
  font-size: 1.34rem;
  line-height: 1.12;
}

.gateway-grid p {
  color: var(--muted);
}

.program-finder {
  background: var(--paper);
}

.finder-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.finder-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  line-height: 1.04;
}

.finder-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.finder-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--forest);
  font-weight: 800;
}

.finder-links a:hover,
.gateway-grid a:hover {
  border-color: rgba(47, 102, 87, 0.42);
  box-shadow: inset 0 0 0 1px rgba(47, 102, 87, 0.12);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 72px);
  max-width: 1220px;
  margin: 0 auto 42px;
}

.section-heading.narrow {
  display: block;
  max-width: 780px;
  margin-left: 0;
}

.section-heading h2,
.research-copy h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1220px;
  margin: 0 auto;
  color: #3a4741;
  font-size: 1.08rem;
}

.programs {
  background: var(--paper);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.program-card {
  min-height: 430px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.program-card:nth-child(2) {
  background: #f2f7f6;
}

.program-card:nth-child(3) {
  background: #f4f0e9;
}

.program-card:nth-child(4) {
  background: #eef4f7;
}

.program-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.program-topline strong {
  color: var(--forest);
  white-space: nowrap;
}

.program-card h3 {
  min-height: 104px;
  font-size: 1.45rem;
  line-height: 1.14;
}

.program-card p,
.program-card li {
  color: #4b5852;
}

.program-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.program-card li + li {
  margin-top: 8px;
}

.curriculum {
  background: var(--surface);
}

.curriculum-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.program-tabs {
  display: grid;
  gap: 8px;
  align-content: start;
}

.tab {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.tab.active {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.program-detail {
  display: none;
  min-height: 360px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.program-detail.active {
  display: block;
}

.program-detail h3 {
  max-width: 850px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.program-detail > p {
  max-width: 920px;
  color: #3a4741;
  font-size: 1.05rem;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.detail-columns div {
  padding: 24px;
  background: var(--surface);
}

.detail-columns h4 {
  margin-bottom: 10px;
  color: var(--forest);
}

.detail-columns p {
  color: var(--muted);
}

.offerings {
  background: var(--mist);
}

.course-table-wrap {
  max-width: 1220px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.course-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.doc-block .course-table {
  max-width: 100%;
  overflow-x: auto;
}

.course-table th,
.course-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.course-table th {
  color: var(--forest);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-table td:last-child,
.course-table th:last-child {
  text-align: right;
}

.course-table tr:last-child td {
  border-bottom: 0;
}

.research {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 88px);
  background: #fbfaf6;
}

.academic {
  background: var(--surface);
}

.philosophy {
  background: var(--mist);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto 14px;
}

.principle-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.principle-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.principle-card strong {
  display: block;
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
  line-height: 1.08;
}

.principle-card p {
  color: #3a4741;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin: 0 auto;
}

.mission-grid div {
  padding: 22px;
  border: 1px solid rgba(217, 223, 218, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.mission-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.mission-grid p {
  color: var(--muted);
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline div {
  min-height: 210px;
  padding: 24px;
  background: #fbfaf6;
}

.timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.timeline p {
  color: var(--muted);
}

.section-heading.narrow > p:not(.eyebrow) {
  max-width: 760px;
  color: #3a4741;
}

.research-theme-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
}

.research-theme-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.research-theme-grid strong,
.research-theme-grid span {
  display: block;
}

.research-theme-grid strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.22;
}

.research-theme-grid span {
  color: var(--muted);
}

.academic-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1220px;
  margin-top: 16px;
}

.academic-evidence div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.academic-evidence strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
}

.academic-evidence p {
  color: #3f4b45;
}

.research-copy p:not(.eyebrow) {
  max-width: 640px;
  color: #3a4741;
}

.impact-grid {
  display: grid;
  gap: 12px;
  align-content: center;
}

.impact-grid div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.impact-grid strong,
.impact-grid span {
  display: block;
}

.impact-grid strong {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.impact-grid span {
  color: var(--muted);
}

.admissions {
  background: var(--paper);
}

.admission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1220px;
  margin: 0 auto;
}

.admission-grid div {
  padding: 28px;
  border-left: 4px solid var(--lake);
  border-radius: 8px;
  background: var(--surface);
}

.admission-grid div:nth-child(2) {
  border-color: var(--forest);
}

.admission-grid div:nth-child(3) {
  border-color: var(--clay);
}

.admission-grid p {
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 32px;
  align-items: end;
  background: var(--surface);
}

.contact > div:first-child {
  max-width: 760px;
}

.contact p:not(.eyebrow) {
  color: #3a4741;
  font-size: 1.05rem;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f8f6;
}

.contact-card a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--forest);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.official-hero {
  min-height: 88vh;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  max-width: 1220px;
  margin: 0 auto;
}

.prose p,
.prose li {
  color: #3a4741;
  font-size: 1.02rem;
}

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

.staff-directory {
  background: #fff;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.staff-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.staff-card div {
  padding: 16px;
}

.staff-card h3 {
  margin-bottom: 5px;
  color: var(--primary);
  font-size: 1.02rem;
}

.staff-card p {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 800;
}

.staff-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.dean-message {
  background: var(--surface);
}

.message-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  max-width: 1020px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.message-card-long {
  max-width: 1120px;
  align-items: start;
}

.message-card-long img {
  position: sticky;
  top: 110px;
}

.message-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.message-card img.dean-photo {
  object-position: center 18%;
}

.dean-title {
  margin-top: -8px;
  color: var(--muted);
  font-weight: 700;
}

.message-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.message-principles span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 800;
  padding: 8px 12px;
  background: #fff;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.activity-grid div {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

.activity-grid strong,
.activity-grid span {
  display: block;
  padding: 0 16px;
}

.activity-grid strong {
  padding-top: 16px;
  font-size: 1rem;
}

.activity-grid span {
  padding-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.activity-showcase {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.activity-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.activity-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.activity-card div {
  padding: 18px;
}

.activity-card span,
.event-date {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.activity-card strong {
  display: block;
  color: var(--primary);
  font-size: 1.18rem;
  line-height: 1.18;
}

.activity-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.feature-activity {
  grid-row: span 2;
}

.feature-activity img {
  aspect-ratio: 16 / 11;
}

.feature-activity strong {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.section-link-row {
  margin-top: 22px;
}

.activity-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 32px;
  align-items: end;
  background: #fff;
}

.activity-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.activity-stats div {
  padding: 20px;
  border-right: 1px solid var(--line);
}

.activity-stats div:last-child {
  border-right: 0;
}

.activity-stats strong,
.activity-stats span {
  display: block;
}

.activity-stats strong {
  color: var(--primary);
  font-size: 2.25rem;
}

.activity-stats span {
  color: var(--muted);
  font-weight: 800;
}

.activity-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  background: var(--surface);
}

.activity-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.activity-feature h2 {
  margin-bottom: 18px;
}

.activity-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.activity-theme-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.activity-theme-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.activity-theme-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-weight: 900;
}

.activity-theme-grid h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.activity-theme-grid p {
  color: var(--muted);
}

.event-list {
  display: grid;
  gap: 24px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.event-copy h3 {
  margin-bottom: 12px;
  color: var(--primary);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.1;
}

.event-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.event-gallery {
  display: grid;
  gap: 8px;
}

.event-gallery.one {
  grid-template-columns: 1fr;
}

.event-gallery.two,
.event-gallery.three,
.event-gallery.four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: var(--line);
}

.event-gallery.one img {
  aspect-ratio: 16 / 10;
}

.program-hero {
  padding: clamp(90px, 12vw, 150px) clamp(20px, 5vw, 72px) clamp(50px, 7vw, 90px);
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.96), rgba(247, 245, 239, 0.88)),
    url("images/slide-3.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.program-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.program-hero .lead {
  max-width: 840px;
}

.document-section {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  background: var(--surface);
}

.doc-toc {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 8px;
}

.doc-toc a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.doc-toc a:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.doc-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.doc-block {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
}

.doc-block h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.doc-block h3 {
  margin: 26px 0 10px;
  color: var(--forest);
  font-size: 1.16rem;
}

.doc-block p,
.doc-block li {
  color: #3f4b45;
}

.doc-block ol,
.doc-block ul {
  padding-left: 22px;
}

.coordinator-block {
  background: #fff;
}

.program-coordinator-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.program-coordinator-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.program-coordinator-card h3 {
  margin: 0 0 6px;
  color: var(--primary);
}

.program-coordinator-card p {
  margin: 0 0 8px;
  color: var(--accent);
  font-weight: 800;
}

.program-coordinator-card span {
  color: var(--muted);
  line-height: 1.45;
}

.outcome-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.outcome-list div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.outcome-list strong {
  color: var(--forest);
}

.outcome-list span {
  color: #3f4b45;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.fact-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.fact-grid strong,
.fact-grid span {
  display: block;
}

.fact-grid strong {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.fact-grid span {
  color: #3f4b45;
}

@media (max-width: 1080px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-card h3 {
    min-height: auto;
  }

  .detail-columns,
  .admission-grid {
    grid-template-columns: 1fr;
  }

  .organization-grid,
  .activity-grid,
  .research-theme-grid,
  .fact-grid,
  .mission-grid,
	  .timeline,
	  .philosophy-layout,
	  .gateway-grid,
	  .staff-grid,
	  .compact-staff-grid,
	  .activity-showcase,
	  .activity-theme-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

  .activity-overview,
  .activity-feature,
  .event-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(247, 245, 239, 0.98), rgba(247, 245, 239, 0.64));
  }

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

  .section-heading,
  .intro-grid,
  .content-grid.two,
  .curriculum-layout,
  .research,
	  .contact,
	  .message-card,
	  .activity-overview,
	  .activity-feature,
	  .event-card,
	  .document-section {
	    grid-template-columns: 1fr;
	  }

  .doc-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .program-grid,
  .program-tabs,
  .organization-grid,
  .activity-grid,
  .doc-toc,
  .research-theme-grid,
  .academic-evidence,
  .fact-grid,
  .mission-grid,
	  .timeline,
	  .philosophy-layout,
	  .gateway-grid,
	  .staff-grid,
	  .compact-staff-grid,
	  .program-coordinator-card,
	  .activity-showcase,
	  .activity-theme-grid,
	  .event-gallery.two,
	  .event-gallery.three,
	  .event-gallery.four,
	  .finder-links {
	    grid-template-columns: 1fr;
	  }

  .topline {
    display: none;
  }

  .doc-block {
    padding: 20px 16px;
  }

  .doc-block .course-table {
    min-width: 0;
    table-layout: fixed;
  }

  .doc-block .course-table th,
  .doc-block .course-table td {
    white-space: normal;
    word-break: break-word;
    padding: 12px 10px;
  }

  .outcome-list div {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
