/* --- Reset & Variables --- */
:root {
    --primary: #1d4ed8;
    /* blue-700 */
    --primary-hover: #1e40af;
    /* blue-800 */
    --primary-dark: #1e3a8a;
    /* blue-900 */
    --primary-light: #eff6ff;
    /* blue-50 */
    --accent: #3b82f6;
    /* blue-500 */

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 0.75rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-800);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex !important;
    }

    .md\:hidden {
        display: none !important;
    }
}

/* --- Components: Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-lg);
}

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

.btn--primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 10px 15px -3px rgba(30, 58, 138, 0.4);
}

.btn--secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn--white {
    background-color: var(--white);
    color: var(--primary-dark);
}

.btn--white:hover {
    background-color: var(--primary-light);
}

.btn--link {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 0.5rem;
    font-weight: 600;
    width: max-content;
}

.btn--link:hover {
    background-color: var(--primary-hover);
}

.btn--text {
    display: inline-flex;
    align-items: center;
    background: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0;
    box-shadow: none;
}

.btn--text:hover {
    text-decoration: underline;
    transform: none;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    color: var(--white);
    background-color: var(--slate-900);
    transition: all 0.3s ease;
}

.nav--scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    color: var(--primary-dark);
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo-box {
    display: flex;
}

.nav__logo-box svg {
    height: 60px;
    width: auto;
    object-fit: contain;
    /* Optional: Add a white bg if logo is transparent png on dark header */
    filter: brightness(0) invert(1);
    /* background-color: white;
    padding: 2px 5px;
    border-radius: 4px; */
}

.nav--scrolled .nav__logo-box svg {
    filter: unset;
}

.nav__menu {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .nav__menu {
        display: flex;
    }
}

.nav__link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s;
}

.nav__link:hover {
    color: var(--accent);
}

.nav--scrolled .nav__link {
    color: var(--slate-700);
}

.nav--scrolled .nav__link:hover {
    color: var(--primary);
}

.nav__toggle {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav__toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    flex-direction: column;
}

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

.mobile-menu__link {
    padding: 0.75rem 1.5rem;
    color: var(--slate-700);
    border-left: 4px solid transparent;
}

.mobile-menu__link:hover {
    background-color: var(--slate-50);
    border-left-color: var(--primary);
}

/* --- Home Page: Interactive Hero --- */
.interactive-hero {
    position: relative;
    background-color: var(--slate-900);
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 4rem;
}

.interactive-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.interactive-hero__container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

@media (min-width: 992px) {
    .interactive-hero__container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }
}

.map-area {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 800 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='roadGradient' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%233b82f6' stop-opacity='0.2'/%3E%3Cstop offset='100%25' stop-color='%231d4ed8' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M-50 400 Q 150 450 300 300 T 600 200 T 900 100' stroke='url(%23roadGradient)' stroke-width='40' fill='none' /%3E%3Cpath d='M-50 400 Q 150 450 300 300 T 600 200 T 900 100' stroke='rgba(255,255,255,0.3)' stroke-width='4' fill='none' stroke-dasharray='20,15' /%3E%3Cpath d='M200 700 Q 300 400 500 300 T 700 -100' stroke='url(%23roadGradient)' stroke-width='30' fill='none' /%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
    .map-area {
        width: 60%;
        height: 500px;
    }
}

.map-pin {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary);
    border: 4px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
}

