/* ORI Public Site
   Brand colors from official logo: maroon + gold
   Fonts: Instrument Serif + DM Sans
*/

:root {
    --maroon: #7A1219;
    --maroon-deep: #4A0C11;
    --maroon-soft: #9B2A32;
    --gold: #E6B422;
    --gold-bright: #F0C53A;
    --gold-deep: #C49A12;
    --lotus: #C43B6E;
    --sky: #5BA8C9;
    --ink: #2A080B;
    --forest: #7A1219;
    --moss: #9B2A32;
    --sage: #B88A5A;
    --mist: #F5EFE6;
    --paper: #FAF7F2;
    --brass: #E6B422;
    --brass-deep: #C49A12;
    --white: #ffffff;
    --text: #2A1215;
    --muted: #6B4A4E;
    --radius: 2px;
    --header-h: 88px;
    --top-header-h: 44px;
    --marquee-h: 44px;
    --band: #2A080B;
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: calc(var(--top-header-h) + var(--header-h));
}

/* Site loader — shown while remote APIs / next page load */
.site-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    background:
        radial-gradient(ellipse 60% 50% at 50% 40%, rgba(230, 180, 34, 0.12), transparent 70%),
        rgba(42, 8, 11, 0.92);
    backdrop-filter: blur(8px);
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__panel {
    text-align: center;
    padding: 1.5rem;
}

.site-loader__mark {
    margin: 0 auto 1.1rem;
    width: 72px;
    height: 72px;
}

.site-loader__mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.site-loader__spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: siteLoaderSpin 0.75s linear infinite;
}

.site-loader__text {
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
}

.site-loader__sub {
    margin: 0.35rem 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-loader-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 10001;
    background: linear-gradient(90deg, var(--maroon), var(--gold), var(--maroon));
    background-size: 200% 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.site-loader-bar.is-active {
    opacity: 1;
    animation: siteLoaderBar 1.1s var(--ease) infinite;
}

@keyframes siteLoaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes siteLoaderBar {
    0% { width: 0; background-position: 0% 50%; }
    50% { width: 78%; background-position: 100% 50%; }
    100% { width: 100%; background-position: 0% 50%; }
}

body.is-loading {
    overflow: hidden;
}

body.page-home {
    padding-top: var(--top-header-h);
}

body.page-home .site-header {
    background: transparent;
}

body.page-home .site-header.is-scrolled {
    background: var(--band);
}

body.page-home--no-marquee {
    --marquee-h: 0px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--moss); }

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ── Top header bar ── */
.top-header {
    background: var(--band);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    height: var(--top-header-h);
    border-bottom: 1px solid rgba(230, 180, 34, 0.14);
}

.top-header__inner {
    max-width: 1440px;
    margin-inline: auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-header__left,
.top-header__right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
}

.top-header__sep {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
}

.top-header i {
    color: var(--gold);
    margin-right: 0.3rem;
    font-size: 0.85em;
}

.top-header a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s;
}

.top-header a:hover {
    color: var(--gold);
}

.top-header__right a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.top-header__right a:hover {
    color: var(--gold);
    border-color: rgba(230, 180, 34, 0.5);
    background: rgba(230, 180, 34, 0.1);
}

.top-header__right a i {
    margin: 0;
    color: inherit;
    font-size: 0.85rem;
}

/* ── Header (Docuvion-style pill nav + mega menu) ── */
.site-header {
    position: fixed;
    top: var(--top-header-h);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: transparent;
    transition: background 0.35s var(--ease), backdrop-filter 0.35s, box-shadow 0.35s;
}

.site-header.is-scrolled,
.site-header.is-solid {
    background: var(--band);
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(230, 180, 34, 0.14);
}

.site-header__inner {
    height: 100%;
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    z-index: 2;
}

.site-logo__img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

.site-logo__text {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: var(--gold);
    letter-spacing: 0.04em;
    line-height: 1.15;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(20, 10, 12, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-pill__link,
.nav-pill__btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.nav-pill__btn i {
    font-size: 0.6rem;
    opacity: 0.7;
    transition: transform 0.2s;
}

.nav-pill__link:hover,
.nav-pill__btn:hover,
.nav-pill__link.is-active,
.nav-pill__btn.is-active,
.nav-item.has-mega.is-active > .nav-pill__btn,
.nav-item.has-mega.is-open > .nav-pill__btn {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.nav-item.has-mega {
    position: relative;
}

/* Invisible bridge between trigger and dropdown */
.nav-item.has-mega::after {
    content: '';
    position: absolute;
    left: -2rem;
    right: -2rem;
    top: 70%;
    height: 2rem;
    z-index: 1290;
}

.nav-item.has-mega.is-open > .nav-pill__btn i,
.nav-item.has-mega:hover > .nav-pill__btn i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(640px, calc(100vw - 2rem));
    display: grid;
    grid-template-columns: 220px 1fr;
    background: #fff;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(42, 8, 11, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
    z-index: 1300;
}

.mega-menu--wide {
    width: min(620px, calc(100vw - 2rem));
}

.nav-item.has-mega:hover > .mega-menu,
.nav-item.has-mega.is-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu__intro {
    background: #f3ebe3;
    padding: 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.mega-menu__label {
    margin: 0 0 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--maroon);
}

.mega-menu__desc {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.35;
    color: var(--maroon-deep);
    flex: 1;
}

.mega-menu__cta {
    margin-top: 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--maroon);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.mega-menu__cta:hover {
    color: var(--gold-deep);
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem;
    background: #fff;
}

.mega-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.85rem 0.9rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.mega-item:hover {
    background: rgba(122, 18, 25, 0.05);
    color: inherit;
}

.mega-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(122, 18, 25, 0.2);
    color: var(--maroon);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.mega-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.mega-item__body strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--maroon-deep);
    line-height: 1.2;
}

.mega-item__body span {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

.nav-journal {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--maroon-deep) !important;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.nav-journal:hover {
    background: var(--gold-bright);
    color: var(--maroon-deep) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(20, 10, 12, 0.35);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 1.5px;
    width: 18px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}
.nav-toggle.is-open span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

@media (max-width: 1199.98px) {
    .nav-toggle { display: flex; }

    .site-nav {
        position: fixed;
        inset: calc(var(--top-header-h) + var(--header-h)) 0 0;
        background: linear-gradient(180deg, #2a080b, #4a0c11);
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        overflow-y: auto;
    }

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

    .nav-pill {
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
        padding: 0.5rem;
        gap: 0.2rem;
    }

    .nav-pill__link,
    .nav-pill__btn {
        width: 100%;
        justify-content: space-between;
        border-radius: 12px;
        padding: 0.9rem 1rem;
        font-size: 0.8rem;
    }

    .nav-item.has-mega { width: 100%; }
    .nav-item.has-mega::after { display: none; }

    .mega-menu {
        position: static;
        transform: none !important;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        border-radius: 14px;
        margin: 0.25rem 0 0.5rem;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
    }

    .nav-item.has-mega.is-open > .mega-menu {
        display: grid;
    }

    .mega-menu__intro {
        padding: 1.15rem 1.1rem;
    }

    .mega-menu__desc {
        font-size: 1.05rem;
    }

    .nav-journal {
        width: fit-content;
        margin-top: 0.25rem;
    }
}

@media (max-width: 575.98px) {
    .site-logo__text {
        font-size: 0.78rem;
        letter-spacing: 0.02em;
    }
    .top-header__left span:not(:first-child),
    .top-header__sep {
        display: none;
    }
}

/* ── Hero (full-bleed, one composition) ── */
/* Home hero — photo slider background + centered stage content */
.hero {
    position: relative;
    min-height: calc(100svh - var(--top-header-h) - var(--marquee-h));
    min-height: calc(100dvh - var(--top-header-h) - var(--marquee-h));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: var(--maroon-deep);
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s var(--ease), visibility 1s;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide.is-active .hero-slide__media {
    animation: hero-kenburns 12s ease-out forwards;
}

@keyframes hero-kenburns {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 60% at 50% 45%, rgba(20, 4, 6, 0.35) 0%, rgba(20, 4, 6, 0.72) 100%),
        linear-gradient(180deg, rgba(20, 4, 6, 0.45) 0%, rgba(20, 4, 6, 0.28) 40%, rgba(20, 4, 6, 0.78) 100%);
    pointer-events: none;
}

.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.hero__stage {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--header-h) + 1.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vh, 5.5rem);
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-float {
    position: absolute;
}

.hero-float--fan {
    left: clamp(0%, 2vw, 4%);
    top: 52%;
    width: min(320px, 34vw);
    height: 220px;
    transform: translateY(-50%);
}

.hero-float__slot {
    position: absolute;
    left: 8%;
    top: 42%;
    width: 72%;
    height: 18px;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.12));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-float__card {
    position: absolute;
    width: clamp(88px, 11vw, 118px);
    aspect-ratio: 3 / 4;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    transform-origin: bottom center;
}

