:root {
    --hko-navy: #1c2838;
    --hko-navy-light: #2d3e50;
    --hko-gold: #b8956a;
    --hko-gold-light: #d4b896;
    --hko-cream: #faf8f5;
    --hko-white: #ffffff;
    --hko-text: #3d3d3d;
    --hko-muted: #6b7280;
    --font-serif: "Playfair Display", "Noto Serif TC", Georgia, serif;
    --font-sans: "Noto Sans TC", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body.site-body {
    font-family: var(--font-sans);
    color: var(--hko-text);
    background: var(--hko-cream);
    margin: 0;
    line-height: 1.65;
}

.site-topbar {
    background: var(--hko-navy);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.4rem 0;
}

.site-topbar a { color: var(--hko-gold-light); text-decoration: none; }

.site-navbar {
    background: var(--hko-white);
    box-shadow: 0 2px 24px rgba(28, 40, 56, 0.08);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-navbar-container {
    max-width: 100%;
}

.site-brand {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--hko-navy) !important;
    text-decoration: none;
    line-height: 1.2;
    min-width: 0;
}

.site-brand-logo {
    max-width: 100px;
    height: auto;
    max-height: 44px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-brand-text {
    min-width: 0;
    max-width: 220px;
}

.site-brand small {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--hko-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-navbar-toggler {
    border-color: rgba(28, 40, 56, 0.2);
    padding: 0.35rem 0.55rem;
}

.site-nav-collapse {
    align-items: center;
}

.site-nav {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.125rem;
}

.site-nav .nav-item {
    flex-shrink: 0;
}

.site-nav .nav-link {
    color: var(--hko-navy);
    font-weight: 500;
    padding: 0.45rem 0.7rem !important;
    border-radius: 0.25rem;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    font-size: 0.9rem;
    line-height: 1.25;
}

.site-navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.site-navbar-actions .btn {
    white-space: nowrap;
}

.site-navbar-actions .btn-hko-outline,
.site-navbar-actions .btn-hko-primary {
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
}

.site-logout-form {
    display: inline-flex;
    margin: 0;
}

.site-logout-form button {
    width: 100%;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--hko-gold);
    background: rgba(184, 149, 106, 0.1);
}

.btn-hko-primary {
    background: linear-gradient(135deg, var(--hko-gold), #9a7b52);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hko-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 149, 106, 0.35);
}

.btn-hko-outline {
    border: 2px solid var(--hko-gold);
    color: var(--hko-gold);
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    background: transparent;
}

.btn-hko-outline:hover {
    background: var(--hko-gold);
    color: #fff;
}

.site-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    background: var(--hko-navy) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.site-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(28, 40, 56, 0.92) 0%, rgba(28, 40, 56, 0.55) 55%, rgba(28, 40, 56, 0.35) 100%);
}

.site-hero .container { position: relative; z-index: 1; }

.site-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.site-hero .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    color: var(--hko-gold-light);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.page-hero {
    background: linear-gradient(135deg, var(--hko-navy) 0%, var(--hko-navy-light) 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.5rem;
}

.page-hero .subtitle { color: var(--hko-gold-light); font-size: 1.15rem; }

.service-card {
    background: var(--hko-white);
    border: none;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 4px 30px rgba(28, 40, 56, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(28, 40, 56, 0.12);
    color: inherit;
}

.service-card .icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.15), rgba(184, 149, 106, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--hko-gold);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--hko-navy);
    margin-bottom: 0.75rem;
}

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

.content-section.alt { background: var(--hko-white); }

.page-content-body {
    width: 100%;
}

.page-content-body .lead {
    max-width: 100%;
}

.content-prose {
    font-size: 1.05rem;
    max-width: none;
    width: 100%;
}

.content-prose img,
.content-prose video,
.content-prose iframe,
.content-prose table {
    max-width: 100%;
    height: auto;
}

.content-prose table {
    display: block;
    overflow-x: auto;
}

.content-prose h4 {
    font-family: var(--font-serif);
    color: var(--hko-navy);
    margin-top: 1.5rem;
}

.content-prose ul { padding-left: 1.25rem; }

