@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", Arial, sans-serif;
    background: #f4f7fb;
    color: #15263d;
}

a {
    color: #0a5688;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

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

.container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(840px, calc(100% - 2rem));
}

.center {
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid #edf1f5;
    box-shadow: 0 10px 30px rgba(12, 31, 51, 0.06);
}

.site-header .container {
    width: min(1460px, calc(100% - 3rem));
}

.header-bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    min-height: 6.2rem;
    padding: 0.65rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: #0c1f33;
    min-width: 0;
}

.brand:hover {
    text-decoration: none;
}

.brand-logo {
    width: clamp(8.2rem, 12vw, 10.5rem);
    height: 4.35rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand-copy {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.menu-toggle {
    display: none;
    background: #0d78f2;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-weight: 700;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
    flex-wrap: nowrap;
    position: relative;
}

.site-nav a,
.nav-parent {
    color: #111827;
    padding: 0.6rem 0;
    display: inline-flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
    white-space: nowrap;
}

.site-nav a.is-active,
.nav-parent.is-active,
.nav-group.is-active > .nav-parent {
    color: #0d78f2;
}

.site-nav a:hover,
.nav-parent:hover {
    color: #0d78f2;
    text-decoration: none;
}

.nav-parent::after {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-right: 3px solid #f4b23f;
    border-bottom: 3px solid #f4b23f;
    transform: rotate(45deg) translateY(-0.1rem);
    margin-left: 0.55rem;
}

.nav-group {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-group::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.85rem;
}

.nav-submenu {
    display: none;
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    min-width: 14rem;
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 0.9rem;
    padding: 0.7rem 0.9rem;
    box-shadow: 0 18px 45px rgba(18, 43, 72, 0.26);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
    display: grid;
    gap: 0.5rem;
}

.nav-submenu a {
    padding: 0.25rem 0;
    white-space: nowrap;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 4rem;
    padding: 0 1.6rem;
    border-radius: 0.7rem;
    background: #0d78f2;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(13, 120, 242, 0.24);
    white-space: nowrap;
}

.header-cta:hover {
    background: #0866d1;
    color: #fff;
    text-decoration: none;
}

.site-main {
    min-height: 70vh;
}

.page-breadcrumb {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 40px;
    background:
        linear-gradient(120deg, rgba(7, 33, 61, 0.88), rgba(13, 120, 242, 0.58)),
        url("../../breadcrumb.webp") center / cover no-repeat;
    color: #fff;
}

.page-breadcrumb h1 {
    margin: 0 0 0.8rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.breadcrumb-kicker {
    margin: 0 0 0.55rem;
    color: #f4b23f;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.breadcrumb-trail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
}

.breadcrumb-trail a,
.breadcrumb-trail span {
    color: rgba(255, 255, 255, 0.88);
}

.breadcrumb-trail a:hover {
    color: #fff;
}

.hero-slide {
    display: none;
    min-height: 34rem;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero-slide.is-active {
    display: flex;
}

.hero-content {
    padding: 7rem 0 6rem;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.3rem);
    margin: 0 0 1rem;
}

.hero-content p:not(.eyebrow) {
    font-size: 1.15rem;
    max-width: 42rem;
}

.hero-fallback {
    background:
        linear-gradient(120deg, rgba(6, 42, 84, 0.96), rgba(22, 96, 156, 0.9)),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 35%);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: -2.2rem;
    position: relative;
    z-index: 2;
}

.hero-dot {
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #fff;
}

.section {
    padding: 4.5rem 0;
}

.section-muted {
    background: #eef3f8;
}

.section-cta {
    background: linear-gradient(135deg, #0a2746, #1360a2);
    color: #fff;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading h1,
.section-heading h2 {
    margin: 0 0 0.8rem;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.eyebrow {
    display: inline-block;
    margin: 0 0 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    color: #7b3f00;
}

.section-cta .eyebrow,
.hero .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

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

.compact-grid {
    gap: 1rem;
}

.card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 18px 45px rgba(18, 43, 72, 0.08);
    padding: 1.6rem;
}

.feature-card {
    background: linear-gradient(180deg, #f5fbff, #ffffff);
}

.feature-card-alt {
    background: linear-gradient(180deg, #f8fbf3, #ffffff);
}

.accent-card {
    background: linear-gradient(135deg, #0e4372, #2c78b8);
    color: #fff;
}

.accent-card-alt {
    background: linear-gradient(135deg, #265a2c, #5b8e31);
}

.plain-list,
.bullet-list {
    margin: 0;
    padding-left: 1.1rem;
}

.bullet-list li,
.plain-list li {
    margin-bottom: 0.55rem;
}

.button-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button-row.center {
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 0;
    border-radius: 999px;
    background: #0e5a90;
    color: #fff;
    padding: 0.8rem 1.3rem;
    cursor: pointer;
    text-decoration: none;
}

.button:hover {
    text-decoration: none;
    background: #0a4770;
}

.button-secondary {
    background: #eef4f8;
    color: #16395b;
}

.button-danger {
    background: #992d2d;
}

.button-small {
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
}

.button-stack {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-card,
.stack {
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-row {
    display: grid;
    gap: 0.5rem;
}

.form-row label {
    font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.82rem 0.9rem;
    border: 1px solid #ccd6e2;
    border-radius: 0.9rem;
    background: #fbfdff;
}

.richtext-source {
    display: none;
}

.richtext-editor {
    border: 1px solid #ccd6e2;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #fff;
}

.richtext-toolbar {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    padding: 0.65rem;
    background: #eef4f8;
    border-bottom: 1px solid #ccd6e2;
}

.richtext-toolbar button {
    border: 1px solid #ccd6e2;
    background: #fff;
    color: #15263d;
    border-radius: 0.45rem;
    padding: 0.38rem 0.6rem;
    cursor: pointer;
}

.richtext-toolbar button:hover {
    background: #dbeaf4;
}

.richtext-canvas {
    min-height: 260px;
    padding: 1rem;
    outline: none;
    overflow: auto;
}

.checkbox-row label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.field-error {
    color: #a83333;
}

.info-box {
    background: #eef5fb;
    border-radius: 1rem;
    padding: 1rem 1.15rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.summary-row.total {
    border-top: 1px solid #ccd6e2;
    padding-top: 0.7rem;
    margin-top: 0.7rem;
}

.notice {
    margin-bottom: 1.25rem;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
}

.notice-success {
    background: #e9f8ef;
    color: #1f5e36;
}

.notice-error {
    background: #fdeceb;
    color: #8b2424;
}

.profile-card {
    display: grid;
    gap: 0.7rem;
}

.profile-image {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 1rem;
}

.profile-role {
    color: #0e5a90;
    font-weight: 700;
}

.profile-block {
    border-left: 4px solid #0e5a90;
    padding-left: 1rem;
}


.committee-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.committee-card {
    display: grid;
    grid-template-columns: minmax(8rem, 11rem) minmax(0, 1fr);
    align-items: center;
    gap: 1.35rem;
    min-height: 15rem;
}

.committee-photo-frame {
    align-self: stretch;
    min-height: 12rem;
    border: 1px solid #d9e1ea;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, #eef5fb, #ffffff);
}

.committee-photo {
    width: 100%;
    height: 100%;
    min-height: 12rem;
    object-fit: cover;
}

.committee-photo-placeholder {
    display: grid;
    place-items: center;
    height: 100%;
    min-height: 12rem;
    background: linear-gradient(135deg, #0e5a90, #1378b8);
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
}

.committee-member-details h3 {
    margin: 0 0 0.55rem;
}

.committee-member-details p {
    margin: 0 0 0.55rem;
}

.rich-text p,
.rich-text ul,
.rich-text ol {
    line-height: 1.7;
}

.rich-text .table-wrap {
    margin: 1.2rem 0;
    overflow-x: auto;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.content-table th,
.content-table td {
    border: 1px solid #d9e1ea;
    padding: 0.85rem;
    text-align: left;
    vertical-align: top;
}

.content-table th {
    background: #0e5a90;
    color: #fff;
}

.content-table tbody tr:nth-child(even) {
    background: #f4f8fb;
}

.important-dates-table {
    min-width: 0;
}

.important-dates-table th,
.important-dates-table td {
    padding: 0.7rem;
}

.important-dates-table-wrap {
    margin: 0.9rem 0 0;
}

.venue-content {
    display: grid;
    gap: 1.5rem;
}

.venue-travel-card {
    margin-top: 0;
}

.venue-travel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.travel-info-box {
    min-height: 100%;
    border: 1px solid #d9e7f4;
    border-radius: 1rem;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    padding: 1.35rem;
    box-shadow: 0 12px 28px rgba(18, 43, 72, 0.08);
}

.travel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: #e8f3ff;
    color: #0d78f2;
    font-size: 1.35rem;
}

.travel-info-box h3 {
    margin-top: 0;
}

.divider-top {
    border-top: 1px solid #d9e1ea;
    margin-top: 2rem;
    padding-top: 2rem;
}

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

.gallery-card {
    padding: 0;
    border: 0;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(18, 43, 72, 0.12);
    cursor: pointer;
    text-align: left;
}

.gallery-card img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.gallery-copy {
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 40;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 11, 20, 0.82);
}

.lightbox-panel {
    position: relative;
    margin: 5vh auto;
    width: min(900px, calc(100% - 2rem));
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 2;
}

.lightbox-panel img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #0f1e30;
}

.lightbox-copy {
    padding: 1rem 1.25rem 1.4rem;
}

.lightbox-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(9, 19, 31, 0.75);
    color: #fff;
    border: 0;
    border-radius: 999px;
    width: 2.3rem;
    height: 2.3rem;
    cursor: pointer;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 1.5rem;
}

.contact-map-card {
    padding: 0;
    overflow: hidden;
}

.contact-map-card h3 {
    margin: 0;
    padding: 1.4rem 1.4rem 0;
}

.contact-map {
    aspect-ratio: 4 / 3;
    margin-top: 1rem;
}

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

.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tier {
    border-radius: 1.1rem;
    color: #fff;
    padding: 1.4rem;
    background: linear-gradient(135deg, #0d3154, #176aa5);
    box-shadow: 0 16px 38px rgba(13, 49, 84, 0.16);
}

.tier-platinum {
    background: linear-gradient(135deg, #0d3154, #176aa5);
}

.tier-diamond {
    background: linear-gradient(135deg, #0d3154, #176aa5);
}

.tier-gold {
    background: linear-gradient(135deg, #0d3154, #176aa5);
}

.tier-silver {
    background: linear-gradient(135deg, #0d3154, #176aa5);
    color: #fff;
}

.tier h3,
.tier p,
.tier li {
    color: #fff;
}

.tier-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0 0.2rem;
}

.tier-tax,
.micro-copy {
    font-size: 0.88rem;
    color: #617386;
}

.tier .tier-tax {
    color: rgba(255, 255, 255, 0.82);
}

.empty-state {
    text-align: center;
}

.site-footer {
    background: #121416;
    color: rgba(255, 255, 255, 0.86);
}

.footer-contact {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 4.5rem;
    background:
        linear-gradient(rgba(18, 20, 22, 0.9), rgba(18, 20, 22, 0.92)),
        url("../../footer-background.webp") center / cover;
}

.footer-contact::before {
    content: "";
    position: absolute;
    inset: 0;
background: linear-gradient(90deg, rgb(15, 43, 73), rgba(255, 176, 38, 0) 14%, rgba(255, 176, 38, 0) 86%, rgb(19, 59, 103)), radial-gradient(circle at 50% 0%, rgb(13, 37, 63), transparent 34%);
    pointer-events: none;
}

.footer-contact .container {
    position: relative;
    z-index: 1;
}

.footer-contact-heading {
    width: min(640px, 100%);
    margin: 0 auto 1.75rem;
    text-align: center;
}

.footer-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffb026;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-kicker::before,
.footer-kicker::after {
    content: "";
    width: 2.2rem;
    height: 2px;
    background: #ffb026;
}

.footer-contact-heading h2 {
    margin: 0.6rem 0 0;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.footer-contact-form {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.footer-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.footer-contact-form label {
    display: grid;
    gap: 0.4rem;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.96);
    color: #15263d;
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
    letter-spacing: 0;
    text-transform: none;
}

.footer-contact-form textarea {
    min-height: 190px;
    resize: vertical;
}

.footer-submit {
    justify-self: center;
    border: 0;
    border-radius: 999px;
    background: #ffb026;
    color: #111;
    font-weight: 700;
    padding: 0.9rem 1.7rem;
    cursor: pointer;
}

.footer-submit:hover {
    background: #ffc04d;
}

.footer-info {
    background: #0d1e31;
    padding: 2.7rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-grid h3 {
    color: #fff;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.86);
}

.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.admin-body {
    background: #edf2f7;
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.admin-login-card {
    width: min(480px, 100%);
    background: #fff;
    border-radius: 1.4rem;
    padding: 2rem;
    box-shadow: 0 18px 45px rgba(18, 43, 72, 0.1);
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    background: #0c1f33;
    color: #fff;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-brand h1 {
    margin: 0;
}

.admin-nav {
    display: grid;
    gap: 0.35rem;
}

.admin-nav a {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 1rem;
    border-radius: 0.85rem;
}

.admin-nav a.is-active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
}

.admin-sidebar-footer {
    margin-top: auto;
}

.admin-main {
    padding: 1.5rem;
    display: grid;
    gap: 1.2rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.admin-header h2 {
    margin: 0;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.admin-grid-wide {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin: 0;
}

.table-wrap {
    overflow-x: auto;
}

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

.admin-table th,
.admin-table td {
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid #e1e8ef;
    text-align: left;
    vertical-align: top;
}

.admin-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-section-title h3 {
    margin: 0;
}

.export-actions {
    display: inline-flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    align-items: center;
}

.admin-text-cell {
    min-width: 14rem;
    max-width: 26rem;
    white-space: normal;
}

.details-row td {
    background: #f8fbfe;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.9rem;
}

.details-full {
    grid-column: 1 / -1;
}

.actions-cell {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.inline-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.admin-list-card {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #dde6ef;
    border-radius: 1rem;
    background: #fbfdff;
}

.admin-image-thumb {
    width: 100%;
    max-width: 180px;
    height: 110px;
    object-fit: cover;
    border-radius: 0.8rem;
    margin-bottom: 0.75rem;
    border: 1px solid #dde6ef;
}

@media (max-width: 960px) {
    .header-bar {
        grid-template-columns: auto auto auto;
        justify-content: space-between;
        gap: 0.8rem;
        min-height: 5.2rem;
    }

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

    .brand-logo {
        width: 7.8rem;
        height: 3.5rem;
    }

    .brand-title {
        font-size: 1.25rem;
    }

    .brand-subtitle {
        font-size: 0.78rem;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 1rem;
        width: min(320px, calc(100% - 2rem));
        background: #fff;
        border: 1px solid #edf1f5;
        border-radius: 1rem;
        padding: 1rem;
        box-shadow: 0 18px 45px rgba(18, 43, 72, 0.26);
    }

    .site-nav.is-open {
        display: grid;
        gap: 0.4rem;
    }

    .nav-group {
        display: grid;
        gap: 0.2rem;
    }

    .nav-group::after {
        display: none;
    }

    .nav-submenu {
        display: grid;
        position: static;
        min-width: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0 0 0 1rem;
        gap: 0.35rem;
    }

    .header-cta {
        min-height: 2.8rem;
        padding: 0 1rem;
        font-size: 0.82rem;
    }

    .two-up,
    .three-up,
    .four-up,
    .form-grid,
    .footer-form-grid,
    .gallery-grid,
    .footer-grid,
    .contact-layout,
    .tier-grid,
    .venue-travel-grid,
    .admin-grid,
    .committee-grid,
    .admin-grid-wide,
    .details-grid {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-bar {
        grid-template-columns: 1fr auto;
    }

    .header-cta {
        display: none;
    }
        .committee-card {
        grid-template-columns: 1fr;
    }
}