.hero-float__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float__card--1 { left: 6%;  bottom: 28%; transform: rotate(-18deg); z-index: 2; }
.hero-float__card--2 { left: 22%; bottom: 34%; transform: rotate(-8deg); z-index: 3; }
.hero-float__card--3 { left: 38%; bottom: 38%; transform: rotate(2deg);  z-index: 4; }
.hero-float__card--4 { left: 52%; bottom: 32%; transform: rotate(12deg); z-index: 3; }
.hero-float__card--5 { left: 66%; bottom: 26%; transform: rotate(20deg); z-index: 2; }

.hero-float--badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
}

.hero-float--est {
    right: clamp(6%, 10vw, 14%);
    top: 18%;
    width: 78px;
    height: 78px;
    background: rgba(42, 8, 11, 0.88);
    border: 1px solid rgba(230, 180, 34, 0.45);
    color: var(--gold);
    transform: rotate(8deg);
}

.hero-float--est strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1;
    font-weight: 400;
}

.hero-float--est span {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-float--seal {
    right: clamp(14%, 18vw, 24%);
    top: 34%;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--maroon);
    font-size: 1.55rem;
    transform: rotate(-10deg);
}

.hero-float--ms {
    right: clamp(4%, 8vw, 12%);
    top: 46%;
    flex-direction: row;
    gap: 0.45rem;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: var(--maroon-deep);
    font-size: 0.78rem;
    font-weight: 700;
    transform: rotate(4deg);
}

.hero-float--ms i {
    color: var(--gold-deep);
    font-size: 1.1rem;
}

.hero-float--glass {
    right: clamp(10%, 14vw, 20%);
    bottom: 22%;
    flex-direction: row;
    gap: 0.45rem;
    padding: 0.75rem 0.95rem;
    background: rgba(42, 8, 11, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(-6deg);
}

.hero-float--glass i {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-float--thumb {
    left: clamp(8%, 14vw, 20%);
    bottom: 14%;
    width: clamp(72px, 9vw, 96px);
    aspect-ratio: 1;
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    transform: rotate(-8deg);
}

.hero-float--thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
    text-align: center;
}

.hero__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero__headline {
    margin: 0 0 1.15rem;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.6rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: #fff;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}

.hero__headline span {
    display: block;
}

.hero__accent {
    color: var(--gold);
}

.hero__lede {
    margin: 0 auto 1.85rem;
    max-width: 36ch;
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 54px;
    padding: 0 2rem;
    background: var(--gold);
    color: var(--maroon-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    transition: background 0.25s, color 0.25s, transform 0.25s;
}

.hero__cta::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 16px 16px;
    border-color: transparent transparent var(--maroon-deep) transparent;
}

.hero__cta:hover {
    background: #fff;
    color: var(--maroon-deep);
    transform: translateY(-2px);
}

.hero-controls {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: clamp(1.1rem, 3vh, 1.75rem);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.hero-ctrl {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(42, 8, 11, 0.4);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
}

.hero-ctrl:hover {
    background: rgba(230, 180, 34, 0.22);
    border-color: var(--gold);
}

.hero-dots {
    display: flex;
    gap: 0.45rem;
    align-items: center;
    padding: 0 0.35rem;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.hero-dot.is-active {
    background: var(--gold);
    transform: scale(1.3);
}

@media (max-width: 991.98px) {
    .hero-float--fan {
        left: -2%;
        width: min(260px, 40vw);
        opacity: 0.85;
    }

    .hero-float--est { right: 4%; top: 16%; }
    .hero-float--seal { right: 12%; top: 30%; }
    .hero-float--ms { right: 2%; top: 44%; }
    .hero-float--glass { right: 8%; bottom: 18%; }
    .hero-float--thumb { left: 4%; bottom: 12%; }
}

@media (max-width: 767.98px) {
    .hero__floats {
        opacity: 0.5;
    }

    .hero-float--fan,
    .hero-float--thumb {
        display: none;
    }

    .hero-float--ms span,
    .hero-float--glass span {
        display: none;
    }

    .hero-float--ms,
    .hero-float--glass {
        padding: 0.7rem;
    }

    .hero__headline {
        font-size: clamp(2.6rem, 12vw, 3.6rem);
    }

    .hero__cta {
        width: min(100%, 280px);
    }
}

/* Welcome / About — clean Docuvion-style */
.section--welcome {
    background: #fff;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.about-copy .section__title {
    max-width: none;
    margin-bottom: 1.25rem;
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    .about-copy .section__title {
        white-space: normal;
    }
}

.about-lead {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.65;
    color: var(--maroon-deep);
    margin: 0 0 1.5rem;
    max-width: 54ch;
    font-weight: 500;
}

.about-text {
    max-width: 58ch;
}

.about-text p {
    margin: 0 0 1.1rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted);
}

.about-feature {
    margin: 1.75rem 0;
    padding: 1.35rem 0 1.35rem 1.25rem;
    border-left: 3px solid var(--gold);
    max-width: 54ch;
}

.about-feature__label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 0.45rem;
}

.about-feature p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.45;
    color: var(--text);
}

.about-feature em {
    color: var(--maroon);
    font-style: italic;
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.about-visual {
    position: relative;
}

.about-visual__frame {
    overflow: hidden;
    background: var(--maroon-deep);
    aspect-ratio: 4 / 5;
}

.about-visual__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-visual__float {
    position: absolute;
    left: 1rem;
    bottom: 4.5rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    padding: 0.75rem 1rem 0.75rem 0.75rem;
    box-shadow: 0 12px 40px rgba(74, 12, 17, 0.18);
    max-width: calc(100% - 2rem);
}

.about-visual__float img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.about-visual__float strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--maroon-deep);
    font-weight: 400;
    line-height: 1.1;
}

.about-visual__float span {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}

.about-visual__motto {
    margin: 1rem 0 0;
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--maroon);
    text-align: center;
    line-height: 1.4;
}

.welcome-rule {
    width: 72px;
    height: 2px;
    margin-top: 1.15rem;
    background: linear-gradient(90deg, var(--maroon), var(--gold));
}

@media (max-width: 991.98px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-visual {
        order: -1;
        max-width: 420px;
    }
    .about-copy .section__title {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .about-visual__float {
        bottom: 3.75rem;
        left: 0.75rem;
        right: 0.75rem;
        max-width: none;
    }
}

/* Stats strip */
.stats-strip {
    background: #fff;
    border-bottom: 1px solid rgba(122, 18, 25, 0.08);
    padding: 0;
    position: relative;
    z-index: 5;
    box-shadow: 0 12px 40px rgba(74, 12, 17, 0.06);
}

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

.stats-strip__item {
    padding: 1.5rem 1.25rem;
    text-align: center;
    border-right: 1px solid rgba(122, 18, 25, 0.08);
}

.stats-strip__item:last-child { border-right: 0; }

.stats-strip__item strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    color: var(--maroon);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stats-strip__item span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

@media (max-width: 767.98px) {
    .stats-strip__grid { grid-template-columns: 1fr 1fr; }
    .stats-strip__item:nth-child(2n) { border-right: 0; }
    .stats-strip__item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(122, 18, 25, 0.08);
    }
}

/* Explore ORI — compact directory grid */
.section--explore {
    background:
        linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.explore-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(1.25rem, 3vw, 3rem);
    align-items: end;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(122, 18, 25, 0.14);
}

.explore-head__copy .section__title {
    margin: 0;
    max-width: 16ch;
}

.explore-head__lede {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--muted);
    max-width: 36ch;
    justify-self: end;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.85rem;
}

.explore-tile {
    grid-column: span 2;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 1.25rem 1.2rem 1.15rem;
    background: #fff;
    border: 1px solid rgba(122, 18, 25, 0.1);
    color: inherit;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.explore-tile--wide {
    grid-column: span 3;
}

.explore-tile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.25s;
}

