
:root {
  --green: #5b2166;
  --green-dark: #2d1238;
  --green-soft: #783a82;
  --gold: #8a4f1d;
  --gold-light: #e1bd78;
  --cream: #fff9f2;
  --cream-deep: #f4e7f2;
  --white: #ffffff;
  --ink: #251c29;
  --muted: #625864;
  --line: rgba(91, 33, 102, .18);
  --shadow: 0 22px 70px rgba(45, 18, 56, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.main-site {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.main-site img { max-width: 100%; height: auto; }
.main-site a { color: inherit; }
.main-site h1,
.main-site h2,
.main-site h3 {
  margin-top: 0;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
}

.main-site h1 { font-size: clamp(3.35rem, 7.3vw, 7rem); }
.main-site h2 { font-size: clamp(2.35rem, 4.7vw, 4.75rem); }
.main-site h3 { font-size: clamp(1.45rem, 2.2vw, 2.2rem); }
.main-site p { margin: 0 0 1.15rem; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--green-dark);
  color: var(--white) !important;
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 242, .97);
  backdrop-filter: blur(12px);
}
.site-header .logo {
  display: flex;
  min-width: 250px;
  align-items: center;
  gap: 11px;
  color: var(--green);
  text-decoration: none;
}
.site-header .logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: contain;
}
.site-header .name {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}
.site-header .tag {
  display: block;
  margin-top: 5px;
  color: var(--gold);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: 2.2px;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 24px);
  font-size: clamp(.76rem, .92vw, .88rem);
  font-weight: 800;
}
.site-header nav a {
  position: relative;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}
.site-header nav a:not(.give)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .18s ease;
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after,
.site-header nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-header nav .give {
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--gold-light);
  color: var(--green-dark) !important;
}

