:root {
    --ink: #172033;
    --muted: #657186;
    --brand: #b51f2a;
    --brand-dark: #861722;
    --gold: #d99a2b;
    --paper: #f7f3ec;
    --line: #e7dfd2;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(23, 32, 51, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    background: #fffaf3;
}

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

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

.announcement {
    background: var(--brand-dark);
    color: var(--white);
    font-size: 13px;
    padding: 10px 18px;
    text-align: center;
}

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

.header-inner,
.section-inner {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    align-items: center;
    min-height: 86px;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 800;
    letter-spacing: .4px;
}

.brand-mark {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--white);
    background: var(--brand);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(181, 31, 42, .25);
}

.brand small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    color: #293449;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.search {
    width: 190px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
}

.btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 0;
    border-radius: 6px;
    background: var(--brand);
    color: var(--white);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(181, 31, 42, .18);
}

.page-hero {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(23, 32, 51, .9), rgba(23, 32, 51, .55)),
        url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?auto=format&fit=crop&w=1800&q=82') center/cover;
}

.page-hero .section-inner {
    min-height: 310px;
    display: grid;
    align-content: center;
    padding: 72px 0;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.breadcrumb span {
    color: #ffe6b9;
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
}

h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

section {
    padding: 74px 0;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 46px;
    align-items: start;
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.copy {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.copy strong {
    color: var(--ink);
}

.discipline-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.discipline-list li {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: #293449;
    font-size: 14px;
    font-weight: 700;
}

.image-stack {
    display: grid;
    gap: 16px;
}

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

.image-card.large {
    aspect-ratio: 16 / 11;
}

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

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

.values {
    background: var(--paper);
}

.section-head {
    display: flex;
    gap: 20px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-head p {
    max-width: 560px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.65;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    min-height: 210px;
    padding: 26px;
    border: 1px solid #e1d6c6;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(23, 32, 51, .07);
}

.value-number {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 8px;
    background: var(--brand);
    color: var(--white);
    font-weight: 800;
}

.value-card p {
    color: var(--muted);
    line-height: 1.7;
}

.feedback {
    padding-top: 0;
}

.feedback-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.feedback-box p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    padding: 54px 0 22px;
    background: #161d2b;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.25fr) minmax(150px, .7fr) minmax(280px, 1.2fr) minmax(250px, 1fr);
    gap: 48px;
    align-items: start;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px;
    color: var(--white);
    line-height: 1.25;
}

.site-footer p,
.site-footer li,
.footer-contact address {
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

.footer-about p,
.footer-newsletter p {
    max-width: 330px;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer a {
    color: inherit;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-contact address {
    display: grid;
    gap: 6px;
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    font-size: inherit;
    font-style: normal;
    font-weight: 400;
}

.footer-contact strong,
.footer-contact span {
    display: block;
}

.footer-contact strong {
    color: rgba(255, 255, 255, .84);
    font: inherit;
}

.newsletter {
    display: flex;
    gap: 8px;
    align-items: center;
}

.newsletter input {
    min-width: 0;
    flex: 1 1 150px;
    height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 6px;
}

.newsletter .btn {
    flex: 0 0 auto;
    height: 42px;
    padding: 0 20px;
}

.copyright {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 0;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 14px 18px;
    }

    .header-actions {
        align-items: stretch;
    }

    .search {
        flex: 1;
        width: auto;
    }

    .about-layout,
    .value-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .page-hero .section-inner {
        min-height: 260px;
        padding: 54px 0;
    }

    section {
        padding: 54px 0;
    }

    .about-layout,
    .discipline-list,
    .image-pair,
    .value-grid,
    .feedback-box,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-head,
    .newsletter {
        align-items: stretch;
        flex-direction: column;
    }
}
