/**
 * FBC Bicentenary — 1827–2027 Enduring Legacy
 */

.usl-bicentenary-page {
    --bicent-maroon: #6b1d2a;
    --bicent-maroon-dark: #4a0e1c;
    --bicent-maroon-light: #8b2940;
    --bicent-gold: #c9a227;
    --bicent-gold-hover: #dbb42e;
    --bicent-cream: #faf7f2;
    --bicent-surface: #f5f0eb;
    --bicent-muted: #64748b;
    --bicent-body: #1a1a1a;
    --bicent-fs-hero-years: 2.5rem;
    --bicent-fs-hero-title: clamp(2rem, 5vw, 3.25rem);
    --bicent-fs-hero-subtitle: clamp(1.1rem, 2.5vw, 1.35rem);
    --bicent-fs-hero-tagline: 1rem;
    --bicent-fs-hero-btn: 0.9rem;
    --bicent-fs-quicknav: 0.85rem;
    --bicent-fs-section-eyebrow: 0.72rem;
    --bicent-fs-section-title: clamp(1.65rem, 3.5vw, 2.25rem);
    --bicent-fs-section-lead: 1.05rem;
    --bicent-fs-body: 1rem;
    --bicent-fs-small: 0.85rem;
    --bicent-fs-card-title: 1.15rem;
    color: var(--bicent-body);
}

/* Hero */
.bicentenary-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--bicent-maroon-dark) center / cover no-repeat;
}

.bicentenary-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--bicent-hero-overlay, linear-gradient(180deg, rgba(74, 14, 28, 0.4) 0%, rgba(74, 14, 28, 0.92) 100%));
}

.bicentenary-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 76rem;
    margin: 0 auto;
    padding: 4rem 1.5rem 3rem;
    color: var(--bicent-on-dark, #fff);
}

.bicentenary-hero__badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 1.25rem;
    background: var(--bicent-hero-badge-bg, rgba(255, 255, 255, 0.1));
    border: 2px solid var(--bicent-hero-badge-border, var(--bicent-gold));
    border-radius: 0.5rem;
}

.bicentenary-hero__years {
    font-size: var(--bicent-fs-hero-years);
    font-weight: 900;
    line-height: 1;
    color: var(--bicent-hero-badge-years, var(--bicent-gold));
    letter-spacing: -0.02em;
}

.bicentenary-hero__dates {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bicent-hero-badge-dates, rgba(255, 255, 255, 0.9));
}

.bicentenary-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.75rem;
    font-size: var(--bicent-fs-section-eyebrow);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bicent-hero-eyebrow, var(--bicent-gold));
}