.main-site a:focus-visible,
.main-site button:focus-visible,
.main-site input:focus-visible,
.main-site textarea:focus-visible,
.main-site select:focus-visible {
  outline: 3px solid #b15b22;
  outline-offset: 4px;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
}
.home-hero > picture,
.home-hero > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-hero > picture img { object-fit: cover; object-position: center 42%; }
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37, 12, 47, .97) 0%, rgba(58, 18, 70, .88) 46%, rgba(58, 18, 70, .34) 78%),
    linear-gradient(0deg, rgba(37, 12, 47, .76), transparent 56%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding: 92px 0 84px;
}
.eyebrow {
  margin-bottom: 20px;
  color: #f0c981;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.home-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -.035em;
}
.home-hero h1 span,
.home-hero h2 span { color: #f0c981; }
.hero-lead {
  max-width: 690px;
  color: var(--white);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.7;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button.gold {
  border-color: #f0c981;
  background: #f0c981;
  color: var(--green-dark);
}
.button.light {
  border-color: rgba(255,255,255,.78);
  color: var(--white);
}
.button.green {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.button.outline {
  border-color: var(--green);
  color: var(--green);
}
body.main-site .button.campus-button {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-color: #f0c981;
  background: #f0c981;
  color: #102b1f;
  box-shadow: 0 15px 38px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.2) inset;
}
body.main-site .button.campus-button:hover,
body.main-site .button.campus-button:focus-visible {
  border-color: #fff1cd;
  background: #fff1cd;
  color: #102b1f;
  box-shadow: 0 20px 48px rgba(0,0,0,.38), 0 0 0 1px rgba(255,255,255,.45) inset;
}
body.main-site .button.campus-button.outline {
  border-color: #183f2b;
  background: #fff;
  color: #183f2b;
}
body.main-site .button.campus-button.outline:hover,
body.main-site .button.campus-button.outline:focus-visible {
  background: #183f2b;
  color: #fff;
}

.campus-gateway {
  min-height: 760px;
  border-bottom: 8px solid #c99b5b;
  background: #102b1f;
}
.campus-gateway-hit-area {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.campus-gateway-hit-area:focus-visible {
  outline: 5px solid #f0c981;
  outline-offset: -12px;
}
.campus-gateway > picture img {
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.campus-gateway:hover > picture img,
.campus-gateway:focus-within > picture img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.018);
}
.campus-gateway::after {
  background:
    linear-gradient(90deg, rgba(8,31,22,.97) 0%, rgba(15,59,39,.9) 48%, rgba(15,59,39,.3) 80%),
    linear-gradient(0deg, rgba(8,31,22,.72), transparent 58%);
}
.campus-gateway .hero-content {
  max-width: 850px;
  pointer-events: none;
}
.campus-gateway .hero-content .button-row,
.campus-gateway .hero-content .button-row a {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}
.campus-gateway .campus-status {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 999px;
  background: rgba(8,31,22,.76);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.campus-gateway .campus-summary {
  max-width: 760px;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
}
.campus-gateway .campus-entry {
  min-height: 76px;
  padding: 20px 32px;
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: #102b1f;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  box-shadow: 0 16px 42px rgba(0,0,0,.28);
}
.campus-gateway .campus-give {
  min-height: 66px;
  padding: 17px 28px;
  border-color: var(--white);
  background: rgba(255,255,255,.96);
  color: #102b1f;
  font-size: 1.03rem;
}
.campus-gateway h2 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.35rem, 7.3vw, 7rem);
  letter-spacing: -.035em;
}

.main-site-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0 96px;
  border-top: 1px solid rgba(225,189,120,.5);
  border-bottom: 1px solid rgba(91,33,102,.12);
  background:
    radial-gradient(circle at 9% 16%, rgba(240,201,129,.42), transparent 31%),
    radial-gradient(circle at 88% 18%, rgba(141,61,155,.26), transparent 35%),
    radial-gradient(circle at 72% 100%, rgba(225,189,120,.24), transparent 32%),
    linear-gradient(135deg, #fffaf3 0%, #f6e8f5 54%, #fff8ec 100%);
}
.main-site-intro::before,
.main-site-intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}
.main-site-intro::before {
  top: -180px;
  right: -110px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(141,61,155,.3), rgba(141,61,155,0) 68%);
}
.main-site-intro::after {
  bottom: -190px;
  left: 18%;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(240,201,129,.38), rgba(225,189,120,0) 70%);
}
.intro-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 84px);
}
.intro-logo {
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  border: 1px solid rgba(91,33,102,.18);
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  box-shadow: 0 26px 80px rgba(45,18,56,.2), 0 0 0 10px rgba(255,255,255,.44);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.main-site-intro:hover .intro-logo { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 34px 90px rgba(45,18,56,.24), 0 0 0 12px rgba(255,255,255,.5); }
.intro-logo img { width: 184px; height: 184px; object-fit: contain; }
.main-site-intro .kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}
.main-site-intro h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.5vw, 6.25rem);
}
.main-site-intro h1 span { color: var(--gold); }
.main-site-intro p { max-width: 850px; color: var(--muted); font-size: 1.18rem; }
.main-site-intro .intro-motto { margin-bottom: 0; color: var(--green); font-weight: 900; letter-spacing: .04em; }

