:root {
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-native: "Noto Serif Devanagari", Georgia, serif;
    --color-bg: #f7f2ea;
    --color-surface: #fffdf9;
    --color-surface-strong: #fff8ef;
    --color-surface-muted: #efe2d2;
    --color-border: rgba(112, 66, 39, 0.14);
    --color-border-strong: rgba(112, 66, 39, 0.24);
    --color-text: #2a211c;
    --color-text-muted: #6b5b4e;
    --color-primary: #8e2c2c;
    --color-primary-strong: #6f1f21;
    --color-primary-soft: rgba(142, 44, 44, 0.08);
    --color-secondary: #f29a2e;
    --color-secondary-soft: rgba(242, 154, 46, 0.16);
    --color-accent: #c9a227;
    --shadow-soft: 0 28px 70px rgba(70, 44, 28, 0.08);
    --shadow-card: 0 22px 48px rgba(55, 29, 18, 0.1);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(1200px, calc(100vw - 32px));
    --transition: 180ms ease;
}

/* Structural redesign correction: logo-led university identity */
:root {
    --font-display: "Playfair Display", Georgia, serif;
    --font-body: "Inter", "Segoe UI", sans-serif;
    --font-native: "Noto Serif Devanagari", Georgia, serif;
    --color-bg: #fbf7f0;
    --color-surface: #ffffff;
    --color-surface-strong: #fffdf8;
    --color-surface-muted: #f5ede1;
    --color-border: #e8ded0;
    --color-border-strong: #dbcdb9;
    --color-text: #1f1f1f;
    --color-text-muted: #5f5f63;
    --color-primary: #e97817;
    --color-primary-strong: #cf6510;
    --color-secondary: #f28c28;
    --color-accent: #d4a437;
    --color-royal: #2f2e8b;
    --shadow-soft: 0 18px 42px rgba(25, 33, 87, 0.08);
    --shadow-card: 0 14px 32px rgba(18, 26, 69, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --container: min(1240px, calc(100vw - 40px));
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(233, 120, 23, 0.08), transparent 26%),
        linear-gradient(180deg, #fffdf9 0%, #fbf7f0 42%, #fffdf8 100%);
}

main {
    overflow: hidden;
}

.section-shell {
    padding: clamp(68px, 8vw, 104px) 0;
}

.section-shell--alt {
    background: linear-gradient(180deg, rgba(242, 236, 226, 0.62), rgba(255, 255, 255, 0));
}

.section-shell--contact {
    padding-top: 44px;
}

.section-title__eyebrow,
.panel__eyebrow,
.hero-copy__eyebrow,
.page-hero__eyebrow,
.site-footer__eyebrow,
.program-card__eyebrow,
.contact-card__label,
.faculty-card__role {
    color: var(--color-royal);
}

.section-title__heading,
.page-hero__title,
.hero-copy h1,
.site-footer__title,
.cta-band h2 {
    font-family: var(--font-display);
    color: var(--color-text);
}

.section-title__heading {
    font-size: clamp(2.45rem, 4vw, 4rem);
    line-height: 1.02;
}

.section-title__lead,
.page-hero__lead,
.hero-copy__lead,
.hero-copy__supporting,
.panel__copy,
.site-footer__copy,
.site-footer__supporting {
    color: var(--color-text-muted);
}

.page-hero::before {
    background:
        linear-gradient(180deg, rgba(233, 120, 23, 0.08), rgba(255, 255, 255, 0)),
        radial-gradient(circle at top right, rgba(47, 46, 139, 0.08), transparent 28%);
}

.page-hero__inner,
.panel,
.program-card,
.faculty-card,
.notice-card,
.contact-card,
.step-card,
.faq-item,
.timeline__content,
.empty-state,
.table-shell {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
    border-radius: 22px;
}

.panel--accent {
    background: linear-gradient(135deg, #2f2e8b 0%, #25246f 100%);
    color: #fff;
}

.panel--accent .panel__eyebrow,
.panel--accent h3,
.panel--accent p,
.panel--accent li {
    color: inherit;
}

.btn {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    box-shadow: 0 16px 30px rgba(233, 120, 23, 0.22);
}

.btn--primary:hover {
    box-shadow: 0 20px 36px rgba(233, 120, 23, 0.28);
}

.btn--ghost {
    color: var(--color-royal);
    background: rgba(47, 46, 139, 0.04);
    border-color: rgba(47, 46, 139, 0.12);
}

.btn--ghost:hover {
    background: rgba(47, 46, 139, 0.08);
    border-color: rgba(47, 46, 139, 0.2);
}

.btn--ghost-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
}

.chip {
    background: rgba(233, 120, 23, 0.1);
    color: #9c4a0b;
}

.bullet-list li::before {
    background: var(--color-primary);
}

.topbar {
    background: #232a73;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.topbar__inner {
    min-height: 40px;
}

.topbar__note {
    margin: 0;
    font-size: 0.81rem;
    letter-spacing: 0.04em;
}

.topbar__links {
    gap: 14px;
}

.topbar__links a {
    position: relative;
    padding-left: 14px;
    font-weight: 600;
}

.topbar__links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.58);
    transform: translateY(-50%);
}

.topbar__links a:first-child {
    padding-left: 0;
}

.topbar__links a:first-child::before {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: rgba(251, 247, 240, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 26px rgba(20, 26, 69, 0.05);
}

.site-header__main {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(232, 222, 208, 0.9);
}

.site-header__identity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 108px;
    padding: 12px 0;
}

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

