:root {
    --ink: #13201a;
    --muted: #66736d;
    --line: #d9e0db;
    --green: #0f7a4b;
    --green-dark: #075233;
    --yellow: #f7c948;
    --red: #d94b3d;
    --paper: #f8faf8;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(19, 32, 26, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    overflow: visible;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.topbar {
    display: flex;
    max-height: 80px;
    overflow: hidden;
    justify-content: space-between;
    gap: 16px;
    padding: 8px clamp(16px, 4vw, 56px);
    color: var(--white);
    background: var(--green-dark);
    font-size: 13px;
    transition: max-height 180ms ease, padding-block 180ms ease, opacity 140ms ease;
}

.site-header.is-compact .topbar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

.topbar-links {
    display: flex;
    gap: 14px;
    white-space: nowrap;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px clamp(16px, 4vw, 56px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-weight: 800;
    letter-spacing: 0;
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.brand span {
    overflow-wrap: anywhere;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #2d3b35;
    font-weight: 700;
}

.nav-menu a.active {
    color: var(--green);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 9px 12px;
    font: inherit;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid var(--green);
    border-radius: 8px;
    color: var(--white);
    background: var(--green);
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(15, 122, 75, 0.24);
}

.btn-small {
    min-height: 40px;
    padding: 9px 16px;
}

.btn-ghost {
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.82);
    box-shadow: none;
}

.hero {
    min-height: min(620px, calc(100vh - 78px));
    display: flex;
    align-items: center;
    padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 56px) clamp(70px, 9vw, 112px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 82, 51, 0.94) 0%, rgba(7, 82, 51, 0.72) 44%, rgba(7, 82, 51, 0.18) 100%),
        url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-content {
    width: min(720px, 100%);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--yellow);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.intro h2,
.section-heading h2,
.excellence-copy h2,
.cta h2 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 740px;
    font-size: clamp(34px, 5.8vw, 66px);
}

.hero p:not(.eyebrow) {
    max-width: 640px;
    margin: 18px 0 0;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.intro,
.majors,
.headmaster,
.vision-mission-section,
.staff-section,
.facilities-section,
.facilities-archive,
.gallery-archive,
.news-section,
.news-archive,
.testimonials,
.cta,
.feature-grid,
.excellence,
.footer,
.page-hero,
.post-detail {
    padding-inline: clamp(16px, 4vw, 56px);
}

.intro {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    padding-top: 68px;
    padding-bottom: 38px;
    background: var(--white);
}

.intro h2,
.section-heading h2,
.excellence-copy h2,
.cta h2 {
    font-size: clamp(26px, 3.5vw, 44px);
}

.intro p:not(.eyebrow) {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 16px;
}

.intro a {
    color: var(--green);
    font-weight: 800;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding-top: 24px;
    padding-bottom: 68px;
    background: var(--white);
}

.feature-card,
.major-card,
.testimonial-card,
.mission-card,
.vision-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.feature-card {
    min-height: 170px;
    padding: 22px;
}

.feature-card h3,
.major-card h3,
.testimonial-card h3 {
    margin: 0 0 10px;
    line-height: 1.25;
}

.feature-card p,
.major-card p,
.staff-card p,
.facility-card p,
.testimonial-card p,
.mission-card p,
.vision-card p,
.excellence-copy p,
.excellence-copy li,
.cta p,
.footer p,
.footer a {
    color: var(--muted);
}

.majors {
    padding-top: 68px;
    padding-bottom: 76px;
}

.headmaster {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 36px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
    background: #f1f5f2;
}

.headmaster-photo {
    position: relative;
}

.headmaster-photo::after {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    z-index: 0;
    border-radius: 8px;
    background: var(--yellow);
}

.headmaster-photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.headmaster-copy h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
}

.headmaster-copy span {
    display: inline-flex;
    margin: 14px 0 18px;
    color: var(--red);
    font-weight: 900;
}

