:root {
    --navy: #0b1d2d;
    --navy-soft: #173249;
    --charcoal: #15191b;
    --surface: #1c2123;
    --ink: #f0eee8;
    --muted: #b5bab7;
    --ivory: #1c2123;
    --white: #ffffff;
    --gold: #b49358;
    --gold-light: #d8c49b;
    --green: #79a99c;
    --terracotta: #d1836f;
    --line: rgba(255, 255, 255, 0.14);
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--charcoal);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

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

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

a:hover {
    color: inherit;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.08;
}

p:last-child {
    margin-bottom: 0;
}

.container {
    max-width: 1240px;
}

.section-space {
    padding: 110px 0;
}

.section-space-sm {
    padding: 76px 0;
}

.section-ivory {
    background: var(--surface);
}

.section-navy {
    color: rgba(255, 255, 255, 0.78);
    background: var(--navy);
}

.section-navy h2,
.section-navy h3 {
    color: var(--white);
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 48px;
}

.section-heading.centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 20px;
    font-size: 3.4rem;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-navy .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

.btn-club,
.btn-outline-club {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 11px 22px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn-club {
    color: var(--navy);
    background: var(--gold-light);
}

.btn-club:hover {
    color: var(--white);
    background: var(--gold);
}

.btn-outline-club {
    color: var(--white);
    background: transparent;
}

.btn-outline-club:hover {
    color: var(--navy);
    background: var(--gold-light);
}

.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    color: var(--white);
}

.topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 15, 24, 0.36);
}

.topbar-inner {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-right: 6.5%;
    padding-left: 6.5%;
    font-size: 0.71rem;
    font-weight: 700;
    text-transform: uppercase;
}

.topbar-inner > a,
.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 28px;
}

.topbar-inner a {
    transition: color 180ms ease;
}

.topbar-inner a:hover {
    color: var(--gold-light);
}

.desktop-navigation {
    min-height: 130px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 15, 24, 0.16);
    transition: background-color 180ms ease, min-height 180ms ease;
}

.navigation-grid {
    display: grid;
    min-height: 130px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 205px minmax(0, 1fr);
    gap: 26px;
    padding-right: 6.5%;
    padding-left: 6.5%;
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-group-left {
    justify-content: flex-end;
}

.nav-group-right {
    justify-content: flex-start;
}

.nav-group > li {
    position: relative;
}

.nav-group > li > a {
    position: relative;
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-group > li > a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    background: var(--gold-light);
    content: "";
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.nav-group > li > a:hover::after,
.nav-group > li > a.active::after {
    transform: scaleX(1);
}

.nav-group .fa-chevron-down {
    font-size: 0.58rem;
}

.site-brand {
    display: flex;
    width: 205px;
    height: 112px;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.site-brand img {
    width: 200px;
    max-height: 104px;
    object-fit: contain;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: -24px;
    width: 210px;
    margin: 0;
    padding: 14px 0;
    border-top: 2px solid var(--gold);
    background: var(--navy);
    box-shadow: var(--shadow);
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 9px 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
}

.nav-dropdown a:hover {
    color: var(--gold-light);
}

.site-header.is-scrolled {
    position: fixed;
    box-shadow: 0 8px 32px rgba(5, 15, 24, 0.18);
}

.site-header.is-scrolled .topbar {
    display: none;
}

.site-header.is-scrolled .desktop-navigation,
.site-header.is-scrolled .navigation-grid {
    min-height: 82px;
    background: rgba(11, 29, 45, 0.98);
}

.site-header.is-scrolled .site-brand {
    height: 76px;
}

.site-header.is-scrolled .site-brand img {
    max-height: 72px;
}

.mobile-navigation,
.mobile-menu,
.menu-backdrop {
    display: none;
}

.home-hero {
    position: relative;
    display: flex;
    min-height: 760px;
    height: 92vh;
    max-height: 920px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.home-hero-image,
.page-hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
}

.home-hero-image {
    animation: heroScale 16s ease-out forwards;
}

@keyframes heroScale {
    from { transform: scale(1.04); }
    to { transform: scale(1); }
}

.home-hero-overlay,
.page-hero-overlay {
    position: absolute;
    background: linear-gradient(180deg, rgba(3, 12, 20, 0.58), rgba(3, 12, 20, 0.52) 45%, rgba(3, 12, 20, 0.74));
    inset: 0;
}

.home-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-top: 175px;
}

.home-hero h1 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 5.6rem;
}

.home-hero .hero-description {
    max-width: 620px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.86);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.page-hero {
    position: relative;
    display: flex;
    min-height: 610px;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 92px;
}

.page-hero h1 {
    max-width: 920px;
    margin: 0;
    color: var(--white);
    font-size: 4.7rem;
}

.welcome-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 84px;
}