.brand-mark__logo-shell {
    display: inline-grid;
    place-items: center;
    width: 88px;
    height: 88px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.brand-mark__logo-shell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark__text {
    display: grid;
    gap: 4px;
}

.brand-mark__eyebrow {
    color: var(--color-royal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-mark__title {
    font-size: clamp(1.65rem, 2.3vw, 2.25rem);
    line-height: 1.08;
}

.brand-mark__subtitle {
    color: var(--color-text-muted);
    font-family: var(--font-native);
    font-size: 0.98rem;
    line-height: 1.35;
}

.brand-mark__meta {
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.site-header__nav-bar {
    background: linear-gradient(90deg, #2f2e8b 0%, #272878 100%);
}

.site-header__nav-shell {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
}

.site-nav {
    width: 100%;
    margin-left: 0;
    gap: 0;
}

.site-nav__list {
    width: 100%;
    gap: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.site-nav__item {
    position: relative;
}

.site-nav__entry {
    display: flex;
    align-items: center;
}

.site-nav__link {
    padding: 18px 16px;
    color: rgba(255, 255, 255, 0.92);
    background: transparent;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.site-nav__item.is-active > .site-nav__entry > .site-nav__link,
.site-nav__link:hover,
.site-nav__link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.site-nav__toggle {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    cursor: pointer;
}

.site-nav__caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
}

.site-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: 0 16px 42px rgba(20, 26, 69, 0.14);
    z-index: 20;
}

.site-nav__sublist {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav__link--sub {
    width: 100%;
    padding: 12px 14px;
    color: var(--color-text);
    border-radius: 12px;
}

.site-nav__link--sub:hover,
.site-nav__link--sub.is-active {
    color: var(--color-royal);
    background: rgba(47, 46, 139, 0.06);
}

.site-nav__sublist .site-nav__toggle {
    color: var(--color-text-muted);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.nav-toggle span {
    background: #fff;
}

@media (min-width: 1200px) {
    .site-nav__item:hover > .site-nav__dropdown,
    .site-nav__item.is-open > .site-nav__dropdown {
        display: block;
    }

    .site-nav__sublist .site-nav__item {
        position: relative;
    }

    .site-nav__sublist .site-nav__dropdown {
        top: 0;
        left: calc(100% + 10px);
    }
}

.hero-stage {
    padding: 48px 0 12px;
}

.hero-stage__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.hero-stage__eyebrow {
    margin: 0 0 18px;
    color: var(--color-royal);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-stage__brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-stage__logo {
    width: 92px;
    height: 92px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    padding: 12px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.hero-stage__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-stage__institution {
    margin: 0 0 10px;
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-stage h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 5.6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    max-width: 8ch;
}

.hero-stage__native {
    margin: 22px 0 0;
    font-family: var(--font-native);
    font-size: 1.3rem;
}

.hero-stage__supporting,
.hero-stage__lead {
    max-width: 60ch;
    color: var(--color-text-muted);
}

.hero-stage__supporting {
    margin: 14px 0 0;
    font-size: 1rem;
}

.hero-stage__lead {
    margin: 18px 0 0;
    font-size: 1.08rem;
}

.hero-stage__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-stage__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.hero-stage__trust article {
    display: grid;
    gap: 8px;
}

.hero-stage__trust h2 {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.35;
}

.hero-stage__trust p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.94rem;
}

.hero-stage__visual {
    display: grid;
    gap: 18px;
}

.hero-stage__frame {
    position: relative;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.hero-stage__frame img {
    width: 100%;
    aspect-ratio: 5 / 4.2;
    object-fit: cover;
    border-radius: 20px;
}

.hero-stage__caption {
    position: absolute;
    left: 34px;
    bottom: 34px;
    max-width: 300px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.94);
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 12px 30px rgba(14, 18, 53, 0.14);
}

.hero-stage__caption span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-royal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-stage__caption strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1.15;
}

.hero-stage__caption p {
    margin: 0;
    color: var(--color-text-muted);
}

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

.hero-stage__thumb {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.hero-stage__thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.metrics-strip {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.84);
}

.metrics-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-strip__item {
    padding: 26px 18px;
    text-align: center;
}

.metrics-strip__item + .metrics-strip__item {
    border-left: 1px solid var(--color-border);
}

.metrics-strip__item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-royal);
    font-family: var(--font-display);
    font-size: 2.35rem;
    line-height: 1;
}

.metrics-strip__item span {
    color: var(--color-text-muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.notice-board__header,
.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.notice-board__header {
    margin-bottom: 28px;
}

.notice-board__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 28px;
}

.notice-board__featured,
.notice-board__item,
.programme-brochure__featured,
.programme-brochure__item,
.utility-hub__panel,
.contact-support__copy {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.notice-board__featured {
    padding: 30px 32px;
    border-top: 4px solid var(--color-primary);
    border-radius: 24px;
}

.notice-board__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--color-royal);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.notice-board__featured h3,
.notice-board__item h3,
.programme-brochure__featured h3,
.programme-brochure__item h3,
.leadership-spotlight__copy h3,
.utility-hub__panel h3,
.contact-support__copy h2 {
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.12;
}

.notice-board__featured h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.notice-board__featured p,
.notice-board__item p,
.programme-brochure__featured p,
.programme-brochure__item p,
.leadership-spotlight__copy p,
.utility-hub__panel p,
.contact-support__copy p {
    color: var(--color-text-muted);
}

.notice-board__link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--color-primary);
    font-weight: 700;
}

.notice-board__list {
    display: grid;
    gap: 14px;
}

.notice-board__item {
    padding: 22px 24px;
    border-radius: 20px;
}

.university-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 42px;
    align-items: start;
}

.university-intro__panel {
    padding: 30px 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 240, 0.98));
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-royal);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.university-intro__highlights {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.university-intro__highlight {
    padding-left: 16px;
    border-left: 2px solid rgba(233, 120, 23, 0.5);
    color: var(--color-text-muted);
}

.programme-brochure__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
}

.programme-brochure__featured {
    padding: 32px;
    border-radius: 24px;
    border-top: 4px solid var(--color-royal);
}

.programme-brochure__eyebrow {
    margin: 0 0 10px;
    color: var(--color-royal);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.programme-brochure__featured h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.programme-brochure__fee,
.programme-brochure__item strong {
    color: var(--color-primary);
    font-weight: 800;
}

.programme-brochure__list {
    display: grid;
    gap: 16px;
}

.programme-brochure__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
    border-radius: 20px;
}

.leadership-spotlight__featured {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.leadership-spotlight__image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.leadership-spotlight__copy {
    display: grid;
    gap: 18px;
    padding: 38px 40px;
}

.leadership-spotlight__copy h3 {
    font-size: clamp(2.2rem, 3vw, 3.6rem);
}

.leadership-spotlight__point {
    display: grid;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.leadership-spotlight__point strong {
    color: var(--color-royal);
}

.leadership-spotlight__point span {
    color: var(--color-text-muted);
}

.leadership-spotlight__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.faculty-card {
    box-shadow: var(--shadow-soft);
    border-radius: 20px;
}

.faculty-card__body {
    padding: 24px;
}

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

.utility-hub__panel {
    padding: 28px;
    border-radius: 22px;
}

.utility-hub__panel--accent {
    background: linear-gradient(135deg, #2f2e8b 0%, #232a73 100%);
    color: #fff;
}

.utility-hub__panel--accent .panel__eyebrow,
.utility-hub__panel--accent h3,
.utility-hub__panel--accent li {
    color: #fff;
}

.utility-hub__panel--accent .bullet-list li::before {
    background: rgba(255, 255, 255, 0.72);
}

.utility-hub__links {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.utility-hub__links a {
    display: block;
    padding: 12px 0;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
}

.utility-hub__panel--accent .utility-hub__links a {
    color: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.16);
}

.gallery-preview {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 96px;
    gap: 16px;
}

.gallery-preview__item {
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.gallery-preview__item--large {
    grid-column: span 7;
    grid-row: span 4;
}

.gallery-preview__item--standard {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-support {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.contact-support__copy {
    padding: 30px 32px;
    border-top: 4px solid var(--color-accent);
    border-radius: 24px;
}

.contact-support__copy h2 {
    font-size: clamp(2.1rem, 3vw, 3.3rem);
}

.contact-support__cards .contact-block {
    margin-top: 0;
}

.contact-card {
    border-radius: 20px;
}

.site-footer {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.88);
    background: #14194d;
}

.site-footer__upper {
    padding: 54px 0 0;
    background: linear-gradient(180deg, #232a73 0%, #14194d 100%);
}

.site-footer__brandband {
    display: grid;
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer__brand-logo {
    width: 88px;
    height: 88px;
    display: inline-grid;
    place-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 20px;
}

.site-footer__brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer__title,
.site-footer__native,
.site-footer__supporting,
.site-footer__copy,
.site-footer__panel h3,
.footer-links a,
.footer-links--contact li,
.social-row a {
    color: inherit;
}

.site-footer__title {
    color: #fff;
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.site-footer__native {
    margin: 6px 0 0;
    font-family: var(--font-native);
}

.site-footer__supporting {
    margin: 8px 0 0;
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer__legacy {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__legacy span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.15fr repeat(4, minmax(0, 0.9fr)) 1.05fr;
    gap: 0;
}

.site-footer__panel {
    min-height: 100%;
    padding: 28px 24px 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.site-footer__panel:last-child {
    border-right: 0;
}

.site-footer__panel--intro {
    background: rgba(255, 255, 255, 0.04);
}

.site-footer__panel h3 {
    margin: 0 0 16px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-links a:hover,
.social-row a:hover {
    color: #fff;
}

.social-row {
    gap: 10px;
    margin-top: 18px;
}

.social-row a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
}

.site-footer__bottom {
    padding: 0;
    background: #0d1133;
}

.site-footer__bottom-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.site-footer__bottom-row p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

@media (max-width: 1199px) {
    .topbar__note {
        display: none;
    }

    .brand-mark__title {
        font-size: 1.48rem;
    }

    .site-nav__list {
        flex-wrap: wrap;
    }

    .hero-stage__grid,
    .notice-board__grid,
    .university-intro,
    .programme-brochure__grid,
    .contact-support,
    .leadership-spotlight__featured {
        grid-template-columns: 1fr;
    }

    .hero-stage__trust,
    .utility-hub,
    .leadership-spotlight__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metrics-strip__item:nth-child(3),
    .metrics-strip__item:nth-child(4) {
        border-top: 1px solid var(--color-border);
    }

    .metrics-strip__item:nth-child(3) {
        border-left: 0;
    }

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

    .gallery-preview__item--large {
        grid-column: span 6;
    }

    .gallery-preview__item--standard {
        grid-column: span 3;
    }

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

@media (max-width: 991px) {
    .site-header__identity {
        min-height: 88px;
    }

    .brand-mark__logo-shell {
        width: 72px;
        height: 72px;
    }

    .brand-mark__meta {
        display: none;
    }

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

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 10px 0 18px;
        background: linear-gradient(180deg, #2f2e8b 0%, #25246f 100%);
        box-shadow: 0 18px 36px rgba(18, 26, 69, 0.18);
    }

    .site-header--nav-open .site-nav {
        display: block;
    }

    .site-nav__list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav__entry {
        justify-content: space-between;
    }

    .site-nav__link {
        width: 100%;
        padding: 16px 20px;
    }

    .site-nav__toggle {
        margin-right: 12px;
    }

    .site-nav__dropdown {
        position: static;
        min-width: 0;
        padding: 6px 0 6px 12px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-nav__item.is-open > .site-nav__dropdown {
        display: block;
    }

    .site-nav__link--sub {
        color: rgba(255, 255, 255, 0.86);
    }

    .site-nav__link--sub:hover,
    .site-nav__link--sub.is-active {
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
    }

    .site-nav__sublist .site-nav__toggle {
        color: rgba(255, 255, 255, 0.76);
    }

    .hero-stage__trust,
    .utility-hub,
    .leadership-spotlight__grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .programme-brochure__item {
        grid-template-columns: 1fr;
    }

    .gallery-preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 110px;
    }

    .gallery-preview__item--large,
    .gallery-preview__item--standard {
        grid-column: span 1;
        grid-row: span 2;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100vw - 24px, 1240px);
    }

    .brand-mark {
        gap: 12px;
    }

    .brand-mark__logo-shell {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .brand-mark__subtitle {
        font-size: 0.86rem;
    }

    .hero-stage {
        padding-top: 32px;
    }

    .hero-stage__brand {
        align-items: flex-start;
    }

    .hero-stage__logo {
        width: 72px;
        height: 72px;
        border-radius: 20px;
    }

    .hero-stage h1 {
        font-size: 2.8rem;
    }

    .hero-stage__caption {
        position: static;
        max-width: none;
        margin-top: 14px;
    }

    .hero-stage__thumbs,
    .metrics-strip__grid {
        grid-template-columns: 1fr;
    }

    .metrics-strip__item + .metrics-strip__item {
        border-left: 0;
        border-top: 1px solid var(--color-border);
    }

    .notice-board__header,
    .section-heading-row,
    .site-footer__brand,
    .site-footer__bottom-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__panel {
        padding-left: 0;
        padding-right: 0;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-footer__panel:first-child {
        border-top: 0;
    }
}

/* Final frontend refinement pass: white premium navbar, cleaner palette, hero/support balance */
:root {
    --color-primary: #e97817;
    --color-primary-strong: #d66710;
    --color-secondary: #f39a2b;
    --color-accent: #d9a63a;
    --color-royal: #2e3192;
    --color-deep-blue: #1f2674;
    --color-bg: #fbf7f0;
    --color-surface: #ffffff;
    --color-border: #e7ddd0;
    --color-text: #222222;
    --color-text-muted: #606066;
    --shadow-soft: 0 16px 38px rgba(31, 38, 116, 0.08);
    --shadow-card: 0 12px 28px rgba(31, 38, 116, 0.08);
}

.topbar {
    background: var(--color-deep-blue);
}

.topbar__links a::before {
    background: rgba(243, 154, 43, 0.9);
}

.site-header {
    background: rgba(251, 247, 240, 0.98);
    box-shadow: 0 8px 24px rgba(20, 26, 69, 0.04);
}

.site-header__main {
    background: rgba(255, 255, 255, 0.98);
}

.site-header__nav-bar {
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(231, 221, 208, 0.8);
    border-bottom: 1px solid rgba(231, 221, 208, 0.92);
}

.site-header__nav-shell {
    min-height: 66px;
}

.brand-mark__eyebrow {
    color: var(--color-royal);
}

.brand-mark__meta {
    color: var(--color-primary);
}

.site-nav {
    width: 100%;
}

.site-nav__list {
    justify-content: flex-start;
    gap: 2px;
}

.site-nav__entry {
    gap: 2px;
}

.site-nav__link {
    position: relative;
    padding: 18px 16px 17px;
    color: var(--color-royal);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
}

.site-nav__item.is-active > .site-nav__entry > .site-nav__link,
.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--color-royal);
    background: rgba(233, 120, 23, 0.05);
}

.site-nav__item.is-active > .site-nav__entry > .site-nav__link::after,
.site-nav__link:hover::after,
.site-nav__link.is-active::after {
    transform: scaleX(1);
    opacity: 1;
}

.site-nav__toggle {
    color: var(--color-royal);
}

.site-nav__item.is-active > .site-nav__entry > .site-nav__toggle,
.site-nav__item:hover > .site-nav__entry > .site-nav__toggle {
    color: var(--color-primary);
}

.site-nav__dropdown {
    top: calc(100% + 12px);
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(231, 221, 208, 0.95);
    box-shadow: 0 20px 44px rgba(24, 32, 85, 0.12);
}

.site-nav__dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 26px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-top: 1px solid rgba(231, 221, 208, 0.95);
    border-left: 1px solid rgba(231, 221, 208, 0.95);
    transform: rotate(45deg);
}

.site-nav__link--sub {
    color: var(--color-text);
    font-weight: 600;
}

.site-nav__link--sub::after {
    display: none;
}

.site-nav__link--sub:hover,
.site-nav__link--sub.is-active {
    color: var(--color-royal);
    background: rgba(46, 49, 146, 0.05);
}

.nav-toggle {
    background: #fff;
    border-color: rgba(231, 221, 208, 0.95);
    box-shadow: var(--shadow-card);
}

.nav-toggle span {
    background: var(--color-royal);
}

.hero-stage {
    padding: 52px 0 16px;
}

.hero-stage__grid {
    gap: 48px;
}

.hero-stage__frame {
    padding: 16px;
    border-radius: 30px;
    box-shadow: 0 18px 42px rgba(31, 38, 116, 0.08);
}

.hero-stage__frame img {
    aspect-ratio: 5 / 4;
}

.hero-stage__caption {
    border-left-color: var(--color-primary);
}

.hero-stage__support {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(250px, 1.1fr);
    gap: 16px;
}

.hero-stage__thumb {
    display: block;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.hero-stage__thumb img {
    width: 100%;
    height: 100%;
    min-height: 196px;
    object-fit: cover;
}

.hero-stage__support-card {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 24px 26px;
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(255, 255, 255, 0.98));
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-accent);
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}

.hero-stage__support-card h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.6rem;
    line-height: 1.18;
}

.hero-stage__support-links {
    display: grid;
    gap: 10px;
}

.hero-stage__support-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-royal);
    font-weight: 700;
}

.hero-stage__support-links a:last-child {
    border-bottom: 0;
}

.metrics-strip {
    background: rgba(255, 255, 255, 0.9);
}

.metrics-strip__item {
    padding: 28px 18px;
}

.notice-board__featured,
.notice-board__item,
.programme-brochure__featured,
.programme-brochure__item,
.utility-hub__panel,
.contact-support__copy {
    border-color: var(--color-border);
    box-shadow: var(--shadow-soft);
}

.notice-board__featured,
.programme-brochure__featured,
.contact-support__copy {
    border-top-width: 4px;
}

.notice-board__featured {
    border-top-color: var(--color-primary);
}

.programme-brochure__featured {
    border-top-color: var(--color-royal);
}

.utility-hub {
    gap: 20px;
}

.utility-hub__panel {
    padding: 30px;
    border-top: 4px solid transparent;
}

.utility-hub__panel:nth-child(1) {
    border-top-color: var(--color-primary);
}

.utility-hub__panel:nth-child(2) {
    border-top-color: var(--color-royal);
}

.utility-hub__panel--accent {
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(255, 255, 255, 0.98));
    color: var(--color-text);
    border-top-color: var(--color-accent);
}

.utility-hub__panel--accent .panel__eyebrow,
.utility-hub__panel--accent h3,
.utility-hub__panel--accent p,
.utility-hub__panel--accent li {
    color: inherit;
}

.utility-hub__panel--accent .bullet-list li::before {
    background: var(--color-primary);
}

.utility-hub__links a {
    color: var(--color-text);
}

.utility-hub__links a:hover {
    color: var(--color-royal);
}

.gallery-preview {
    gap: 18px;
}

.contact-support {
    gap: 24px;
}

.contact-support__copy {
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(255, 255, 255, 0.98));
    border-top-color: var(--color-accent);
}

.contact-card {
    box-shadow: var(--shadow-card);
}

.site-footer {
    background: var(--color-deep-blue);
}

.site-footer__upper {
    padding: 60px 0 0;
    background: linear-gradient(180deg, #2e3192 0%, #1f2674 100%);
}

.site-footer__brandband {
    gap: 28px;
    padding-bottom: 32px;
}

.site-footer__legacy span {
    background: rgba(255, 255, 255, 0.07);
}

.site-footer__grid {
    grid-template-columns: 1.15fr repeat(4, minmax(0, 0.86fr)) 1.05fr;
}

.site-footer__panel {
    padding: 32px 24px 36px;
    border-right-color: rgba(255, 255, 255, 0.1);
}

.site-footer__panel h3 {
    font-size: 0.92rem;
}

.site-footer__bottom {
    background: #171d5e;
}

.site-footer__bottom-row {
    align-items: center;
}

@media (max-width: 1199px) {
    .hero-stage__support {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 991px) {
    .site-header__nav-bar {
        background: rgba(255, 255, 255, 0.98);
    }

    .site-nav {
        top: calc(100% + 10px);
        padding: 8px;
        background: #fff;
        border: 1px solid var(--color-border);
        border-radius: 22px;
        box-shadow: 0 18px 40px rgba(31, 38, 116, 0.12);
    }

    .site-nav__link {
        color: var(--color-royal);
        border-radius: 14px;
        padding: 14px 16px;
    }

    .site-nav__link::after {
        left: 16px;
        right: auto;
        width: 24px;
        bottom: 8px;
    }

    .site-nav__toggle {
        color: var(--color-royal);
    }

    .site-nav__dropdown {
        margin-top: 4px;
        padding: 4px 0 4px 10px;
        border: 0;
        box-shadow: none;
        border-radius: 0;
    }

    .site-nav__dropdown::before {
        display: none;
    }

    .hero-stage__grid {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    .site-header__identity {
        min-height: 82px;
    }

    .site-header__nav-shell {
        min-height: 58px;
    }

    .topbar__links {
        gap: 10px;
    }

    .hero-stage__support-card {
        padding: 22px;
    }

    .utility-hub__panel,
    .contact-support__copy {
        padding: 24px;
    }

    .site-footer__brandband {
        padding-bottom: 26px;
    }

    .site-footer__bottom-row {
        align-items: flex-start;
    }
}

/* Premium polish pass */
:root {
    --color-text-muted: #4d5260;
    --shadow-soft: 0 18px 44px rgba(31, 38, 116, 0.07);
    --shadow-card: 0 12px 28px rgba(31, 38, 116, 0.08);
}

.section-shell {
    padding: clamp(76px, 8vw, 110px) 0;
}

.site-header__identity {
    justify-content: center;
    min-height: 142px;
    padding: 18px 0 20px;
    text-align: center;
}

.brand-mark {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    width: 100%;
    text-align: center;
}

.brand-mark__logo-shell {
    width: 94px;
    height: 94px;
    border-radius: 24px;
}

.brand-mark__text {
    justify-items: center;
    align-items: center;
    gap: 6px;
}

.brand-mark__title {
    max-width: 24ch;
    font-size: clamp(1.8rem, 2.35vw, 2.45rem);
    line-height: 1.14;
    letter-spacing: -0.02em;
}

.brand-mark__subtitle {
    max-width: 42ch;
    color: var(--color-royal);
    font-size: 0.98rem;
    line-height: 1.45;
}

.site-header__nav-shell {
    justify-content: center;
}

.site-nav__list {
    justify-content: center;
}

.site-nav__link {
    padding: 20px 18px 18px;
}

.hero-stage {
    padding: 66px 0 22px;
}

.hero-stage__grid {
    gap: 56px;
    align-items: start;
}

.hero-stage__content {
    max-width: 690px;
    padding-top: 14px;
}

.hero-stage__brand {
    gap: 20px;
}

.hero-stage__logo {
    width: 84px;
    height: 84px;
    border-radius: 22px;
}

.hero-stage__institution {
    color: var(--color-primary);
}

.hero-stage h1 {
    max-width: 10.5ch;
    font-size: clamp(4rem, 5.8vw, 6rem);
    line-height: 0.93;
}

.hero-stage__native {
    margin-top: 26px;
    font-size: 1.2rem;
}

.hero-stage__supporting {
    margin-top: 12px;
    font-size: 1.04rem;
    line-height: 1.7;
}

.hero-stage__lead {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-stage__actions {
    gap: 16px;
    margin-top: 34px;
}

.hero-stage__trust {
    gap: 20px;
    margin-top: 42px;
    padding-top: 28px;
}

.hero-stage__trust article {
    padding-right: 10px;
}

.hero-stage__frame {
    border-radius: 32px;
}

.hero-stage__frame img {
    aspect-ratio: 5 / 4.1;
}

.hero-stage__caption {
    left: 30px;
    bottom: 30px;
}

.hero-stage__support {
    align-items: stretch;
    gap: 18px;
    margin-top: 2px;
}

.hero-stage__support-card {
    padding: 26px 28px;
}

.hero-stage__support-card h2 {
    font-size: 1.48rem;
    line-height: 1.25;
}

.metrics-strip__item strong {
    font-size: 2.5rem;
}

.section-title {
    margin-bottom: 32px;
}

.section-title__heading {
    font-size: clamp(2.7rem, 4vw, 4.35rem);
    line-height: 1.03;
}

.section-title__lead,
.hero-stage__supporting,
.hero-stage__lead,
.notice-board__featured p,
.notice-board__item p,
.programme-brochure__featured p,
.programme-brochure__item p,
.leadership-spotlight__copy p,
.utility-hub__panel p,
.contact-support__copy p,
.site-footer__copy,
.site-footer__supporting {
    color: var(--color-text-muted);
}

.notice-board__featured,
.programme-brochure__featured,
.faculty-card,
.gallery-preview__item,
.utility-hub__panel,
.contact-card,
.contact-support__copy {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.notice-board__featured:hover,
.programme-brochure__featured:hover,
.faculty-card:hover,
.gallery-preview__item:hover,
.utility-hub__panel:hover,
.contact-card:hover,
.contact-support__copy:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(31, 38, 116, 0.11);
}

.notice-board__item,
.programme-brochure__item,
.contact-card {
    transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.notice-board__item {
    background: rgba(255, 255, 255, 0.62);
    box-shadow: none;
    border-radius: 16px;
}

.notice-board__item:hover {
    transform: translateY(-2px);
    border-color: rgba(233, 120, 23, 0.34);
    background: #fff;
}

.programme-brochure__featured {
    border-radius: 22px;
}

.programme-brochure__item {
    padding: 18px 0 18px 22px;
    background: transparent;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
    border-left: 2px solid rgba(46, 49, 146, 0.14);
    border-radius: 0;
    box-shadow: none;
}

.programme-brochure__item:hover {
    border-left-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.58);
}

.faculty-card {
    border-radius: 18px;
}

.utility-hub__panel {
    box-shadow: none;
}

.utility-hub__panel:hover {
    border-color: rgba(46, 49, 146, 0.2);
}

.contact-card {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.86);
}

.contact-card:hover {
    background: #fff;
}

.btn,
.site-nav__link,
.site-nav__toggle,
.footer-links a,
.social-row a {
    transition: all 200ms ease;
}

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

.footer-links a:hover {
    color: #fff;
    transform: translateX(2px);
}

.social-row a:hover {
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .site-nav__item.has-children > .site-nav__dropdown {
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    }

    .site-nav__item.has-children:hover > .site-nav__dropdown,
    .site-nav__item.has-children:focus-within > .site-nav__dropdown,
    .site-nav__item.is-open > .site-nav__dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.site-footer__upper {
    padding-top: 64px;
}

.site-footer__brandband {
    padding-bottom: 36px;
}

.site-footer__brand {
    gap: 22px;
}

.site-footer__brand-logo {
    width: 104px;
    height: 104px;
    border-radius: 22px;
}

.site-footer__title {
    font-size: clamp(1.95rem, 2.7vw, 2.7rem);
}

.site-footer__grid {
    align-items: start;
}

.site-footer__panel {
    padding: 36px 28px 42px;
}

.site-footer__panel h3 {
    margin-bottom: 20px;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.footer-links li + li {
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__panel--intro {
    background: rgba(255, 255, 255, 0.05);
}

.site-footer__bottom-row {
    padding: 20px 0;
}

@media (max-width: 991px) {
    .site-header__identity {
        min-height: 116px;
    }

    .brand-mark__logo-shell {
        width: 78px;
        height: 78px;
    }

    .site-header__nav-shell {
        justify-content: flex-end;
    }

    .nav-toggle {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .site-nav {
        top: calc(100% + 12px);
    }

    .site-nav__link {
        padding: 15px 16px;
    }

    .hero-stage {
        padding-top: 48px;
    }

    .hero-stage__content {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .section-shell {
        padding: 64px 0;
    }

    .site-header__identity {
        min-height: 102px;
        padding: 14px 0 16px;
    }

    .brand-mark__logo-shell {
        width: 68px;
        height: 68px;
        border-radius: 20px;
    }

    .brand-mark__title {
        font-size: 1.42rem;
    }

    .brand-mark__subtitle {
        font-size: 0.88rem;
    }

    .hero-stage h1 {
        font-size: 3.05rem;
    }

    .hero-stage__brand {
        gap: 14px;
    }

    .hero-stage__logo {
        width: 70px;
        height: 70px;
    }

    .hero-stage__trust {
        gap: 18px;
    }

    .notice-board__header,
    .section-heading-row {
        gap: 18px;
    }

    .site-footer__panel {
        padding: 24px 0 26px;
    }
}

/* Final visual consistency pass */
.brand-mark {
    width: auto;
    margin: 0 auto;
}

.site-header__identity {
    padding: 20px 0 24px;
}

.section-title__heading,
.hero-stage h1,
.notice-board__featured h3,
.programme-brochure__featured h3,
.leadership-spotlight__copy h3,
.site-footer__title {
    font-weight: 700;
}

.section-title__lead {
    margin-top: 18px;
    line-height: 1.78;
}

.hero-stage__supporting,
.hero-stage__lead {
    max-width: 58ch;
}

.hero-stage__actions .btn {
    min-width: 180px;
}

.btn,
.site-nav__link,
.site-nav__toggle,
.site-nav__dropdown,
.notice-board__featured,
.notice-board__item,
.programme-brochure__featured,
.programme-brochure__item,
.faculty-card,
.utility-hub__panel,
.contact-card,
.gallery-preview__item,
.social-row a,
.footer-links a {
    transition: all 220ms ease;
}

.site-nav__dropdown {
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.site-footer {
    margin-top: 16px;
    color: #384150;
    background: #f4efe8;
    border-top: 1px solid #e5d9c8;
}

.site-footer__upper {
    padding-top: 52px;
    background: linear-gradient(180deg, #f7f2eb 0%, #f4efe8 100%);
}

.site-footer__brandband {
    gap: 24px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5d9c8;
}

.site-footer__brand {
    align-items: center;
}

.site-footer__brand-logo {
    width: 112px;
    height: 112px;
    background: #fffdfa;
    border: 1px solid #e5d9c8;
    box-shadow: 0 12px 28px rgba(31, 38, 116, 0.06);
}

.site-footer__eyebrow {
    color: var(--color-royal);
}

.site-footer__title {
    color: var(--color-deep-blue);
}

.site-footer__native {
    color: #4b538f;
}

.site-footer__supporting,
.site-footer__copy,
.site-footer__bottom-row p {
    color: #5e6775;
}

.site-footer__legacy span {
    color: #49515f;
    background: rgba(255, 255, 255, 0.75);
    border-color: #e5d9c8;
}

.site-footer__grid {
    align-items: start;
}

.site-footer__panel {
    border-right: 1px solid #e5d9c8;
}

.site-footer__panel--intro {
    background: rgba(255, 255, 255, 0.5);
}

.site-footer__panel h3 {
    color: var(--color-deep-blue);
    font-weight: 800;
    letter-spacing: 0.1em;
}

.footer-links a,
.footer-links--contact li,
.social-row a {
    color: #5a6472;
}

.footer-links li + li {
    border-top-color: rgba(229, 217, 200, 0.9);
}

.footer-links a:hover,
.social-row a:hover {
    color: var(--color-primary);
}

.social-row a {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5d9c8;
}

.site-footer__bottom {
    background: rgba(255, 255, 255, 0.45);
    border-top: 1px solid #e5d9c8;
}

@media (max-width: 991px) {
    .brand-mark {
        width: auto;
    }

    .site-footer__upper {
        padding-top: 44px;
    }

    .site-footer__grid {
        gap: 0;
    }

    .site-footer__panel {
        border-right: 0;
        border-top: 1px solid #e5d9c8;
    }
}

@media (max-width: 767px) {
    .site-header__identity {
        padding: 16px 0 18px;
    }

    .hero-stage__actions .btn {
        min-width: 0;
        width: 100%;
    }

    .site-footer__brand-logo {
        width: 94px;
        height: 94px;
    }
}

/* Header footprint refinement */
.topbar__inner {
    min-height: 34px;
}

.site-header__identity {
    justify-content: center;
    min-height: 88px;
    padding: 12px 0 14px;
    text-align: center;
}

.brand-mark {
    width: auto;
    max-width: min(100%, 980px);
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: left;
}

.brand-mark__logo-shell {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 18px;
}

.brand-mark__text {
    flex: 0 1 auto;
    min-width: 0;
    justify-items: start;
    align-items: start;
    gap: 4px;
}

.brand-mark__title {
    max-width: none;
    font-size: clamp(1.32rem, 1.85vw, 1.9rem);
    line-height: 1.18;
}

.brand-mark__subtitle {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.42;
}

.site-header__nav-shell {
    min-height: 54px;
    justify-content: center;
}

.site-nav {
    width: 100%;
}

.site-nav__list {
    justify-content: center;
}

.site-nav__link {
    padding: 15px 16px 13px;
    font-size: 0.92rem;
}

.site-nav__link::after {
    bottom: 8px;
}

.site-nav__dropdown {
    top: calc(100% + 8px);
}

@media (max-width: 991px) {
    .site-header__identity {
        justify-content: center;
        min-height: 74px;
        padding: 10px 0 12px;
    }

    .brand-mark {
        max-width: calc(100% - 72px);
        margin: 0 auto;
        padding-right: 0;
    }

    .brand-mark__logo-shell {
        width: 56px;
        height: 56px;
        border-radius: 16px;
    }

    .brand-mark__title {
        font-size: 1.18rem;
    }

    .brand-mark__subtitle {
        font-size: 0.8rem;
    }

    .site-header__nav-shell {
        min-height: 50px;
    }
}

@media (max-width: 767px) {
    .topbar__inner {
        min-height: 32px;
    }

    .site-header__identity {
        justify-content: center;
        min-height: 68px;
        padding: 8px 0 10px;
    }

    .brand-mark {
        gap: 10px;
        max-width: calc(100% - 60px);
        padding-right: 0;
    }

    .brand-mark__logo-shell {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .brand-mark__title {
        font-size: 1rem;
        line-height: 1.24;
    }

    .brand-mark__subtitle {
        font-size: 0.74rem;
        line-height: 1.35;
    }

    .site-header__nav-shell {
        min-height: 46px;
    }
}

/* Hero left-side refinement */
.hero-stage__content {
    position: relative;
    max-width: 720px;
    padding: 18px 26px 22px 0;
}

.hero-stage__content::before {
    content: "";
    position: absolute;
    inset: 0 14% 0 0;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0)),
        radial-gradient(circle at top left, rgba(243, 154, 43, 0.08), transparent 45%);
    pointer-events: none;
}

.hero-stage__content > * {
    position: relative;
    z-index: 1;
}

.hero-stage__kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-stage__eyebrow {
    margin: 0;
    padding: 0;
    color: var(--color-royal);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-stage__chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(233, 120, 23, 0.1);
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-stage h1 {
    max-width: 9.4ch;
    margin-bottom: 0;
    font-size: clamp(3.45rem, 5.2vw, 5.35rem);
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.hero-stage__native {
    margin-top: 22px;
}

.hero-stage__supporting {
    margin-top: 10px;
}

.hero-stage__lead {
    margin-top: 16px;
    max-width: 56ch;
}

.hero-stage__actions {
    margin-top: 28px;
}

.hero-stage__trust {
    margin-top: 34px;
    padding-top: 22px;
    gap: 16px;
}

.hero-stage__trust article {
    padding: 18px 18px 0 0;
    border-top: 1px solid rgba(46, 49, 146, 0.14);
}

.hero-stage__trust h2 {
    color: var(--color-royal);
}

@media (max-width: 991px) {
    .hero-stage__content {
        max-width: none;
        padding: 10px 0 0;
    }

    .hero-stage__content::before {
        inset: 0;
    }

    .hero-stage h1 {
        max-width: 10.5ch;
        font-size: clamp(3rem, 7vw, 4.25rem);
    }
}

@media (max-width: 767px) {
    .hero-stage__content {
        padding: 4px 0 0;
    }

    .hero-stage__content::before {
        border-radius: 22px;
    }

    .hero-stage__kicker {
        gap: 10px;
        margin-bottom: 14px;
    }

    .hero-stage__chip {
        min-height: 30px;
        padding: 0 12px;
        font-size: 0.74rem;
    }

    .hero-stage h1 {
        max-width: 10ch;
        font-size: 2.85rem;
    }

    .hero-stage__trust article {
        padding-right: 0;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-body);
    color: var(--color-text);
    background:
        radial-gradient(circle at top right, rgba(242, 154, 46, 0.18), transparent 26%),
        radial-gradient(circle at left center, rgba(142, 44, 44, 0.1), transparent 24%),
        linear-gradient(180deg, #fcfaf6 0%, #f7f2ea 45%, #faf7f2 100%);
    line-height: 1.65;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

main {
    overflow: hidden;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 24px;
    top: -48px;
    padding: 10px 14px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 10px;
    z-index: 1000;
}

.skip-link:focus {
    top: 16px;
}

.topbar {
    background: rgba(33, 25, 21, 0.92);
    color: rgba(255, 249, 239, 0.86);
    font-size: 0.88rem;
}

.topbar__inner,
.topbar__contact,
.topbar__links,
.site-header__inner,
.site-nav,
.site-nav__list,
.site-nav__actions,
.hero-copy__actions,
.section-heading-row,
.chip-group,
.stack-actions,
.cta-band__actions,
.contact-block,
.social-row {
    display: flex;
    align-items: center;
}

.topbar__inner {
    justify-content: space-between;
    gap: 24px;
    min-height: 44px;
}

.topbar__contact,
.topbar__links {
    gap: 18px;
    flex-wrap: wrap;
}

.topbar a {
    color: inherit;
    transition: color var(--transition);
}

.topbar a:hover {
    color: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    backdrop-filter: blur(16px);
}

.site-header__bar {
    background: rgba(252, 250, 246, 0.88);
    border-bottom: 1px solid rgba(87, 46, 38, 0.08);
}

.site-header__inner {
    justify-content: space-between;
    gap: 28px;
    min-height: 86px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-mark__seal {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-card);
}

.brand-mark__text {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.brand-mark__eyebrow {
    color: var(--color-primary);
    font-family: var(--font-native);
    font-size: 0.92rem;
    line-height: 1.3;
}

.brand-mark__title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1;
    color: var(--color-text);
}

.site-nav {
    gap: 28px;
    margin-left: auto;
}

.site-nav__list {
    list-style: none;
    gap: 6px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--color-text-muted);
    font-size: 0.94rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--color-primary);
    background: rgba(123, 30, 34, 0.08);
}

.site-nav__actions {
    gap: 12px;
    flex-shrink: 0;
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.88);
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: var(--shadow-card);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 999px;
    transition: transform var(--transition), opacity var(--transition);
}

.site-header--nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header--nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header--nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
    box-shadow: 0 18px 36px rgba(123, 30, 34, 0.22);
}

.btn--primary:hover {
    box-shadow: 0 20px 42px rgba(123, 30, 34, 0.28);
}

.btn--ghost {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.68);
    border-color: rgba(123, 30, 34, 0.16);
}

.btn--ghost:hover {
    background: rgba(123, 30, 34, 0.06);
    border-color: rgba(123, 30, 34, 0.26);
}

.hero-section,
.page-hero,
.section-shell,
.cta-band {
    position: relative;
}

.hero-section::before,
.page-hero::before,
.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-section {
    padding: 48px 0 24px;
}

.hero-section::before {
    background:
        radial-gradient(circle at top right, rgba(191, 141, 57, 0.18), transparent 24%),
        radial-gradient(circle at left 20%, rgba(123, 30, 34, 0.16), transparent 20%);
}

.hero-section__grid,
.split-grid,
.cta-band__inner,
.page-hero__inner {
    display: grid;
    gap: 28px;
}

.hero-section__grid,
.split-grid--balanced {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.split-grid--sidebar {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.hero-copy,
.hero-visual,
.panel,
.stat-card,
.program-card,
.faculty-card,
.value-card,
.link-card,
.notice-card,
.contact-card,
.step-card,
.faq-item,
.cta-band__inner,
.page-hero__inner,
.timeline__content,
.list-panel__item,
.empty-state,
.table-shell {
    background: rgba(255, 253, 249, 0.82);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.hero-copy,
.hero-visual,
.page-hero__inner,
.panel,
.program-card,
.faculty-card,
.value-card,
.link-card,
.notice-card,
.contact-card,
.step-card,
.faq-item,
.timeline__content,
.empty-state,
.table-shell {
    border-radius: var(--radius-lg);
}

.hero-copy,
.hero-visual {
    padding: clamp(26px, 4vw, 42px);
}

.hero-copy {
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto -10% -28% auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 141, 57, 0.14), transparent 70%);
}

.hero-copy__eyebrow,
.panel__eyebrow,
.section-title__eyebrow,
.page-hero__eyebrow,
.site-footer__eyebrow,
.program-card__eyebrow,
.cta-band__eyebrow,
.contact-card__label,
.faculty-card__role,
.hero-visual__card-label {
    margin: 0 0 10px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 800;
}

.hero-copy h1,
.page-hero__title,
.cta-band h2,
.section-title__heading,
.hero-visual__card h2,
.site-footer__title {
    margin: 0;
    font-family: var(--font-display);
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.hero-copy h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
    max-width: 13ch;
}

.hero-copy__native {
    margin: 14px 0 0;
    font-family: var(--font-native);
    font-size: 1.28rem;
    color: var(--color-text);
}

.hero-copy__supporting,
.hero-copy__lead,
.page-hero__lead,
.section-title__lead,
.program-card__copy,
.panel__copy,
.cta-band p,
.value-card p,
.notice-card p,
.timeline__content p,
.step-card p,
.faq-item__body p,
.site-footer__copy {
    color: var(--color-text-muted);
}

.hero-copy__supporting {
    font-size: 1.04rem;
    margin: 14px 0 0;
    max-width: 52ch;
}

.hero-copy__lead {
    font-size: 1.08rem;
    margin: 18px 0 0;
    max-width: 58ch;
}

.hero-copy__actions {
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.hero-trust,
.stat-grid,
.card-grid,
.value-grid,
.links-grid,
.faculty-grid,
.faq-list,
.gallery-grid,
.step-grid {
    display: grid;
    gap: 20px;
}

.hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
}

.hero-trust__item {
    position: relative;
    padding-top: 18px;
}

.hero-trust__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), rgba(191, 141, 57, 0.4));
}

.hero-trust__item h2,
.hero-visual__card h2,
.program-card h3,
.faculty-card h3,
.value-card h3,
.link-card strong,
.notice-card h3,
.timeline__content h2,
.step-card h2,
.site-footer h3,
.panel h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.hero-trust__item p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.hero-visual {
    display: grid;
    gap: 20px;
    align-content: start;
    background:
        linear-gradient(180deg, rgba(255, 249, 239, 0.9), rgba(255, 253, 249, 0.82)),
        radial-gradient(circle at top left, rgba(123, 30, 34, 0.08), transparent 36%);
}

.hero-visual__image {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(87, 46, 38, 0.08);
}

.hero-visual__image img {
    width: 100%;
    aspect-ratio: 4 / 4.3;
    object-fit: cover;
}

.hero-visual__card {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(123, 30, 34, 0.96), rgba(91, 16, 21, 0.96));
    color: #fff8f0;
}

.hero-visual__card h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
}

.hero-visual__notice {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-visual__notice span {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.84;
}

.hero-visual__notice p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.section-shell {
    padding: clamp(56px, 7vw, 92px) 0;
}

.section-shell--tight {
    padding-top: 18px;
    padding-bottom: 30px;
}

.section-shell--muted {
    background: linear-gradient(180deg, rgba(255, 251, 243, 0.76), rgba(246, 240, 230, 0.38));
}

.stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    padding: 26px 22px;
    border-radius: 24px;
    text-align: center;
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
}

.stat-card span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.section-title {
    margin-bottom: 28px;
    max-width: 720px;
}

.section-title__heading {
    font-size: clamp(2.1rem, 3.6vw, 3.3rem);
}

.section-title__lead,
.page-hero__lead {
    margin: 16px 0 0;
    max-width: 60ch;
}

.panel {
    padding: 28px;
}

.panel--warm {
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.95), rgba(252, 246, 236, 0.88));
}

.panel--accent {
    color: #fff8f0;
    background: linear-gradient(135deg, #8b2326, #6c1419 65%, #49272b);
}

.panel--accent .panel__eyebrow,
.panel--accent h3,
.panel--accent p,
.panel--accent li,
.panel--accent .btn--ghost {
    color: inherit;
}

.panel--accent .btn--ghost {
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}

.prose-block {
    display: grid;
    gap: 16px;
}

.prose-block p,
.panel p,
.program-card p,
.value-card p,
.notice-card p,
.contact-card a,
.contact-card strong {
    margin: 0;
    font-size: 1rem;
}

.prose-block--native {
    font-family: var(--font-native);
    font-size: 1.03rem;
}

.bullet-list,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bullet-list {
    display: grid;
    gap: 12px;
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
}

.stack-actions {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

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

.card-grid--programs,
.value-grid,
.links-grid,
.faculty-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.links-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faculty-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.program-card {
    padding: 26px;
    display: grid;
    gap: 18px;
    height: 100%;
}

.program-card__header {
    display: grid;
    gap: 10px;
}

.program-card__copy {
    min-height: 58px;
}

.program-card__fee,
.price-tag {
    color: var(--color-primary);
    font-weight: 800;
    font-size: 1.02rem;
}

.chip-group {
    gap: 10px;
    flex-wrap: wrap;
}

.chip-group--spaced {
    margin-bottom: 28px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--color-secondary-soft);
    color: #6a4a17;
    font-size: 0.87rem;
    font-weight: 700;
}

.faculty-card {
    overflow: hidden;
    display: grid;
    min-height: 100%;
}

.faculty-card img,
.faculty-card__avatar {
    width: 100%;
    aspect-ratio: 4 / 4.4;
}

.faculty-card img {
    object-fit: cover;
    background: rgba(191, 141, 57, 0.08);
}

.faculty-card__avatar {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(123, 30, 34, 0.16), rgba(191, 141, 57, 0.18));
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.faculty-card__body {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.faculty-card__body p {
    margin: 0;
    color: var(--color-text-muted);
}

.value-card,
.link-card,
.contact-card,
.step-card {
    padding: 24px;
}

.link-card {
    display: grid;
    gap: 10px;
    min-height: 100%;
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: rgba(123, 30, 34, 0.22);
    background: rgba(255, 251, 244, 0.92);
}

.link-card span {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.section-heading-row {
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 24px;
}

.notice-list {
    display: grid;
    gap: 18px;
}

.notice-card {
    padding: 24px;
    display: grid;
    gap: 14px;
}

.notice-card__meta,
.site-footer__bottom,
.page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.notice-card__meta {
    justify-content: space-between;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.notice-card__actions {
    display: flex;
    justify-content: flex-start;
}

.contact-block {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 20px;
}

.contact-card {
    padding: 20px 22px;
}

.contact-card a,
.contact-card strong {
    font-size: 1.02rem;
    font-weight: 700;
}

.page-hero {
    padding: 42px 0 12px;
}

.page-hero::before {
    background:
        linear-gradient(180deg, rgba(255, 251, 244, 0.74), rgba(255, 251, 244, 0)),
        radial-gradient(circle at top left, rgba(123, 30, 34, 0.12), transparent 32%);
}

.page-hero__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    padding: 34px 38px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.page-hero__meta {
    justify-content: flex-end;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.page-hero__meta span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(123, 30, 34, 0.06);
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline__item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
}

.timeline__year {
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--color-primary), #8e292c);
    color: #fff;
    box-shadow: var(--shadow-card);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}

.timeline__content {
    padding: 26px 28px;
}

.list-panel {
    display: grid;
    gap: 14px;
}

.list-panel__item {
    padding: 20px 22px;
    border-radius: 20px;
}

.table-shell {
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(87, 46, 38, 0.08);
}

.data-table thead th {
    background: rgba(123, 30, 34, 0.06);
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.data-table tbody tr:last-child td {
    border-bottom: 0;
}

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

.step-card {
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: "";
    position: absolute;
    inset: auto auto 0 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
}

.step-card__number {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(123, 30, 34, 0.08);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-list {
    gap: 16px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-size: 1.05rem;
    font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--color-primary);
    font-size: 1.5rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item__body {
    padding: 0 26px 24px;
}

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

.gallery-grid__item {
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 22px;
    box-shadow: var(--shadow-card);
}

.gallery-grid__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(32, 25, 21, 0.18));
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-grid__item:hover::after {
    opacity: 1;
}

.gallery-grid__item img {
    width: 100%;
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
    transition: transform 260ms ease;
}

.gallery-grid__item:hover img {
    transform: scale(1.04);
}

.empty-state {
    padding: 24px 26px;
    color: var(--color-text-muted);
}

.cta-band {
    padding: 0 0 clamp(60px, 7vw, 100px);
}

.cta-band::before {
    inset: auto 0 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(246, 240, 230, 0), rgba(239, 229, 214, 0.72));
}

.cta-band__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 34px 38px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(123, 30, 34, 0.98), rgba(71, 14, 18, 0.98));
    color: #fff8ef;
}

.cta-band__actions {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cta-band .btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.site-footer {
    padding: 0 0 34px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
    gap: 20px;
}

.site-footer__panel {
    padding: 28px;
    border-radius: 24px;
    background: rgba(31, 22, 18, 0.94);
    color: rgba(255, 247, 236, 0.84);
    box-shadow: 0 24px 56px rgba(32, 25, 21, 0.18);
}

.site-footer__title {
    font-size: 2rem;
    color: #fffaf2;
}

.site-footer__native {
    margin: 10px 0 0;
    color: rgba(255, 247, 236, 0.88);
    font-family: var(--font-native);
}

.footer-links {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.footer-links a,
.social-row a {
    color: rgba(255, 247, 236, 0.84);
    transition: color var(--transition);
}

.footer-links a:hover,
.social-row a:hover {
    color: #fff;
}

.footer-links--contact li {
    color: rgba(255, 247, 236, 0.88);
}

.social-row {
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.site-footer__bottom {
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding: 0 6px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(18, 14, 12, 0.78);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 80;
}

.lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox__image {
    max-width: min(1080px, 92vw);
    max-height: 78vh;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.lightbox__caption {
    margin: 12px 0 0;
    text-align: center;
    color: rgba(255, 249, 239, 0.9);
}

.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 1199px) {
    .site-header__inner {
        min-height: 78px;
    }

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

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        display: none;
        padding: 20px;
        border-radius: 24px;
        border: 1px solid var(--color-border);
        background: rgba(255, 251, 244, 0.98);
        box-shadow: 0 20px 42px rgba(55, 29, 18, 0.14);
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }

    .site-header--nav-open .site-nav {
        display: flex;
    }

    .site-nav__list,
    .site-nav__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav__link {
        justify-content: space-between;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .hero-section__grid,
    .split-grid--balanced,
    .split-grid--sidebar,
    .page-hero__inner,
    .cta-band__inner,
    .timeline__item {
        grid-template-columns: 1fr;
    }

    .hero-trust,
    .stat-grid,
    .card-grid,
    .card-grid--programs,
    .value-grid,
    .links-grid,
    .links-grid--wide,
    .faculty-grid,
    .faculty-grid--compact,
    .gallery-grid,
    .step-grid,
    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero__meta,
    .cta-band__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .container {
        width: min(100vw - 24px, 100%);
    }

    .topbar {
        display: none;
    }

    .site-header__inner {
        min-height: 72px;
        gap: 14px;
    }

    .brand-mark__seal {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 1.25rem;
    }

    .brand-mark__title {
        font-size: 1.22rem;
    }

    .brand-mark__eyebrow {
        font-size: 0.8rem;
    }

    .hero-copy,
    .hero-visual,
    .page-hero__inner,
    .panel,
    .program-card,
    .faculty-card__body,
    .value-card,
    .link-card,
    .notice-card,
    .contact-card,
    .step-card,
    .table-shell,
    .cta-band__inner {
        padding: 22px;
    }

    .hero-copy h1 {
        font-size: 2.6rem;
    }

    .hero-trust,
    .stat-grid,
    .card-grid,
    .card-grid--programs,
    .value-grid,
    .links-grid,
    .links-grid--wide,
    .faculty-grid,
    .faculty-grid--compact,
    .gallery-grid,
    .step-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .section-heading-row,
    .hero-copy__actions,
    .stack-actions,
    .cta-band__actions,
    .site-footer__bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .timeline__year {
        min-height: 88px;
    }

    .data-table th,
    .data-table td {
        padding: 14px 16px;
        font-size: 0.94rem;
    }

    .faq-item summary {
        padding: 18px 20px;
    }

    .faq-item__body {
        padding: 0 20px 20px;
    }

    .site-footer {
        padding-bottom: 26px;
    }
}

.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;
}

.brand-mark__logo-shell {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    padding: 10px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 239, 0.82));
    border: 1px solid rgba(112, 66, 39, 0.12);
    box-shadow: 0 20px 44px rgba(67, 38, 23, 0.12);
}

.brand-mark__logo-shell img,
.site-footer__crest-logo img,
.page-hero__logo img,
.hero-copy__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-mark__subtitle {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.site-header__bar {
    background:
        linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(255, 248, 239, 0.9)),
        linear-gradient(90deg, rgba(242, 154, 46, 0.06), rgba(142, 44, 44, 0.03));
}

.site-nav__list {
    gap: 10px;
}

.site-nav__item {
    position: relative;
    list-style: none;
}

.site-nav__entry {
    display: flex;
    align-items: center;
    gap: 2px;
}

.site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    transition: background var(--transition);
}

.site-nav__toggle:hover {
    background: rgba(142, 44, 44, 0.08);
}

.site-nav__caret {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform var(--transition);
}

.site-nav__item.is-open > .site-nav__entry .site-nav__caret,
.site-nav__item.is-active > .site-nav__entry .site-nav__caret,
.site-nav__item:hover > .site-nav__entry .site-nav__caret {
    transform: rotate(225deg) translateY(-1px);
}

.site-nav__dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    min-width: 250px;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 26px 56px rgba(55, 29, 18, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.site-nav__sublist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.site-nav__link--sub {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 16px;
}

.site-nav__item.has-children:hover > .site-nav__dropdown,
.site-nav__item.has-children:focus-within > .site-nav__dropdown,
.site-nav__item.is-open > .site-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
}

.hero-copy__brandline {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-copy__logo {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(112, 66, 39, 0.12);
    box-shadow: 0 18px 42px rgba(67, 38, 23, 0.1);
}

.hero-copy__institution {
    margin: 0 0 8px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-copy__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 248, 239, 0.88);
    border: 1px solid rgba(112, 66, 39, 0.12);
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-showcase {
    display: grid;
    gap: 18px;
}

.hero-showcase__media {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(112, 66, 39, 0.12);
    box-shadow: var(--shadow-card);
}

.hero-showcase__media img {
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
}

.hero-showcase__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 15, 12, 0.1), rgba(22, 15, 12, 0.56));
}

.hero-showcase__overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(27, 18, 15, 0.5);
    color: #fff8ef;
    backdrop-filter: blur(10px);
}

.hero-showcase__overlay span {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.88;
}

.hero-showcase__overlay strong {
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1.05;
}

.hero-showcase__stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hero-card {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 253, 249, 0.9);
    border: 1px solid rgba(112, 66, 39, 0.12);
    box-shadow: var(--shadow-card);
}

.hero-card--leader {
    background: linear-gradient(135deg, rgba(255, 248, 239, 0.92), rgba(253, 244, 229, 0.88));
}

.hero-card__eyebrow {
    margin: 0 0 10px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 800;
}

.hero-card h2 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.35;
}

.hero-card__meta {
    margin: 0;
    color: var(--color-text-muted);
}

.hero-card__link,
.notice-card__cta,
.program-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    color: var(--color-primary);
    font-size: 0.92rem;
    font-weight: 800;
}