.explore-tile:hover {
    color: inherit;
    border-color: rgba(122, 18, 25, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(74, 12, 17, 0.08);
}

.explore-tile:hover::before {
    background: linear-gradient(180deg, var(--maroon), var(--gold));
}

.explore-tile__num {
    font-family: var(--font-display);
    font-size: 1.65rem;
    line-height: 1;
    color: rgba(122, 18, 25, 0.22);
    margin-bottom: 1.1rem;
    transition: color 0.25s;
}

.explore-tile:hover .explore-tile__num {
    color: var(--gold-deep);
}

.explore-tile__body {
    flex: 1;
}

.explore-tile__body h3 {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 400;
    margin: 0 0 0.45rem;
    color: var(--maroon-deep);
    line-height: 1.2;
}

.explore-tile__body p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--muted);
}

.explore-tile__go {
    align-self: flex-end;
    margin-top: 1rem;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(122, 18, 25, 0.16);
    color: var(--maroon);
    font-size: 0.85rem;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.explore-tile:hover .explore-tile__go {
    background: var(--maroon);
    border-color: var(--maroon);
    color: #fff;
}

@media (max-width: 991.98px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .explore-tile,
    .explore-tile--wide {
        grid-column: span 1;
    }
}

@media (max-width: 767.98px) {
    .explore-head {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 0.75rem;
    }

    .explore-head__lede {
        justify-self: start;
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }

    .explore-tile {
        min-height: 0;
    }
}

/* Process pillars */
.section--process {
    background: var(--maroon-deep);
    color: #fff;
}

.section--process .section__title { color: #fff; }
.section--process .section__lede { color: rgba(255, 255, 255, 0.6); }
.section--process .section__eyebrow { color: var(--gold); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-top: clamp(2rem, 4vh, 3rem);
}

.process-step {
    padding: 1.35rem 1.1rem;
    border-top: 2px solid rgba(230, 180, 34, 0.45);
    background: rgba(255, 255, 255, 0.04);
    height: 100%;
}

.process-step__num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 0.55rem;
    color: #fff;
}

.process-step p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 991.98px) {
    .process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575.98px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* Event cards (legacy / reusable) */
.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.event-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(122, 18, 25, 0.08);
    overflow: hidden;
    color: inherit;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(74, 12, 17, 0.1);
    color: inherit;
}

.event-card__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--maroon-deep);
}

.event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.event-card:hover .event-card__media img {
    transform: scale(1.05);
}

.event-card__body {
    padding: 1.25rem 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.event-card__meta {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 0.5rem;
}

.event-card__body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 0.55rem;
    color: var(--maroon-deep);
    line-height: 1.25;
}

.event-card__body p {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    color: var(--muted);
    flex: 1;
}

@media (max-width: 991.98px) {
    .event-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575.98px) {
    .event-cards { grid-template-columns: 1fr; }
}

/* Home — Events at ORI */
.section--home-events {
    position: relative;
    background:
        linear-gradient(180deg, #1a0507 0%, #2A080B 42%, #3a0e12 100%);
    color: #f5efe6;
    overflow: hidden;
}

.section--home-events::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 0%, rgba(230, 180, 34, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 45% at 95% 90%, rgba(122, 18, 25, 0.45), transparent 60%);
    pointer-events: none;
}

.section--home-events .container-site {
    position: relative;
    z-index: 1;
}

.hevents__head {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) auto;
    gap: 1.25rem 2rem;
    align-items: end;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}

.hevents__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.hevents__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.02em;
}

.hevents__lede {
    margin: 0;
    max-width: 28rem;
    font-size: 1.02rem;
    line-height: 1.55;
    color: rgba(245, 239, 230, 0.72);
}

.hevents__all {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: end;
    white-space: nowrap;
    padding: 0.7rem 1.1rem;
    border: 1px solid rgba(230, 180, 34, 0.45);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s, gap 0.25s;
}

.hevents__all:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--maroon-deep);
    gap: 0.65rem;
}

/* Spotlight — featured event */
.hevents-spotlight {
    position: relative;
    display: block;
    min-height: clamp(340px, 48vw, 520px);
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
}

.hevents-spotlight:hover,
.hevents-spotlight:focus-visible {
    color: inherit;
}

.hevents-spotlight__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hevents-spotlight__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 1.1s var(--ease);
}

.hevents-spotlight:hover .hevents-spotlight__media img {
    transform: scale(1.08);
}

.hevents-spotlight__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(20, 4, 6, 0.92) 0%, rgba(20, 4, 6, 0.55) 42%, rgba(20, 4, 6, 0.25) 70%, rgba(20, 4, 6, 0.45) 100%),
        linear-gradient(0deg, rgba(20, 4, 6, 0.75) 0%, transparent 48%);
    pointer-events: none;
}

.hevents-spotlight__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: inherit;
    padding: clamp(1.5rem, 3.5vw, 2.75rem);
    max-width: 40rem;
}

.hevents-spotlight__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.1rem;
    margin-bottom: 1.1rem;
}

.hevents-spotlight__badge {
    display: inline-block;
    padding: 0.28rem 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
}

.hevents-spotlight__badge--current {
    background: rgba(230, 180, 34, 0.92);
    border-color: rgba(230, 180, 34, 0.8);
    color: var(--maroon-deep);
}

.hevents-spotlight__when {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: rgba(245, 239, 230, 0.78);
}

.hevents-spotlight__when i {
    color: var(--gold);
}

.hevents-spotlight__date {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.hevents-spotlight__date span {
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 7vw, 5.5rem);
    line-height: 0.85;
    color: var(--gold);
    letter-spacing: -0.03em;
}

.hevents-spotlight__date em {
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.7);
}

.hevents-spotlight__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    text-wrap: balance;
}

.hevents-spotlight__text {
    margin: 0 0 1.35rem;
    max-width: 32rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(245, 239, 230, 0.68);
}

.hevents-spotlight__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: flex-start;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.25s, color 0.25s;
}

.hevents-spotlight:hover .hevents-spotlight__cta {
    gap: 0.7rem;
    color: #fff;
}

.hevents-spotlight__thumbs {
    position: absolute;
    right: clamp(1rem, 2.5vw, 2rem);
    bottom: clamp(1rem, 2.5vw, 2rem);
    z-index: 2;
    display: flex;
    gap: 0.45rem;
}

.hevents-spotlight__thumbs img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0.85;
    transition: opacity 0.25s, transform 0.25s;
}

.hevents-spotlight:hover .hevents-spotlight__thumbs img {
    opacity: 1;
}

/* Event rows */
.hevents-list {
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
    border-top: 1px solid rgba(230, 180, 34, 0.22);
}

.hevents-row {
    display: grid;
    grid-template-columns: 5.5rem 7.5rem minmax(0, 1fr) auto;
    gap: 1.15rem 1.35rem;
    align-items: center;
    padding: 1rem 1.15rem;
    margin: 0 -0.35rem;
    border-bottom: 1px solid rgba(245, 239, 230, 0.1);
    color: inherit;
    text-decoration: none;
    transition: background 0.25s, padding 0.25s, margin 0.25s;
}

.hevents-row:hover,
.hevents-row:focus-visible {
    color: inherit;
    background: rgba(255, 255, 255, 0.06);
    padding: 1.1rem 1.35rem;
    margin: 0;
}

.hevents-row__date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.hevents-row__date strong {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
}

.hevents-row__date span {
    margin-top: 0.15rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.85);
}

.hevents-row__date em {
    margin-top: 0.1rem;
    font-style: normal;
    font-size: 0.72rem;
    color: rgba(245, 239, 230, 0.45);
}

.hevents-row__media {
    width: 7.5rem;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
}

.hevents-row__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.hevents-row:hover .hevents-row__media img {
    transform: scale(1.08);
}

.hevents-row__body {
    min-width: 0;
}

.hevents-row__pill {
    display: inline-block;
    margin-bottom: 0.4rem;
    padding: 0.15rem 0.45rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(245, 239, 230, 0.28);
    color: rgba(245, 239, 230, 0.8);
}

.hevents-row__pill--current {
    border-color: rgba(230, 180, 34, 0.55);
    color: var(--gold);
}

.hevents-row__title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hevents-row__meta {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(245, 239, 230, 0.55);
}

