:root {
  --bg: #f4efe3;
  --surface: rgba(255, 250, 242, 0.82);
  --surface-strong: #fffaf1;
  --text: #1c2330;
  --muted: #5d6777;
  --gold: #d59624;
  --sun: #f0b334;
  --red: #a7382a;
  --deep-red: #752117;
  --teal: #1f6057;
  --sky: #88d5cf;
  --line: rgba(28, 35, 48, 0.1);
  --shadow: 0 24px 70px rgba(77, 51, 20, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(240, 179, 52, 0.34), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(136, 213, 207, 0.26), transparent 18%),
    radial-gradient(circle at 80% 82%, rgba(167, 56, 42, 0.18), transparent 20%),
    linear-gradient(180deg, #f8f3e8 0%, #efe4cd 52%, #f8f3e8 100%);
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

img,
svg,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("assets/images/logo-cropped.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(38vw, 420px);
  opacity: 0.055;
  filter: grayscale(8%);
}

.hero,
.section {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 1rem 0 3.5rem;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.6rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(28, 35, 48, 0.08);
  background: rgba(255, 250, 242, 0.74);
  backdrop-filter: blur(22px);
  box-shadow: 0 10px 30px rgba(77, 51, 20, 0.08);
  border-radius: 999px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  padding: 0.3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 35, 48, 0.08);
  box-shadow: 0 10px 24px rgba(28, 35, 48, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.brand-text strong {
  color: var(--text);
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
  flex-wrap: wrap;
  font-size: 0.96rem;
}

.nav-links a {
  font-weight: 700;
}

.nav-links a.is-active {
  color: var(--red);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  padding: 0.8rem 1rem;
  font-weight: 700;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.5rem;
  align-items: center;
  padding-top: 4.2rem;
}

.page-hero,
.page-hero-inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-hero {
  padding: 1rem 0 2rem;
}

.page-hero-inner {
  padding: 4.5rem 0 1.5rem;
}

.hero-copy,
.hero-panel {
  position: relative;
}

.eyebrow,
.mini-label,
.result-tag,
.news-card span,
.panel-card p {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow,
.mini-label,
.result-tag,
.news-card span,
.panel-card p {
  color: var(--red);
}

.hero-copy h1,
.section-heading h2,
.story-primary h2,
.footer h2,
.alumni-copy h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.3rem, 7vw, 6.2rem);
}

.lead,
.story-card p,
.result-card p,
.result-highlight p,
.pathway-card p,
.leader-card p,
.alumni-copy p,
.footer p,
.contact-card p,
.panel-card span,
.news-card p {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  margin: 1.25rem 0 0;
  max-width: 62ch;
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--deep-red));
  color: #fff;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
}

.button-ghost {
  background: rgba(255, 250, 242, 0.5);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(117, 33, 23, 0.24);
  filter: saturate(1.05);
}

.button-ghost:hover {
  border-color: rgba(167, 56, 42, 0.18);
  background: rgba(255, 250, 242, 0.85);
  box-shadow: 0 16px 32px rgba(28, 35, 48, 0.08);
}

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

.hero-stats article,
.panel-card,
.story-card,
.result-highlight,
.result-card,
.pathway-card,
.leader-card,
.news-card,
.contact-card,
.alumni-wrap {
  border: 1px solid rgba(28, 35, 48, 0.08);
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background-color 0.4s ease;
}

.hero-stats article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.hero-stats article,
.panel-card,
.story-card,
.result-highlight,
.result-card,
.pathway-card,
.leader-card,
.news-card,
.contact-card,
.alumni-wrap,
.page-link-card {
  position: relative;
  overflow: hidden;
}

.hero-stats article > *,
.panel-card > *,
.story-card > *,
.result-highlight > *,
.result-card > *,
.pathway-card > *,
.leader-card > *,
.news-card > *,
.contact-card > *,
.alumni-wrap > *,
.page-link-card > * {
  position: relative;
  z-index: 1;
}

.hero-stats article::before,
.panel-card::before,
.story-card::before,
.result-highlight::before,
.result-card::before,
.pathway-card::before,
.leader-card::before,
.news-card::before,
.contact-card::before,
.alumni-wrap::before,
.page-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 34%, transparent 66%, rgba(240, 179, 52, 0.14));
  opacity: 0.36;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.hero-stats article::before,