.program-card__link {
    margin-top: auto;
}

.notice-rail {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 249, 239, 0.94), rgba(255, 253, 249, 0.92));
    border: 1px solid rgba(112, 66, 39, 0.12);
    box-shadow: var(--shadow-card);
}

.notice-rail__intro {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.notice-rail__intro h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2vw, 2rem);
}

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

.notice-rail__card {
    min-height: 100%;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(112, 66, 39, 0.1);
}

.notice-rail__card span,
.notice-featured__meta {
    color: var(--color-primary);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.notice-rail__card h3,
.notice-featured h2 {
    margin: 10px 0;
    font-size: 1.02rem;
    line-height: 1.45;
}

.notice-rail__card time {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.stat-grid--compact {
    margin-bottom: 28px;
}

.list-panel--compact {
    margin-top: 22px;
}

.leadership-stage {
    display: grid;
    gap: 24px;
}

.leadership-stage__spotlight {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid rgba(112, 66, 39, 0.12);
    box-shadow: var(--shadow-card);
}

.leadership-stage__spotlight img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.leadership-stage__content {
    display: grid;
    gap: 14px;
    align-content: center;
    padding: 30px 32px;
}

.leadership-stage__content h3 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.leadership-stage__content p {
    margin: 0;
    color: var(--color-text-muted);
}

.leadership-stage__spotlight--page {
    margin-bottom: 10px;
}

.bullet-list--dark li::before {
    background: rgba(142, 44, 44, 0.72);
}

.page-hero__content {
    display: grid;
    gap: 8px;
}

.page-hero__crumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.page-hero__logo {
    width: 84px;
    height: 84px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(112, 66, 39, 0.12);
}

.notice-featured {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 248, 239, 0.96), rgba(255, 253, 249, 0.96));
    border: 1px solid rgba(112, 66, 39, 0.12);
    box-shadow: var(--shadow-card);
}