.hevents-row__go {
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(230, 180, 34, 0.35);
    color: var(--gold);
    font-size: 1.05rem;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.hevents-row:hover .hevents-row__go {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--maroon-deep);
    transform: none;
}

@media (max-width: 991.98px) {
    .hevents__head {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        align-items: start;
    }

    .hevents__all {
        justify-self: start;
    }

    .hevents-spotlight__thumbs {
        display: none;
    }

    .hevents-row {
        grid-template-columns: 4.5rem 5.75rem minmax(0, 1fr) auto;
        gap: 0.85rem 1rem;
    }

    .hevents-row__media {
        width: 5.75rem;
    }
}

@media (max-width: 575.98px) {
    .hevents-spotlight {
        min-height: 380px;
    }

    .hevents-spotlight__content {
        max-width: none;
        padding: 1.35rem 1.1rem 1.5rem;
    }

    .hevents-row {
        grid-template-columns: 3.75rem minmax(0, 1fr) auto;
        gap: 0.75rem;
        padding: 0.9rem 0.85rem;
        margin: 0;
    }

    .hevents-row:hover,
    .hevents-row:focus-visible {
        padding: 0.95rem 1rem;
    }

    .hevents-row__media {
        display: none;
    }

    .hevents-row__date strong {
        font-size: 1.65rem;
    }

    .hevents-row__go {
        width: 2.15rem;
        height: 2.15rem;
    }
}

/* Events listing page */
.section--events-page {
    background: var(--paper);
}

.events-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(122, 18, 25, 0.12);
}

.events-filters {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.events-filters a {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.events-filters a:hover {
    color: var(--maroon);
}

.events-filters a.is-active {
    color: var(--maroon-deep);
    border-bottom-color: var(--gold);
}

.events-toolbar__count {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.events-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(122, 18, 25, 0.12);
}

.events-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(122, 18, 25, 0.16);
    color: var(--maroon-deep);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #fff;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.events-pagination__btn:hover {
    border-color: var(--maroon);
    color: var(--maroon);
    background: rgba(230, 180, 34, 0.1);
}

.events-pagination__btn.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.events-pagination__pages {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: center;
}

.events-pagination__page {
    min-width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(122, 18, 25, 0.14);
    color: var(--maroon-deep);
    font-size: 0.85rem;
    font-weight: 600;
    background: #fff;
}

.events-pagination__page:hover {
    border-color: var(--gold);
    color: var(--maroon);
}

.events-pagination__page.is-active {
    background: var(--maroon-deep);
    border-color: var(--maroon-deep);
    color: #fff;
}

.events-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(122, 18, 25, 0.12);
}

.events-item {
    display: grid;
    grid-template-columns: 4.75rem 7rem minmax(0, 1fr) auto;
    gap: 1rem 1.25rem;
    align-items: center;
    padding: 1rem 0.85rem;
    margin: 0 -0.85rem;
    border-bottom: 1px solid rgba(122, 18, 25, 0.1);
    color: inherit;
    text-decoration: none;
    transition: background 0.25s, padding 0.25s, margin 0.25s;
}

.events-item:hover,
.events-item:focus-visible {
    color: inherit;
    background: rgba(122, 18, 25, 0.035);
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    margin-left: -1.1rem;
    margin-right: -1.1rem;
}

.events-item__date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
}

.events-item__date strong {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 400;
    color: var(--maroon-deep);
}

.events-item__date span {
    margin-top: 0.15rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--maroon);
}

.events-item__date em {
    margin-top: 0.1rem;
    font-style: normal;
    font-size: 0.72rem;
    color: var(--muted);
}

.events-item__media {
    width: 7rem;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--maroon-deep);
}

.events-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}

.events-item:hover .events-item__media img {
    transform: scale(1.07);
}

.events-item__body {
    min-width: 0;
}

.events-item__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.75rem;
    margin-bottom: 0.35rem;
}

.events-item__pill {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(122, 18, 25, 0.18);
    color: var(--maroon);
}

.events-item__pill--current {
    background: rgba(230, 180, 34, 0.18);
    border-color: rgba(196, 154, 18, 0.45);
    color: var(--maroon-deep);
}

.events-item__meta {
    font-size: 0.78rem;
    color: var(--muted);
}

.events-item__title {
    margin: 0 0 0.25rem;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--maroon-deep);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.events-item__place {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.events-item__go {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(122, 18, 25, 0.16);
    color: var(--maroon);
    font-size: 1rem;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.events-item:hover .events-item__go {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--maroon-deep);
    transform: translateX(2px);
}

@media (max-width: 767.98px) {
    .events-item {
        grid-template-columns: 3.75rem 5.25rem minmax(0, 1fr) auto;
        gap: 0.75rem 0.85rem;
        padding: 0.9rem 0.35rem;
        margin: 0 -0.35rem;
    }

    .events-item:hover,
    .events-item:focus-visible {
        padding-left: 0.55rem;
        padding-right: 0.55rem;
        margin-left: -0.55rem;
        margin-right: -0.55rem;
    }

    .events-item__media {
        width: 5.25rem;
    }

    .events-item__date strong {
        font-size: 1.5rem;
    }

    .events-item__place {
        display: none;
    }
}

@media (max-width: 479.98px) {
    .events-item {
        grid-template-columns: 3.4rem minmax(0, 1fr) auto;
    }

    .events-item__media {
        display: none;
    }

    .events-item__go {
        width: 2.1rem;
        height: 2.1rem;
    }
}

/* Event detail */
.section--event-detail {
    background: var(--paper);
}

.event-detail {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.4fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
}

.event-detail__facts {
    position: sticky;
    top: calc(var(--top-header-h) + var(--header-h) + 1rem);
    padding: 1.35rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(122, 18, 25, 0.1);
}

.event-detail__facts h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin: 0 0 1rem;
    color: var(--maroon-deep);
}

.event-detail__facts dl {
    margin: 0 0 1.35rem;
    display: grid;
    gap: 0.95rem;
}

.event-detail__facts dt {
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--maroon);
}

.event-detail__facts dd {
    margin: 0;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.45;
}

.event-detail__lead {
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--maroon-deep);
    max-width: 62ch;
}

.event-detail__gallery-title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 400;
    margin: 0 0 1rem;
    color: var(--maroon-deep);
}

.detail-hero__meta .event-entry__type {
    margin-right: 0.65rem;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .event-detail {
        grid-template-columns: 1fr;
    }

    .event-detail__facts {
        position: static;
    }
}

/* CTA band */
.cta-band {
    position: relative;
    color: var(--text);
    padding: clamp(3.5rem, 8vh, 5.5rem) 0;
    background: #fff;
    overflow: hidden;
}

.cta-band__glow {
    position: absolute;
    inset: auto -10% -40% auto;
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    background: radial-gradient(circle, rgba(230, 180, 34, 0.12), transparent 65%);
    pointer-events: none;
}

.cta-band__panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.95fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    background: var(--paper);
    border: 1px solid rgba(122, 18, 25, 0.1);
}

.cta-band__eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--maroon);
}

.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.6vw, 2.75rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 0.9rem;
    max-width: 16ch;
    color: var(--maroon-deep);
}

.cta-band__lede {
    margin: 0;
    color: var(--muted);
    max-width: 42ch;
    font-size: 1.02rem;
    line-height: 1.55;
}

.cta-band__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-band__action {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    padding: 0.95rem 1rem;
    background: #fff;
    border: 1px solid rgba(122, 18, 25, 0.12);
    color: var(--maroon-deep);
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}

.cta-band__action:hover {
    background: rgba(122, 18, 25, 0.04);
    border-color: rgba(122, 18, 25, 0.28);
    color: var(--maroon-deep);
    transform: translateX(4px);
}

.cta-band__action--primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--maroon-deep);
}

.cta-band__action--primary:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    color: var(--maroon-deep);
}

.cta-band__action-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(122, 18, 25, 0.06);
    color: var(--maroon);
    font-size: 1.15rem;
}

.cta-band__action--primary .cta-band__action-icon {
    background: rgba(74, 12, 17, 0.12);
    color: var(--maroon-deep);
}

