:root {
  --bg: #f6f1e7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf8;
  --text: #102317;
  --muted: #5c675f;
  --line: rgba(16, 35, 23, 0.12);
  --brand: #0f6e2e;
  --brand-deep: #093f1c;
  --brand-soft: #dcefdc;
  --wine: #7c1722;
  --gold: #c18c2d;
  --shadow: 0 18px 55px rgba(29, 34, 29, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content-width: min(1180px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(193, 140, 45, 0.12), transparent 30%),
    radial-gradient(circle at right 12%, rgba(15, 110, 46, 0.1), transparent 22%),
    linear-gradient(180deg, #fbf8f2 0%, #f4efe4 44%, #f7f4ec 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.3));
  opacity: 0.55;
}

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

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

.page-shell {
  position: relative;
}

.site-header-shell {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 0;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid rgba(16, 35, 23, 0.08);
  box-shadow: 0 10px 28px rgba(38, 34, 25, 0.08);
}

.site-header {
  width: 100%;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 2.8vw, 2.4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(15, 110, 46, 0.12);
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--wine);
}

.brand-title {
  display: inline-block;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a.is-active {
  color: var(--brand-deep);
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta,
.button,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0.82rem 1.15rem;
  background: var(--brand-deep);
  color: white;
  box-shadow: 0 12px 24px rgba(9, 63, 28, 0.16);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(16, 35, 23, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-deep);
  padding: 0.78rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(38, 34, 25, 0.08);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -5px;
}

.nav-toggle-icon::after {
  top: 5px;
}

.site-header.is-nav-open .nav-toggle-icon {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle-icon::before {
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-icon::after {
  transform: translateY(-5px) rotate(-45deg);
}

.header-cta:hover,
.button:hover,
.nav-toggle:hover {
  transform: translateY(-1px);
}

main {
  width: var(--content-width);
  margin: 0 auto;
}

.section {
  padding: 4.5rem 1.1rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 92px);
  padding-top: 3rem;
}

.hero h1,
.section-heading h2,
.contact-card h1,
.contact-card h2,
.pillar-card h3,
.notes-card h2,
.notes-card h3 {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 8.5ch;
}

.hero-lead,
.section-heading p,
.pillar-card p,
.fee-card p,
.notes-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.06rem;
}

.hero-lead {
  max-width: 62ch;
  margin: 1.4rem 0 0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin: 1.8rem 0;
}

.button {
  padding: 0.95rem 1.35rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-deep), #145b2d);
  color: white;
  box-shadow: 0 16px 30px rgba(15, 110, 46, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border: 1px solid rgba(16, 35, 23, 0.08);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-highlights li {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(16, 35, 23, 0.08);
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 1.2rem;
}

.hero-stage {
  display: grid;
  gap: 1rem;
}

.hero-stage-main,
.showcase-feature,
.gallery-item,
.showcase-story {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 35, 23, 0.08);
  box-shadow: var(--shadow);
}

.hero-stage-main {
  position: relative;
  min-height: 500px;
  background: var(--surface);
  margin: 0;
}

.hero-stage-main img,
.showcase-feature > img,
.gallery-item img,
.showcase-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stage-main::after,
.showcase-feature::after,
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.6));
}

.hero-stage-overlay,
.gallery-item-copy,
.showcase-feature-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.35rem;
  color: white;
}