.student-zone-groups {
    display: grid;
    gap: 36px;
}

.site-footer__crest {
    display: grid;
    gap: 18px;
    padding: 28px 30px;
    margin-bottom: 20px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(31, 22, 18, 0.96), rgba(54, 26, 20, 0.96));
    color: rgba(255, 247, 236, 0.88);
    box-shadow: 0 24px 56px rgba(32, 25, 21, 0.18);
}

.site-footer__crest-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer__crest-logo {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
}

.site-footer__legacy {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer__legacy span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
}

.site-footer__supporting {
    margin: 16px 0 0;
    color: rgba(255, 247, 236, 0.9);
    font-family: var(--font-native);
}

.site-footer__grid {
    grid-template-columns: 1.1fr repeat(5, minmax(0, 0.82fr));
}

.site-footer__panel:first-child {
    background: rgba(49, 27, 22, 0.96);
}

@media (max-width: 1199px) {
    .hero-shell,
    .leadership-stage__spotlight,
    .site-footer__grid,
    .notice-rail__items {
        grid-template-columns: 1fr 1fr;
    }

    .site-nav__dropdown {
        position: static;
        min-width: 0;
        margin-top: 10px;
        padding: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
    }

    .site-nav__item.is-open > .site-nav__dropdown {
        display: block;
    }

    .site-nav__item.has-children:hover > .site-nav__dropdown,
    .site-nav__item.has-children:focus-within > .site-nav__dropdown {
        display: block;
    }
}