.bicentenary-hero__title {
    margin: 0 0 0.5rem;
    font-size: var(--bicent-fs-hero-title);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--bicent-hero-title, var(--bicent-on-dark, #fff));
}

.bicentenary-hero__subtitle {
    margin: 0;
    font-size: var(--bicent-fs-hero-subtitle);
    font-weight: 600;
    color: var(--bicent-hero-subtitle, var(--bicent-gold));
}

.bicentenary-hero__tagline {
    margin: 0.75rem 0 0;
    max-width: 36rem;
    font-size: var(--bicent-fs-hero-tagline);
    line-height: 1.6;
    color: var(--bicent-hero-tagline, rgba(255, 255, 255, 0.88));
}

.bicentenary-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.bicentenary-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    border-radius: 0.375rem;
    font-size: var(--bicent-fs-hero-btn);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.bicentenary-hero__btn--primary {
    color: var(--bicent-hero-btn-primary-text, var(--bicent-maroon-dark));
    background: var(--bicent-hero-btn-primary-bg, var(--bicent-gold));
    border: 2px solid var(--bicent-hero-btn-primary-bg, var(--bicent-gold));
}

.bicentenary-hero__btn--primary:hover {
    background: var(--bicent-gold-hover);
    border-color: var(--bicent-gold-hover);
    color: var(--bicent-hero-btn-primary-text, var(--bicent-maroon-dark));
}

.bicentenary-hero__btn--outline {
    color: var(--bicent-hero-btn-outline-text, #fff);
    background: transparent;
    border: 2px solid var(--bicent-hero-btn-outline-border, rgba(255, 255, 255, 0.6));
}

.bicentenary-hero__btn--outline:hover {
    background: var(--bicent-hero-btn-outline-hover-bg, rgba(255, 255, 255, 0.12));
    border-color: var(--bicent-hero-btn-outline-hover-border, #fff);
    color: var(--bicent-hero-btn-outline-text, #fff);
}

/* Quick nav */
.bicentenary-quicknav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--bicent-quicknav-bg, #fff);
    border-bottom: 1px solid var(--bicent-quicknav-border, #e5e7eb);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.bicentenary-quicknav__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
    padding: 0.85rem 1.5rem;
    overflow-x: auto;
}

.bicentenary-quicknav a {
    white-space: nowrap;
    font-size: var(--bicent-fs-quicknav);
    font-weight: 600;
    color: var(--bicent-quicknav-link, var(--bicent-muted));
    text-decoration: none;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.bicentenary-quicknav a:hover {
    color: var(--bicent-quicknav-link-hover, var(--bicent-maroon));
    border-bottom-color: var(--bicent-quicknav-link-hover, var(--bicent-maroon));
}

/* Layout */
.bicentenary-wrap {
    max-width: 76rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bicentenary-section {
    padding: 4rem 0;
}

.bicentenary-section--alt {
    background: var(--bicent-surface);
}

.bicentenary-section--maroon {
    background: var(--bicent-section-gradient, linear-gradient(135deg, var(--bicent-maroon-dark) 0%, var(--bicent-maroon) 100%));
    color: var(--bicent-on-dark, #fff);
}

/* Section headers */
.bicentenary-section-head {
    margin-bottom: 2.5rem;
}

.bicentenary-section-head--center {
    text-align: center;
}

.bicentenary-section-head--center .bicentenary-section-lead {
    margin-left: auto;
    margin-right: auto;
}

.bicentenary-section-head--light .bicentenary-section-eyebrow {
    color: var(--bicent-gold);
}

.bicentenary-section-head--light .bicentenary-section-title {
    color: #fff;
}

.bicentenary-section-eyebrow {
    margin: 0 0 0.5rem;
    font-size: var(--bicent-fs-section-eyebrow);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bicent-maroon);
}

.bicentenary-section-title {
    margin: 0;
    font-size: var(--bicent-fs-section-title);
    font-weight: 800;
    line-height: 1.15;
    color: var(--bicent-body);
}

.bicentenary-section-lead {
    margin: 1rem 0 0;
    max-width: 42rem;
    font-size: var(--bicent-fs-section-lead);
    line-height: 1.65;
    color: var(--bicent-muted);
}

.bicentenary-section-foot {
    margin: 2rem 0 0;
    text-align: center;
}

.bicentenary-section-foot a {
    font-weight: 700;
    color: var(--bicent-maroon);
    text-decoration: none;
}

.bicentenary-section-foot a:hover {
    text-decoration: underline;
}

/* DVC Message */
.bicentenary-message {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem 2.5rem;
    background: var(--bicent-card-bg, #fff);
    border-left: 4px solid var(--bicent-maroon);
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: var(--bicent-shadow, 0 4px 24px rgba(74, 14, 28, 0.08));
}

.bicentenary-section--alt + .bicentenary-section .bicentenary-message,
.bicentenary-section:not(.bicentenary-section--alt) .bicentenary-message {
    background: var(--bicent-cream);
}

.bicentenary-message__quote {
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    font-size: 2rem;
    color: var(--bicent-maroon);
    opacity: 0.25;
}

.bicentenary-message__body p {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--bicent-quote-text, #334155);
}

.bicentenary-message__body p:last-child {
    margin-bottom: 0;
}

.bicentenary-message__signature {
    margin: 1.5rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.95rem;
    font-weight: 700;
    font-style: italic;
    color: var(--bicent-maroon);
}

/* Projects grid */
.bicentenary-projects {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.bicentenary-project-card {
    position: relative;
    padding: 1.5rem 1.35rem 1.35rem 1.35rem;
    background: var(--bicent-card-bg, #fff);
    border-radius: 0.5rem;
    border: 1px solid var(--bicent-card-border, #e8e0d8);
    transition: box-shadow 0.2s, transform 0.2s;
}

.bicentenary-project-card:hover {
    box-shadow: 0 8px 24px rgba(74, 14, 28, 0.1);
    transform: translateY(-2px);
}

.bicentenary-project-card__num {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--bicent-maroon);
    opacity: 0.45;
}

.bicentenary-project-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 0.85rem;
    border-radius: 0.5rem;
    background: rgba(107, 29, 42, 0.1);
    color: var(--bicent-maroon);
    font-size: 1.15rem;
}

.bicentenary-project-card__title {
    margin: 0 0 0.5rem;
    font-size: var(--bicent-fs-card-title);
    font-weight: 700;
    line-height: 1.35;
    color: var(--bicent-body);
}

.bicentenary-project-card__text {
    margin: 0;
    font-size: var(--bicent-fs-body);
    line-height: 1.6;
    color: var(--bicent-muted);
}

/* Appeals */
.bicentenary-appeals {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.bicentenary-appeal-card {
    display: flex;
    flex-direction: column;
    background: var(--bicent-card-bg, #fff);
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid var(--bicent-card-border, #e8e0d8);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bicentenary-appeal-card__img-wrap {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bicent-surface);
}

.bicentenary-appeal-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bicentenary-appeal-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
}

.bicentenary-appeal-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bicent-maroon-dark);
}

.bicentenary-appeal-card__excerpt,
.bicentenary-appeal-card__content p {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--bicent-muted);
}

.bicentenary-appeal-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bicent-maroon);
    text-decoration: none;
}

.bicentenary-appeal-card__link:hover {
    text-decoration: underline;
}

/* Bank / donate */
.bicentenary-bank {
    max-width: 52rem;
    margin: 0 auto;
}

.bicentenary-bank__primary {
    margin-bottom: 1.75rem;
    text-align: center;
}

.bicentenary-bank__name {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.bicentenary-bank__name i {
    color: var(--bicent-bank-accent, var(--bicent-gold));
    margin-right: 0.35rem;
}

.bicentenary-bank__address,
.bicentenary-bank__account-name {
    margin: 0.35rem 0;
    font-size: 0.95rem;
    color: var(--bicent-bank-body, rgba(255, 255, 255, 0.88));
}

.bicentenary-bank__accounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.bicentenary-bank__account {
    padding: 1.35rem;
    background: var(--bicent-bank-card-bg, rgba(255, 255, 255, 0.08));
    border: 1px solid var(--bicent-bank-card-border, rgba(255, 255, 255, 0.15));
    border-radius: 0.5rem;
}

.bicentenary-bank__currency {
    margin: 0 0 0.85rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bicent-bank-accent, var(--bicent-gold));
}

.bicentenary-bank__details {
    margin: 0;
}

.bicentenary-bank__details div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--bicent-bank-divider, rgba(255, 255, 255, 0.1));
    font-size: 0.9rem;
}

.bicentenary-bank__details div:last-child {
    border-bottom: none;
}

.bicentenary-bank__details dt {
    margin: 0;
    font-weight: 600;
    color: var(--bicent-bank-label, rgba(255, 255, 255, 0.7));
}

.bicentenary-bank__details dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
    word-break: break-all;
}

.bicentenary-bank__intermediary {
    padding: 1.25rem 1.5rem;
    background: var(--bicent-bank-intermediary-bg, rgba(0, 0, 0, 0.15));
    border-radius: 0.5rem;
    font-size: 0.88rem;
    line-height: 1.65;
}

.bicentenary-bank__intermediary h4 {
    margin: 0 0 0.65rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bicent-bank-accent, var(--bicent-gold));
}

.bicentenary-bank__intermediary p {
    margin: 0.25rem 0;
    color: var(--bicent-bank-body, rgba(255, 255, 255, 0.9));
}

/* Events */
.bicentenary-events {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.bicentenary-event-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 0.5rem;
    border: 1px solid #e8e0d8;
}

.bicentenary-event-card__date {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: var(--bicent-maroon);
    color: #fff;
    border-radius: 0.375rem;
    text-align: center;
}

.bicentenary-event-card__day {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.bicentenary-event-card__month {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.bicentenary-event-card__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
}

.bicentenary-event-card__title a {
    color: #1a1a1a;
    text-decoration: none;
}

.bicentenary-event-card__title a:hover {
    color: var(--bicent-maroon);
}

.bicentenary-event-card__meta {
    margin: 0 0 0.5rem;
    font-size: 0.82rem;
    color: var(--bicent-muted);
}

.bicentenary-event-card__excerpt {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--bicent-muted);
}

.bicentenary-event-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bicent-maroon);
    text-decoration: none;
}