.map-pin:hover,
.map-pin.active {
    transform: scale(1.2);
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--white);
    z-index: 20;
    animation: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.map-pin__tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--slate-900);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.map-pin:hover .map-pin__tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-panel {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (min-width: 992px) {
    .hero-panel {
        width: 40%;
    }
}

.hero-panel.fade-out {
    opacity: 0.5;
    transform: translateY(5px);
}

.hero-panel__eyebrow {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-panel__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-panel__desc {
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

/* --- Stats Section --- */
.stats {
    background-color: var(--white);
    padding: 4rem 0;
    margin-top: -3rem;
    position: relative;
    z-index: 20;
    border-radius: 1.5rem 1.5rem 0 0;
    border-bottom: 4px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .stats {
        margin-top: -4rem;
        border-radius: var(--radius);
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}

.stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .stat-item {
        border-right: 1px solid var(--slate-100);
    }

    .stat-item:last-child {
        border-right: none;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    transition: background-color 0.3s;
}

.stat-item:hover {
    background-color: var(--slate-50);
}

.stat-item__icon-box {
    background-color: var(--primary-light);
    padding: 1rem;
    border-radius: 50%;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.stat-item:hover .stat-item__icon-box {
    transform: scale(1.1);
}

.stat-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.stat-item__desc {
    color: var(--slate-500);
    max-width: 250px;
}

/* --- News Section --- */
.news {
    padding: 5rem 0;
    background-color: var(--slate-50);
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-line {
    height: 0.25rem;
    width: 5rem;
    background-color: var(--primary);
    border-radius: 99px;
}

.section-link-all {
    display: none;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
}

@media (min-width: 768px) {
    .section-link-all {
        display: flex;
    }
}

.news__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .news__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
}

.news-card__body {
    padding: 2rem;
    flex: 1;
}

.news-card__tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.news-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.75rem;
    cursor: pointer;
}

.news-card__title:hover {
    color: var(--primary);
}

.news-card__desc {
    color: var(--slate-500);
    font-size: 0.875rem;
    line-height: 1.6;
}

.news-card__footer {
    background-color: var(--slate-50);
    padding: 1rem 2rem;
    border-top: 1px solid var(--slate-100);
}

/* --- Features Section --- */
.features {
    background-color: var(--white);
    padding: 5rem 0;
}

.features__header {
    text-align: center;
    margin-bottom: 4rem;
}

.features__subtitle {
    color: var(--slate-500);
    max-width: 600px;
    margin: 1rem auto 0;
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    cursor: pointer;
}

.feature-item__img-box {
    position: relative;
    height: 12rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: var(--radius);
    background-color: var(--slate-200);
}

.feature-item__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.feature-item:hover .feature-item__img {
    transform: scale(1.1);
}

.feature-item__overlay {
    position: absolute;
    inset: 0;
    background-color: transparent;
    transition: background-color 0.3s;
}

.feature-item:hover .feature-item__overlay {
    background-color: rgba(30, 58, 138, 0.2);
}

.feature-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.feature-item:hover .feature-item__title {
    color: var(--primary);
}

.feature-item__text {
    font-size: 0.875rem;
    color: var(--slate-500);
    line-height: 1.6;
}

/* --- CTA Section --- */
.cta {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background-color: var(--primary-dark);
    text-align: center;
}

.cta--image .cta__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta--image .cta__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.8);
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 10;
}

.cta__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta__text {
    font-size: 1.25rem;
    color: var(--primary-light);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* --- Split Section (Home) --- */
.split-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.split-section__wrapper {
    background-color: var(--slate-50);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .split-section__wrapper {
        flex-direction: row;
        align-items: stretch;
    }
}

.split-section__content {
    padding: 2.5rem;
}

@media (min-width: 768px) {
    .split-section__content {
        width: 50%;
        padding: 4rem;
    }
}

.split-section__label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
}

.split-section__image-box {
    height: 16rem;
    background-color: var(--slate-200);
}

@media (min-width: 768px) {
    .split-section__image-box {
        width: 50%;
        height: auto;
    }
}

.split-section__image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Contact Section --- */
.contact {
    background-color: var(--slate-900);
    padding: 5rem 0;
    color: var(--white);
}

.contact__wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 768px) {
    .contact__wrapper {
        flex-direction: row;
    }

    .contact__info,
    .form-box {
        width: 50%;
    }
}

.contact__detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--slate-300);
}

.contact__detail-item--start {
    align-items: flex-start;
}