.headmaster-copy p:not(.eyebrow),
.headmaster-message {
    max-width: 760px;
    color: var(--muted);
    font-size: 16px;
}

.headmaster-message h2,
.headmaster-message h3 {
    margin: 22px 0 10px;
    color: var(--ink);
    line-height: 1.2;
}

.headmaster-message p,
.headmaster-message ul,
.headmaster-message ol {
    margin: 0 0 14px;
}

.headmaster-message img {
    max-width: 100%;
    height: auto;
    margin: 16px 0;
    border-radius: 8px;
}

.vision-mission-section {
    display: grid;
    gap: 22px;
    padding-top: 68px;
    padding-bottom: 76px;
    background: linear-gradient(180deg, #f7fbf8 0%, #eef5f1 100%);
}

.vision-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1fr);
    gap: 0;
    box-shadow: 0 24px 56px rgba(19, 32, 26, 0.12);
}

.vision-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 201, 72, 0.18), rgba(15, 122, 75, 0.04));
    pointer-events: none;
}

.vision-card-accent {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 24px;
    color: var(--white);
    background: linear-gradient(160deg, var(--green-dark), var(--green));
}

.vision-card-accent img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-card-accent::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 82, 51, 0.18), rgba(7, 82, 51, 0.78));
}

.vision-card-badge {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
    gap: 16px;
}

.vision-card-accent p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.vision-card-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    padding: 28px 30px;
}

.vision-card-copy h3,
.mission-section-head h3,
.mission-card h4 {
    margin: 0;
    line-height: 1.16;
    letter-spacing: 0;
}

.vision-card-copy h3 {
    font-size: clamp(24px, 3vw, 36px);
}

.vision-card-copy p {
    margin: 0;
    color: #2f3d36;
    font-size: 17px;
    line-height: 1.7;
}

.mission-section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: 24px;
    align-items: end;
}

.mission-section-head h3 {
    font-size: clamp(24px, 3.1vw, 34px);
}

.mission-section-head p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

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

.mission-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 100%;
    padding: 20px;
    box-shadow: 0 18px 42px rgba(19, 32, 26, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 122, 75, 0.28);
    box-shadow: 0 24px 50px rgba(19, 32, 26, 0.12);
}

.mission-card h4 {
    font-size: 20px;
}

.mission-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

.mission-icon,
.vision-icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 8px;
}

.mission-icon {
    color: var(--green-dark);
    background: rgba(15, 122, 75, 0.10);
}

.vision-icon {
    color: var(--green-dark);
    background: rgba(255, 255, 255, 0.92);
}

.mission-icon svg,
.vision-icon svg {
    width: 28px;
    height: 28px;
}

.animate-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 420ms ease, transform 420ms ease;
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.staff-section {
    padding-top: 68px;
    padding-bottom: 76px;
    background: var(--white);
}

.staff-slider {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.staff-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: staff-slide 42s linear infinite;
}

.staff-slider:hover .staff-track {
    animation-play-state: paused;
}

.staff-card {
    position: relative;
    overflow: hidden;
    flex: 0 0 min(270px, calc(100vw - 36px));
    min-height: 310px;
    border-radius: 8px;
    color: var(--white);
    background: var(--green-dark);
    box-shadow: var(--shadow);
    isolation: isolate;
    transform: translateY(0);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.staff-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(7, 82, 51, 0.05), rgba(7, 82, 51, 0.88));
    transition: background 220ms ease;
}

.staff-card img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    transition: transform 360ms ease;
}

.staff-card div {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 18px;
    transform: translateY(8px);
    transition: transform 220ms ease;
}

.staff-card h3 {
    margin: 0 0 6px;
    line-height: 1.2;
}

.staff-card p {
    margin: 0;
    color: #eef7f2;
    font-weight: 800;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(19, 32, 26, 0.22);
}

.staff-card:hover img {
    transform: scale(1.08);
}

.staff-card:hover div {
    transform: translateY(0);
}