.bicentenary-event-card__link:hover {
    text-decoration: underline;
}

/* News */
.bicentenary-news {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bicentenary-news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #e8e0d8;
    transition: box-shadow 0.2s;
}

.bicentenary-news-card:hover {
    box-shadow: 0 8px 24px rgba(74, 14, 28, 0.08);
}

.bicentenary-news-card__img-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bicent-surface);
}

.bicentenary-news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bicentenary-news-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
}

.bicentenary-news-card__date {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--bicent-muted);
}

.bicentenary-news-card__title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.bicentenary-news-card__title a {
    color: #1a1a1a;
    text-decoration: none;
}

.bicentenary-news-card__title a:hover {
    color: var(--bicent-maroon);
}

.bicentenary-news-card__excerpt {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--bicent-muted);
    flex: 1;
}

.bicentenary-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--bicent-maroon);
    text-decoration: none;
}

.bicentenary-news-card__link:hover {
    text-decoration: underline;
}

/* Empty state */
.bicentenary-empty {
    max-width: 28rem;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 0.5rem;
    border: 1px dashed #d1c9c0;
}

.bicentenary-section--alt .bicentenary-empty {
    background: var(--bicent-cream);
}

.bicentenary-empty__icon {
    font-size: 2.25rem;
    color: var(--bicent-maroon);
    opacity: 0.5;
    margin-bottom: 0.75rem;
}

