:root {
    --green-950: #072f20;
    --green-900: #0b3f2b;
    --green-800: #0f5132;
    --green-700: #176b43;
    --green-100: #dff2e7;
    --green-50: #f2f9f5;
    --gold: #e5ad3d;
    --gold-light: #f6d994;
    --ink: #17221c;
    --muted: #65736b;
    --line: #dfe7e2;
    --cream: #fbfaf5;
    --white: #ffffff;
    --danger: #973c37;
    --success: #176b43;
    --shadow-sm: 0 8px 24px rgba(8, 47, 32, .08);
    --shadow-lg: 0 22px 60px rgba(8, 47, 32, .17);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --font-heading: "Libre Franklin", Arial, sans-serif;
    --font-body: "DM Sans", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.14;
    letter-spacing: -.035em;
}

h1 {
    font-size: clamp(2.65rem, 6vw, 5.6rem);
}

h2 {
    margin-bottom: 1.25rem;
    font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
    font-size: 1.35rem;
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: .7rem 1rem;
    color: var(--white);
    background: var(--green-950);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-block;
    margin-bottom: .8rem;
    color: var(--green-700);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: var(--gold-light);
}

.lead {
    color: #36443c;
    font-size: 1.16rem;
    line-height: 1.7;
}

.section {
    padding: 105px 0;
}

.section--compact {
    padding: 72px 0;
}

.section--tint {
    background: var(--green-50);
}

.section--dark {
    color: var(--white);
    background: var(--green-950);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading p {
    max-width: 650px;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading--center p {
    margin-inline: auto;
}

.section-heading--with-action {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
}

.section-heading--with-action > div {
    max-width: 750px;
}

.section-heading--light h2,
.section-heading--light p {
    color: var(--white);
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: .75rem 1.35rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 700;
    line-height: 1.2;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.button--primary {
    color: var(--green-950);
    background: var(--gold);
}

.button--primary:hover {
    background: #f0bd55;
}

.button--secondary {
    color: var(--green-800);
    border-color: var(--green-800);
    background: transparent;
}

.button--secondary:hover {
    color: var(--white);
    background: var(--green-800);
}

.button--glass {
    color: var(--white);
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
}

.button--glass:hover {
    background: rgba(255, 255, 255, .19);
}

.button--light {
    color: var(--green-950);
    background: var(--white);
}

.button--outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .45);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--green-700);
    font-weight: 700;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.affiliation-bar {
    color: var(--white);
    background: var(--green-950);
    font-size: .82rem;
}

.affiliation-bar__inner {
    display: flex;
    min-height: 37px;
    align-items: center;
    gap: .7rem;
}

.affiliation-bar__divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold);
}

.affiliation-bar a {
    margin-left: auto;
    color: var(--gold-light);
    font-weight: 700;
}

.site-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid rgba(11, 63, 43, .08);
    background: rgba(255, 255, 255, .98);
}

.site-header.is-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 8px 24px rgba(8, 47, 32, .08);
}