.site-footer {
    background: var(--hko-navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.site-footer h5 {
    font-family: var(--font-serif);
    color: var(--hko-gold-light);
    margin-bottom: 1rem;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.site-footer a:hover { color: var(--hko-gold-light); }

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: background 0.2s, border-color 0.2s;
}

.social-link:hover {
    background: var(--hko-gold);
    border-color: var(--hko-gold);
    color: #fff !important;
}

.lang-switch .btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.65rem;
    border-radius: 1rem;
}

.lang-switch .btn.active {
    background: var(--hko-gold);
    border-color: var(--hko-gold);
    color: #fff;
}

.member-panel {
    background: var(--hko-white);
    border-radius: 1.25rem;
    box-shadow: 0 8px 40px rgba(28, 40, 56, 0.08);
    padding: 2rem;
}

.step-pill {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-pill.active { background: var(--hko-gold); color: #fff; }
.step-pill.done { background: var(--hko-navy); color: #fff; }
.step-pill.pending { background: #e8e4df; color: var(--hko-muted); }

/* Desktop header: single row, no text wrap */
@media (min-width: 1200px) {
    .site-nav-collapse {
        display: flex !important;
        flex-wrap: nowrap;
        flex-grow: 1;
        justify-content: flex-end;
        gap: 0.75rem;
        margin-left: 0.5rem;
    }

    .site-nav {
        flex: 1 1 auto;
        justify-content: center;
        margin: 0 !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-navbar-actions {
        margin-left: auto;
    }
}

/* Slightly tighter nav on medium-large desktops (EN labels) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .site-nav .nav-link {
        padding: 0.4rem 0.55rem !important;
        font-size: 0.85rem;
    }

    .site-brand-logo {
        max-width: 88px;
        max-height: 40px;
    }
}

/* Tablet / small desktop: hamburger menu */
@media (max-width: 1199.98px) {
    .site-hero { min-height: 60vh; }

    .site-nav-collapse {
        background: var(--hko-white);
        padding: 1rem 0.25rem;
        margin-top: 0.75rem;
        border-top: 1px solid rgba(28, 40, 56, 0.08);
    }

    .site-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-bottom: 0.75rem !important;
    }

    .site-nav .nav-link {
        padding: 0.65rem 0.75rem !important;
        white-space: normal;
    }

    .site-navbar-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.5rem;
    }

    .site-navbar-actions .lang-switch {
        align-self: center;
    }

    .site-navbar-actions .btn,
    .site-logout-form {
        width: 100%;
        text-align: center;
    }

    .site-logout-form button {
        width: 100%;
    }
}

/* Flash message popup */
.site-flash-modal .modal-dialog {
    max-width: 420px;
}

.site-flash-modal-content {
    border-radius: 1rem;
    overflow: hidden;
}

.site-flash-icon {
    font-size: 3.25rem;
    line-height: 1;
}

.site-flash-icon--success {
    color: #2d8a5e;
}

.site-flash-icon--error {
    color: #c0392b;
}

.site-flash-modal .modal-title {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--hko-navy);
}

.site-flash-message {
    color: var(--hko-text);
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-line;
}

.site-flash-list {
    text-align: left;
    color: var(--hko-text);
    font-size: 0.95rem;
}

.site-flash-list li + li {
    margin-top: 0.35rem;
}

.site-flash-modal .modal-backdrop.show {
    opacity: 0.55;
}

/* Competition intro page */
.page-hero-img {
    position: relative;
    min-height: 42vh;
    background: center/cover no-repeat;
    display: flex;
    align-items: flex-end;
}
.page-hero-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28, 40, 56, 0.85) 0%, rgba(28, 40, 56, 0.35) 100%);
}
.page-hero-img .container {
    position: relative;
    z-index: 1;
    padding-bottom: 3rem;
    color: #fff;
}

.competition-hero-badge {
    display: inline-block;
    background: rgba(184, 149, 106, 0.25);
    border: 1px solid var(--hko-gold-light);
    color: var(--hko-gold-light);
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

.competition-page {
    padding: 2.5rem 0 4rem;
    margin-top: -2rem;
}

.competition-section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.75rem;
    margin-bottom: 2rem;
    background: var(--hko-white);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(28, 40, 56, 0.08);
    position: sticky;
    top: 4.5rem;
    z-index: 20;
}

.competition-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--hko-navy);
    text-decoration: none;
    background: transparent;
    transition: background 0.2s, color 0.2s;
}