.bicentenary-empty p {
    margin: 0.35rem 0;
    font-size: 0.95rem;
    color: var(--bicent-muted);
}

.bicentenary-empty p strong {
    color: #1a1a1a;
}

@media (max-width: 640px) {
    .bicentenary-message {
        padding: 1.5rem 1.25rem 1.25rem 1.75rem;
    }

    .bicentenary-event-card {
        flex-direction: column;
    }

    .bicentenary-event-card__date {
        flex-direction: row;
        width: auto;
        height: auto;
        gap: 0.35rem;
        padding: 0.5rem 0.75rem;
        align-self: flex-start;
    }
}

/* Call for Papers CTA */
.bicentenary-papers-cta {
    max-width: 640px;
    margin: 0 auto;
}

.bicentenary-papers-cta__card {
    background: var(--bicent-surface);
    border: 1px solid #e8e0d8;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(74, 14, 28, 0.06);
}

.bicentenary-papers-cta__icon {
    font-size: 2.5rem;
    color: var(--bicent-gold);
    margin-bottom: 0.75rem;
}

.bicentenary-papers-cta__card h3 {
    margin: 0 0 0.5rem;
    color: var(--bicent-maroon);
    font-size: 1.25rem;
}

.bicentenary-papers-cta__card p {
    color: var(--bicent-muted);
    line-height: 1.6;
    margin: 0 0 1.25rem;
}

.bicentenary-papers-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.bicentenary-papers-cta__actions .bicentenary-hero__btn--outline {
    color: var(--bicent-maroon);
    border-color: var(--bicent-maroon);
}