.gap-section { background: linear-gradient(135deg, #f6eaf5, #fff9f2); }
.portrait-frame img { object-position: center 34%; }
.verse-quote {
  margin: 28px 0 0;
  padding: 24px 26px;
  border-left: 5px solid var(--gold);
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 34px rgba(45,18,56,.09);
}
.verse-quote p { margin-bottom: 8px; color: var(--green); font-family: "Playfair Display", Georgia, serif; font-size: 1.35rem; font-weight: 800; }
.verse-quote cite { color: var(--gold); font-style: normal; font-weight: 900; }
.scripture-credit {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.55;
}

.team-photo {
  display: block;
  overflow: hidden;
  margin: 42px auto 0;
  border: 2px solid rgba(240,201,129,.52);
  border-radius: 20px;
  background: #2d1238;
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
}
.team-photo img { display: block; width: 100%; height: auto; }

.origin-collage { display: grid; grid-template-columns: .8fr 1.2fr; gap: 14px; min-height: 520px; }
.origin-collage .archive-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(91,33,102,.2);
  border-radius: 18px;
  background: #2c2430;
  box-shadow: var(--shadow);
}
.origin-collage picture { display: block; width: 100%; height: 100%; }
.origin-collage img { display: block; width: 100%; height: 100%; object-fit: cover; }
.archive-card img { filter: grayscale(1) sepia(.18) contrast(1.06) brightness(.88); }
.archive-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 52px 17px 16px;
  background: linear-gradient(transparent, rgba(34,18,39,.94));
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.45;
}
.archive-card figcaption span {
  display: block;
  margin-bottom: 5px;
  color: #f0c981;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.participation-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: center; gap: 60px; }
.participation-grid .section-heading { margin-bottom: 0; }
.participation-callout {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(240,201,129,.55);
  border-radius: 24px;
  background: radial-gradient(circle at 92% 8%, rgba(240,201,129,.22), transparent 34%), linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.participation-callout::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 160px;
  height: 160px;
  border: 28px solid rgba(240,201,129,.1);
  border-radius: 50%;
}
.participation-callout > span {
  display: block;
  margin-bottom: 18px;
  color: #f0c981;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.participation-callout strong {
  display: block;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.3rem, 4.8vw, 4.65rem);
  line-height: 1.02;
}
.participation-callout p {
  position: relative;
  z-index: 1;
  margin: 25px 0 0;
  color: rgba(255,255,255,.84);
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(154, 101, 31, .35);
  border-radius: 16px;
  background: var(--cream);
  box-shadow: var(--shadow);
}
.quick-card {
  display: block;
  min-height: 132px;
  padding: 26px;
  border-right: 1px solid var(--line);
  color: var(--green);
  text-decoration: none;
}
.quick-card:last-child { border-right: 0; }
.quick-card span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.quick-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}
.quick-card small { color: var(--muted); }

.home-section { padding: 108px 0; }
.home-section.cream { background: var(--cream); }
.home-section.green { background: var(--green-dark); color: var(--white); }
.home-section.green h2,
.home-section.green h3 { color: var(--white); }
.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}
.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-heading .kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.green .section-heading .kicker { color: #f0c981; }
.section-heading p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.12rem;
}
.section-heading.center p { margin-right: auto; margin-left: auto; }
.green .section-heading p { color: rgba(255,255,255,.86); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(45,18,56,.08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  border-color: rgba(91,33,102,.34);
  box-shadow: 0 22px 56px rgba(45,18,56,.13);
  transform: translateY(-4px);
}
.service-card .number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}
.service-card p { margin-bottom: 0; color: var(--muted); }

.mission-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 64px;
}
.mission-panel blockquote {
  margin: 0;
  padding: 38px;
  border-left: 6px solid var(--gold);
  border-radius: 0 15px 15px 0;
  background: var(--white);
  box-shadow: var(--shadow);
}
.mission-panel blockquote p {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
}
.mission-panel blockquote cite { color: var(--gold); font-style: normal; font-weight: 900; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.stat-card {
  padding: 28px;
  border: 1px solid rgba(240, 201, 129, .36);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  text-align: center;
}
.stat-card strong {
  display: block;
  color: #f0c981;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}
.stat-card span { display: block; margin-top: 10px; font-weight: 700; }
.stat-note {
  margin-top: 20px;
  color: rgba(255,255,255,.76);
  font-size: .86rem;
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.photo-frame {
  overflow: hidden;
  border-radius: 20px;
  background: var(--green-dark);
  box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.photo-frame img {
  display: block;
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.photo-frame:hover { box-shadow: 0 30px 86px rgba(45,18,56,.22); transform: translateY(-5px); }
.photo-frame:hover img { filter: saturate(1.04) contrast(1.025); transform: scale(1.018); }
.service-photo img { object-position: center 36%; }
.detail-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}
.detail-list li {
  position: relative;
  padding-left: 30px;
}
.detail-list li::before {
  content: "";
  position: absolute;
  top: .58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-light);
}

.needs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.need-card {
  padding: 22px;
  border: 1px solid rgba(154,101,31,.28);
  border-radius: 12px;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
  text-align: center;
}

.work-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 250px 250px;
  gap: 14px;
}
.work-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--green-dark);
}
.work-gallery figure:first-child { grid-row: 1 / 3; }
.work-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(transparent, rgba(37,12,47,.9));
  color: var(--white);
  font-size: .86rem;
  font-weight: 700;
}