@media (max-width: 991px) {
    .hero-shell,
    .hero-showcase__stack,
    .leadership-stage__spotlight,
    .notice-rail__items,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-nav__dropdown {
        display: none;
    }

    .site-nav__item.is-open > .site-nav__dropdown {
        display: block;
    }
}

@media (max-width: 767px) {
    .brand-mark__logo-shell {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .brand-mark__subtitle {
        display: none;
    }

    .hero-copy__brandline {
        align-items: flex-start;
    }

    .hero-copy__logo {
        width: 68px;
        height: 68px;
        border-radius: 18px;
    }

    .hero-showcase__overlay strong {
        font-size: 1.35rem;
    }

    .notice-featured,
    .site-footer__crest-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero__logo {
        width: 64px;
        height: 64px;
    }
}

.site-header__inner {
    gap: 36px;
}

.brand-mark__title {
    font-size: 1.62rem;
}

.site-nav__link {
    padding: 12px 14px;
    font-weight: 700;
}

.site-nav__dropdown {
    border-radius: 18px;
}

.btn--ghost-light {
    color: #fffdf8;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
}

.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.34);
}

.hero-section--editorial {
    padding: 40px 0 18px;
}

.hero-section--editorial::before {
    background:
        radial-gradient(circle at top right, rgba(242, 154, 46, 0.18), transparent 22%),
        radial-gradient(circle at left top, rgba(142, 44, 44, 0.14), transparent 22%),
        linear-gradient(180deg, rgba(255, 249, 239, 0.8), rgba(255, 253, 249, 0));
}

