@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --green: #073d3b;
  --green-deep: #042b2a;
  --gold: #d5a946;
  --cream: #f6f3eb;
  --paper: #ffffff;
  --ink: #142b2b;
  --muted: #667978;
  --line: #dce4e1;
  --shadow: 0 18px 50px rgba(8, 50, 48, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
}
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: #fff;
  background: var(--green-deep);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 92px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 rgba(10, 55, 54, 0.1);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 52px; height: 66px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; color: var(--green); line-height: 1; }
.brand strong { font: 400 25px "DM Serif Display", Georgia, serif; letter-spacing: 0.03em; }
.brand small { margin-top: 7px; font-size: 9px; font-weight: 800; letter-spacing: 0.24em; }
.menu-button { display: none; padding: 8px; border: 0; background: none; cursor: pointer; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px; background: var(--green); }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); font-size: 13px; font-weight: 700; }
.nav a { transition: color 0.2s; }
.nav a:hover, .nav a[aria-current="page"] { color: #a67817; }
.nav-cta { border: 1px solid var(--green); padding: 11px 19px; }
.nav-group { position: relative; }
.nav-group > button { padding: 0; border: 0; color: inherit; background: none; font: inherit; cursor: pointer; }
.nav-group > button span { color: #9b741e; }
.nav-submenu {
  position: absolute;
  top: 28px;
  left: -20px;
  width: 245px;
  padding: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: 0.2s;
}
.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu,
.nav-group.submenu-open .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-submenu a { display: block; padding: 11px 12px; border-bottom: 1px solid #e8eeec; font-size: 12px; }
.nav-submenu a:last-child { border: 0; }

.eyebrow { margin: 0 0 19px; color: #e0be71; font-size: 12px; font-weight: 800; letter-spacing: 0.23em; }
.eyebrow.dark { color: #9b741e; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "DM Serif Display", Georgia, serif; font-weight: 400; line-height: 1.08; }
.button {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding: 17px 23px;
  border: 0;
  color: #172d2b;
  background: var(--gold);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.button span, .text-link span { font-size: 20px; }
.button.light { background: #fff; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.home-hero-stack {
  height: calc(100vh - 92px);
  height: calc(100svh - 92px);
  min-height: 650px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  background: var(--green);
}
.hero { position: relative; height: min(740px, calc(100vh - 92px)); min-height: 590px; overflow: hidden; background: var(--green); }
.home-hero-stack .hero { height: auto; min-height: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-content { width: min(680px, 85%); margin-left: clamp(24px, 10vw, 150px); padding-top: clamp(90px, 13vh, 150px); color: #fff; }
.hero h1 { margin-bottom: 24px; font-size: clamp(48px, 6vw, 80px); letter-spacing: -0.02em; }
.hero-content > p:not(.eyebrow) { max-width: 590px; margin-bottom: 35px; color: #d8e3e1; font-size: 17px; line-height: 1.8; }
.hero-dots { position: absolute; z-index: 3; left: clamp(24px, 10vw, 150px); bottom: 38px; display: flex; gap: 10px; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; background: rgba(4,43,42,0.62); }
.hero-dots button { width: 28px; height: 5px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,0.4); cursor: pointer; }
.hero-dots button.active { background: var(--gold); }
.hero-dots button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); padding: clamp(28px, 4vh, 40px) clamp(24px, 8vw, 120px); color: #fff; background: var(--green); }
.stats div { display: flex; flex-direction: column; align-items: center; border-right: 1px solid rgba(255,255,255,0.18); }
.stats div:last-child { border: 0; }
.stats strong { color: #e2bf70; font: 400 38px "DM Serif Display", Georgia, serif; }
.stats span { margin-top: 7px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; }

.section { padding: 110px clamp(24px, 8vw, 120px); }
.about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.about-image, .content-image { position: relative; }
.about-image > img { width: 100%; height: 540px; object-fit: cover; }
.year-card { position: absolute; right: -25px; bottom: -25px; width: 150px; height: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 8px solid #fff; color: #fff; background: var(--green); }
.year-card span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.year-card strong { color: #e2bf70; font: 400 37px "DM Serif Display", Georgia, serif; }
.about h2, .section-heading h2 { margin-bottom: 27px; font-size: clamp(40px, 4vw, 58px); }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 15px; line-height: 1.9; }
.values {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 76px;
  color: #fff;
  border-top: 1px solid rgba(213, 169, 70, 0.34);
  border-bottom: 1px solid rgba(213, 169, 70, 0.28);
  background:
    radial-gradient(circle at 12% 0%, rgba(213, 169, 70, 0.16), transparent 34%),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
}
.values::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -105px;
  right: -70px;
  width: 390px;
  height: 500px;
  background: url("/images/crest.png") center/contain no-repeat;
  opacity: 0.035;
  pointer-events: none;
}
.values .section-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  margin-bottom: 30px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.values .section-heading h2 { margin-bottom: 0; color: #fff; font-size: clamp(36px, 3.5vw, 52px); }
.values .eyebrow.dark { color: #e2bf70; }
.values .section-heading > p { justify-self: end; max-width: 500px; margin: 0; color: #cbd9d7; line-height: 1.7; }
.section-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: end; margin-bottom: 60px; }
.section-heading > p { color: var(--muted); line-height: 1.8; }
.section-heading.compact { grid-template-columns: 1fr auto; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-grid article {
  position: relative;
  min-height: 198px;
  overflow: hidden;
  padding: 26px 28px 28px;
  border: 1px solid rgba(255,255,255,0.13);
  background: linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045));
  box-shadow: 0 18px 42px rgba(1, 24, 23, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.value-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(213,169,70,0.16));
}
.value-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(226,191,112,0.42);
  background: linear-gradient(145deg, rgba(255,255,255,0.15), rgba(255,255,255,0.07));
}
.value-grid span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #e2bf70;
  border: 1px solid rgba(226,191,112,0.46);
  border-radius: 50%;
  background: rgba(213,169,70,0.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.value-grid h3 { margin: 20px 0 10px; color: #fff; font: 400 28px "DM Serif Display", Georgia, serif; }
.value-grid p { max-width: 390px; margin: 0; color: #c4d3d0; font-size: 13px; line-height: 1.7; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card { background: #fff; box-shadow: 0 15px 45px rgba(12, 52, 51, 0.1); }
.news-image { display: block; height: 235px; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.news-card:hover img { transform: scale(1.04); }
.news-body { padding: 28px 28px 32px; }
.news-body > p { color: #9b741e; font-size: 10px; font-weight: 800; letter-spacing: 0.16em; }
.news-body h3 { min-height: 62px; font: 400 23px/1.35 "DM Serif Display", Georgia, serif; }
.news-body a { color: var(--green); font-size: 12px; font-weight: 800; }
.inner-hero { min-height: 280px; display: flex; align-items: center; padding: 48px clamp(24px, 10vw, 150px); color: #fff; background: linear-gradient(90deg, rgba(4,34,33,0.96), rgba(7,61,59,0.74)), url("/images/campus-main.jpg") center 44%/cover; }
.inner-hero > div { max-width: 800px; }
.inner-hero h1 { margin: 0 0 20px; font-size: clamp(42px, 5vw, 64px); }
.inner-hero > div > p:last-child:not(.eyebrow) { max-width: 680px; margin: 0; color: #d6e4e1; font-size: 17px; line-height: 1.8; }
.content-section { padding: 90px clamp(24px, 10vw, 150px); }
.prose { color: var(--muted); font-size: 15px; line-height: 1.95; }
.prose p { margin-bottom: 22px; }
.prose .lead { color: var(--ink); font: 400 clamp(23px, 2.2vw, 31px)/1.5 "DM Serif Display", Georgia, serif; }
.prose blockquote { margin: 35px 0; padding: 25px 30px; border-left: 4px solid var(--gold); color: var(--green); background: var(--cream); font: 400 23px/1.6 "DM Serif Display", Georgia, serif; }
.signature { color: var(--ink); }
.two-column-story { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr); gap: clamp(48px, 6vw, 90px); align-items: start; }
.content-image { position: sticky; top: 130px; }
.content-image > img { display: block; width: 100%; height: auto; }
.heritage-band { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; color: #fff; background: var(--green); }
.heritage-band h2 { font-size: clamp(40px, 4vw, 58px); }
.prose.light { color: #d0deda; }
.principal-layout { display: grid; grid-template-columns: 300px minmax(0, 720px); justify-content: center; gap: clamp(50px, 8vw, 110px); align-items: start; }
.principal-card { position: sticky; top: 130px; padding: 42px 30px; text-align: center; color: #fff; background: var(--green); }
.principal-card img { width: 100px; height: 133px; margin: 0 auto 30px; object-fit: contain; }
.principal-card p { margin-bottom: 8px; color: #e1bf72; font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.principal-card h2 { font-size: 30px; }
.principal-card span { font-size: 13px; }
.principal-message { max-width: 720px; }
.committee-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; padding-bottom: 45px; }
.committee-intro h2 { font-size: clamp(38px, 4vw, 54px); }
.committee-intro > p { color: var(--muted); line-height: 1.8; }
.committee-grid { padding-top: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; background: #fff; }
.committee-card { padding: 34px; border-top: 3px solid var(--gold); background: var(--cream); }
.committee-card.wide { grid-column: 1/-1; }
.committee-card h2 { margin-bottom: 22px; color: var(--green); font-size: 27px; }
.committee-card p { margin: 10px 0; color: var(--muted); font-size: 14px; }
.member-columns { columns: 3; column-gap: 36px; }
.member-columns p { break-inside: avoid; }
.news-listing { background: #f8f6f0; }
.article-page { max-width: 1120px; margin: 0 auto; }
.article-cover { width: 100%; max-height: 590px; object-fit: cover; }
.article-copy { max-width: 760px; margin: 60px auto 0; }
.article-copy .text-link { margin-top: 35px; }

.full-gallery { display: block; columns: 3 280px; column-gap: 14px; background: #f8f6f0; }
.gallery-item { display: inline-block; width: 100%; margin: 0 0 14px; padding: 0; overflow: hidden; break-inside: avoid; border: 0; background: #e4ebe8; cursor: zoom-in; }
.gallery-item img { width: 100%; height: auto; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; padding: calc(18px + env(safe-area-inset-top)) clamp(18px, 3vw, 42px) calc(18px + env(safe-area-inset-bottom)); color: #fff; background: rgba(1,16,16,0.97); animation: lightbox-in 0.2s ease; }
.lightbox-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 50px; }
.lightbox-counter { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; }
.lightbox-close, .lightbox-nav { display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.35); border-radius: 50%; color: #fff; background: rgba(255,255,255,0.08); cursor: pointer; }
.lightbox-close { width: 48px; height: 48px; font: 300 34px/1 sans-serif; }
.lightbox-close:hover, .lightbox-nav:hover { border-color: var(--gold); background: rgba(213,169,70,0.22); }
.lightbox-close:focus-visible, .lightbox-nav:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.lightbox-stage { position: relative; min-height: 0; display: flex; align-items: center; justify-content: center; padding: 18px clamp(68px, 8vw, 112px); }
.lightbox-image { max-width: 100%; max-height: calc(100dvh - 160px); object-fit: contain; box-shadow: 0 22px 70px rgba(0,0,0,0.35); user-select: none; touch-action: pan-y; }
.lightbox-nav { position: absolute; top: 50%; width: 54px; height: 54px; transform: translateY(-50%); font: 400 25px/1 sans-serif; }
.lightbox-previous { left: 0; }
.lightbox-next { right: 0; }
.lightbox-hint { margin: 8px 0 0; text-align: center; color: rgba(255,255,255,0.62); font-size: 12px; }
@keyframes lightbox-in { from { opacity: 0; } to { opacity: 1; } }

.contact-layout { display: grid; grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.2fr); gap: clamp(55px, 9vw, 130px); align-items: start; }
.contact-layout h2 { font-size: clamp(36px, 4vw, 52px); }
.contact-details { padding: 38px; background: var(--cream); }
.contact-details h2 { font-size: 34px; }
.contact-details p, .contact-details a { color: var(--muted); line-height: 1.8; }
.contact-details hr { margin: 30px 0; border: 0; border-top: 1px solid #d9d6cd; }
.contact-details .contact-note { font-size: 13px; }
.contact-form label { display: block; margin-bottom: 20px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 9px; padding: 14px; border: 1px solid #cad5d2; border-radius: 0; color: var(--ink); background: #fff; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.captcha-box { margin: 4px 0 24px; padding: 18px 20px 20px; border: 1px solid #cad5d2; background: var(--cream); }
.captcha-box legend { padding: 0 8px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: 0.06em; }
.captcha-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: end; }
.captcha-row label { margin: 0; }
.captcha-row strong { color: var(--green); font-size: 17px; letter-spacing: 0.03em; }
.captcha-row input { max-width: 180px; }
.captcha-refresh { margin-bottom: 1px; padding: 14px 16px; border: 1px solid var(--green); color: var(--green); background: #fff; font-size: 12px; font-weight: 800; cursor: pointer; }
.captcha-refresh:hover { color: #fff; background: var(--green); }
.contact-form button:disabled { cursor: wait; opacity: 0.7; }
.spam-trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { min-height: 22px; margin-top: 18px; color: var(--muted); font-size: 13px; }
.form-note.success { color: #176b50; }
.form-note.error { color: #a53030; }

footer { padding: 70px clamp(24px, 8vw, 120px) 26px; color: #cbd9d7; background: var(--green-deep); }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; padding-bottom: 55px; }
.footer-brand { display: flex; align-items: flex-start; gap: 18px; color: #fff; }
.footer-brand img { width: 58px; height: 75px; object-fit: contain; }
.footer-brand strong { font: 400 22px "DM Serif Display", Georgia, serif; }
.footer-brand p { margin-top: 8px; color: #92aaa7; font-size: 12px; }
footer h3 { color: #e2bf70; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
footer a, footer p { display: block; margin: 12px 0; color: #aebfbc; font-size: 13px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 11px; }
.footer-bottom a { margin: 0; }

@media (max-width: 950px) {
  .menu-button { display: block; }
  .nav { position: absolute; top: 92px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 24px; background: #fff; box-shadow: 0 18px 28px rgba(0,0,0,0.1); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 8px; border-bottom: 1px solid #e5eceb; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .nav-group > button { display: block; width: 100%; padding: 14px 8px; text-align: left; border-bottom: 1px solid #e5eceb; }
  .nav-submenu { position: static; display: none; width: auto; padding: 0 0 0 15px; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-group.submenu-open .nav-submenu { display: block; }
  .nav-submenu a { font-size: 11px; }
  .home-hero-stack { height: auto; min-height: 0; }
  .home-hero-stack .hero { height: min(740px, calc(100vh - 92px)); min-height: 590px; }
  .about { grid-template-columns: 1fr; }
  .about-copy { max-width: 700px; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .values { padding-top: 64px; padding-bottom: 68px; }
  .values .section-heading { grid-template-columns: 1fr; gap: 14px; margin-bottom: 26px; padding-bottom: 22px; }
  .values .section-heading > p { justify-self: start; max-width: 650px; }
  .value-grid { gap: 14px; }
  .value-grid article { padding: 24px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .two-column-story, .heritage-band, .committee-intro, .contact-layout { grid-template-columns: 1fr; }
  .content-image { position: relative; top: auto; }
  .principal-layout { grid-template-columns: 240px minmax(0,1fr); gap: 45px; }
  .full-gallery { columns: 2 240px; }
  .member-columns { columns: 2; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2; }
}

@media (min-width: 651px) {
  .hero-dots { right: clamp(24px, 5vw, 76px); bottom: clamp(24px, 4vh, 38px); left: auto; }
}

@media (max-width: 650px) {
  .site-header { height: 78px; }
  .brand img { width: 42px; height: 54px; }
  .brand strong { font-size: 21px; }
  .nav { top: 78px; }
  .home-hero-stack { height: auto; min-height: 0; display: block; overflow: visible; }
  .hero, .home-hero-stack .hero { height: 650px; min-height: 0; }
  .hero-slide { background-position: 63% center; }
  .hero-content { width: auto; margin: 0 24px; padding-top: 90px; }
  .hero h1 { font-size: 46px; }
  .hero-content > p:not(.eyebrow) { font-size: 15px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 0; padding: 34px 18px; }
  .stats div:nth-child(2) { border: 0; }
  .stats strong { font-size: 31px; }
  .section { padding: 78px 24px; }
  .about-image > img { height: 370px; }
  .year-card { right: -5px; }
  .two-column-story .year-card { bottom: -18px; width: 112px; height: 100px; border-width: 6px; }
  .two-column-story .year-card strong { font-size: 30px; }
  .about h2, .section-heading h2 { font-size: 39px; }
  .value-grid, .news-grid { grid-template-columns: 1fr; }
  .value-grid article { min-height: 230px; }
  .values { padding: 38px 20px 42px; }
  .values::after { top: -60px; right: -90px; width: 250px; height: 320px; }
  .values .section-heading { gap: 8px; margin-bottom: 18px; padding-bottom: 16px; }
  .values .eyebrow { margin-bottom: 12px; font-size: 10px; }
  .values .section-heading h2 { font-size: 33px; }
  .values .section-heading > p { font-size: 13px; line-height: 1.55; }
  .values .value-grid { gap: 10px; }
  .values .value-grid article {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 0;
    padding: 18px 20px 20px;
    column-gap: 14px;
    row-gap: 4px;
  }
  .values .value-grid span { grid-row: 1 / span 2; width: 32px; height: 32px; font-size: 9px; }
  .values .value-grid h3 { grid-column: 2; margin: 0; font-size: 24px; line-height: 1.15; }
  .values .value-grid p { grid-column: 2; font-size: 12px; line-height: 1.55; }
  .section-heading.compact { grid-template-columns: 1fr; }
  .inner-hero { min-height: 250px; padding: 40px 24px; }
  .inner-hero h1 { font-size: 40px; }
  .inner-hero > div > p:last-child:not(.eyebrow) { font-size: 15px; }
  .content-section { padding: 68px 24px; }
  .heritage-band { gap: 25px; }
  .principal-layout { grid-template-columns: 1fr; }
  .principal-card { position: relative; top: auto; }
  .committee-grid { grid-template-columns: 1fr; }
  .committee-card.wide { grid-column: auto; }
  .member-columns, .full-gallery { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .captcha-row { grid-template-columns: 1fr; align-items: start; }
  .captcha-row input { max-width: none; }
  .captcha-refresh { justify-self: start; }
  .article-copy { margin-top: 35px; }
  .lightbox { padding-right: 14px; padding-left: 14px; }
  .lightbox-stage { padding: 10px 0 78px; }
  .lightbox-image { max-height: calc(100dvh - 190px); }
  .lightbox-nav { top: auto; bottom: 8px; transform: none; }
  .lightbox-previous { left: calc(50% - 68px); }
  .lightbox-next { right: calc(50% - 68px); }
  .lightbox-hint { font-size: 10px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide, .news-image img, .gallery-item img { transition: none; }
  .lightbox { animation: none; }
}