.site-header__inner {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand img {
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    object-fit: contain;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand__text strong {
    color: var(--green-900);
    font-family: var(--font-heading);
    font-size: .98rem;
    letter-spacing: -.02em;
}

.brand__text span {
    margin-top: 4px;
    color: var(--muted);
    font-size: .78rem;
}

.primary-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.primary-nav a {
    display: block;
    padding: .75rem .72rem;
    border-radius: 7px;
    color: #3d4a43;
    font-size: .91rem;
    font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: var(--green-800);
    background: var(--green-50);
}

.primary-nav a[aria-current="page"] {
    box-shadow: inset 0 -2px 0 var(--gold);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
    display: block;
    width: 21px;
    height: 2px;
    margin: auto;
    background: var(--green-900);
    content: "";
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle__bars {
    position: relative;
}

.menu-toggle__bars::before {
    position: absolute;
    top: -7px;
}

.menu-toggle__bars::after {
    position: absolute;
    top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
    top: 0;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    min-height: min(780px, calc(100vh - 129px));
    overflow: hidden;
    color: var(--white);
    background: var(--green-950);
}

.hero__image,
.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    background: linear-gradient(90deg, rgba(7, 47, 32, .92) 0%, rgba(7, 47, 32, .67) 48%, rgba(7, 47, 32, .15) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: clamp(90px, 12vh, 140px);
    padding-bottom: 190px;
}

.hero__kicker {
    display: inline-flex;
    padding: .42rem .75rem;
    margin-bottom: 1.3rem;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(255, 255, 255, .08);
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 800px;
    margin-bottom: 1.35rem;
    color: var(--white);
}

.hero__content > p {
    max-width: 650px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .87);
    font-size: 1.18rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__facts {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, .2);
    background: rgba(7, 47, 32, .75);
    backdrop-filter: blur(12px);
}

.hero__facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero__facts-grid > div {
    padding: 24px 26px;
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.hero__facts-grid > div:first-child {
    padding-left: 0;
}

.hero__facts-grid > div:last-child {
    border-right: 0;
}

.hero__facts strong,
.hero__facts span {
    display: block;
}

.hero__facts strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.hero__facts span {
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    align-items: center;
    gap: clamp(45px, 7vw, 90px);
}

.split-layout--reverse .split-layout__content {
    order: 2;
}

.split-layout--reverse .split-layout__media {
    order: 1;
}

.split-layout__content h2 {
    max-width: 630px;
}

.image-frame {
    position: relative;
    padding: 14px 14px 0 0;
}

.image-frame::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 72%;
    height: 78%;
    border-radius: var(--radius-lg);
    background: var(--green-100);
    content: "";
}

.image-frame img {
    position: relative;
    width: 100%;
    min-height: 480px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.image-frame__label {
    position: absolute;
    right: -18px;
    bottom: -30px;
    display: flex;
    width: 210px;
    padding: 20px 24px;
    flex-direction: column;
    border-radius: var(--radius-md);
    color: var(--white);
    background: var(--green-800);
    box-shadow: var(--shadow-lg);
}

.image-frame__label strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.45rem;
}

.image-frame__label span {
    font-size: .84rem;
}

.image-frame--simple {
    padding: 0;
}

.image-frame--simple::before {
    display: none;
}

.image-frame--simple img {
    min-height: 430px;
}

.feature-list {
    display: grid;
    margin: 30px 0;
    gap: 15px;
}

.feature-list > div {
    display: flex;
    padding-bottom: 15px;
    align-items: start;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.feature-list__number {
    color: var(--green-700);
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
}

.feature-list strong,
.feature-list div span {
    display: block;
}

.feature-list div span {
    color: var(--muted);
    font-size: .88rem;
}

.card-grid {
    display: grid;
    gap: 20px;
}

.card-grid--three {
    grid-template-columns: repeat(3, 1fr);
}

.pillar-card {
    position: relative;
    min-height: 340px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.pillar-card__index {
    display: inline-flex;
    width: 45px;
    height: 45px;
    margin-bottom: 64px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--green-700);
    font-size: .78rem;
    font-weight: 700;
}

.pillar-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.pillar-card p {
    font-size: .94rem;
}

.pillar-card a {
    position: absolute;
    bottom: 30px;
    color: var(--green-700);
    font-weight: 700;
}

.pillar-card--dark {
    border-color: var(--green-900);
    color: var(--white);
    background: var(--green-900);
}

.pillar-card--dark .pillar-card__index {
    border-color: rgba(255, 255, 255, .25);
    color: var(--gold-light);
}

.pillar-card--dark p {
    color: rgba(255, 255, 255, .72);
}

.pillar-card--dark a {
    color: var(--gold-light);
}

.principal-section {
    padding-bottom: 20px;
    background: linear-gradient(to bottom, var(--white) 50%, var(--green-50) 50%);
}

.principal-card {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 480px;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: var(--green-900);
    box-shadow: var(--shadow-lg);
}

.principal-card__portrait {
    min-height: 100%;
    background: #d9e8df;
}

.principal-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.principal-card__message {
    display: flex;
    padding: clamp(38px, 6vw, 76px);
    flex-direction: column;
    justify-content: center;
}

.principal-card blockquote {
    max-width: 700px;
    margin-bottom: 22px;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.45rem);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.035em;
}

.principal-card p {
    max-width: 650px;
    color: rgba(255, 255, 255, .72);
}

.principal-card__message > strong {
    margin-top: 10px;
    color: var(--gold-light);
    font-size: 1.05rem;
}

.principal-card__message > span:last-child {
    color: rgba(255, 255, 255, .6);
    font-size: .86rem;
}

.documents-preview {
    background: var(--green-50);
}

.document-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.document-card {
    display: flex;
    min-height: 260px;
    padding: 25px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.document-card__top {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: .76rem;
}

.pdf-mark {
    display: inline-flex;
    padding: .2rem .45rem;
    border-radius: 4px;
    color: var(--danger);
    background: #fae9e7;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.document-card h3 {
    margin-bottom: 9px;
    font-size: 1.1rem;
}

.document-card p {
    margin-bottom: 22px;
    font-size: .86rem;
}

.document-card__actions {
    display: flex;
    padding-top: 13px;
    margin-top: auto;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
}

.document-card__actions a {
    color: var(--green-700);
    font-size: .86rem;
    font-weight: 700;
}

.document-card__actions a:last-child {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green-50);
}

.documents-note,
.gallery-note {
    margin: 24px 0 0;
    font-size: .82rem;
    text-align: center;
}

.photo-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

.photo-grid figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--green-100);
}