.panel-card::before,
.story-card::before,
.result-highlight::before,
.result-card::before,
.pathway-card::before,
.leader-card::before,
.news-card::before,
.contact-card::before,
.alumni-wrap::before,
.page-link-card::before {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%, transparent 66%, rgba(240, 179, 52, 0.08)),
    url("assets/images/logo-cropped.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: auto, min(72%, 240px);
  filter: grayscale(12%) saturate(0.72);
}

.result-highlight::before,
.panel-main::before {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%, transparent 66%, rgba(240, 179, 52, 0.08)),
    url("assets/images/logo-cropped.png");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: auto, min(76%, 260px);
  opacity: 0.28;
}

.panel-row .panel-card::before,
.story-grid .story-card:not(.story-primary)::before,
.page-links-grid .page-link-card::before,
.pathway-grid .pathway-card::before,
.leadership-grid .leader-card::before,
.news-grid .news-card::before,
.alumni-metrics article::before,
.hero-stats article::before {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%, transparent 66%, rgba(240, 179, 52, 0.06));
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  opacity: 0.18;
  filter: none;
}

.hero-stats article::after,
.panel-card::after,
.story-card::after,
.result-card::after,
.pathway-card::after,
.news-card::after,
.contact-card::after,
.page-link-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -80px;
  right: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 179, 52, 0.18), transparent 68%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.hero-stats article:hover,
.panel-card:hover,
.story-card:hover,
.result-highlight:hover,
.result-card:hover,
.pathway-card:hover,
.leader-card:hover,
.news-card:hover,
.contact-card:hover,
.alumni-wrap:hover,
.page-link-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 56, 42, 0.18);
  box-shadow: 0 28px 70px rgba(77, 51, 20, 0.2);
}

.hero-stats article:hover::before,
.panel-card:hover::before,
.story-card:hover::before,
.result-highlight:hover::before,
.result-card:hover::before,
.pathway-card:hover::before,
.leader-card:hover::before,
.news-card:hover::before,
.contact-card:hover::before,
.alumni-wrap:hover::before,
.page-link-card:hover::before {
  opacity: 0.48;
}

.hero-stats article:hover::after,
.panel-card:hover::after,
.story-card:hover::after,
.result-card:hover::after,
.pathway-card:hover::after,
.news-card:hover::after,
.contact-card:hover::after,
.page-link-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.hero-stats strong,
.result-highlight strong,
.alumni-metrics strong {
  display: block;
  font-family: "Outfit", sans-serif;
}

.hero-stats strong {
  font-size: 1.5rem;
}

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

.panel-card {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
}

.panel-card h2,
.panel-card h3,
.story-card h3,
.result-card h3,
.pathway-card h3,
.leader-card h3,
.news-card h3 {
  margin: 0.55rem 0;
  font-family: "Outfit", sans-serif;
}

.panel-main {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(31, 96, 87, 0.12), rgba(31, 96, 87, 0.92)),
    linear-gradient(135deg, rgba(240, 179, 52, 0.28), rgba(167, 56, 42, 0.26));
  color: #fff;
}

.panel-main p,
.panel-main span,
.panel-main h2 {
  color: #fff;
}

.panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.accent {
  background:
    linear-gradient(135deg, rgba(240, 179, 52, 0.3), rgba(255, 250, 242, 0.88));
}

.section {
  padding: 2rem 0 5rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading h2,
.story-primary h2,
.footer h2,
.alumni-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1rem;
}

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

.photo-grid {
  display: grid;
  gap: 1rem;
}