.bicentenary-papers-cta__actions .bicentenary-hero__btn--outline:hover {
    background: rgba(107, 29, 42, 0.06);
}

/* ── Committee members page (spacious layout) ───────────────── */
.bicentenary-committee-page {
    background: var(--bicent-cream, #faf7f2);
    overflow-x: hidden;
}

.bicentenary-committee-page .bicentenary-wrap {
    max-width: 68rem;
    padding-left: clamp(1.25rem, 5vw, 3rem);
    padding-right: clamp(1.25rem, 5vw, 3rem);
}

/* Hero */
.bicentenary-committee-hero {
    position: relative;
    min-height: clamp(380px, 52vh, 520px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bicent-maroon-dark) center / cover no-repeat;
}

.bicentenary-committee-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(74, 14, 28, 0.55) 0%,
        rgba(74, 14, 28, 0.82) 55%,
        rgba(74, 14, 28, 0.94) 100%
    );
}

.bicentenary-committee-hero__glow {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 120%);
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 162, 39, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.bicentenary-committee-hero__content {
    position: relative;
    z-index: 1;
    padding: 4rem 0 3.5rem;
    max-width: 46rem;
}

.bicentenary-committee-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.65);
}

.bicentenary-committee-breadcrumb a {
    color: var(--bicent-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.bicentenary-committee-breadcrumb a:hover {
    text-decoration: underline;
}

.bicentenary-committee-hero__eyebrow {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bicent-gold);
}

.bicentenary-committee-hero__title {
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
}

.bicentenary-committee-hero__lead {
    margin: 0 auto;
    max-width: 38rem;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

/* Metrics bar */
.bicentenary-committee-metrics {
    background: #fff;
    border-bottom: 1px solid rgba(107, 29, 42, 0.08);
    box-shadow: 0 8px 32px rgba(74, 14, 28, 0.06);
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
}

.bicentenary-committee-metrics__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.bicentenary-committee-metrics__list li {
    padding: 2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(107, 29, 42, 0.08);
}

.bicentenary-committee-metrics__list li:last-child {
    border-right: none;
}

.bicentenary-committee-metrics__num {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--bicent-maroon);
    line-height: 1.1;
}

.bicentenary-committee-metrics__num i {
    color: var(--bicent-gold);
}

.bicentenary-committee-metrics__lbl {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bicent-muted);
}

/* Subnav */
.bicentenary-committee-subnav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 29, 42, 0.08);
    padding: 1rem 0;
}

.bicentenary-committee-subnav__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.bicentenary-committee-subnav__track a {
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bicent-maroon);
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(107, 29, 42, 0.12);
    box-shadow: 0 2px 8px rgba(74, 14, 28, 0.04);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.bicentenary-committee-subnav__track a:hover {
    background: var(--bicent-maroon);
    color: #fff;
    border-color: var(--bicent-maroon);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(74, 14, 28, 0.15);
}

/* Committee bands (full-width sections) */
.bicentenary-committee-band {
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    background: var(--bicent-cream, #faf7f2);
    scroll-margin-top: 5rem;
}

.bicentenary-committee-band--alt {
    background: #fff;
}

.bicentenary-committee-band__head {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: 1.75rem;
    border-bottom: 2px solid rgba(201, 162, 39, 0.45);
}

.bicentenary-committee-band__num {
    flex-shrink: 0;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    color: var(--bicent-gold);
    opacity: 0.9;
}

.bicentenary-committee-band__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    color: var(--bicent-maroon);
    line-height: 1.2;
}

.bicentenary-committee-band__subtitle {
    margin: 0;
    font-size: 1rem;
    color: var(--bicent-muted);
}

.bicentenary-committee-profiles {
    display: flex;
    flex-direction: column;
    gap: clamp(1.75rem, 4vw, 2.5rem);
}