.cta-band__action-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.cta-band__action-body strong {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cta-band__action-body span {
    font-size: 0.78rem;
    color: var(--muted);
    opacity: 1;
}

.cta-band__action--primary .cta-band__action-body span {
    color: rgba(42, 8, 11, 0.65);
}

@media (max-width: 991.98px) {
    .cta-band__panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .cta-band__panel {
        padding: 1.25rem;
    }

    .cta-band__title {
        max-width: none;
    }
}

/* Vice-Chancellor’s Message — compact panel */
.section--vc {
    position: relative;
    background:
        radial-gradient(ellipse 50% 40% at 0% 0%, rgba(230, 180, 34, 0.1), transparent 55%),
        radial-gradient(ellipse 45% 50% at 100% 100%, rgba(122, 18, 25, 0.07), transparent 50%),
        var(--mist);
    overflow: hidden;
}

.vc-panel {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: clamp(1.5rem, 3.5vw, 2.75rem);
    align-items: start;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(122, 18, 25, 0.1);
    box-shadow: 0 12px 36px rgba(74, 12, 17, 0.06);
}

.vc-panel__portrait {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.vc-panel__frame {
    position: relative;
    background: var(--maroon-deep);
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(230, 180, 34, 0.35),
        0 12px 28px rgba(74, 12, 17, 0.16);
}

.vc-panel__frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(230, 180, 34, 0.35);
    z-index: 2;
    pointer-events: none;
}

.vc-panel__frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(10%) contrast(1.04);
}

.vc-panel__identity {
    padding-inline: 0.15rem;
}

.vc-panel__label {
    margin: 0 0 0.35rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--maroon);
}

.vc-panel__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 0.2rem;
    color: var(--maroon-deep);
    line-height: 1.2;
}

.vc-panel__role {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
}

.vc-panel__message {
    min-width: 0;
    max-width: 62ch;
}

.vc-panel__head {
    margin-bottom: 0.85rem;
}

.vc-panel__head .section__title {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    max-width: none;
}

.vc-panel__lead {
    margin: 0 0 1rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--text);
}

.vc-panel__quote {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-left: 3px solid var(--gold);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 180, 34, 0.12));
}

.vc-panel__quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.02rem;
    line-height: 1.45;
    color: var(--maroon-deep);
    font-style: italic;
}

.vc-panel__more {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.vc-panel__more[hidden] {
    display: none;
}

.vc-panel__more p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--text);
}

.vc-panel__wish {
    font-style: italic;
    color: var(--muted) !important;
}

.vc-panel__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    border: 0;
    background: none;
    color: var(--maroon);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.vc-panel__toggle i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.vc-panel__toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.vc-panel__toggle-close {
    display: none;
}

.vc-panel__toggle[aria-expanded="true"] .vc-panel__toggle-open {
    display: none;
}

.vc-panel__toggle[aria-expanded="true"] .vc-panel__toggle-close {
    display: inline;
}

.vc-panel__toggle:hover {
    color: var(--maroon-deep);
}

@media (max-width: 767.98px) {
    .vc-panel {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .vc-panel__portrait {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 1rem;
        align-items: center;
    }

    .vc-panel__message {
        max-width: none;
    }
}

@media (max-width: 479.98px) {
    .vc-panel__portrait {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .vc-panel__frame {
        max-width: 160px;
    }
}

/* ── Buttons ── */
.btn-primary-ori {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brass);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 1.5rem;
    border: 0;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.2s;
}

.btn-primary-ori:hover {
    background: #ddb95a;
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-ghost-ori {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius);
    transition: border-color 0.2s, background 0.2s;
}

.btn-ghost-ori:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.btn-link-ori {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--maroon);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.btn-link-ori:hover { color: var(--gold-deep); }
.section--ink .btn-link-ori { color: var(--gold); }
.section--ink .btn-link-ori:hover { color: var(--gold-bright); }
.btn-link-ori i { transition: transform 0.25s var(--ease); }
.btn-link-ori:hover i { transform: translateX(4px); }

/* ── Marquee ── */
.marquee-bar {
    background: var(--maroon-deep);
    color: var(--mist);
    overflow: hidden;
    border-bottom: 1px solid rgba(230,180,34,0.3);
    height: var(--marquee-h);
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 3rem;
    padding: 0;
    animation: marquee-scroll 18s linear infinite;
}

.marquee-track span {
    white-space: nowrap;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.marquee-track a {
    color: var(--brass);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── Sections ── */
.section {
    padding: clamp(4rem, 10vh, 7rem) 0;
}

.section--vc {
    padding: clamp(2.75rem, 5vw, 4rem) 0;
}

.section--ink {
    background: var(--ink);
    color: #fff;
}

.section--mist {
    background: var(--mist);
}

.section__head {
    max-width: 640px;
    margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.section__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass);
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.section--ink .section__eyebrow { color: var(--brass); }

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 0.75rem;
    color: var(--ink);
}

.section--ink .section__title { color: #fff; }

.section__lede {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 42ch;
}

.section--ink .section__lede { color: rgba(255,255,255,0.65); }

.section__head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: clamp(2rem, 5vh, 3.5rem);
}

.section__head-row .section__head {
    margin-bottom: 0;
}

/* ── Content lists (no generic cards in hero; list rows for browsing) ── */
.content-row {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(1.5rem, 3vh, 2.5rem) 0;
    border-top: 1px solid rgba(20, 40, 32, 0.12);
}

.section--ink .content-row {
    border-top-color: rgba(255,255,255,0.12);
}

.content-row:last-child {
    border-bottom: 1px solid rgba(20, 40, 32, 0.12);
}

.section--ink .content-row:last-child {
    border-bottom-color: rgba(255,255,255,0.12);
}

.content-row__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--forest);
}

.content-row__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.content-row:hover .content-row__media img {
    transform: scale(1.04);
}

.content-row__meta {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.65rem;
}

.section--ink .content-row__meta { color: var(--sage); }

.content-row__title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    line-height: 1.2;
    margin: 0 0 0.75rem;
}

.content-row__title a:hover { color: var(--brass-deep); }
.section--ink .content-row__title a:hover { color: var(--brass); }

.content-row__text {
    color: var(--muted);
    margin: 0 0 1.15rem;
    max-width: 48ch;
}

.section--ink .content-row__text { color: rgba(255,255,255,0.6); }

@media (max-width: 767.98px) {
    .content-row {
        grid-template-columns: 1fr;
    }
}

/* Projects listing page */
.section--projects-page {
    background: var(--paper);
}

.projects-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(122, 18, 25, 0.12);
}

.projects-filters {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.projects-filters a {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.projects-filters a:hover {
    color: var(--maroon);
}

.projects-filters a.is-active {
    color: var(--maroon-deep);
    border-bottom-color: var(--gold);
}

.projects-toolbar__count {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.projects-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
}

.projects-cats a {
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted);
    background: #fff;
    border: 1px solid rgba(122, 18, 25, 0.12);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.projects-cats a:hover,
.projects-cats a.is-active {
    background: var(--maroon-deep);
    border-color: var(--maroon-deep);
    color: #fff;
}

.projects-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(122, 18, 25, 0.12);
}

.projects-item {
    display: grid;
    grid-template-columns: 3rem 7rem minmax(0, 1fr) auto;
    gap: 1rem 1.25rem;
    align-items: center;
    padding: 1rem 0.85rem;
    margin: 0 -0.85rem;
    border-bottom: 1px solid rgba(122, 18, 25, 0.1);
    color: inherit;
    text-decoration: none;
    transition: background 0.25s, padding 0.25s, margin 0.25s;
}

.projects-item:hover,
.projects-item:focus-visible {
    color: inherit;
    background: rgba(122, 18, 25, 0.035);
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    margin-left: -1.1rem;
    margin-right: -1.1rem;
}

.projects-item__num {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: rgba(122, 18, 25, 0.35);
    letter-spacing: 0.04em;
}

.projects-item:hover .projects-item__num {
    color: var(--gold-deep);
}

.projects-item__media {
    width: 7rem;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--maroon-deep);
}

.projects-item__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s var(--ease);
}

.projects-item:hover .projects-item__media img {
    transform: scale(1.07);
}

.projects-item__body {
    min-width: 0;
}

.projects-item__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.75rem;
    margin-bottom: 0.35rem;
}

.projects-item__pill {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(122, 18, 25, 0.18);
    color: var(--maroon);
}

.projects-item__pill--ongoing {
    background: rgba(230, 180, 34, 0.18);
    border-color: rgba(196, 154, 18, 0.45);
    color: var(--maroon-deep);
}

.projects-item__pill--past {
    background: rgba(42, 8, 11, 0.06);
}