.photo-grid__wide {
    grid-row: 1 / 3;
}

.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.photo-grid figure:hover img {
    transform: scale(1.025);
}

.photo-grid figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 20px 16px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(7, 47, 32, .85));
    font-weight: 600;
}

.page-hero {
    padding: 86px 0;
    color: var(--white);
    background: var(--green-900);
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(240px, .5fr);
    align-items: end;
    gap: 60px;
}

.page-hero h1 {
    margin-bottom: 20px;
    color: var(--white);
}

.page-hero p {
    max-width: 640px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .74);
    font-size: 1.1rem;
}

.page-hero__fact {
    padding: 26px;
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, .07);
}

.page-hero__fact strong,
.page-hero__fact span {
    display: block;
}

.page-hero__fact strong {
    margin-bottom: 5px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.35rem;
}

.page-hero__fact span {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
}

.page-hero--image {
    position: relative;
    min-height: 540px;
    overflow: hidden;
}

.page-hero--image > img,
.page-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-hero--image > img {
    object-fit: cover;
}

.page-hero__overlay {
    background: linear-gradient(90deg, rgba(7, 47, 32, .94), rgba(7, 47, 32, .35));
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.mission-card {
    min-height: 390px;
    padding: clamp(35px, 5vw, 60px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.mission-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.mission-card--green {
    color: var(--white);
    border-color: var(--green-800);
    background: var(--green-800);
}

.mission-card--green p {
    color: rgba(255, 255, 255, .72);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.values-grid article {
    padding: 28px 24px;
    border-top: 3px solid var(--green-700);
    background: var(--green-50);
}

.values-grid article > span {
    color: var(--green-700);
    font-size: .76rem;
    font-weight: 700;
}

.values-grid h3 {
    margin: 34px 0 8px;
}

.values-grid p {
    margin-bottom: 0;
    font-size: .9rem;
}

.academic-principles {
    display: grid;
    gap: 2px;
    background: var(--line);
}

.academic-principles article {
    display: flex;
    padding: 22px;
    align-items: start;
    gap: 20px;
    background: var(--green-50);
}

.academic-principles article > strong {
    color: var(--green-700);
    font-family: var(--font-heading);
    font-size: .78rem;
}

.academic-principles h3 {
    margin-bottom: 5px;
    font-size: 1.08rem;
}

.academic-principles p {
    margin-bottom: 0;
    font-size: .87rem;
}

.dark-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-md);
}

.dark-card span {
    display: block;
    margin-bottom: 38px;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.dark-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .66);
}

.disclosure-callout {
    display: flex;
    padding: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: var(--radius-lg);
    background: var(--green-50);
}

.disclosure-callout > div {
    max-width: 750px;
}

.disclosure-callout h2 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.disclosure-callout p {
    margin-bottom: 0;
}

.masonry-gallery {
    display: grid;
    grid-auto-rows: 250px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--green-100);
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item--portrait {
    grid-row: span 2;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

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

.gallery-item figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 42px 18px 16px;
    flex-direction: column;
    color: var(--white);
    background: linear-gradient(transparent, rgba(7, 47, 32, .9));
}

.gallery-item figcaption strong {
    font-family: var(--font-heading);
}

.gallery-item figcaption span {
    font-size: .78rem;
    opacity: .76;
}

.disclosure-hero {
    padding: 92px 0;
    color: var(--white);
    background: var(--green-950);
}

.disclosure-hero__grid {
    display: grid;
    grid-template-columns: 1.5fr .5fr;
    align-items: center;
    gap: 60px;
}

.disclosure-hero h1 {
    margin-bottom: 18px;
}

.disclosure-hero p {
    max-width: 660px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.1rem;
}

.disclosure-hero__seal {
    display: flex;
    aspect-ratio: 1;
    max-width: 240px;
    margin-left: auto;
    padding: 28px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(246, 217, 148, .5);
    border-radius: 50%;
    text-align: center;
}

.disclosure-hero__seal strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 2.8rem;
}