.staff-card:hover::after {
    background: linear-gradient(180deg, rgba(217, 75, 61, 0.12), rgba(7, 82, 51, 0.94));
}

.facilities-section,
.facilities-archive {
    padding-top: 68px;
    padding-bottom: 76px;
    background: #f1f5f2;
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.facility-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.facility-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.facility-card div {
    padding: 20px;
}

.facility-card h3 {
    margin: 0 0 10px;
    line-height: 1.25;
}

.news-section,
.news-archive {
    padding-top: 68px;
    padding-bottom: 76px;
    background: var(--paper);
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.news-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-card div {
    padding: 20px;
}

.news-card span {
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-card h3 {
    margin: 10px 0;
    line-height: 1.25;
}

.news-card p {
    color: var(--muted);
}

.read-more,
.all-news {
    color: var(--green);
    font-weight: 900;
}

.all-news {
    display: inline-flex;
    margin-top: 28px;
}

.page-hero {
    padding-top: 68px;
    padding-bottom: 58px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(7, 82, 51, 0.92), rgba(7, 82, 51, 0.62)),
        url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.page-hero h1,
.post-detail h1 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.08;
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
    color: #eef7f2;
    font-size: 17px;
}

.gallery-hero {
    background:
        linear-gradient(90deg, rgba(7, 82, 51, 0.92), rgba(7, 82, 51, 0.56)),
        url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.gallery-archive {
    display: grid;
    gap: 54px;
    padding-top: 68px;
    padding-bottom: 76px;
    background: var(--white);
}

.gallery-album {
    display: grid;
    gap: 26px;
}

.gallery-album .section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 12px;
}

.gallery-mosaic figure {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    margin: 0;
    border-radius: 8px;
    background: var(--green-dark);
    box-shadow: var(--shadow);
}

.gallery-mosaic figure.featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 392px;
}

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 320ms ease, filter 320ms ease;
}

.gallery-mosaic figcaption {
    position: absolute;
    inset: auto 12px 12px 12px;
    border-radius: 8px;
    padding: 10px 12px;
    color: var(--white);
    background: rgba(19, 32, 26, 0.76);
    font-weight: 800;
}

.gallery-mosaic figure:hover img {
    filter: saturate(1.08);
    transform: scale(1.06);
}

.post-detail {
    padding-top: 56px;
    padding-bottom: 72px;
    background: var(--white);
}

.post-detail header {
    max-width: 980px;
    margin: 0 auto;
}

.post-detail header img {
    width: 100%;
    max-height: 560px;
    margin-top: 24px;
    border-radius: 8px;
    object-fit: cover;
}

.post-body {
    max-width: 820px;
    margin: 30px auto 0;
    color: #2f3e37;
    font-size: 17px;
}

.post-body h2,
.post-body h3,
.post-body h4 {
    margin: 30px 0 12px;
    color: var(--ink);
    line-height: 1.22;
}

.post-body p,
.post-body ul,
.post-body ol,
.post-body blockquote {
    margin: 0 0 18px;
}

.post-body img {
    width: 100%;
    height: auto;
    margin: 22px 0;
    border-radius: 8px;
}

.post-body blockquote {
    border-left: 4px solid var(--green);
    padding-left: 18px;
    color: var(--muted);
}

.post-detail .all-news {
    max-width: 820px;
    margin: 30px auto 0;
}

.section-heading {
    max-width: 740px;
    margin-bottom: 26px;
}

.major-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.major-card {
    overflow: hidden;
    flex: 0 1 calc((100% - 32px) / 3);
    min-width: min(100%, 280px);
    box-shadow: var(--shadow);
}

.major-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.major-card div {
    padding: 20px;
}

.excellence {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
    color: var(--white);
    background: var(--green-dark);
}

.excellence-image img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.excellence-copy p,
.excellence-copy li {
    color: #dce9e2;
}

.excellence-copy ul {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding-left: 20px;
}