.hero-stage-overlay strong,
.gallery-item-copy strong,
.showcase-feature-copy h3,
.showcase-story-copy h3 {
  display: block;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.hero-stage-overlay strong {
  max-width: 16ch;
  font-size: 1.55rem;
  line-height: 1.08;
  margin-top: 0.4rem;
}

.hero-stage-overlay p {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
  max-width: 42ch;
}

.media-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.media-kicker-light {
  background: rgba(15, 110, 46, 0.08);
  color: var(--brand-deep);
}

.media-kicker-soft {
  background: rgba(124, 23, 34, 0.08);
  color: var(--wine);
}

.hero-stage-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stage-tile {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 35, 23, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-stage-tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-stage-tile-copy {
  padding: 1rem 1rem 1.05rem;
}

.hero-stage-tile-copy strong {
  display: block;
  margin-top: 0.45rem;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.2;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.fact-card,
.pillar-card,
.fee-card,
.notes-card,
.contact-card,
.department-card,
.short-course-card {
  background: var(--surface);
  border: 1px solid rgba(16, 35, 23, 0.08);
  box-shadow: var(--shadow);
}

.fact-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.fact-card strong {
  display: block;
  font-size: 1.85rem;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.fact-card span {
  color: var(--muted);
  line-height: 1.6;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.page-link-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 35, 23, 0.08);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.page-link-card:hover,
.page-link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(15, 110, 46, 0.2);
  box-shadow: 0 20px 45px rgba(29, 34, 29, 0.14);
}

.page-link-kicker {
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
}

.page-link-card strong {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.page-link-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
  position: relative;
}

.section-heading-inline {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: 1.25rem;
  align-items: end;
}

.section-heading h2,
.section-heading h1,
.contact-card h1,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  margin-top: 0.15rem;
}

.section-heading::after {
  content: "";
  display: block;
  width: 84px;
  height: 2px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, var(--gold), rgba(193, 140, 45, 0.1));
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.2rem;
  align-items: stretch;
}

.gallery-page-shell {
  display: grid;
  gap: 1.5rem;
}

.gallery-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-stat-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 35, 23, 0.08);
  box-shadow: var(--shadow);
}

.gallery-stat-card span {
  display: block;
  color: var(--wine);
  font-size: 1.9rem;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  line-height: 1;
}

.gallery-stat-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
  line-height: 1.5;
}

.showcase-feature {
  position: relative;
  min-height: 620px;
}

.showcase-feature--page {
  min-height: 720px;
}

.showcase-feature-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.04;
  margin: 0.7rem 0 0;
}

.showcase-feature-copy p,
.gallery-item-copy p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.showcase-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.showcase-story {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1rem;
  background: var(--surface);
}

.showcase-story img {
  border-radius: var(--radius-md);
}

.showcase-story-copy {
  align-self: center;
}

.showcase-story-copy h3 {
  margin: 0.45rem 0 0.35rem;
  font-size: 1.08rem;
  line-height: 1.25;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.showcase-story-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.section-gallery-story {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-flow: dense;
  margin-top: 1.2rem;
}

.gallery-item {
  position: relative;
  min-height: 300px;
  grid-column: span 4;
  background: #dde5dd;
}

.gallery-item--wide {
  grid-column: span 6;
}

.gallery-item--tall {
  min-height: 620px;
}

.gallery-item-copy strong {
  font-size: 1.35rem;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.gallery-item-copy p {
  margin: 0.45rem 0 0;
  max-width: 34ch;
}

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

.gallery-item img {
  transition: transform 300ms ease;
}

.pillars,
.short-course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.fee-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.pillar-card,
.fee-card,
.short-course-card,
.notes-card {
  border-radius: var(--radius-lg);
  padding: 1.45rem;
}

.pillar-badge {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-accent {
  position: relative;
}

.section-accent::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(15, 110, 46, 0.06), rgba(193, 140, 45, 0.12)),
    rgba(255, 255, 255, 0.55);
  z-index: -1;
}

.fee-card {
  min-height: 220px;
}

.fee-label,
.course-meta,
.short-course-meta,
.payment-item span,
.contact-item span {
  color: var(--muted);
}

.fee-card strong {
  display: block;
  margin: 0.6rem 0 0.8rem;
  font-size: 1.7rem;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.department-card {
  border-radius: var(--radius-xl);
  padding: 1.45rem;
}

.department-card summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 2.5rem;
}

.department-card summary::-webkit-details-marker {
  display: none;
}

.department-card summary::after {
  content: "+";
  position: absolute;
  top: 0.2rem;
  right: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 110, 46, 0.08);
  color: var(--brand-deep);
  font-size: 1.25rem;
  font-weight: 700;
}

.department-card[open] summary::after {
  content: "-";
}

.department-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.department-index {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-soft), rgba(193, 140, 45, 0.2));
  color: var(--brand-deep);
  font-weight: 800;
}