.hero-monument {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    gap: 34px;
    align-items: start;
}

.hero-monument__copy {
    padding: clamp(32px, 4vw, 48px);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(255, 248, 239, 0.8)),
        linear-gradient(90deg, rgba(242, 154, 46, 0.04), rgba(142, 44, 44, 0.03));
    border: 1px solid rgba(112, 66, 39, 0.12);
    box-shadow: 0 24px 56px rgba(55, 29, 18, 0.08);
}

.hero-monument__identity {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-monument__seal {
    width: 104px;
    height: 104px;
    flex-shrink: 0;
    padding: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(112, 66, 39, 0.14);
    box-shadow: 0 20px 44px rgba(67, 38, 23, 0.1);
}

.hero-monument__seal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-monument__institution {
    margin: 0 0 10px;
    color: var(--color-primary);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-monument__copy h1 {
    margin: 0;
    font-size: clamp(3.3rem, 5vw, 5.2rem);
    line-height: 0.95;
    max-width: 9ch;
}

.hero-monument__trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(112, 66, 39, 0.12);
}

.hero-monument__trust article {
    display: grid;
    gap: 8px;
}

.hero-monument__trust h2 {
    margin: 0;
    font-size: 1.08rem;
}

.hero-monument__trust p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.94rem;
}