.photo-grid-home {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.photo-grid-split {
  grid-template-columns: 1fr 1fr;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(28, 35, 48, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
  min-height: 260px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-large {
  min-height: 520px;
}

.hero-panel-photo {
  min-height: 230px;
}

.page-link-card {
  display: block;
  padding: 1.55rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(28, 35, 48, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-link-card h3 {
  margin: 0.5rem 0 1rem;
  font-family: "Outfit", sans-serif;
  transition: transform 0.35s ease, color 0.35s ease;
}

.page-link-card span {
  color: var(--red);
  font-weight: 800;
  transition: letter-spacing 0.35s ease, transform 0.35s ease;
}

.page-link-card:hover h3 {
  transform: translateY(-2px);
  color: var(--deep-red);
}

.page-link-card:hover span {
  letter-spacing: 0.03em;
}

.home-contact-card::before,
.home-contact-card::after {
  display: none;
}

.story-card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
}

.story-primary {
  background:
    radial-gradient(circle at top right, rgba(136, 213, 207, 0.24), transparent 26%),
    rgba(255, 250, 242, 0.88);
}

.results-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.result-highlight,
.result-card,
.pathway-card,
.leader-card,
.news-card {
  padding: 1.55rem;
  border-radius: var(--radius-xl);
}

.result-highlight {
  background:
    linear-gradient(180deg, rgba(167, 56, 42, 0.06), rgba(167, 56, 42, 0.9)),
    linear-gradient(135deg, rgba(240, 179, 52, 0.28), rgba(255, 250, 242, 0.2));
  color: #fff;
}

.result-highlight .result-tag,
.result-highlight p,
.result-highlight strong {
  color: #fff;
}

.result-highlight strong {
  font-size: clamp(3.6rem, 8vw, 5rem);
  line-height: 0.95;
  margin-bottom: 0.9rem;
}

.pathway-grid,
.leadership-grid,
.news-grid {
  display: grid;
  gap: 1rem;
}

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

.management-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.45rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(28, 35, 48, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background-color 0.4s ease;
}

.management-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%, transparent 66%, rgba(240, 179, 52, 0.06));
  opacity: 0.18;
  pointer-events: none;
}

.management-card > * {
  position: relative;
  z-index: 1;
}

.management-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 56, 42, 0.18);
  box-shadow: 0 28px 70px rgba(77, 51, 20, 0.2);
}

.profile-photo {
  min-height: 200px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(236, 226, 207, 0.92));
  border: 1px dashed rgba(28, 35, 48, 0.18);
  overflow: hidden;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-photo span {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.management-copy strong {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--red);
  font-size: 0.95rem;
}

.announcement-grid,
.calendar-grid,
.planning-grid,
.document-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

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

.announcement-card,
.calendar-card,
.planning-card,
.document-card {
  padding: 1.45rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(28, 35, 48, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background-color 0.4s ease;
}

.announcement-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.announcement-empty {
  background: #ffffff;
  border-color: rgba(28, 35, 48, 0.07);
  box-shadow: 0 18px 40px rgba(28, 35, 48, 0.06);
}

.announcement-empty::before,
.announcement-empty::after {
  display: none;
}

.announcement-card::before,
.calendar-card::before,
.planning-card::before,
.document-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%, transparent 66%, rgba(240, 179, 52, 0.06));
  opacity: 0.18;
  pointer-events: none;
}

.announcement-card > *,
.calendar-card > *,
.planning-card > *,
.document-card > * {
  position: relative;
  z-index: 1;
}

.announcement-card:hover,
.calendar-card:hover,
.planning-card:hover,
.document-card:hover {
  transform: translateY(-8px);
  border-color: rgba(167, 56, 42, 0.18);
  box-shadow: 0 28px 70px rgba(77, 51, 20, 0.2);
}

.document-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 250, 242, 0.92));
}

.document-card h3,
.announcement-card h3,
.planning-card h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.document-top,
.document-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.document-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(167, 56, 42, 0.12);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-meta,
.document-footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.document-button {
  min-height: 44px;
  padding-inline: 1.1rem;
  box-shadow: none;
}

.document-button:hover {
  box-shadow: 0 14px 30px rgba(28, 35, 48, 0.08);
}

.calendar-card strong {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--red);
  font-family: "Outfit", sans-serif;
  font-size: 1.15rem;
}

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

.pathway-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 250, 242, 0.9));
}

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

.leader-card {
  position: relative;
  overflow: hidden;
}

.leader-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136, 213, 207, 0.35), transparent 70%);
}