.contact__icon {
    color: var(--accent);
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact__icon--top {
    color: var(--accent);
    margin-top: 0.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact__hours {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--slate-800);
    border-radius: var(--radius);
    border: 1px solid var(--slate-700);
}

.form-box {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    color: var(--slate-900);
}

.form-box__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .form__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form__group {
    margin-bottom: 1rem;
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 0.25rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: inherit;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: 2px solid var(--primary);
    border-color: transparent;
}

.form__submit {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
    padding: 0.75rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px -1px rgba(29, 78, 216, 0.2);
}

.form__submit:hover {
    background-color: var(--primary-hover);
}

/* --- About Page Styles --- */
.page-hero {
    background-color: var(--slate-900);
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero__eyebrow {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-hero__lead {
    font-size: 1.25rem;
    color: var(--slate-300);
}

.intro {
    padding: 4rem 0;
    background: var(--white);
}

.intro__content {
    margin: 0 auto;
    max-width: 900px;
}

.intro h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

.intro p {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.doc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media(min-width: 768px) {
    .doc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.doc-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    display: block;
}

.doc-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.doc-card__icon {
    color: var(--primary);
    margin-bottom: 1rem;
}

.doc-card__title {
    font-weight: 700;
    color: var(--slate-900);
    font-size: 1.125rem;
}

.committees {
    padding: 4rem 0;
    background-color: var(--slate-50);
}

.comm-section {
    margin-bottom: 4rem;
}

.comm-section:last-child {
    margin-bottom: 0;
}

.comm-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--slate-100);
}

/* Committee Grid */
.committee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .committee-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Committee Card */
.committee-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.committee-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.committee-card__avatar {
    width: 64px;
    height: 64px;
    background-color: var(--slate-100);
    color: var(--slate-400);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.committee-card__name {
    font-weight: 700;
    color: var(--slate-800);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.committee-card__role {
    color: var(--slate-500);
    font-size: 0.875rem;
    line-height: 1.4;
}

.staff {
    padding: 4rem 0;
    background-color: var(--white);
}

.staff__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media(min-width: 768px) {
    .staff__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.staff-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
    transition: transform 0.3s;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.staff-card__avatar {
    width: 100px;
    height: 100px;
    background: var(--slate-200);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
}

.staff-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.staff-card__role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.staff-card__email {
    color: var(--slate-500);
    font-size: 0.875rem;
    text-decoration: underline;
}

/* Staff Section */
.staff-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.staff-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media(min-width: 768px) {
    .staff-section__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.staff-section-card {
    background: var(--slate-50);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
    transition: transform 0.3s;
}

.staff-section-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.staff-section-card__avatar {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.staff-section-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.staff-section-card__role {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.staff-section-card__email {
    color: var(--slate-500);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.staff-section-card__email:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background-color: var(--slate-50);
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-intro h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.contact-intro p {
    color: var(--slate-600);
    font-size: 1.125rem;
}

.form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.form-legend {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-100);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media(min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    ring: 2px solid var(--primary-light);
}

.required-mark {
    color: #ef4444;
    margin-left: 2px;
}


/* --- Text Content (Long Range Plan / TIP) --- */
.text-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.text-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.text-content h2:first-child {
    margin-top: 0;
}

.text-content p {
    margin-bottom: 1.5rem;
    color: var(--slate-600);
    font-size: 1.125rem;
    line-height: 1.8;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.text-content strong {
    color: var(--slate-900);
    font-weight: 700;
}

/* --- Content Section (Generic) --- */
.content-section {
    padding: 6rem 0;
    background: var(--white);
}

/* --- Floated Images --- */
.float-img {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
    max-width: 300px;
    width: 100%;
    height: auto;
    /* border-radius: var(--radius); */
    /* box-shadow: var(--shadow-md); */
}

@media (max-width: 768px) {
    .float-img {
        float: none;
        margin-right: 0;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

/* --- Publications Styles --- */
.content-section {
    padding: 4rem 0;
    background: var(--white);
}

.pub-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--slate-200);
}

.filter-btn {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--slate-600);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.filter-btn:hover {
    background: var(--slate-100);
    color: var(--slate-900);
    border-color: var(--slate-300);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pub-list {
    display: grid;
    gap: 1rem;
}

.pub-item {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

@media(min-width: 768px) {
    .pub-item {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }
}

.pub-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.pub-item.hidden {
    display: none;
}

.pub-item__date {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-500);
    min-width: 80px;
    margin-bottom: 0.5rem;
}

@media(min-width: 768px) {
    .pub-item__date {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-right: 1.5rem;
        border-right: 1px solid var(--slate-100);
        margin-bottom: 0;
    }
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--slate-800);
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.pub-item__content {
    flex: 1;
}

.pub-item__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.pub-item__title a {
    color: var(--slate-900);
    transition: color 0.2s;
}

.pub-item__title a:hover {
    color: var(--primary);
}

.pub-item__meta {
    display: flex;
    gap: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.badge--rfp {
    background-color: #fef3c7;
    color: #92400e;
}

/* Amber */
.badge--plan {
    background-color: #dbeafe;
    color: #1e40af;
}

/* Blue */
.badge--minutes {
    background-color: #f3f4f6;
    color: #374151;
}

/* Gray */
.badge--policy {
    background-color: #e0e7ff;
    color: #3730a3;
}

/* Indigo */
.badge--core {
    background-color: #d1fae5;
    color: #065f46;
}

/* Emerald */

.pub-item__actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

@media(min-width: 768px) {
    .pub-item__actions {
        margin-top: 0;
        flex-direction: column;
        min-width: 100px;
    }
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: var(--slate-50);
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
    transition: all 0.2s;
    text-decoration: none;
}

.btn-icon:hover {
    background-color: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-icon i {
    width: 16px;
    height: 16px;
}

/* --- Footer --- */
.footer {
    background-color: var(--slate-950);
    color: var(--slate-400);
    padding: 4rem 0;
    border-top: 1px solid var(--slate-900);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: 2fr 2fr 1fr;
    }
}

.footer__logo {
    display: block;
}

.footer__brand-col svg {
    width: auto;
    height: 50px;
    filter: brightness(0) invert(1) opacity(0.9);
    margin-bottom: 10px;
}

.footer__col-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer__link-list {
    list-style: none;

}

.footer__menu .footer__link-list {
    column-count: 2;
    column-gap: 10px; /* 20px space between columns */
}

.footer__link {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--accent);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-900);
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

/* Footer Contact Items */

.footer__description {
    margin-bottom: 20px;
    font-size: 14px;
    max-width: 320px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--slate-400);
}

.footer__contact-item svg {
    color: var(--accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.footer__contact-item a:hover {
    color: var(--white);
}