.department-name {
  margin: 0;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 1.45rem;
}

.department-meta {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.course-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.25rem;
}

.course-card {
  padding: 1rem 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 23, 0.08);
}

.course-card h3,
.short-course-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.course-meta,
.short-course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.93rem;
  line-height: 1.55;
}

.course-meta span,
.short-course-meta span {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 110, 46, 0.06);
}

.course-fees {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.course-fees strong,
.short-course-card strong {
  font-size: 1.06rem;
  color: var(--brand-deep);
}

.course-fees small {
  color: var(--muted);
}

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

.short-course-card {
  min-height: 176px;
}

.admissions-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
}

.notes-list {
  display: grid;
  gap: 0.95rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.notes-list li {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 23, 0.08);
  line-height: 1.65;
}

.payment-stack {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.payment-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 23, 0.08);
}

.payment-item strong,
.contact-item strong {
  display: block;
  margin-top: 0.3rem;
  line-height: 1.55;
}

.contact-section {
  padding-bottom: 5rem;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  background:
    linear-gradient(135deg, rgba(15, 110, 46, 0.08), rgba(193, 140, 45, 0.13)),
    rgba(255, 255, 255, 0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-item {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 35, 23, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 110, 46, 0.22);
}

.site-footer-shell {
  width: 100%;
  margin-top: 1.25rem;
  padding: 1.5rem 1rem 1.75rem;
  color: rgba(255, 252, 247, 0.88);
  background:
    radial-gradient(circle at top right, rgba(193, 140, 45, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(25, 78, 49, 0.9), rgba(18, 69, 43, 0.94) 55%, rgba(15, 58, 35, 0.98) 100%);
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr)) minmax(250px, 0.95fr);
  gap: 1rem;
}

.footer-brand-block,
.footer-column {
  min-width: 0;
}

.footer-brand-block,
.footer-column,
.footer-link-list a,
.footer-contact-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.footer-brand-block,
.footer-column {
  border-radius: 24px;
  padding: 1.35rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.footer-brand-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.45rem;
}