.leader-badge {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(167, 56, 42, 0.1);
  color: var(--red);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.alumni-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  padding: 1.7rem;
  border-radius: 40px;
  background:
    radial-gradient(circle at 100% 0, rgba(240, 179, 52, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(31, 96, 87, 0.06), rgba(255, 250, 242, 0.92));
}

.alumni-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.alumni-metrics article {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(28, 35, 48, 0.08);
}

.alumni-metrics strong {
  font-size: 2.2rem;
  margin-bottom: 0.35rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: start;
}

.footer-brand {
  width: 88px;
  margin-bottom: 1rem;
  padding: 0.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(28, 35, 48, 0.08);
  box-shadow: 0 10px 24px rgba(28, 35, 48, 0.08);
}

.footer-brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.contact-card {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
}

.contact-card .button {
  width: 100%;
}

.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-stats article,
  .panel-card,
  .story-card,
  .result-highlight,
  .result-card,
  .pathway-card,
  .leader-card,
  .news-card,
  .contact-card,
  .alumni-wrap,
  .page-link-card,
  .button,
  .page-link-card h3,
  .page-link-card span,
  .reveal,
  .hero-stats article::before,
  .panel-card::before,
  .story-card::before,
  .result-highlight::before,
  .result-card::before,
  .pathway-card::before,
  .leader-card::before,
  .news-card::before,
  .contact-card::before,
  .alumni-wrap::before,
  .page-link-card::before,
  .hero-stats article::after,
  .panel-card::after,
  .story-card::after,
  .result-card::after,
  .pathway-card::after,
  .news-card::after,
  .contact-card::after,
  .page-link-card::after {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .section,
  .page-hero,
  .page-hero-inner {
    width: min(100% - 1.5rem, 1200px);
  }

  .hero-grid,
  .story-grid,
  .alumni-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .pathway-grid,
  .leadership-grid,
  .news-grid,
  .page-links-grid,
  .photo-grid-home,
  .management-grid,
  .announcement-grid,
  .calendar-grid,
  .planning-grid,
  .document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero,
  .section,
  .page-hero,
  .page-hero-inner {
    width: min(100% - 1rem, 1200px);
  }

  .topbar {
    border-radius: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0.85rem;
  }

  .brand {
    max-width: calc(100% - 6rem);
  }

  .brand-mark {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong,
  .brand-text span {
    overflow-wrap: anywhere;
  }

  .menu-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding-top: 0.8rem;
  }

  .nav-links a {
    padding: 0.8rem 0.2rem;
  }

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

  .hero-grid {
    padding-top: 2rem;
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    padding-top: 2rem;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-stats,
  .panel-row,
  .results-grid,
  .pathway-grid,
  .leadership-grid,
  .news-grid,
  .page-links-grid,
  .photo-grid-home,
  .photo-grid-split,
  .management-grid,
  .announcement-grid,
  .calendar-grid,
  .planning-grid,
  .document-grid {
    grid-template-columns: 1fr;
  }

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

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

  .button,
  .button-ghost {
    width: 100%;
  }

  .hero-stats article:hover,
  .panel-card:hover,
  .story-card:hover,
  .result-highlight:hover,
  .result-card:hover,
  .pathway-card:hover,
  .leader-card:hover,
  .news-card:hover,
  .contact-card:hover,
  .alumni-wrap:hover,
  .page-link-card:hover,
  .button:hover {
    transform: none;
  }

  .section {
    padding: 1.3rem 0 3.7rem;
  }

  .panel-main {
    min-height: 250px;
  }

  .story-card,
  .result-highlight,
  .result-card,
  .pathway-card,
  .leader-card,
  .news-card,
  .contact-card,
  .alumni-wrap,
  .panel-card,
  .page-link-card,
  .management-card,
  .announcement-card,
  .calendar-card,
  .planning-card,
  .document-card {
    padding: 1.3rem;
  }

  .announcement-card {
    min-height: 300px;
  }

  .photo-card,
  .photo-card-large {
    min-height: 240px;
  }

  .site-shell::before {
    background-size: min(62vw, 320px);
    opacity: 0.045;
  }

  .hero-stats article::before,
  .panel-card::before,
  .story-card::before,
  .result-highlight::before,
  .result-card::before,
  .pathway-card::before,
  .leader-card::before,
  .news-card::before,
  .contact-card::before,
  .alumni-wrap::before,
  .page-link-card::before {
    background-size: auto, min(68%, 190px);
    background-position: center, center;
  }

  .result-highlight::before,
  .panel-main::before {
    background-size: auto, min(72%, 210px);
  }
}

@media (max-width: 480px) {
  .hero,
  .section,
  .page-hero,
  .page-hero-inner {
    width: min(100% - 0.75rem, 1200px);
  }

  .topbar {
    top: 0.5rem;
    border-radius: 24px;
  }

  .hero {
    padding-top: 0.5rem;
  }

  .eyebrow,
  .mini-label,
  .result-tag,
  .news-card span,
  .panel-card p {
    letter-spacing: 0.13em;
  }

  .hero-copy h1,
  .section-heading h2,
  .story-primary h2,
  .footer h2,
  .alumni-copy h2 {
    line-height: 1.03;
  }

  .hero-stats article {
    padding: 1rem;
  }

  .footer-brand {
    width: 72px;
    border-radius: 18px;
  }

  .site-shell::before {
    background-size: min(72vw, 260px);
    opacity: 0.04;
  }
}