.projects-item__cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.projects-item__title {
    margin: 0 0 0.3rem;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--maroon-deep);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.projects-item__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.projects-item__go {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(122, 18, 25, 0.16);
    color: var(--maroon);
    font-size: 1rem;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}

.projects-item:hover .projects-item__go {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--maroon-deep);
    transform: translateX(2px);
}

@media (max-width: 767.98px) {
    .projects-item {
        grid-template-columns: 2.5rem 5.25rem minmax(0, 1fr) auto;
        gap: 0.75rem 0.85rem;
        padding: 0.9rem 0.35rem;
        margin: 0 -0.35rem;
    }

    .projects-item:hover,
    .projects-item:focus-visible {
        padding-left: 0.55rem;
        padding-right: 0.55rem;
        margin-left: -0.55rem;
        margin-right: -0.55rem;
    }

    .projects-item__media {
        width: 5.25rem;
    }

    .projects-item__text {
        display: none;
    }
}

@media (max-width: 479.98px) {
    .projects-item {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .projects-item__num,
    .projects-item__media {
        display: none;
    }

    .projects-item__go {
        width: 2.1rem;
        height: 2.1rem;
    }
}

/* People */
.people-strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.person-link {
    display: block;
    color: inherit;
}

.person-link__photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--mist);
    margin-bottom: 1rem;
}

.person-link__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.7s var(--ease), filter 0.4s;
}

.person-link:hover .person-link__photo img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.person-link__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 0.2rem;
}

.person-link__role {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.03em;
}

/* Gallery mosaic */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 0.75rem;
}

.gallery-mosaic a,
.gallery-mosaic__btn {
    overflow: hidden;
    background: var(--forest);
    display: block;
    padding: 0;
    border: 0;
    cursor: zoom-in;
    width: 100%;
    height: 100%;
    color: inherit;
}

.gallery-mosaic a:nth-child(1),
.gallery-mosaic__btn:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-mosaic a:nth-child(4),
.gallery-mosaic__btn:nth-child(4) { grid-column: span 2; }

.gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.gallery-mosaic a:hover img,
.gallery-mosaic__btn:hover img { transform: scale(1.06); }

@media (max-width: 767.98px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }
    .gallery-mosaic a:nth-child(1),
    .gallery-mosaic a:nth-child(4),
    .gallery-mosaic__btn:nth-child(1),
    .gallery-mosaic__btn:nth-child(4) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Gallery lightbox slider */
body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 4, 6, 0.94);
    cursor: zoom-out;
}

.gallery-lightbox__panel {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__figure {
    margin: 0;
    width: 100%;
    max-height: calc(100vh - 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__figure img {
    max-width: 100%;
    max-height: calc(100vh - 6rem);
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    background: #111;
    transition: opacity 0.2s ease;
}

.gallery-lightbox__caption {
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(100%, 720px);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
}

.gallery-lightbox__caption span:last-child {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(42, 8, 11, 0.7);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    z-index: 3;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
    background: rgba(230, 180, 34, 0.25);
    border-color: var(--gold);
    color: var(--gold);
}

.gallery-lightbox__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
}

.gallery-lightbox__nav--prev { left: 0.75rem; }
.gallery-lightbox__nav--next { right: 0.75rem; }

@media (max-width: 767.98px) {
    .gallery-lightbox__panel {
        width: calc(100vw - 1rem);
    }

    .gallery-lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .gallery-lightbox__nav--prev { left: 0.35rem; }
    .gallery-lightbox__nav--next { right: 0.35rem; }

    .gallery-lightbox__close {
        top: 0.5rem;
        right: 0.5rem;
    }

    .gallery-lightbox__figure img {
        max-height: calc(100vh - 7rem);
    }
}

/* Gallery categories page — archive mosaic */
.section--gallery-page {
    background:
        linear-gradient(180deg, #fff 0%, var(--mist) 100%);
}

.gallery-index {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(122, 18, 25, 0.14);
}

.gallery-index__title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 400;
    margin: 0;
    color: var(--maroon-deep);
    line-height: 1.15;
}

.gallery-index__stats {
    display: flex;
    gap: 1.75rem;
}

.gallery-index__stats > div {
    text-align: right;
}

.gallery-index__stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1;
    color: var(--maroon-deep);
    font-weight: 400;
}

.gallery-index__stats span {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.gallery-archive {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.85rem;
}

.gallery-tile {
    position: relative;
    grid-column: span 4;
    min-height: 260px;
    overflow: hidden;
    background: var(--band);
    color: #fff;
    display: block;
}

.gallery-tile:nth-child(3n+1) {
    grid-column: span 5;
    min-height: 300px;
}

.gallery-tile:nth-child(3n+2) {
    grid-column: span 3;
}

.gallery-tile:nth-child(3n) {
    grid-column: span 4;
}

.gallery-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.4s;
    filter: saturate(0.92) contrast(1.05);
}

.gallery-tile__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(42, 8, 11, 0.15) 0%, rgba(42, 8, 11, 0.2) 40%, rgba(42, 8, 11, 0.88) 100%);
    z-index: 1;
    transition: background 0.35s;
}

.gallery-tile__num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: rgba(230, 180, 34, 0.85);
    line-height: 1;
}

.gallery-tile__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.25rem 1.15rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.gallery-tile__count {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
}

.gallery-tile__name {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.15;
    color: #fff;
}

.gallery-tile__go {
    margin-top: 0.55rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s, color 0.2s;
}

.gallery-tile:hover {
    color: #fff;
}

.gallery-tile:hover img {
    transform: scale(1.06);
    filter: saturate(1) contrast(1.05);
}

.gallery-tile:hover .gallery-tile__veil {
    background:
        linear-gradient(180deg, rgba(42, 8, 11, 0.2) 0%, rgba(42, 8, 11, 0.28) 35%, rgba(42, 8, 11, 0.92) 100%);
}

.gallery-tile:hover .gallery-tile__go {
    opacity: 1;
    transform: translateY(0);
    color: var(--gold);
}

@media (max-width: 991.98px) {
    .gallery-tile,
    .gallery-tile:nth-child(3n+1),
    .gallery-tile:nth-child(3n+2),
    .gallery-tile:nth-child(3n) {
        grid-column: span 6;
        min-height: 240px;
    }
}

@media (max-width: 575.98px) {
    .gallery-index__stats {
        width: 100%;
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .gallery-index__stats > div {
        text-align: left;
    }

    .gallery-tile,
    .gallery-tile:nth-child(3n+1),
    .gallery-tile:nth-child(3n+2),
    .gallery-tile:nth-child(3n) {
        grid-column: span 12;
        min-height: 220px;
    }

    .gallery-tile__go {
        opacity: 1;
        transform: none;
    }
}

/* Home gallery — vertical theme panels */
.section--home-gallery {
    background: #fff;
    padding-bottom: 0;
}

.hgallery-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.hgallery-head__eyebrow {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--maroon);
}

.hgallery-head__title {
    margin: 0 0 0.45rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--maroon-deep);
}

.hgallery-head__lede {
    margin: 0;
    max-width: 36rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

.hgallery-head__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--maroon);
    text-decoration: none;
    transition: gap 0.25s, color 0.25s;
}

.hgallery-head__link:hover {
    color: var(--gold-deep);
    gap: 0.65rem;
}

.hgallery {
    position: relative;
    display: flex;
    width: 100%;
    height: min(68vh, 560px);
    min-height: 380px;
    overflow: hidden;
    background: var(--maroon-deep);
}

.hgallery__panel {
    position: relative;
    flex: 1 1 0;
    display: flex;
    align-items: flex-end;
    min-width: 0;
    padding: 1.5rem 1.35rem 1.6rem;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.42);
    overflow: hidden;
    transition: flex 0.7s var(--ease);
}

.hgallery__panel:last-child {
    border-right: 0;
}

.hgallery__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hgallery__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(0.85) brightness(0.72);
    transition: transform 0.9s var(--ease), filter 0.5s ease, opacity 0.45s ease;
}

.hgallery__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(20, 4, 6, 0.35) 0%, rgba(20, 4, 6, 0.2) 40%, rgba(20, 4, 6, 0.78) 100%),
        rgba(20, 4, 6, 0.28);
    transition: background 0.45s ease, opacity 0.45s ease;
    pointer-events: none;
}