.news-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.news-panel img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.news-copy { padding: clamp(34px, 6vw, 76px); }
.news-copy .latest {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.campus-bridge {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 3px solid #e7bb69;
  border-radius: 28px;
  background: #102b1f;
  box-shadow: 0 32px 90px rgba(16,43,31,.28), 0 0 0 8px rgba(231,187,105,.12);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.campus-bridge-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(91,33,102,.12), transparent 27%),
    radial-gradient(circle at 92% 82%, rgba(225,189,120,.2), transparent 30%),
    #fff9f2;
}
.campus-bridge img {
  display: block;
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  opacity: .62;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .35s ease, opacity .35s ease;
}
.campus-bridge::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 28% 48%, rgba(231,187,105,.2), transparent 32%),
    linear-gradient(90deg, rgba(8,31,22,.98) 0%, rgba(15,59,39,.86) 52%, rgba(15,59,39,.42) 100%),
    linear-gradient(0deg, rgba(8,31,22,.68), transparent 58%);
}
.campus-bridge:hover,
.campus-bridge:focus-within { box-shadow: 0 38px 110px rgba(16,43,31,.36), 0 0 0 10px rgba(231,187,105,.18); transform: translateY(-6px); }
.campus-bridge:hover img,
.campus-bridge:focus-within img { filter: saturate(1.08) contrast(1.04); opacity: .72; transform: scale(1.022); }
.campus-bridge-hit-area {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}
.campus-bridge-hit-area:focus-visible { outline: 5px solid #fff1cd; outline-offset: -12px; }
.campus-copy {
  position: absolute;
  top: 50%;
  left: clamp(28px, 7vw, 78px);
  z-index: 2;
  width: min(690px, calc(100% - 56px));
  transform: translateY(-50%);
  color: var(--white);
  pointer-events: none;
}
.campus-copy h2 { color: var(--white); }
.campus-copy .eyebrow { margin-bottom: 12px; }
.campus-copy p { max-width: 620px; color: rgba(255,255,255,.94); font-size: 1.08rem; font-weight: 600; }
.campus-copy .button-row,
.campus-copy .button { position: relative; z-index: 3; pointer-events: auto; }
.campus-copy .button {
  min-height: 64px;
  padding: 18px 30px;
  font-size: 1.12rem;
}
.campus-copy .button span { display: inline-block; margin-left: 10px; font-size: 1.35em; line-height: .7; transition: transform .2s ease; }
.campus-copy .button:hover span,
.campus-copy .button:focus-visible span { transform: translateX(5px); }
.campus-button::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 2px solid #fff1cd;
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
}
.campus-attention-once .campus-button::after { animation: campus-attention 1.15s cubic-bezier(.2,.7,.2,1) .35s 1 both; }

@keyframes campus-attention {
  0% { opacity: 0; transform: scale(.88); }
  38% { opacity: .88; }
  100% { opacity: 0; transform: scale(1.12); }
}

.trust-band {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}
.trust-band > div {
  padding: 24px;
  background: var(--cream);
}
.trust-band strong { display: block; color: var(--green); }
.trust-band span { color: var(--muted); font-size: .88rem; }