/* Horizontal profile cards */
.bicentenary-committee-profile {
    display: grid;
    grid-template-columns: minmax(140px, 200px) 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid rgba(107, 29, 42, 0.08);
    box-shadow: 0 4px 24px rgba(74, 14, 28, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.bicentenary-committee-band--alt .bicentenary-committee-profile {
    background: var(--bicent-cream, #faf7f2);
}

.bicentenary-committee-profile:hover {
    box-shadow: 0 12px 40px rgba(74, 14, 28, 0.1);
    transform: translateY(-2px);
}

.bicentenary-committee-profile__photo-wrap {
    position: relative;
}

.bicentenary-committee-profile__photo-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 1.25rem;
    background: linear-gradient(145deg, var(--bicent-gold), var(--bicent-maroon));
    opacity: 0.35;
    z-index: 0;
}

.bicentenary-committee-profile__photo {
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--bicent-surface);
    box-shadow: 0 8px 24px rgba(74, 14, 28, 0.12);
}

.bicentenary-committee-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.bicentenary-committee-profile__main {
    padding-top: 0.25rem;
    min-width: 0;
}

.bicentenary-committee-profile__name {
    margin: 0 0 0.35rem;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--bicent-maroon);
    line-height: 1.25;
}

.bicentenary-committee-profile__role {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bicent-gold);
    line-height: 1.45;
}

.bicentenary-committee-profile__bio {
    margin: 0 0 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--bicent-muted);
    max-width: 52rem;
}

.bicentenary-committee-profile__bio p {
    margin: 0 0 0.75rem;
}

.bicentenary-committee-profile__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bicentenary-committee-profile__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.1rem;
    border-radius: 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--bicent-maroon);
    background: rgba(107, 29, 42, 0.05);
    border: 1px solid rgba(107, 29, 42, 0.1);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.bicentenary-committee-profile__contact:hover {
    background: rgba(107, 29, 42, 0.1);
    border-color: rgba(107, 29, 42, 0.2);
}

.bicentenary-committee-profile__contact i {
    color: var(--bicent-gold);
}

/* Empty state */
.bicentenary-committee-body--empty {
    padding: clamp(4rem, 10vw, 6rem) 0;
}

.bicentenary-committee-empty {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem);
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 12px 48px rgba(74, 14, 28, 0.08);
}

.bicentenary-committee-empty__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(107, 29, 42, 0.08), rgba(201, 162, 39, 0.2));
    color: var(--bicent-gold);
    font-size: 2rem;
}

.bicentenary-committee-empty h2 {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    color: var(--bicent-maroon);
}

.bicentenary-committee-empty p {
    margin: 0 0 2rem;
    line-height: 1.7;
    color: var(--bicent-muted);
}

.bicentenary-committee-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* CTA */
.bicentenary-committee-cta {
    padding: clamp(3.5rem, 8vw, 5rem) 0;
    background: linear-gradient(135deg, var(--bicent-maroon-dark), var(--bicent-maroon));
    color: #fff;
}

.bicentenary-committee-cta__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
}

.bicentenary-committee-cta__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bicent-gold);
}

.bicentenary-committee-cta__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.bicentenary-committee-cta__text {
    margin: 0;
    max-width: 28rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.bicentenary-committee-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 220px;
}

.bicentenary-committee-btn--on-dark {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.bicentenary-committee-btn--on-dark:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.bicentenary-committee-btn--outline {
    color: var(--bicent-maroon) !important;
    border-color: var(--bicent-maroon) !important;
}

@media (max-width: 768px) {
    .bicentenary-committee-metrics__list {
        grid-template-columns: 1fr;
    }

    .bicentenary-committee-metrics__list li {
        border-right: none;
        border-bottom: 1px solid rgba(107, 29, 42, 0.08);
        padding: 1.5rem 1rem;
    }

    .bicentenary-committee-metrics__list li:last-child {
        border-bottom: none;
    }

    .bicentenary-committee-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bicentenary-committee-profile__photo {
        max-width: 220px;
        margin: 0 auto;
    }

    .bicentenary-committee-profile__contacts {
        justify-content: center;
    }

    .bicentenary-committee-band__head {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .bicentenary-committee-cta__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bicentenary-committee-cta__actions {
        align-items: stretch;
    }
}