.hgallery__panel.is-active,
.hgallery__panel:hover,
.hgallery__panel:focus-visible {
    flex: 2.5 1 0;
    color: #fff;
}

.hgallery__panel.is-active .hgallery__media img,
.hgallery__panel:hover .hgallery__media img,
.hgallery__panel:focus-visible .hgallery__media img {
    transform: scale(1.1);
    filter: saturate(1) brightness(1);
}

.hgallery__panel.is-active .hgallery__shade,
.hgallery__panel:hover .hgallery__shade,
.hgallery__panel:focus-visible .hgallery__shade {
    background:
        linear-gradient(180deg, rgba(20, 4, 6, 0.12) 0%, rgba(20, 4, 6, 0.08) 45%, rgba(20, 4, 6, 0.62) 100%),
        rgba(20, 4, 6, 0.08);
}

.hgallery:hover .hgallery__panel:not(:hover):not(:focus-visible) {
    flex: 0.85 1 0;
}

.hgallery:hover .hgallery__panel:not(:hover):not(:focus-visible) .hgallery__media img {
    filter: saturate(0.6) brightness(0.45);
}

.hgallery__label {
    position: relative;
    z-index: 2;
    font-family: var(--font-sans);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.25;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s var(--ease);
}

.hgallery__panel.is-active .hgallery__label,
.hgallery__panel:hover .hgallery__label,
.hgallery__panel:focus-visible .hgallery__label {
    transform: translateY(-4px);
}

@media (max-width: 767.98px) {
    .hgallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        height: auto;
        min-height: 0;
    }

    .hgallery__panel {
        min-height: 200px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.35);
        flex: none !important;
    }

    .hgallery__panel:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.35);
    }

    .hgallery:hover .hgallery__panel:not(:hover):not(:focus-visible) {
        flex: none !important;
    }

    .hgallery:hover .hgallery__panel:not(:hover):not(:focus-visible) .hgallery__media img {
        filter: saturate(0.85) brightness(0.72);
    }
}

@media (max-width: 479.98px) {
    .hgallery {
        grid-template-columns: 1fr;
    }

    .hgallery__panel:nth-child(odd) {
        border-right: 0;
    }
}

/* Page hero (inner pages) — same band color as header */
.page-hero {
    position: relative;
    padding: 3.5rem 0 3.5rem;
    background: var(--band);
    color: #fff;
    overflow: hidden;
}

.page-hero::before {
    display: none;
}

.page-hero__inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.page-hero__brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.14em;
    color: var(--brass);
    margin-bottom: 1rem;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 0.85rem;
    max-width: 16ch;
}

.page-hero p {
    margin: 0;
    color: rgba(255,255,255,0.65);
    max-width: 42ch;
    font-size: 1.05rem;
}

/* Detail */
.detail-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    color: #fff;
}

.detail-hero__media {
    position: absolute;
    inset: 0;
}

.detail-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 20%, rgba(74,12,17,0.9));
}

.detail-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem) 3rem;
}

.detail-hero__meta {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brass);
    margin-bottom: 0.75rem;
}

.detail-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    max-width: 18ch;
    margin: 0;
    line-height: 1.1;
}

.prose {
    max-width: 68ch;
    font-size: 1.05rem;
    color: var(--text);
}

.prose h2, .prose h3 {
    font-family: var(--font-display);
    font-weight: 400;
    margin-top: 2rem;
}

.prose p { margin-bottom: 1.15rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; }

.empty-note {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted);
}

.empty-note p { margin: 0.5rem 0 0; }

/* Former Curators & Directors tables */
.section--leadership {
    background: #fff;
}

.leadership-block + .leadership-block {
    margin-top: clamp(2.75rem, 5vw, 4rem);
}

.leadership-block__head {
    margin-bottom: 1.25rem;
}

.leadership-block__title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.leadership-block__head .section__title {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.leadership-block__count {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.leadership-pagination {
    margin-top: 1.25rem;
}

.leadership-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(122, 18, 25, 0.12);
    background: var(--paper);
}

.leadership-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.leadership-table th,
.leadership-table td {
    padding: 0.85rem 1.1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(122, 18, 25, 0.1);
}

.leadership-table thead th {
    background: var(--maroon-deep);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.leadership-table tbody tr:nth-child(even) {
    background: rgba(122, 18, 25, 0.03);
}

.leadership-table tbody tr:hover {
    background: rgba(230, 180, 34, 0.1);
}

.leadership-table .col-no {
    width: 5.5rem;
    white-space: nowrap;
    color: var(--maroon);
    font-weight: 600;
}

.leadership-table thead .col-no,
.leadership-table thead .col-period {
    color: rgba(255, 255, 255, 0.95);
}

.leadership-table .col-period {
    width: 32%;
    min-width: 11rem;
    white-space: pre-line;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    line-height: 1.45;
}

.leadership-table tbody td:nth-child(2) {
    color: var(--maroon-deep);
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .leadership-table {
        min-width: 0;
    }

    .leadership-table th,
    .leadership-table td {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .leadership-table .col-period {
        min-width: 8.5rem;
        width: 36%;
    }
}

/* Filter tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-tabs--secondary {
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.filter-tabs a {
    padding: 0.5rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(20,40,32,0.15);
    color: var(--muted);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.filter-tabs a:hover,
.filter-tabs a.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

/* Footer */
.site-footer {
    position: relative;
    background:
        radial-gradient(ellipse 60% 50% at 10% 0%, rgba(230, 180, 34, 0.14), transparent 55%),
        linear-gradient(180deg, #1a0507 0%, #2a080b 40%, #140406 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: clamp(3rem, 7vh, 4.5rem) 0 0;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-bright) 50%, var(--gold) 70%, transparent);
}

.footer-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1.2fr) minmax(220px, 0.75fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    padding-bottom: clamp(2rem, 4vh, 2.75rem);
    margin-bottom: clamp(2rem, 4vh, 2.75rem);
    border-bottom: 1px solid rgba(230, 180, 34, 0.14);
}

.footer-brand-link {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.35s var(--ease);
}

.footer-brand-link:hover {
    transform: scale(1.04);
}

.footer-logo {
    width: clamp(72px, 9vw, 88px);
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}

.footer-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.8vw, 2rem);
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.12;
    margin: 0 0 0.55rem;
    font-weight: 400;
}

.footer-motto {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--gold);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.footer-tagline {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.58);
    max-width: 40ch;
}

.footer-hero__aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.1rem 1.15rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(230, 180, 34, 0.22);
    color: #fff;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s;
}

.footer-contact-card:hover {
    background: rgba(230, 180, 34, 0.12);
    border-color: rgba(230, 180, 34, 0.4);
    color: #fff;
}

.footer-contact-card__label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.footer-contact-card strong {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-contact-card span:last-child {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.45rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.75);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: rgba(230, 180, 34, 0.16);
    border-color: var(--gold);
    color: var(--gold);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(2rem, 4vh, 2.75rem);
    border-bottom: 1px solid rgba(230, 180, 34, 0.12);
}

.footer-col__title {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin: 0 0 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.2s, transform 0.2s;
    width: fit-content;
}

.footer-nav a:hover {
    color: var(--gold-bright);
    transform: translateX(4px);
}