.site-footer {
  padding: 70px 0 32px;
  background: var(--green-dark);
  color: rgba(255,255,255,.9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 44px;
}
.footer-grid h2,
.footer-grid h3 { color: var(--white); }
.footer-grid h2 { font-size: 2rem; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--white); }
body.main-site .footer-links a[href="/campus-home"] {
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid #c99b5b;
  border-radius: 5px;
  background: #183f2b;
  color: #fff;
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.7);
  font-size: .84rem;
}

.js-effects .reveal-ready {
  opacity: 0;
  transform: translateY(28px);
}
.js-effects .reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .68s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms), transform .68s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
}

.sub-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 102px 0 80px;
  background:
    radial-gradient(circle at 82% 18%, rgba(240,201,129,.25), transparent 27%),
    radial-gradient(circle at 12% 110%, rgba(141,61,155,.55), transparent 38%),
    linear-gradient(135deg, var(--green-dark), var(--green-soft));
  color: var(--white);
}
.sub-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -150px;
  z-index: -1;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(240,201,129,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(240,201,129,.045), 0 0 0 78px rgba(240,201,129,.03);
}
.sub-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 6rem);
}
.sub-hero p { max-width: 740px; font-size: 1.18rem; }
.sub-hero .eyebrow { margin-bottom: 14px; }

.page-section { padding: 86px 0; }
.page-section.cream { background: var(--cream); }
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, .7fr);
  gap: 54px;
  align-items: start;
}
.content-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(45,18,56,.07);
}
.main-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.main-board-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(91,33,102,.2);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(45,18,56,.1);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.main-board-card:hover {
  border-color: rgba(138,79,29,.5);
  box-shadow: 0 26px 68px rgba(45,18,56,.16);
  transform: translateY(-4px);
}
.main-board-card:last-child { grid-column: 2; }
.main-board-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid rgba(91,33,102,.14);
  background: var(--cream-deep);
}
.main-board-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-board-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}
.main-board-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
}
.main-board-role {
  margin: 9px 0 17px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.main-board-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
}
.main-board-copy strong { color: var(--green); }
.board-team-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  align-items: center;
  gap: 44px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 22px;
  background: var(--green-dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.board-team-banner h2 { color: #fff; }
.board-team-banner p { color: rgba(255,255,255,.86); }
.board-team-banner img {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 1523 / 1033;
  object-fit: contain;
  border: 2px solid rgba(240,201,129,.5);
  border-radius: 16px;
}
.board-team-banner picture { display: block; min-width: 0; width: 100%; }
.button-row.centered { justify-content: center; }
.notice {
  padding: 22px 24px;
  border-left: 5px solid var(--gold);
  background: var(--cream-deep);
  color: var(--green-dark);
}

.newsletter-years { display: grid; gap: 44px; }
.newsletter-year h2 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-deep);
  font-size: 2.25rem;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.newsletter-card {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--green);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(45,18,56,.06);
}
.newsletter-card:hover { border-color: var(--gold-light); transform: translateY(-2px); }
.newsletter-card small {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.newsletter-card strong {
  display: block;
  margin: 14px 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}
.newsletter-card span { color: var(--muted); font-size: .86rem; }
.newsletter-card.missing-archive {
  border-style: dashed;
  background: var(--cream);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--cream);
}
.photo-grid figure:first-child { grid-column: span 2; }
.photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-grid figcaption { padding: 12px 14px; color: var(--muted); font-size: .82rem; }

.upload-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.upload-form label { display: grid; gap: 7px; color: var(--green); font-weight: 800; }
.upload-form input,
.upload-form textarea,
.upload-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #738078;
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.upload-form textarea { min-height: 132px; resize: vertical; }
.upload-form button { cursor: pointer; }
.field-help { color: var(--muted); font-size: .84rem; font-weight: 600; }