.footer-brand strong,
.footer-title {
  display: block;
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

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

.footer-brand span,
.footer-summary,
.footer-callout p,
.footer-contact-item span,
.footer-website,
.site-footer-base {
  color: rgba(255, 250, 244, 0.78);
}

.footer-brand span {
  display: block;
  margin-top: 0.2rem;
  line-height: 1.5;
}

.footer-summary {
  margin: 1rem 0 0;
  line-height: 1.8;
}

.footer-title {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
}

.footer-link-list,
.footer-contact-list {
  display: grid;
  gap: 0.7rem;
}

.footer-link-list a,
.footer-contact-item {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible,
.footer-contact-item:hover,
.footer-contact-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(193, 140, 45, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.footer-link-list a.is-active {
  color: white;
  border-color: rgba(193, 140, 45, 0.32);
  background: rgba(193, 140, 45, 0.12);
}

.footer-contact-item strong {
  display: block;
  margin-top: 0.3rem;
  color: white;
  line-height: 1.55;
}

.footer-callout {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.footer-callout p {
  margin: 0;
  line-height: 1.75;
}

.footer-button {
  width: 100%;
}

.footer-website {
  display: inline-flex;
  width: fit-content;
  font-weight: 700;
}

.site-credit {
  font-size: 0.95rem;
}

.site-footer-base {
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-base p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header,
  .hero,
  .page-link-grid,
  .gallery-hero-stats,
  .showcase-layout,
  .showcase-story-grid,
  .pillars,
  .fee-overview,
  .department-grid,
  .short-course-grid,
  .admissions-layout,
  .contact-card,
  .contact-grid,
  .section-heading-inline {
    grid-template-columns: 1fr;
  }

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

  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 0.75rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 1.25rem;
  }

  .hero-stage,
  .hero-stage-main,
  .showcase-feature,
  .showcase-feature--page {
    min-height: 420px;
  }

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

  .gallery-item,
  .gallery-item--wide {
    grid-column: span 1;
  }

  .gallery-item--tall {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3rem 1rem;
  }

  .site-header {
    width: 100%;
    gap: 0.8rem;
    padding: 0.8rem 1rem 0.95rem;
    display: grid;
    align-items: start;
  }

  .site-header-shell {
    padding: 0;
  }

  .brand-lockup {
    align-items: flex-start;
    gap: 0.7rem;
    min-width: 0;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .brand-title {
    font-size: 0.98rem;
    line-height: 1.08;
    max-width: 20ch;
  }

  .header-actions {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
  }

  .header-cta,
  .nav-toggle {
    min-height: 3rem;
    padding: 0.72rem 1rem;
    font-size: 0.95rem;
    box-shadow: 0 10px 20px rgba(9, 63, 28, 0.12);
  }

  .header-cta {
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
  }

  main,
  .site-footer {
    width: 100%;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    padding-top: 0.1rem;
  }

  .js .site-header:not(.is-nav-open) .site-nav {
    display: none;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.5rem 0.7rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 35, 23, 0.08);
    text-align: center;
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .site-nav a.is-active {
    background: rgba(15, 110, 46, 0.1);
    border-color: rgba(15, 110, 46, 0.16);
  }

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

  .hero h1 {
    max-width: 9.5ch;
    font-size: clamp(2.65rem, 12vw, 3.6rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
  }

  .hero-lead,
  .section-heading p,
  .pillar-card p,
  .fee-card p,
  .notes-card p,
  .contact-card p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-lead {
    margin-top: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin: 1.4rem 0;
  }

  .button {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 1.6rem;
  }

  .section-heading-inline {
    gap: 0.85rem;
  }

  .section-heading h1,
  .section-heading h2,
  .contact-card h1,
  .contact-card h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 0.98;
  }

  .gallery-hero-stats {
    gap: 0.8rem;
  }

  .gallery-stat-card {
    padding: 1rem;
  }

  .showcase-feature-copy,
  .hero-stage-overlay,
  .gallery-item-copy {
    padding: 1rem;
  }

  .showcase-feature-copy h3,
  .hero-stage-overlay strong,
  .gallery-item-copy strong {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    line-height: 1.03;
  }

  .showcase-feature-copy p,
  .hero-stage-overlay p,
  .gallery-item-copy p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-stage-overlay strong {
    max-width: none;
  }

  .fact-grid,
  .contact-grid,
  .fee-overview {
    grid-template-columns: 1fr;
  }

  .showcase-story {
    grid-template-columns: 1fr;
  }

  .showcase-story img {
    height: 210px;
  }

  .showcase-story-copy h3 {
    font-size: 1.2rem;
  }

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

  .hero-stage-main {
    min-height: 360px;
  }

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

  .hero-stage-tile img {
    height: 220px;
  }

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

  .course-fees {
    flex-direction: column;
    align-items: start;
  }

  .department-card,
  .short-course-card,
  .notes-card,
  .fee-card,
  .page-link-card {
    padding: 1.2rem;
  }

  .site-footer {
    padding-bottom: 0;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-base {
    justify-content: start;
  }

  .site-footer-shell {
    padding: 1.2rem 0.8rem 1.35rem;
  }
}

@media (max-width: 480px) {
  .site-header-shell {
    padding-top: 0;
  }

  .site-header {
    padding: 0.75rem;
  }

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

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

  .header-cta {
    font-size: 0.92rem;
    padding: 0.68rem 0.92rem;
  }

  .nav-toggle {
    width: 100%;
  }

  .site-footer-shell {
    padding: 1rem 0.75rem 1.2rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .section-heading h1,
  .section-heading h2,
  .contact-card h1,
  .contact-card h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.45rem);
  }

  .showcase-feature-copy h3,
  .hero-stage-overlay strong,
  .gallery-item-copy strong {
    font-size: clamp(1.4rem, 7.8vw, 1.9rem);
  }

  .showcase-feature-copy p,
  .hero-stage-overlay p,
  .gallery-item-copy p,
  .hero-lead,
  .section-heading p {
    font-size: 0.96rem;
  }

  .hero-highlights li,
  .course-meta span,
  .short-course-meta span {
    font-size: 0.9rem;
  }
}