.footer-visit p {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-map-link:hover {
    color: var(--gold-bright);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0 1.75rem;
}

.footer-copy {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-top-link {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s, gap 0.2s;
}

.footer-top-link:hover {
    color: var(--gold-bright);
    gap: 0.6rem;
}

@media (max-width: 991.98px) {
    .footer-hero {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .footer-hero__aside {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .footer-contact-card {
        flex: 1 1 220px;
    }
}

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

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col--visit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-col--visit {
        grid-column: auto;
    }
}

/* Container helper */
.container-site {
    max-width: 1400px;
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.pub-list article {
    padding: 1.75rem 0;
    border-top: 1px solid rgba(20,40,32,0.12);
}

.pub-list article:last-child {
    border-bottom: 1px solid rgba(20,40,32,0.12);
}

.pub-list h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 0.5rem;
}

.pub-list h2 a {
    color: inherit;
    text-decoration: none;
}

.pub-list h2 a:hover {
    color: var(--maroon, #7A1219);
}

.pub-list .meta {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.65rem;
}

.pub-list__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    margin-top: 0.85rem;
}

.publication-desc {
    max-width: 52rem;
    margin-bottom: 1.75rem;
}

/* Book-style PDF reader */
.pdf-book {
    --book-wood: #2a080b;
    --book-night: #140406;
    --book-paper: #f7f1e6;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(230, 180, 34, 0.08), transparent 70%),
        linear-gradient(180deg, #1c0709 0%, var(--book-night) 100%);
    border: 1px solid rgba(230, 180, 34, 0.22);
    overflow: hidden;
}

.pdf-book:fullscreen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #0c0304;
}

.pdf-book__toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(180deg, #2a080b 0%, #1f0608 100%);
    border-bottom: 1px solid rgba(230, 180, 34, 0.18);
}

.pdf-book__meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    min-width: 0;
}

.pdf-book__meta i {
    color: var(--gold, #E6B422);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.pdf-book__meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pdf-book__pager {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    justify-self: center;
}

.pdf-book__page {
    min-width: 6.5rem;
    text-align: center;
    color: var(--gold, #E6B422);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pdf-book__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.pdf-book__btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font: inherit;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    padding: 0.45rem 0.75rem;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pdf-book__btn:hover {
    background: rgba(230, 180, 34, 0.2);
    border-color: var(--gold, #E6B422);
    color: var(--gold, #E6B422);
}

.pdf-book__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: min(78vh, 920px);
    padding: 1.5rem 0.75rem 1.75rem;
    perspective: 2200px;
}

.pdf-book:fullscreen .pdf-book__stage {
    flex: 1;
    height: auto;
}

.pdf-book__spread {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: min(1100px, 100%);
    width: 100%;
    transform-style: preserve-3d;
    filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.45));
}

.pdf-book__leaf {
    position: relative;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 18%),
        var(--book-paper);
    border: 1px solid rgba(255, 255, 255, 0.35);
    overflow: hidden;
}

.pdf-book__leaf--left {
    border-radius: 4px 0 0 4px;
    box-shadow: inset -18px 0 28px rgba(0, 0, 0, 0.08);
    transform-origin: right center;
}

.pdf-book__leaf--right {
    border-radius: 0 4px 4px 0;
    box-shadow: inset 18px 0 28px rgba(0, 0, 0, 0.08);
    transform-origin: left center;
    background:
        linear-gradient(270deg, rgba(0, 0, 0, 0.08), transparent 18%),
        var(--book-paper);
}

.pdf-book__leaf canvas {
    display: block;
    max-width: 100%;
    height: auto;
    cursor: pointer;
}

.pdf-book__spine {
    width: 14px;
    flex: 0 0 14px;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(230, 180, 34, 0.35) 35%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(230, 180, 34, 0.35) 65%,
            rgba(0, 0, 0, 0.4) 100%);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.35);
}

.pdf-book__spread.is-flip-next .pdf-book__leaf--right,
.pdf-book__spread.is-flip-prev .pdf-book__leaf--left {
    animation: bookFlip 0.5s ease;
}

@keyframes bookFlip {
    0% { transform: rotateY(0deg); filter: brightness(1); }
    40% { filter: brightness(0.92); }
    100% { transform: rotateY(0deg); filter: brightness(1); }
}

.pdf-book__spread.is-flip-next .pdf-book__leaf--right {
    animation-name: bookFlipNext;
}

.pdf-book__spread.is-flip-prev .pdf-book__leaf--left {
    animation-name: bookFlipPrev;
}

@keyframes bookFlipNext {
    0% { transform: rotateY(0deg); }
    45% { transform: rotateY(-18deg); }
    100% { transform: rotateY(0deg); }
}

@keyframes bookFlipPrev {
    0% { transform: rotateY(0deg); }
    45% { transform: rotateY(18deg); }
    100% { transform: rotateY(0deg); }
}

.pdf-book__nav {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(42, 8, 11, 0.7);
    color: #fff;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    z-index: 2;
}

.pdf-book__nav:hover {
    background: rgba(230, 180, 34, 0.25);
    border-color: var(--gold, #E6B422);
    color: var(--gold, #E6B422);
}

.pdf-book__status {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(12, 3, 4, 0.72);
    z-index: 3;
    text-align: center;
}

.pdf-book__status a {
    color: var(--gold, #E6B422);
}

.pdf-book__status[hidden] {
    display: none !important;
}

.pdf-book__hint {
    margin: 0;
    padding: 0.75rem 1rem 1rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    background: #1a0a0c;
}

.pdf-book__hint a {
    color: var(--gold, #E6B422);
}

.pdf-book.is-single .pdf-book__leaf--right,
.pdf-book.is-single .pdf-book__spine {
    display: none;
}

.pdf-book.is-single .pdf-book__leaf--left {
    border-radius: 4px;
    max-width: 640px;
    margin-inline: auto;
    box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.06);
}

.pdf-book.is-error .pdf-book__spread {
    opacity: 0.25;
}

@media (max-width: 991.98px) {
    .pdf-book__toolbar {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .pdf-book__pager,
    .pdf-book__actions {
        justify-content: flex-start;
    }

    .pdf-book__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 899.98px) {
    .pdf-book__stage {
        height: min(72vh, 760px);
        padding: 1rem 0.35rem 1.25rem;
    }

    .pdf-book__nav {
        width: 38px;
        height: 38px;
    }
}

.event-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.event-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-info__block {
    margin-bottom: 1.75rem;
}

.contact-info__block h3 {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--maroon);
    margin: 0 0 0.45rem;
}

.contact-info__block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.contact-info__block a {
    color: var(--maroon-deep);
}

.contact-info__block a:hover {
    color: var(--maroon);
}

.contact-map {
    margin-top: 0.5rem;
    border: 1px solid rgba(122, 18, 25, 0.12);
    overflow: hidden;
    background: var(--mist);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

.contact-form {
    background: var(--paper);
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(122, 18, 25, 0.08);
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--maroon-deep);
}

.contact-form .form-control {
    border-radius: var(--radius);
    border-color: rgba(122, 18, 25, 0.18);
    padding: 0.7rem 0.85rem;
}

.contact-form .form-control:focus {
    border-color: var(--maroon);
    box-shadow: 0 0 0 0.2rem rgba(122, 18, 25, 0.12);
}

.contact-captcha {
    padding: 1rem 1.1rem;
    background: rgba(122, 18, 25, 0.04);
    border: 1px solid rgba(122, 18, 25, 0.12);
}

.contact-captcha__input {
    max-width: 180px;
}

@media (max-width: 767.98px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Journal — The Mysore Orientalist */
.section--journal {
    background: #fff;
}

.journal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.journal-lead {
    font-size: clamp(1.05rem, 1.7vw, 1.2rem);
    line-height: 1.65;
    color: var(--maroon-deep);
    margin: 0 0 1.5rem;
}

.journal-prose p {
    margin: 0 0 1.15rem;
    color: var(--text);
    line-height: 1.7;
}

.journal-prose p:last-child {
    margin-bottom: 0;
}

.journal-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    margin-top: 1.75rem;
}

.journal-card {
    position: sticky;
    top: calc(var(--top-header-h) + var(--header-h) + 1rem);
    padding: 1.5rem 1.35rem;
    background: var(--maroon-deep);
    color: #fff;
    border: 1px solid rgba(230, 180, 34, 0.35);
}

.journal-card__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.journal-card__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 0.45rem;
    line-height: 1.15;
    color: #fff;
}

.journal-card__sub {
    margin: 0 0 1.35rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}

.journal-meta {
    margin: 0;
    display: grid;
    gap: 0.85rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(230, 180, 34, 0.28);
}

.journal-meta > div {
    display: grid;
    grid-template-columns: 7.5rem 1fr;
    gap: 0.5rem;
    align-items: baseline;
}

.journal-meta dt {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.journal-meta dd {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.section--journal-scope {
    background: var(--mist);
}

.journal-scope__head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.journal-scope__head .section__title {
    margin-bottom: 0.65rem;
}

.journal-scope__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.journal-scope__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    background: #fff;
    border: 1px solid rgba(122, 18, 25, 0.1);
}

.journal-scope__num {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: rgba(122, 18, 25, 0.28);
    line-height: 1;
    flex-shrink: 0;
}

.journal-scope__label {
    color: var(--maroon-deep);
    font-weight: 500;
    line-height: 1.4;
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .journal-layout {
        grid-template-columns: 1fr;
    }

    .journal-card {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .journal-scope__list {
        grid-template-columns: 1fr;
    }

    .journal-meta > div {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }
}