@media (max-width: 1000px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    grid-template-rows: auto auto;
    min-height: 76px;
    padding: 10px 16px;
    column-gap: 12px;
  }
  .site-header .logo { min-width: 0; overflow: hidden; }
  .site-header .logo img { width: 48px; height: 48px; flex: 0 0 48px; }
  .site-header .name,
  .site-header .tag { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .site-header .name { font-size: clamp(.95rem, 4.5vw, 1.2rem); }
  .site-header .tag { font-size: clamp(.44rem, 2.2vw, .62rem); }
  .site-header nav { display: none; }
  .quick-grid,
  .service-grid,
  .stat-grid,
  .needs-grid { grid-template-columns: 1fr 1fr; }
  .quick-card:nth-child(2) { border-right: 0; }
  .quick-card:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .split-section,
  .news-panel,
  .content-grid,
  .mission-panel,
  .participation-grid,
  .board-team-banner { grid-template-columns: 1fr; }
  .intro-grid { grid-template-columns: 170px minmax(0, 1fr); }
  .intro-logo { width: 170px; height: 170px; }
  .intro-logo img { width: 142px; height: 142px; }
  .participation-art { width: min(560px, 76vw); margin: 20px auto 0; }
  .main-board-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .main-board-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); justify-self: center; }
  .work-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 340px 220px 220px; }
  .work-gallery figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .newsletter-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .home-hero { min-height: 700px; }
  .home-hero::after {
    background: linear-gradient(0deg, rgba(37,12,47,.98) 0%, rgba(48,15,59,.82) 72%, rgba(48,15,59,.48) 100%);
  }
  .campus-gateway { min-height: 760px; }
  .campus-gateway::after { background: linear-gradient(0deg, rgba(8,31,22,.98) 0%, rgba(15,59,39,.84) 72%, rgba(15,59,39,.48) 100%); }
  .campus-gateway .campus-status { align-items: center; border-radius: 10px; line-height: 1.35; }
  .hero-content { padding: 84px 0 74px; }
  .button-row { display: grid; }
  .button { width: 100%; }
  .quick-strip { margin-top: 0; }
  .main-site-intro { padding: 68px 0 74px; }
  .intro-grid { grid-template-columns: 1fr; text-align: center; }
  .intro-logo { width: 176px; height: 176px; margin: 0 auto; }
  .intro-logo img { width: 148px; height: 148px; }
  .main-site-intro p { margin-right: auto; margin-left: auto; }
  .quick-grid,
  .service-grid,
  .stat-grid,
  .needs-grid,
  .newsletter-grid,
  .photo-grid,
  .trust-band,
  .footer-grid,
  .form-row { grid-template-columns: 1fr; }
  .quick-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-card:last-child { grid-column: auto; border-bottom: 0; }
  .home-section { padding: 76px 0; }
  .photo-frame img { min-height: 340px; }
  .origin-collage { grid-template-columns: 1fr; min-height: 0; }
  .origin-collage .archive-card { min-height: 330px; }
  .main-board-grid { grid-template-columns: 1fr; }
  .main-board-card:last-child { grid-column: auto; width: 100%; }
  .work-gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(5, 270px); }
  .work-gallery figure:first-child { grid-column: auto; }
  .news-panel img { min-height: 300px; }
  .campus-bridge img { min-height: 590px; }
  .campus-copy { top: auto; bottom: 34px; transform: none; }
  .trust-band > div { padding: 20px; }
  .photo-grid figure:first-child { grid-column: auto; }
  .footer-grid > div:first-child { grid-column: auto; }
  .sub-hero { padding: 76px 0 62px; }
  .page-section { padding: 66px 0; }
  .content-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .js-effects .reveal-ready { opacity: 1 !important; transform: none !important; }
  .main-site-intro:hover .intro-logo,
  .photo-frame:hover,
  .photo-frame:hover img,
  .campus-bridge:hover,
  .campus-bridge:focus-within,
  .campus-bridge:hover img,
  .campus-bridge:focus-within img,
  .service-card:hover,
  .main-board-card:hover { transform: none !important; }
}