.disclosure-hero__seal span {
    color: rgba(255, 255, 255, .68);
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.school-information {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    align-items: start;
    gap: 70px;
}

.school-information__heading h2 {
    margin-bottom: 12px;
    font-size: 2.2rem;
}

.information-list {
    margin: 0;
    border-top: 1px solid var(--line);
}

.information-list > div {
    display: grid;
    grid-template-columns: minmax(140px, .65fr) 1.35fr;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    gap: 24px;
}

.information-list dt {
    color: var(--muted);
    font-size: .85rem;
}

.information-list dd {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
}

.information-list a {
    color: var(--green-700);
}

.disclosure-list-section {
    padding-top: 30px;
    background: var(--green-50);
}

.document-group + .document-group {
    margin-top: 80px;
}

.document-group__heading {
    display: flex;
    margin-bottom: 25px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.document-group__heading > div {
    max-width: 720px;
}

.document-group__heading h2 {
    margin: 5px 0 8px;
    font-size: 2.1rem;
}

.document-group__heading p {
    margin-bottom: 0;
}

.document-group__count {
    color: var(--green-700);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.archive-warning {
    padding: .45rem .7rem;
    border-radius: 4px;
    color: var(--danger);
    background: #fae9e7;
    font-size: .72rem;
    font-weight: 700;
}

.document-table {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}

.document-row {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 80px 190px;
    min-height: 112px;
    padding: 20px 22px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.document-row:last-child {
    border-bottom: 0;
}

.document-row__number {
    color: var(--green-700);
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
}

.document-row__content h3 {
    margin-bottom: 4px;
    font-size: 1rem;
    letter-spacing: -.015em;
}

.document-row__content p,
.document-row__meta {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .8rem;
}

.document-row__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.document-row__actions a {
    padding: .5rem .75rem;
    border-radius: 6px;
    font-size: .76rem;
    font-weight: 700;
}

.document-view {
    color: var(--white);
    background: var(--green-700);
}

.document-download {
    color: var(--green-700);
    border: 1px solid var(--line);
}

.document-row--missing {
    opacity: .65;
}

.document-help {
    display: flex;
    padding: 28px 30px;
    margin-top: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-left: 4px solid var(--gold);
    background: var(--white);
}

.document-help p {
    max-width: 700px;
    margin: 4px 0 0;
    font-size: .86rem;
}

.document-help a {
    color: var(--green-700);
    font-weight: 700;
    white-space: nowrap;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 70px;
}

.contact-details h2 {
    margin-bottom: 15px;
}

.contact-cards {
    display: grid;
    margin: 32px 0 26px;
    border-top: 1px solid var(--line);
}

.contact-cards > * {
    display: flex;
    padding: 17px 0;
    flex-direction: column;
    border-bottom: 1px solid var(--line);
}

.contact-cards span {
    color: var(--muted);
    font-size: .75rem;
    text-transform: uppercase;
}

.contact-cards strong {
    margin-top: 3px;
    color: var(--green-800);
    font-size: 1.02rem;
}

.whatsapp-link {
    color: var(--green-700);
    font-weight: 700;
}

.contact-form-wrap {
    padding: clamp(28px, 5vw, 52px);
    border-radius: var(--radius-lg);
    background: var(--green-50);
}

.contact-form-heading {
    display: flex;
    margin-bottom: 28px;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.contact-form-heading span {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
}

.contact-form-heading p {
    margin-bottom: 0;
    font-size: .76rem;
}

.form-alert {
    padding: 12px 14px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: .88rem;
}

.form-alert--success {
    color: var(--success);
    border: 1px solid #b3d9c3;
    background: #eaf7ef;
}

.form-alert--error {
    color: var(--danger);
    border: 1px solid #e7beb9;
    background: #fbedeb;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row {
    display: grid;
    gap: 6px;
}

.form-row label {
    font-size: .82rem;
    font-weight: 700;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid #cdd9d1;
    border-radius: 7px;
    color: var(--ink);
    background: var(--white);
}

.form-row input {
    height: 48px;
    padding: 0 13px;
}

.form-row textarea {
    padding: 12px 13px;
    resize: vertical;
}

.form-honeypot {
    position: absolute;
    left: -10000px;
}

.contact-form .button {
    justify-self: start;
}

.not-found {
    padding: 120px 0;
    text-align: center;
}

.not-found__inner {
    max-width: 760px;
}

.not-found__inner > span {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
}

.not-found h1 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.not-found__inner > div {
    display: flex;
    margin-top: 30px;
    justify-content: center;
    gap: 12px;
}

.closing-cta {
    padding: 70px 0;
    color: var(--white);
    background: var(--green-800);
}

.closing-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.closing-cta h2 {
    max-width: 700px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.closing-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .7);
}

.closing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.site-footer {
    padding: 70px 0 25px;
    color: var(--white);
    background: var(--green-950);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr .6fr .8fr;
    gap: 70px;
}

.brand--footer .brand__text strong {
    color: var(--white);
}

.brand--footer .brand__text span {
    color: rgba(255, 255, 255, .6);
}

.footer-brand p {
    max-width: 430px;
    margin: 22px 0;
    color: rgba(255, 255, 255, .58);
    font-size: .9rem;
}

.footer-affiliation {
    color: var(--gold-light);
    font-size: .78rem;
}

.footer-title {
    margin-bottom: 20px;
    color: var(--gold-light);
    font-size: .88rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    padding: 0;
    margin: 0;
    gap: 8px;
    list-style: none;
}

.footer-links a,
.footer-contact,
.footer-contact a {
    color: rgba(255, 255, 255, .68);
    font-size: .88rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact {
    display: grid;
    font-style: normal;
    gap: 8px;
}

.footer-document-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--gold-light);
    font-size: .84rem;
    font-weight: 700;
}

.site-footer__bottom {
    display: flex;
    padding-top: 24px;
    margin-top: 60px;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .45);
    font-size: .76rem;
}

@media (max-width: 1020px) {
    .brand__text strong {
        font-size: .88rem;
    }

    .brand__text span {
        font-size: .72rem;
    }

    .primary-nav a {
        padding-inline: .5rem;
        font-size: .83rem;
    }

    .document-row {
        grid-template-columns: 40px minmax(0, 1fr) 70px 170px;
        padding-inline: 16px;
        gap: 12px;
    }
}

@media (max-width: 880px) {
    .section {
        padding: 78px 0;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        width: min(360px, 88vw);
        padding: 125px 26px 40px;
        background: var(--white);
        box-shadow: -20px 0 50px rgba(7, 47, 32, .18);
        transform: translateX(105%);
        transition: transform .25s ease;
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .primary-nav ul {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-nav a {
        padding: .9rem 1rem;
        font-size: 1rem;
    }

    .menu-toggle {
        position: relative;
        z-index: 60;
    }

    .split-layout,
    .school-information,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .split-layout--reverse .split-layout__content,
    .split-layout--reverse .split-layout__media {
        order: initial;
    }

    .image-frame img {
        min-height: 400px;
    }

    .card-grid--three,
    .document-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .principal-card {
        grid-template-columns: 42% 58%;
    }

    .principal-card__message {
        padding: 40px;
    }

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

    .page-hero__grid,
    .disclosure-hero__grid {
        grid-template-columns: 1fr;
    }

    .page-hero__fact {
        max-width: 420px;
    }

    .disclosure-hero__seal {
        display: none;
    }

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

    .document-row {
        grid-template-columns: 36px minmax(0, 1fr) 170px;
    }

    .document-row__meta {
        display: none;
    }

    .contact-grid {
        gap: 45px;
    }

    .closing-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .closing-cta__actions {
        justify-content: flex-start;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .affiliation-bar__inner {
        min-height: 42px;
        justify-content: center;
        text-align: center;
    }

    .affiliation-bar__inner span:nth-child(2),
    .affiliation-bar__inner span:nth-child(3),
    .affiliation-bar a {
        display: none;
    }

    .site-header__inner {
        min-height: 78px;
    }

    .brand img {
        width: 54px;
        height: 54px;
    }

    .brand__text strong {
        max-width: 210px;
        font-size: .78rem;
    }

    .brand__text span {
        font-size: .66rem;
    }

    .hero {
        min-height: 720px;
    }

    .hero__overlay {
        background: linear-gradient(180deg, rgba(7, 47, 32, .55) 0%, rgba(7, 47, 32, .92) 70%);
    }

    .hero__content {
        padding-top: 88px;
        padding-bottom: 220px;
    }

    .hero__content > p {
        font-size: 1rem;
    }

    .hero__actions .button {
        width: 100%;
    }

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

    .hero__facts-grid > div,
    .hero__facts-grid > div:first-child {
        padding: 14px;
        border-right: 1px solid rgba(255, 255, 255, .14);
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .hero__facts-grid > div:nth-child(even) {
        border-right: 0;
    }

    .hero__facts-grid > div:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .split-layout {
        gap: 55px;
    }

    .image-frame {
        padding: 8px 8px 0 0;
    }

    .image-frame img,
    .image-frame--simple img {
        min-height: 300px;
    }

    .image-frame__label {
        right: 5px;
        bottom: -25px;
        width: 190px;
        padding: 15px 18px;
    }

    .section-heading--with-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .card-grid--three,
    .document-card-grid,
    .mission-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        min-height: 305px;
    }

    .principal-section {
        padding-top: 50px;
    }

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

    .principal-card__portrait {
        max-height: 390px;
    }

    .principal-card__message {
        padding: 32px 25px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 280px);
    }

    .photo-grid__wide {
        grid-row: auto;
    }

    .page-hero,
    .disclosure-hero {
        padding: 65px 0;
    }

    .page-hero__grid {
        gap: 35px;
    }

    .page-hero--image {
        min-height: 480px;
    }

    .mission-card {
        min-height: auto;
    }

    .disclosure-callout,
    .document-help {
        padding: 30px 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .masonry-gallery {
        display: grid;
        grid-auto-rows: 270px;
        grid-template-columns: 1fr;
    }

    .gallery-item--large,
    .gallery-item--portrait,
    .gallery-item--wide {
        grid-row: auto;
        grid-column: auto;
    }

    .school-information {
        gap: 30px;
    }

    .information-list > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .document-group__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .document-row {
        grid-template-columns: 28px 1fr;
        padding: 18px 14px;
    }

    .document-row__actions {
        grid-column: 2;
        justify-content: flex-start;
    }

    .document-row__actions a {
        flex: 1;
        text-align: center;
    }

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

    .contact-form-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .not-found__inner > div,
    .closing-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .not-found .button,
    .closing-cta .button {
        width: 100%;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-brand {
        grid-column: auto;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