.hero-monument__visual {
    position: relative;
}

.hero-collage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 18px;
    min-height: 100%;
}

.hero-collage__primary,
.hero-collage__tile {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(112, 66, 39, 0.12);
    box-shadow: 0 24px 56px rgba(55, 29, 18, 0.12);
}

.hero-collage__primary {
    min-height: 560px;
}

.hero-collage__primary img,
.hero-collage__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-collage__secondary {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 18px;
}

.hero-collage__plaque {
    position: absolute;
    left: 24px;
    bottom: 24px;
    max-width: 260px;
    padding: 22px 24px;
    border-radius: 14px;
    background: rgba(28, 17, 13, 0.82);
    color: #fff8ef;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-collage__plaque span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 248, 239, 0.78);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-collage__plaque strong {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 3.2rem;
    line-height: 1;
}

.hero-collage__plaque p {
    margin: 0;
    font-size: 0.96rem;
    color: rgba(255, 248, 239, 0.9);
}

.trust-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(112, 66, 39, 0.12);
    border-bottom: 1px solid rgba(112, 66, 39, 0.12);
}

.trust-band__item {
    padding: 24px 18px;
    text-align: center;
}

.trust-band__item + .trust-band__item {
    border-left: 1px solid rgba(112, 66, 39, 0.12);
}

.trust-band__item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 2.4rem;
    line-height: 1;
}

.trust-band__item span {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.section-shell--accent {
    background: linear-gradient(135deg, #6f1f21 0%, #8e2c2c 52%, #4d1c1f 100%);
    color: #fff8ef;
}

.section-shell--accent .section-title__eyebrow,
.section-shell--accent h2,
.section-shell--accent h3,
.section-shell--accent p,
.section-shell--accent time,
.section-shell--accent span {
    color: inherit;
}

.notice-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: start;
}

.notice-feature__intro h2 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 3.8vw, 4rem);
    line-height: 1.02;
}

.notice-feature__intro p {
    margin: 0 0 22px;
    max-width: 38ch;
    color: rgba(255, 248, 239, 0.82);
}

.notice-feature__board {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 16px;
}

.notice-feature__primary,
.notice-feature__item {
    background: rgba(255, 249, 239, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
}

.notice-feature__primary {
    padding: 24px;
}

.notice-feature__list {
    display: grid;
    gap: 14px;
}

.notice-feature__item {
    padding: 18px;
}

.notice-feature__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 248, 239, 0.74);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
}

.notice-feature__primary h3,
.notice-feature__item h3 {
    margin: 0;
    line-height: 1.42;
}

.notice-feature__primary p {
    margin: 14px 0 0;
    color: rgba(255, 248, 239, 0.84);
}

.notice-feature__link {
    display: inline-flex;
    margin-top: 18px;
    color: #ffd89a;
    font-weight: 800;
}