.competition-nav-pill:hover,
.competition-nav-pill.active {
    background: var(--hko-navy);
    color: #fff;
}

.competition-section-card {
    background: var(--hko-white);
    border-radius: 1.25rem;
    padding: 2rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 24px rgba(28, 40, 56, 0.06);
    scroll-margin-top: 7rem;
}

.competition-section-head {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(28, 40, 56, 0.08);
}

.competition-section-head h2 {
    font-family: var(--font-serif);
    color: var(--hko-navy);
    font-size: 1.65rem;
    margin-bottom: 0.25rem;
}

.competition-section-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, var(--hko-navy), var(--hko-navy-light));
    color: var(--hko-gold-light);
    font-size: 1.35rem;
}

.competition-catalog-accordion .accordion-item {
    border: 1px solid rgba(28, 40, 56, 0.1);
    border-radius: 0.75rem !important;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.competition-catalog-accordion .accordion-button {
    font-weight: 600;
    color: var(--hko-navy);
    background: rgba(28, 40, 56, 0.03);
    box-shadow: none;
}

.competition-catalog-accordion .accordion-button:not(.collapsed) {
    background: rgba(184, 149, 106, 0.12);
    color: var(--hko-navy);
}

.competition-sl-title {
    margin-right: 0.75rem;
}

.competition-sl-age {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--hko-muted);
}

.competition-category-block + .competition-category-block {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(28, 40, 56, 0.12);
}

.competition-category-head h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--hko-navy);
    margin-bottom: 0.35rem;
}

.competition-fee-table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--hko-muted);
    border-bottom-width: 1px;
    background: rgba(28, 40, 56, 0.03);
}

.competition-fee-table tbody tr:hover {
    background: rgba(184, 149, 106, 0.06);
}

.competition-cta-panel {
    margin-top: 2rem;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(28, 40, 56, 0.04), rgba(184, 149, 106, 0.15));
}

@media (max-width: 767.98px) {
    .competition-section-nav {
        top: 3.5rem;
    }

    .competition-section-card {
        padding: 1.25rem;
    }

    .competition-nav-pill {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
}

/* Venue hire page */
.venue-page .venue-section-title {
    font-family: var(--font-serif);
    color: var(--hko-navy);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--hko-gold-light);
}

.venue-intro {
    font-size: 1.05rem;
    line-height: 1.8;
}

.venue-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.venue-room-card {
    display: flex;
    flex-direction: column;
    background: var(--hko-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(28, 40, 56, 0.08);
    border: 1px solid rgba(184, 149, 106, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.venue-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(28, 40, 56, 0.12);
}

.venue-room-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    display: block;
}

.venue-room-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: center;
}

.venue-room-title {
    font-family: var(--font-serif);
    color: var(--hko-navy);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.venue-room-prices {
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.12), rgba(184, 149, 106, 0.04));
    border-radius: 0.65rem;
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
}

.venue-room-price-line {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--hko-navy);
    line-height: 1.5;
}

.venue-room-price-line + .venue-room-price-line {
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px dashed rgba(28, 40, 56, 0.1);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--hko-muted);
}

.venue-room-price-line:first-child {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--hko-gold);
}

.venue-room-text {
    margin-top: auto;
    padding-top: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--hko-muted);
    text-align: left;
}

.venue-plan-card {
    background: var(--hko-white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(28, 40, 56, 0.08);
    border: 1px solid rgba(184, 149, 106, 0.2);
}

.venue-plan-title {
    font-family: var(--font-serif);
    color: var(--hko-navy);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.venue-plan-rate {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(28, 40, 56, 0.1);
}

.venue-plan-rate:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.venue-plan-rate-label {
    font-size: 0.95rem;
    color: var(--hko-muted);
}

.venue-plan-rate-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--hko-gold);
    line-height: 1.2;
}

.venue-plan-rate-note {
    font-size: 0.85rem;
    color: var(--hko-muted);
}

.venue-plan-slots {
    margin: 1.25rem 0 0;
    padding-left: 1.25rem;
    color: var(--hko-text);
}

.venue-plan-slots li {
    margin-bottom: 0.35rem;
}