.testimonials {
    padding-top: 70px;
    padding-bottom: 74px;
    background: var(--white);
}

.testimonial-showcase {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
        url("https://images.unsplash.com/photo-1577896851231-70ef18881754?auto=format&fit=crop&w=1400&q=80") center/cover;
}

.testimonial-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: testimonial-slide 38s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 min(450px, calc(100vw - 36px));
    min-height: 250px;
    padding: clamp(22px, 4vw, 44px);
    box-shadow: var(--shadow);
}

.testimonial-card p {
    max-width: 820px;
    margin: 0 0 22px;
    color: #2f3e37;
    font-size: clamp(18px, 2.4vw, 27px);
    line-height: 1.4;
}

.testimonial-card span {
    color: var(--red);
    font-weight: 800;
}

.testimonial-archive {
    padding: 68px clamp(16px, 4vw, 56px) 76px;
    background: var(--white);
}

.testimonial-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.testimonial-archive-grid .testimonial-card {
    flex: initial;
}

@keyframes testimonial-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 11px));
    }
}

@keyframes staff-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 11px));
    }
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 56px;
    padding-bottom: 56px;
    color: var(--white);
    background: var(--green);
}

.cta p {
    max-width: 650px;
    color: #eef7f2;
}

.cta .eyebrow {
    color: var(--yellow);
}

.cta .btn {
    flex: 0 0 auto;
    color: var(--ink);
    background: var(--yellow);
    border-color: var(--yellow);
    box-shadow: none;
}

.footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.4fr 1fr;
    gap: 24px;
    padding-top: 56px;
    padding-bottom: 48px;
    background: #f1f5f2;
}

.footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.footer a {
    display: block;
    margin-bottom: 10px;
}

.footer-brand {
    margin-bottom: 16px;
}

.copyright {
    padding: 18px clamp(18px, 5vw, 72px);
    color: #eef7f2;
    background: var(--green-dark);
    text-align: center;
}

@media (max-width: 1180px) {
    .feature-grid,
    .mission-grid,
    .major-list,
    .facility-list,
    .news-list,
    .testimonial-archive-grid,
    .footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .major-card {
        flex-basis: calc((100% - 16px) / 2);
    }
}

@media (max-width: 980px) {
    .topbar,
    .intro,
    .headmaster,
    .mission-section-head,
    .excellence,
    .cta {
        grid-template-columns: 1fr;
    }

    .topbar {
        display: grid;
    }

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

    .nav-menu {
        position: absolute;
        inset: 100% 18px auto 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        padding: 12px;
    }

    .excellence-image img {
        min-height: 320px;
    }

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

    .vision-card-copy {
        padding: 24px;
    }
}

@media (max-width: 680px) {
    .topbar-links,
    .hero-actions,
    .cta {
        align-items: stretch;
        flex-direction: column;
    }

    .feature-grid,
    .mission-grid,
    .major-list,
    .facility-list,
    .news-list,
    .gallery-mosaic,
    .testimonial-archive-grid,
    .footer {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic figure,
    .gallery-mosaic figure.featured {
        grid-column: auto;
        grid-row: auto;
        min-height: 240px;
    }

    .major-card {
        flex-basis: 100%;
    }

    .hero {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 66px;
        background:
            linear-gradient(90deg, rgba(7, 82, 51, 0.94), rgba(7, 82, 51, 0.76)),
            url("https://images.unsplash.com/photo-1509062522246-3755977927d7?auto=format&fit=crop&w=1200&q=80") center/cover;
    }

    .hero h1 {
        font-size: 36px;
    }

    .vision-card-accent,
    .vision-card-copy,
    .mission-card {
        padding: 20px;
    }

    .page-hero {
        padding-top: 56px;
        padding-bottom: 52px;
    }

    .staff-card,
    .staff-card img {
        min-height: 280px;
    }

    .btn {
        width: 100%;
    }
}