.section-shell--heritage {
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.92), rgba(247, 242, 234, 0.92)),
        radial-gradient(circle at top right, rgba(201, 162, 39, 0.08), transparent 28%);
}

.heritage-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 42px;
    align-items: start;
}

.heritage-story__aside {
    padding: 30px 32px;
    border-top: 3px solid rgba(201, 162, 39, 0.7);
    border-bottom: 1px solid rgba(112, 66, 39, 0.1);
    background: rgba(255, 249, 239, 0.7);
}

.heritage-story__points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.heritage-story__point {
    padding-left: 18px;
    position: relative;
    color: var(--color-text-muted);
}

.heritage-story__point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.76em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.9);
}

.programme-editorial__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: start;
}

.programme-feature {
    padding: 30px 32px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 249, 239, 0.94), rgba(255, 253, 249, 0.94)),
        linear-gradient(90deg, rgba(201, 162, 39, 0.06), rgba(142, 44, 44, 0.03));
    border: 1px solid rgba(112, 66, 39, 0.12);
}

.programme-feature__eyebrow,
.programme-ledger__eyebrow {
    margin: 0 0 10px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
}

.programme-feature h3 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.04;
}

.programme-feature p {
    margin: 0 0 18px;
    color: var(--color-text-muted);
}

.programme-feature__fee {
    color: var(--color-primary);
    font-weight: 800;
}

.programme-ledger {
    display: grid;
    gap: 14px;
}

.programme-ledger__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.48fr);
    gap: 18px;
    padding: 22px 24px;
    border-top: 1px solid rgba(112, 66, 39, 0.12);
    border-bottom: 1px solid rgba(112, 66, 39, 0.08);
}

.programme-ledger__item h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
}

.programme-ledger__item p {
    margin: 0;
    color: var(--color-text-muted);
}

.programme-ledger__meta {
    display: grid;
    gap: 16px;
    align-content: start;
}

.programme-ledger__meta strong {
    color: var(--color-primary);
    font-size: 0.96rem;
}

.section-shell--maroon {
    background:
        linear-gradient(180deg, rgba(110, 31, 33, 0.98), rgba(73, 24, 27, 0.98)),
        linear-gradient(90deg, rgba(242, 154, 46, 0.04), rgba(255, 255, 255, 0));
    color: #fff8ef;
}

.leadership-editorial__intro {
    max-width: 760px;
    margin-bottom: 26px;
}

.leadership-editorial__intro h2 {
    margin: 0;
    font-size: clamp(2.3rem, 3.8vw, 4rem);
    line-height: 1.02;
}

.leadership-editorial__featured {
    display: grid;
    grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
    gap: 0;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 249, 239, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.leadership-editorial__featured img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.leadership-editorial__featured-copy {
    display: grid;
    gap: 16px;
    align-content: center;
    padding: 36px 38px;
}

.leadership-editorial__featured-copy p,
.leadership-editorial__featured-copy span {
    margin: 0;
    color: rgba(255, 248, 239, 0.84);
}

.leadership-editorial__featured-copy p {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
}

.leadership-editorial__featured-copy h3 {
    margin: 0;
    font-size: clamp(2.4rem, 3.4vw, 3.9rem);
    line-height: 1;
}

.leadership-editorial__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.section-shell--maroon .faculty-card {
    background: rgba(255, 249, 239, 0.94);
    border-radius: 12px;
    box-shadow: none;
}

.student-service-stack {
    display: grid;
    gap: 12px;
}

.student-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 0;
    border-top: 1px solid rgba(112, 66, 39, 0.12);
    color: var(--color-text);
}

.student-service-item:last-child {
    border-bottom: 1px solid rgba(112, 66, 39, 0.12);
}

.student-service-item strong {
    font-size: 1.08rem;
}

.student-service-item span {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    text-align: right;
}

.institutional-panel {
    padding: 30px 32px;
    background: linear-gradient(180deg, rgba(42, 25, 20, 0.96), rgba(62, 29, 23, 0.96));
    color: #fff8ef;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.institutional-panel h3 {
    margin: 0 0 16px;
    font-size: 1.8rem;
}

.institutional-panel__links {
    display: grid;
    gap: 10px;
}

.institutional-panel__links a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 248, 239, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-shell--gallery {
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.94), rgba(247, 242, 234, 0.72));
}

.gallery-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 84px;
}

.gallery-grid__item {
    border-radius: 14px;
}

.gallery-grid__item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 4;
}

.gallery-grid__item:nth-child(2),
.gallery-grid__item:nth-child(3) {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-grid__item:nth-child(4),
.gallery-grid__item:nth-child(5),
.gallery-grid__item:nth-child(6) {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-grid__item img {
    height: 100%;
}

.section-shell--contact {
    padding-top: 34px;
}

.contact-stage {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 30px;
    align-items: start;
    padding: 32px 0 0;
    border-top: 1px solid rgba(112, 66, 39, 0.12);
}

.contact-stage__copy h2 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 3vw, 3.6rem);
}

.contact-stage__copy p {
    margin: 0;
    color: var(--color-text-muted);
}

.contact-stage__cards .contact-block {
    margin-top: 0;
}

.site-footer {
    padding-top: 18px;
}

.site-footer__monument {
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(25, 18, 15, 0.98), rgba(46, 26, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 70px rgba(20, 16, 14, 0.28);
    overflow: hidden;
}

.site-footer__identity {
    padding: 34px 36px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-footer__brand-logo {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.site-footer__brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer__legacy-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.site-footer__legacy-line span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    color: rgba(255, 247, 236, 0.84);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
}

.site-footer__contact-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 16px 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.site-footer__contact-ribbon a {
    color: rgba(255, 247, 236, 0.82);
    font-size: 0.92rem;
}

.site-footer__grid {
    grid-template-columns: 1.15fr repeat(5, minmax(0, 0.84fr));
    gap: 0;
}

.site-footer__panel {
    min-height: 100%;
    padding: 28px 26px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.site-footer__panel:last-child {
    border-right: 0;
}

.site-footer__panel h3 {
    margin: 0 0 18px;
    color: #fffaf2;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__panel--intro {
    background: rgba(255, 255, 255, 0.03);
}

.site-footer__copy {
    color: rgba(255, 247, 236, 0.78);
}

.site-footer__supporting {
    line-height: 1.7;
}

.footer-links a,
.footer-links--contact li,
.social-row a {
    color: rgba(255, 247, 236, 0.8);
}

.footer-links li + li {
    margin-top: 10px;
}

.site-footer__bottom {
    padding: 18px 8px 0;
}

@media (max-width: 1199px) {
    .hero-monument,
    .notice-feature,
    .heritage-story,
    .programme-editorial__layout,
    .contact-stage {
        grid-template-columns: 1fr;
    }

    .leadership-editorial__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery-grid__item:nth-child(1) {
        grid-column: span 6;
    }

    .gallery-grid__item:nth-child(2),
    .gallery-grid__item:nth-child(3),
    .gallery-grid__item:nth-child(4),
    .gallery-grid__item:nth-child(5),
    .gallery-grid__item:nth-child(6) {
        grid-column: span 3;
    }

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

@media (max-width: 991px) {
    .hero-monument__trust,
    .notice-feature__board,
    .programme-ledger__item,
    .leadership-editorial__featured,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .trust-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-band__item:nth-child(3),
    .trust-band__item:nth-child(4) {
        border-top: 1px solid rgba(112, 66, 39, 0.12);
    }

    .trust-band__item:nth-child(3) {
        border-left: 0;
    }

    .hero-collage {
        grid-template-columns: 1fr;
    }

    .hero-collage__primary {
        min-height: 420px;
    }

    .hero-collage__secondary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .leadership-editorial__featured img {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .hero-monument__identity,
    .site-footer__brand,
    .site-footer__contact-ribbon {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-monument__seal {
        width: 84px;
        height: 84px;
    }

    .hero-monument__copy h1 {
        font-size: 2.9rem;
    }

    .hero-monument__trust,
    .trust-band,
    .hero-collage__secondary,
    .leadership-editorial__grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .trust-band__item + .trust-band__item {
        border-left: 0;
        border-top: 1px solid rgba(112, 66, 39, 0.12);
    }

    .gallery-grid {
        grid-auto-rows: 74px;
    }

    .gallery-grid__item:nth-child(1),
    .gallery-grid__item:nth-child(2),
    .gallery-grid__item:nth-child(3),
    .gallery-grid__item:nth-child(4),
    .gallery-grid__item:nth-child(5),
    .gallery-grid__item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 3;
    }

    .site-footer__identity,
    .site-footer__contact-ribbon,
    .site-footer__panel {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/* Footer contrast correction */
.site-footer {
    background: #f4efe8 !important;
    color: #3f4754 !important;
    border-top: 1px solid #e5d9c8 !important;
}

.site-footer__upper {
    background: linear-gradient(180deg, #f7f2eb 0%, #f4efe8 100%) !important;
}

.site-footer__brandband {
    border-bottom: 1px solid #e5d9c8 !important;
}

.site-footer__panel {
    border-right: 1px solid #e5d9c8 !important;
}

.site-footer__panel--intro {
    background: rgba(255, 255, 255, 0.52) !important;
}

.site-footer__bottom {
    background: rgba(255, 255, 255, 0.6) !important;
    border-top: 1px solid #e5d9c8 !important;
}

.site-footer__eyebrow,
.site-footer__panel h3,
.site-footer__title {
    color: #1f2674 !important;
}

.site-footer__native {
    color: #4f5798 !important;
}

.site-footer__copy,
.site-footer__supporting,
.site-footer__bottom-row p,
.footer-links--contact li {
    color: #5a6270 !important;
}

.footer-links a,
.social-row a {
    color: #545e6c !important;
}

.footer-links a:hover,
.social-row a:hover {
    color: #e97817 !important;
}

.footer-links li + li {
    border-top: 1px solid rgba(229, 217, 200, 0.9) !important;
}

.site-footer__legacy span,
.social-row a {
    background: rgba(255, 255, 255, 0.84) !important;
    border: 1px solid #e5d9c8 !important;
}

@media (max-width: 991px) {
    .site-footer__panel {
        border-right: 0 !important;
        border-top: 1px solid #e5d9c8 !important;
    }
}