.welcome-media {
    position: relative;
    min-height: 610px;
}

.welcome-media .image-main {
    width: calc(100% - 90px);
    height: 560px;
    object-fit: cover;
}

.welcome-media .image-accent {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 280px;
    height: 260px;
    border: 10px solid var(--charcoal);
    object-fit: cover;
}

.welcome-copy h2 {
    margin-bottom: 24px;
    font-size: 3.5rem;
}

.welcome-copy p {
    color: var(--muted);
    font-size: 1.04rem;
}

.welcome-copy .btn-club {
    margin-top: 22px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    color: var(--white);
}

.highlight-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.highlight-item::after {
    position: absolute;
    background: linear-gradient(180deg, transparent 28%, rgba(4, 17, 27, 0.9));
    content: "";
    inset: 0;
}

.highlight-item:hover img {
    transform: scale(1.04);
}

.highlight-content {
    position: absolute;
    z-index: 1;
    right: 30px;
    bottom: 34px;
    left: 30px;
}

.highlight-content h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 2rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.stats-band {
    background: var(--navy);
}

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

.stat-item {
    padding: 52px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

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

.stat-number {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.7rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.event-card {
    display: grid;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
    grid-template-columns: 0.95fr 1.05fr;
}

.event-card img,
.event-card video {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: #0f1416;
    object-fit: contain;
}

.event-card-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
}

.event-card-content time {
    margin-bottom: 18px;
    color: var(--terracotta);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.event-card-content h3 {
    margin-bottom: 16px;
    font-size: 2.15rem;
}

.event-card-content p {
    color: var(--muted);
}

.content-split {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.content-split img {
    width: 100%;
    min-height: 500px;
    max-height: 680px;
    object-fit: cover;
}

.content-split h2 {
    font-size: 3.4rem;
}

.content-split p {
    color: var(--muted);
}

.timeline {
    position: relative;
    max-width: 940px;
    margin: 0 auto;
}

.timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 178px;
    width: 1px;
    background: rgba(180, 147, 88, 0.5);
    content: "";
}

.timeline-item {
    position: relative;
    display: grid;
    min-height: 160px;
    grid-template-columns: 150px 1fr;
    gap: 56px;
}

.timeline-item::before {
    position: absolute;
    top: 12px;
    left: 171px;
    width: 15px;
    height: 15px;
    border: 3px solid var(--ivory);
    border-radius: 50%;
    background: var(--gold);
    content: "";
}

.timeline-year {
    color: var(--terracotta);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    text-align: right;
}

.timeline-item h3 {
    margin-bottom: 10px;
    font-size: 1.65rem;
}

.timeline-item p {
    color: var(--muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-grid img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

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

.gallery-grid.four img {
    height: 390px;
}

.club-carousel {
    --carousel-gap: 18px;
    --carousel-slides: 3;
    position: relative;
    padding-bottom: 44px;
}

.club-carousel-viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.club-carousel-track {
    display: flex;
    gap: var(--carousel-gap);
    transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.club-carousel-slide {
    flex: 0 0 calc((100% - (var(--carousel-slides) - 1) * var(--carousel-gap)) / var(--carousel-slides));
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #0f1416;
}

.club-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    user-select: none;
    -webkit-user-drag: none;
}

.club-carousel-control {
    position: absolute;
    top: calc(50% - 22px);
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: rgba(15, 20, 22, 0.92);
    place-items: center;
    transform: translateY(-50%);
}

.club-carousel-control.previous {
    left: 18px;
}

.club-carousel-control.next {
    right: 18px;
}

.club-carousel-control:hover,
.club-carousel-control:focus-visible {
    color: var(--navy);
    background: var(--gold);
}

.club-carousel-control:disabled {
    opacity: 0.35;
    cursor: default;
}

.image-lightbox {
    position: fixed;
    z-index: 2200;
    display: grid;
    visibility: hidden;
    background: rgba(4, 8, 10, 0.94);
    inset: 0;
    opacity: 0;
    place-items: center;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.image-lightbox.is-open {
    visibility: visible;
    opacity: 1;
}

.image-lightbox-dialog {
    position: relative;
    display: grid;
    width: min(1280px, calc(100vw - 160px));
    height: min(900px, calc(100vh - 120px));
    height: min(900px, calc(100dvh - 120px));
    place-items: center;
}

.image-lightbox-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.image-lightbox-close,
.image-lightbox-control {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: rgba(15, 20, 22, 0.92);
    place-items: center;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible,
.image-lightbox-control:hover,
.image-lightbox-control:focus-visible {
    color: var(--navy);
    background: var(--gold);
}

.image-lightbox-close {
    top: 0;
    right: -66px;
}

.image-lightbox-control {
    top: 50%;
    transform: translateY(-50%);
}

.image-lightbox-control.previous {
    left: -66px;
}

.image-lightbox-control.next {
    right: -66px;
}

.image-lightbox-caption {
    position: absolute;
    right: 0;
    bottom: -34px;
    left: 0;
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
}

body.lightbox-open {
    overflow: hidden;
}

.club-carousel-dots {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.club-carousel-dot {
    width: 28px;
    height: 3px;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.28);
}

.club-carousel-dot.active {
    background: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
    .club-carousel-track {
        transition: none;
    }
}

@media (max-width: 767px) {
    .image-lightbox-dialog {
        width: calc(100vw - 32px);
        height: calc(100vh - 120px);
        height: calc(100dvh - 120px);
    }

    .image-lightbox-close {
        top: -58px;
        right: 0;
    }

    .image-lightbox-control.previous {
        left: 12px;
    }

    .image-lightbox-control.next {
        right: 12px;
    }
}

.news-event {
    display: grid;
    min-height: 480px;
    margin-bottom: 38px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    grid-template-columns: 1.15fr 0.85fr;
}

.news-event:nth-child(even) {
    grid-template-columns: 0.85fr 1.15fr;
}

.news-event:nth-child(even) .news-event-media {
    order: 2;
}

.news-event-media {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    background: #0f1416;
}

.news-event-media-item {
    position: absolute;
    display: none;
    margin: 0;
    inset: 0;
}

.news-event-media-item.active {
    display: block;
}

.news-event-media-item img,
.news-event-media-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-media-control {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    background: rgba(15, 20, 22, 0.9);
    place-items: center;
    transform: translateY(-50%);
}

.news-media-control.previous {
    left: 18px;
}

.news-media-control.next {
    right: 18px;
}

.news-media-control:hover,
.news-media-control:focus-visible {
    color: var(--navy);
    background: var(--gold-light);
}

.news-empty-state {
    padding: 70px 24px;
    border: 1px solid var(--line);
    text-align: center;
}

.news-empty-state i {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 2.4rem;
}

.news-empty-state h2 {
    margin: 0;
    font-size: 2rem;
}

.date-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 88px;
    padding: 14px 8px;
    color: var(--navy);
    background: var(--gold-light);
    text-align: center;
}

.date-badge strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1;
}

.date-badge span {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-event-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 52px;
}

.news-event-content h2 {
    margin-bottom: 24px;
    font-size: 3rem;
}

.news-event-content h2 a {
    color: inherit;
}

.news-event-content h2 a:hover,
.news-event-content h2 a:focus-visible {
    color: var(--gold-light);
}

.news-event-content .text-link {
    margin-top: 26px;
}

.event-meta {
    display: grid;
    width: 100%;
    gap: 10px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
}

.event-meta i {
    width: 20px;
    color: var(--gold);
}

.news-detail-header {
    min-width: 0;
    max-width: 920px;
    margin: 0 auto 54px;
}

.news-detail-back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 38px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    gap: 10px;
    text-transform: uppercase;
}

.news-detail-header h2 {
    margin-bottom: 28px;
    font-size: 3.6rem;
    overflow-wrap: anywhere;
}

.news-detail-meta {
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 12px 38px;
}

.news-detail-description {
    margin: 32px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.news-detail-grid {
    display: grid;
    align-items: start;
    gap: 24px;
}

.news-detail-grid.layout-100 {
    grid-template-columns: 1fr;
}

.news-detail-grid.layout-50-50,
.news-detail-grid.layout-33-33-33,
.news-detail-grid.layout-33-66,
.news-detail-grid.layout-66-33 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.news-detail-grid.layout-25-50-25 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.news-detail-grid.layout-50-50 .news-detail-media {
    grid-column: span 3;
}

.news-detail-grid.layout-33-33-33 .news-detail-media {
    grid-column: span 2;
}

.news-detail-grid.layout-33-66 .news-detail-media:nth-child(odd),
.news-detail-grid.layout-66-33 .news-detail-media:nth-child(even) {
    grid-column: span 2;
}

.news-detail-grid.layout-33-66 .news-detail-media:nth-child(even),
.news-detail-grid.layout-66-33 .news-detail-media:nth-child(odd) {
    grid-column: span 4;
}

.news-detail-grid.layout-25-50-25 .news-detail-media:nth-child(3n+1),
.news-detail-grid.layout-25-50-25 .news-detail-media:nth-child(3n) {
    grid-column: span 1;
}

.news-detail-grid.layout-25-50-25 .news-detail-media:nth-child(3n+2) {
    grid-column: span 2;
}

.news-detail-media {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0f1416;
}

.news-detail-media img,
.news-detail-media video {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.news-detail-media img {
    cursor: zoom-in;
}

.news-flexible-content {
    display: grid;
    gap: 32px;
}

.news-content-row {
    display: grid;
    align-items: start;
    gap: 26px;
}

.news-content-row.content-layout-100 {
    grid-template-columns: minmax(0, 1fr);
}

.news-content-row.content-layout-50-50 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-content-row.content-layout-33-66 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}

.news-content-row.content-layout-66-33 {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.news-content-row.content-layout-33-33-33 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-content-row.content-layout-25-50-25 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
}

.news-content-column {
    display: grid;
    min-width: 0;
    align-items: start;
    gap: 24px;
}

.news-block-heading {
    margin: 0;
    overflow-wrap: anywhere;
}

h2.news-block-heading {
    font-size: 3rem;
}

h3.news-block-heading {
    font-size: 2.25rem;
}

h4.news-block-heading {
    font-size: 1.55rem;
}

.news-block-paragraph,
.news-block-list {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.85;
    overflow-wrap: anywhere;
}

.news-block-list {
    padding-left: 24px;
}

.news-block-list li + li {
    margin-top: 8px;
}

.news-block-quote {
    margin: 0;
    padding: 26px 30px;
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.04);
}

.news-block-quote p {
    margin: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    line-height: 1.55;
}

.news-block-quote cite {
    display: block;
    margin-top: 14px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-style: normal;
    text-transform: uppercase;
}

.news-block-media {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #0f1416;
}

.news-block-media img,
.news-block-media video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.news-block-media img {
    cursor: zoom-in;
}

.news-block-media figcaption {
    padding: 12px 14px;
    color: var(--muted);
    font-size: 0.78rem;
}

.news-block-divider {
    margin: 18px 0;
    border-color: var(--line);
    opacity: 1;
}

@media (max-width: 767px) {
    .news-detail-header h2 {
        font-size: 2.25rem;
    }

    .news-detail-meta {
        grid-template-columns: 1fr;
    }

    .news-detail-grid.layout-100,
    .news-detail-grid.layout-50-50,
    .news-detail-grid.layout-33-66,
    .news-detail-grid.layout-66-33,
    .news-detail-grid.layout-33-33-33,
    .news-detail-grid.layout-25-50-25 {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-content-row.content-layout-50-50,
    .news-content-row.content-layout-33-66,
    .news-content-row.content-layout-66-33,
    .news-content-row.content-layout-33-33-33,
    .news-content-row.content-layout-25-50-25 {
        grid-template-columns: minmax(0, 1fr);
    }

    h2.news-block-heading {
        font-size: 2.25rem;
    }

    h3.news-block-heading {
        font-size: 1.85rem;
    }

    .news-detail-grid .news-detail-media,
    .news-detail-grid.layout-50-50 .news-detail-media,
    .news-detail-grid.layout-33-66 .news-detail-media:nth-child(n),
    .news-detail-grid.layout-66-33 .news-detail-media:nth-child(n),
    .news-detail-grid.layout-33-33-33 .news-detail-media,
    .news-detail-grid.layout-25-50-25 .news-detail-media:nth-child(n) {
        grid-column: auto;
    }
}

.team-feature {
    display: grid;
    max-width: 920px;
    align-items: center;
    margin: 0 auto;
    grid-template-columns: 320px 1fr;
    gap: 60px;
}

.team-feature img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    object-position: top center;
}

.team-feature h2 {
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.team-feature p {
    color: var(--muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 20px;
}

.team-grid.trustees {
    grid-template-columns: repeat(3, 1fr);
}

.team-card {
    border-bottom: 2px solid var(--gold-light);
    background: var(--surface);
}

.team-card img {
    width: 100%;
    height: 330px;
    background: #252b2d;
    object-fit: cover;
    object-position: top center;
}

.team-card-content {
    min-height: 145px;
    padding: 22px 8px;
}

.team-card h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.team-card p {
    color: var(--terracotta);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.code-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.code-card {
    padding: 40px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--gold);
    background: var(--surface);
}

.code-card i {
    margin-bottom: 25px;
    color: var(--green);
    font-size: 2.2rem;
}

.code-card h2 {
    font-size: 2rem;
}

.code-card p {
    color: var(--muted);
}

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

.club-table th,
.club-table td {
    padding: 20px 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.club-table th {
    color: var(--navy);
    background: var(--gold-light);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.club-table td:first-child {
    color: var(--white);
    font-weight: 700;
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.facility-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
}

.facility-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.facility-card-content {
    position: relative;
    min-height: 190px;
    padding: 30px;
}

.facility-card i {
    position: absolute;
    top: -25px;
    right: 24px;
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--navy);
    background: var(--gold-light);
}

.facility-card h2 {
    margin-bottom: 12px;
    font-size: 1.85rem;
}

.facility-card p {
    color: var(--muted);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.amenity-item i {
    color: var(--green);
}

.policy-grid,
.membership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.policy-item {
    padding: 30px;
    border-left: 3px solid var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.policy-item h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.venue-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 54px;
}

.venue-item {
    display: grid;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 1fr auto;
    gap: 20px;
}

.venue-item h3 {
    margin-bottom: 8px;
    font-size: 1.55rem;
}

.venue-item p,
.venue-item span {
    color: var(--muted);
    font-size: 0.9rem;
}

.venue-item span {
    align-self: start;
    padding: 4px 10px;
    border: 1px solid var(--gold-light);
}

.club-accordion {
    border-top: 1px solid var(--line);
}

.club-accordion-item {
    border: 1px solid var(--line);
    border-top: 0;
}

.club-accordion-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 28px;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    list-style: none;
    text-transform: uppercase;
}

.club-accordion-item summary::-webkit-details-marker {
    display: none;
}

.club-accordion-item summary i {
    color: var(--muted);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.club-accordion-item[open] summary i {
    color: var(--gold);
    transform: rotate(180deg);
}

.club-accordion-content {
    padding: 0 28px 26px;
    border-top: 1px solid var(--line);
}

.club-accordion-content ul {
    margin: 22px 0 0;
    color: var(--muted);
}

.club-accordion-content li + li {
    margin-top: 12px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.activity-card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    grid-column: span 4;
}

.activity-card:nth-child(4),
.activity-card:nth-child(5) {
    grid-column: span 6;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-card::after {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(7, 22, 34, 0.82));
    content: "";
    inset: 0;
}

.activity-card h2 {
    position: absolute;
    z-index: 1;
    right: 26px;
    bottom: 20px;
    left: 26px;
    color: var(--white);
    font-size: 2rem;
}

.detail-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.detail-stat {
    padding: 45px 28px;
    background: var(--navy);
    text-align: center;
}

.detail-stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.membership-card {
    display: grid;
    min-height: 180px;
    align-content: center;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--surface);
    grid-template-columns: 1fr auto;
    gap: 24px;
}

.membership-card h2 {
    margin-bottom: 8px;
    font-size: 1.65rem;
}

.membership-card p {
    color: var(--muted);
    font-size: 0.9rem;
}

.membership-fee {
    color: var(--terracotta);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    white-space: nowrap;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin-bottom: 18px;
    padding-left: 34px;
}

.check-list li::before {
    position: absolute;
    top: 3px;
    left: 0;
    color: var(--gold);
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.region-filter-shell {
    position: relative;
    display: grid;
    align-items: stretch;
    margin-bottom: 46px;
    border: 1px solid var(--line);
    background: var(--surface);
    grid-template-columns: 48px minmax(0, 1fr) 48px;
}

.filter-bar {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-button {
    flex: 0 0 auto;
    min-height: 52px;
    padding: 14px 22px;
    border: 0;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    background: transparent;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.filter-button.active {
    border-bottom-color: var(--gold);
    color: var(--white);
}

.filter-button:hover,
.filter-button:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

.region-filter-control {
    display: grid;
    width: 48px;
    padding: 0;
    border: 0;
    color: var(--gold);
    background: var(--navy);
    place-items: center;
}

.region-filter-control.previous {
    border-right: 1px solid var(--line);
}

.region-filter-control.next {
    border-left: 1px solid var(--line);
}

.region-filter-control:hover,
.region-filter-control:focus-visible {
    color: var(--navy);
    background: var(--gold);
}

.region-filter-control:disabled {
    color: var(--muted);
    background: var(--surface);
    opacity: 0.35;
    cursor: default;
}

.region-group {
    margin-bottom: 48px;
}

.region-group[hidden] {
    display: none;
}

.region-group h2 {
    margin-bottom: 24px;
    font-size: 2.35rem;
}

.club-list {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 24px;
    list-style: none;
}

.club-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.club-list i {
    margin-right: 10px;
    color: var(--gold);
}

.reciprocal-club-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.reciprocal-club-card {
    padding: 22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.015);
}

.reciprocal-club-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.reciprocal-club-heading h3 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 700;
}

.reciprocal-club-heading span {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    color: var(--gold);
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
}

.reciprocal-club-contacts {
    display: grid;
    margin-top: 18px;
    gap: 10px;
}

.reciprocal-contact-row {
    display: grid;
    align-items: start;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 8px;
}

.reciprocal-contact-row i {
    padding-top: 4px;
    color: var(--gold);
    text-align: center;
}

.reciprocal-contact-row span::before {
    margin-right: 7px;
    color: rgba(255, 255, 255, 0.38);
    content: ":";
}

a.reciprocal-contact-row:hover,
a.reciprocal-contact-row:focus-visible {
    color: var(--white);
}

.reciprocal-contact-row span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.reciprocal-club-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.contact-details h2,
.contact-form-wrap h2 {
    margin-bottom: 28px;
    font-size: 3rem;
}

.contact-item {
    display: grid;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 42px 1fr;
    gap: 14px;
}

.contact-item i {
    padding-top: 6px;
    color: var(--gold);
}

.contact-item strong {
    display: block;
    color: var(--white);
}

.contact-form {
    padding: 46px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.form-control-club {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    color: var(--ink);
    background: #111517;
}

textarea.form-control-club {
    min-height: 160px;
    resize: vertical;
}

.form-control-club:focus {
    border-color: var(--gold);
    outline: 2px solid rgba(180, 147, 88, 0.18);
}

.field-error {
    display: block;
    margin-top: 6px;
    color: #9d2d2d;
    font-size: 0.82rem;
}

.alert-success-club {
    margin-bottom: 22px;
    padding: 15px 18px;
    border-left: 3px solid var(--green);
    color: var(--green);
    background: rgba(49, 92, 82, 0.1);
}

.map-band {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.map-band iframe {
    width: 100%;
    height: 420px;
    border: 0;
}

.member-login-page {
    min-height: 100vh;
    background: #101416;
}

.member-login-shell {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
}

.member-login-background,
.member-login-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    inset: 0;
}

.member-login-background {
    object-fit: cover;
}

.member-login-overlay {
    background: linear-gradient(90deg, rgba(4, 12, 18, 0.3), rgba(4, 12, 18, 0.62));
}

.member-login-brand {
    position: absolute;
    z-index: 2;
    top: 34px;
    left: 42px;
    display: block;
    width: 230px;
}

.member-login-brand img {
    width: 100%;
    max-height: 112px;
    object-fit: contain;
}

.member-login-panel {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(540px, 100%);
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    margin-left: auto;
    border-left: 1px solid rgba(216, 196, 155, 0.32);
    background: rgba(16, 20, 22, 0.97);
    box-shadow: -24px 0 70px rgba(0, 0, 0, 0.24);
}

.member-login-back {
    position: absolute;
    top: 34px;
    right: 38px;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    color: var(--gold-light);
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.member-login-back:hover,
.member-login-back:focus-visible {
    border-color: var(--gold-light);
    color: var(--navy);
    background: var(--gold-light);
    outline: none;
}

.member-login-content {
    width: 100%;
    padding: 112px 72px 68px;
}

.member-login-content h1 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 3.35rem;
}

.member-login-intro {
    margin-bottom: 38px;
    color: var(--muted);
}

.member-login-form .form-group {
    margin-bottom: 23px;
}

.member-login-form .form-control-club {
    min-height: 54px;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.member-login-form .form-control-club:hover {
    border-color: rgba(216, 196, 155, 0.52);
}

.member-login-form .form-control-club.is-invalid {
    border-color: #e49482;
}

.member-login-form .field-error {
    color: #efaa9a;
}

.password-field {
    position: relative;
}

.password-field .form-control-club {
    padding-right: 52px;
}

.password-field button {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 0;
    color: var(--muted);
    background: transparent;
}

.password-field button:hover,
.password-field button:focus-visible {
    color: var(--gold-light);
    outline: none;
}

.member-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 2px 0 28px;
    color: var(--muted);
    font-size: 0.88rem;
}

.remember-option {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.remember-option input {
    width: 17px;
    height: 17px;
    accent-color: var(--gold);
}

.member-login-options a,
.member-login-help a {
    color: var(--gold-light);
}

.member-login-options a:hover,
.member-login-help a:hover {
    color: var(--white);
}

.member-login-submit {
    width: 100%;
}

.member-login-help {
    margin-top: 28px;
    color: var(--muted);
    font-size: 0.84rem;
}

.member-login-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 13px 15px;
    border-left: 3px solid var(--green);
    color: #a8d5ca;
    background: rgba(121, 169, 156, 0.12);
    font-size: 0.88rem;
}

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

.footer-main {
    display: grid;
    padding-top: 80px;
    padding-bottom: 65px;
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
    gap: 56px;
}

.footer-brand img {
    width: 220px;
    max-height: 110px;
    margin-bottom: 20px;
    object-fit: contain;
}

.site-footer h2 {
    margin-bottom: 22px;
    color: var(--white);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
    transition: color 180ms ease;
}

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

.site-footer .footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: space-between;
    font-size: 0.78rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.scroll-to-top {
    position: fixed;
    z-index: 950;
    right: 28px;
    bottom: 28px;
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 0;
    color: var(--gold-light);
    background: #15191b;
    box-shadow: 0 12px 30px rgba(5, 15, 24, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: color 180ms ease, background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
    color: var(--navy);
    background: var(--gold-light);
    outline: none;
}

.scroll-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reveal {
    opacity: 1;
    transform: none;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1500px) {
    .topbar-inner,
    .navigation-grid {
        padding-right: 3%;
        padding-left: 3%;
    }

    .navigation-grid {
        grid-template-columns: minmax(0, 1fr) 175px minmax(0, 1fr);
        gap: 18px;
    }

    .site-brand {
        width: 175px;
    }

    .site-brand img {
        width: 170px;
    }

    .nav-group {
        gap: 20px;
    }

    .nav-group > li > a {
        font-size: 0.69rem;
    }
}

@media (max-width: 1199px) {
    .topbar,
    .desktop-navigation {
        display: none;
    }

    .mobile-navigation {
        display: flex;
        min-height: 90px;
        align-items: center;
        justify-content: space-between;
        padding: 8px 32px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(5, 15, 24, 0.36);
    }

    .site-header.is-scrolled .mobile-navigation {
        background: rgba(11, 29, 45, 0.98);
    }

    .mobile-brand img {
        width: 180px;
        height: 72px;
        object-fit: contain;
    }

    .mobile-brand,
    .menu-toggle {
        position: relative;
        z-index: 1;
        flex: 0 0 auto;
    }

    .menu-toggle,
    .mobile-menu-head button {
        display: flex;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: 2px;
        color: var(--white);
        background: rgba(5, 15, 24, 0.36);
        font-size: 1.1rem;
    }

    .mobile-menu {
        position: fixed;
        z-index: 1002;
        top: 0;
        right: 0;
        display: block;
        width: min(420px, 90vw);
        height: 100vh;
        padding: 30px;
        overflow-y: auto;
        color: var(--white);
        background: var(--navy);
        transform: translateX(100%);
        transition: transform 240ms ease;
    }

    .mobile-menu.is-open {
        transform: translateX(0);
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        color: var(--gold-light);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 1.35rem;
    }

    .mobile-menu ul {
        margin: 18px 0 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu-backdrop {
        position: fixed;
        z-index: 1001;
        display: block;
        background: rgba(3, 10, 16, 0.62);
        inset: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity 240ms ease;
    }

    .menu-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .home-hero-content {
        padding-top: 88px;
    }

    .home-hero h1 {
        font-size: 4.5rem;
    }

    .page-hero {
        min-height: 520px;
    }

    .page-hero h1 {
        font-size: 4rem;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .section-space {
        padding: 82px 0;
    }

    .welcome-grid,
    .content-split,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .events-grid,
    .policy-grid,
    .membership-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .gallery-grid.four {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .code-grid {
        grid-template-columns: 1fr;
    }

    .activity-card {
        grid-column: span 6;
    }

    .activity-card:last-child {
        grid-column: 4 / span 6;
    }

    .club-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .reciprocal-club-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }

    .mobile-navigation {
        min-height: 76px;
        padding: 6px 18px;
    }

    .mobile-brand img {
        width: 145px;
        height: 62px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .section-space {
        padding: 68px 0;
    }

    .section-space-sm {
        padding: 54px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .welcome-copy h2,
    .content-split h2,
    .contact-details h2,
    .contact-form-wrap h2 {
        font-size: 2.55rem;
    }

    .home-hero {
        min-height: 650px;
        height: 90vh;
        max-height: 760px;
    }

    .home-hero-content {
        padding-right: 18px;
        padding-left: 18px;
    }

    .home-hero h1 {
        font-size: 3.55rem;
    }

    .home-hero .hero-description {
        font-size: 1.1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        padding: 0 36px;
    }

    .page-hero {
        min-height: 440px;
    }

    .page-hero-content {
        padding-bottom: 54px;
    }

    .page-hero h1 {
        font-size: 3rem;
        overflow-wrap: anywhere;
    }

    .welcome-media {
        min-height: 480px;
    }

    .welcome-media .image-main {
        width: calc(100% - 40px);
        height: 440px;
    }

    .welcome-media .image-accent {
        width: 190px;
        height: 190px;
        border-width: 7px;
    }

    .highlight-grid,
    .stats-grid,
    .detail-stats,
    .venue-list {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        min-height: 430px;
    }

    .stat-item {
        padding: 30px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .event-card,
    .news-event,
    .news-event:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .event-card img,
    .event-card video {
        min-height: 260px;
    }

    .news-event:nth-child(even) .news-event-media {
        order: 0;
    }

    .news-event-media {
        min-height: 300px;
    }

    .news-event-content {
        padding: 36px 26px;
    }

    .news-event-content h2 {
        font-size: 2.35rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding: 0 0 40px 42px;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .timeline-item::before {
        top: 7px;
        left: 3px;
    }

    .timeline-year {
        font-size: 1.45rem;
        text-align: left;
    }

    .gallery-grid,
    .gallery-grid.four {
        grid-template-columns: 1fr;
    }

    .gallery-grid img,
    .gallery-grid.four img {
        height: 330px;
    }

    .team-feature {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-feature img {
        height: 440px;
    }

    .team-grid,
    .team-grid.trustees,
    .facility-grid,
    .amenity-grid,
    .club-list {
        grid-template-columns: 1fr;
    }

    .team-card img {
        height: 420px;
    }

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

    .club-table {
        min-width: 680px;
    }

    .activity-grid {
        display: block;
    }

    .activity-card {
        min-height: 360px;
        margin-bottom: 18px;
    }

    .membership-card {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .member-login-brand {
        top: 18px;
        left: 20px;
        width: 172px;
    }

    .member-login-panel {
        width: 100%;
        border-left: 0;
        background: rgba(16, 20, 22, 0.9);
        box-shadow: none;
    }

    .member-login-back {
        top: 24px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .member-login-content {
        padding: 132px 24px 46px;
    }

    .member-login-content h1 {
        font-size: 2.75rem;
    }

    .footer-main {
        padding-top: 60px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .scroll-to-top {
        right: 18px;
        bottom: 18px;
        width: 50px;
        height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