.venue-included-panel,
.venue-extra-panel {
    background: linear-gradient(135deg, rgba(28, 40, 56, 0.03), rgba(184, 149, 106, 0.08));
    border: 1px solid rgba(184, 149, 106, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
}

.venue-included-intro,
.venue-extra-title {
    font-family: var(--font-serif);
    color: var(--hko-navy);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.venue-included-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.65rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.venue-included-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--hko-text);
}

.venue-included-list li .bi {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--hko-gold);
}

.venue-extra-rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.venue-extra-rate-card {
    background: var(--hko-white);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.75rem rgba(28, 40, 56, 0.06);
}

.venue-gallery-title {
    font-size: 1.35rem;
}

/* About page */
.about-page {
    padding-top: 3rem;
}

.about-container {
    max-width: 1080px;
}

.about-intro-card {
    background: var(--hko-white);
    border-radius: 1rem;
    padding: 2.5rem 3rem;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--hko-text);
    box-shadow: 0 0.5rem 2rem rgba(28, 40, 56, 0.06);
    position: relative;
}

.about-intro-card::after {
    content: "";
    display: block;
    width: 4rem;
    height: 3px;
    margin: 1.5rem auto 0;
    background: linear-gradient(90deg, transparent, var(--hko-gold), transparent);
    border-radius: 2px;
}

.about-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-block {
    background: var(--hko-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 2rem rgba(28, 40, 56, 0.06);
}

.about-block--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 320px;
}

.about-block--split .about-block-content {
    grid-column: 1;
    grid-row: 1;
}

.about-block--split .about-block-media {
    grid-column: 2;
    grid-row: 1;
}

.about-block--split-left .about-block-content {
    grid-column: 2;
}

.about-block--split-left .about-block-media {
    grid-column: 1;
}

.about-block-content {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-block--text .about-block-content {
    padding: 3rem;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.about-block-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hko-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-block-title {
    font-family: var(--font-serif);
    color: var(--hko-navy);
    font-size: 1.65rem;
    margin-bottom: 1rem;
}

.about-block-title::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 2px;
    margin-top: 0.75rem;
    background: var(--hko-gold);
    border-radius: 1px;
}

.about-block--text .about-block-title::after {
    margin-left: auto;
    margin-right: auto;
}

.about-block-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--hko-muted);
    margin: 0;
}

.about-block-media {
    position: relative;
    min-height: 280px;
}

.about-block-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .about-intro-card {
        padding: 1.75rem 1.5rem;
        text-align: left;
        margin-bottom: 2rem;
    }

    .about-intro-card::after {
        margin-left: 0;
        margin-right: auto;
    }

    .about-block--split,
    .about-block--split-left {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-block--split .about-block-content,
    .about-block--split .about-block-media,
    .about-block--split-left .about-block-content,
    .about-block--split-left .about-block-media {
        grid-column: auto;
        grid-row: auto;
    }

    .about-block--split .about-block-media,
    .about-block--split-left .about-block-media {
        order: -1;
        min-height: 220px;
    }

    .about-block-content,
    .about-block--text .about-block-content {
        padding: 1.75rem 1.5rem;
        text-align: left;
    }

    .about-block--text .about-block-title::after {
        margin-left: 0;
        margin-right: auto;
    }
}

/* Venue gallery lightbox */
.venue-gallery-thumb {
    cursor: pointer;
    background: transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.venue-gallery-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1.25rem rgba(28, 40, 56, 0.15) !important;
}

body.venue-lightbox-open {
    overflow: hidden;
}

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

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

.venue-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 40, 56, 0.92);
    cursor: pointer;
}

.venue-lightbox-dialog {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 1100px);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
}

.venue-lightbox-close,
.venue-lightbox-nav {
    position: absolute;
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    cursor: pointer;
}

.venue-lightbox-close:hover,
.venue-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.venue-lightbox-close {
    top: -0.5rem;
    right: -0.5rem;
    z-index: 2;
}

.venue-lightbox-prev {
    left: -3.25rem;
}

.venue-lightbox-next {
    right: -3.25rem;
}

.venue-lightbox-counter {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

@media (max-width: 767.98px) {
    .venue-lightbox-prev {
        left: 0.25rem;
    }

    .venue-lightbox-next {
        right: 0.25rem;
    }

    .venue-lightbox-close {
        top: 0.25rem;
        right: 0.25rem;
    }

    .venue-lightbox-counter {
        bottom: 0.5rem;
    }
}
