/* ==================================================
   ROOT VARIABLES
================================================== */

:root {
    --navy: #000000;
    --navy-dark: #000000;
    --maroon: #000000;

    --rose: #871145;
    --gold: #e7c471;
    --orange: #b8860b;

    --light-grey: #f7f7f7;
    --mid-grey: #eaeaea;

    --text: #333333;

    --header-height: 100px;
}


/* ==================================================
   RESET AND BASE
================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;

    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;

    scroll-padding-top:
        var(--header-height);
}

body {
    min-width: 320px;

    overflow-x: hidden;

    background-color: #ffffff;
    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;
}

img {
    display: block;

    max-width: 100%;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button {
    -webkit-tap-highlight-color:
        transparent;
}

address {
    font-style: normal;
}


/* ==================================================
   REUSABLE CONTAINERS
================================================== */

.wide-container {
    width: min(
        1248px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}

.narrow-container {
    width: min(
        800px,
        calc(100% - 40px)
    );

    margin: 0 auto;
}

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


/* ==================================================
   GENERAL SECTION TITLES
================================================== */

.section-eyebrow {
    margin-bottom: 4px;

    color: var(--maroon);

    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.5;

    text-transform: uppercase;
}

.section-title {
    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.2rem,
            5vw,
            3.75rem
        );

    font-weight: 400;
    line-height: 1;
}

.compact-title {
    font-size:
        clamp(
            2rem,
            4vw,
            2.5rem
        );
}

.section-separator {
    width: 20%;
    max-width: 160px;
    height: 1px;

    margin: 24px auto;

    background-color: var(--rose);
}


/* ==================================================
   GENERAL BUTTONS
================================================== */

.primary-button,
.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;

    border: 2px solid var(--orange);

    background-color: var(--orange);
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.4;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-button {
    padding: 10px 24px;
}

.primary-button:hover,
.footer-button:hover {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;

    color: var(--navy) !important;

    transform: translateY(-2px);
}

.primary-button:focus-visible,
.footer-button:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}


/* ==================================================
   HEADER
================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;
    height: var(--header-height);

    overflow: visible;

    background-color: var(--navy);

    transition:
        height 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.site-header.scrolled {
    height: 78px;

    box-shadow:
        0 4px 18px
        rgba(0, 0, 0, 0.35);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: min(
        1400px,
        calc(100% - 70px)
    );

    height: 100%;

    margin: 0 auto;
}


/* ==================================================
   LOGO
================================================== */

.logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    height: 100%;

    text-decoration: none;
}

.club-logo {
    display: block;

    width: auto;
    height: 72px;
    max-height: calc(var(--header-height) - 20px);

    object-fit: contain;
}

.logo:hover .club-logo {
    opacity: 0.92;
}

.logo:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
}


/* ==================================================
   DESKTOP NAVIGATION
================================================== */

.desktop-nav {
    height: 100%;
}

.desktop-nav ul {
    display: flex;
    align-items: center;

    height: 100%;

    gap: 44px;

    list-style: none;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav .nav-link {
    display: inline-flex;
    align-items: center;

    min-height: 44px;

    color:
        rgba(
            255,
            255,
            255,
            0.9
        );

    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;

    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active,
.desktop-nav
.nav-link[aria-current="page"] {
    color: var(--orange);
}


/* ==================================================
   DESKTOP DROPDOWN MENU
================================================== */

.dropdown {
    position: relative;
}


/*
   The menu now begins directly underneath the
   parent navigation item.

   This removes the hover gap that caused the
   dropdown to disappear when moving the mouse
   from the main link into the submenu.
*/

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;

    min-width: 220px;

    padding: 8px 0;
    margin: 0;

    visibility: hidden;
    opacity: 0;

    background-color: var(--navy);

    border:
        1px solid
        rgba(
            231,
            196,
            113,
            0.25
        );

    box-shadow:
        0 14px 28px
        rgba(0, 0, 0, 0.3);

    transform: translateY(8px);

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.25s ease,
        visibility 0s linear 0.25s;
}


/*
   Invisible hover bridge.

   This extends the hoverable area slightly above
   the dropdown. It prevents accidental closing if
   borders, line-height or positioning leave even
   a tiny visual gap between the navigation item
   and the menu.
*/

.dropdown-menu::before {
    content: "";

    position: absolute;
    top: -12px;
    right: 0;
    left: 0;

    height: 12px;

    background-color: transparent;

    pointer-events: auto;
}


/*
   Keep the menu visible while either:

   1. The parent dropdown is hovered.
   2. Keyboard focus is somewhere inside it.
*/

.dropdown:hover
.dropdown-menu,
.dropdown:focus-within
.dropdown-menu {
    visibility: visible;
    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;

    transition:
        opacity 0.2s ease,
        transform 0.25s ease,
        visibility 0s;
}


/* ==================================================
   DESKTOP DROPDOWN LINKS
================================================== */

.dropdown-menu a {
    display: block;

    padding: 12px 20px;

    color:
        rgba(
            255,
            255,
            255,
            0.9
        );

    font-size: 14px;
    letter-spacing: 0.05em;

    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;
}


/* ==================================================
   DROPDOWN LINK HOVER / ACTIVE STATE
================================================== */

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.active,
.dropdown-menu a[aria-current="page"] {
    padding-left: 24px;

    background-color:
        rgba(
            255,
            255,
            255,
            0.06
        );

    color: var(--orange);
}


/* ==================================================
   ACTIVE DROPDOWN PARENT
================================================== */

/*
   Allows Function Hire, Events, More, etc. to also
   appear active whenever JavaScript adds the active
   class to the parent dropdown or its main toggle.
*/

.dropdown.active > a,
.dropdown.active > button,
.dropdown > a.active,
.dropdown > button.active {
    color: var(--orange);
}


/* ==================================================
   DESKTOP ONLY
================================================== */

@media (min-width: 1081px) {

    .dropdown {
        position: relative;
    }

}


/* ==================================================
   SEARCH BUTTON
================================================== */

.search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    padding: 0;

    border: 0;

    background-color: transparent;
    color: var(--orange);

    cursor: pointer;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.search-button:hover {
    color: #ffffff;

    transform: scale(1.08);
}

.search-button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.search-icon {
    width: 28px;
    height: 28px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ==================================================
   MOBILE MENU BUTTON
================================================== */

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    padding: 0;

    border: 0;

    background-color: transparent;
    color: #ffffff;

    cursor: pointer;

    font-size: 28px;
    line-height: 1;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.menu-toggle:hover {
    color: var(--orange);
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}


/* ==================================================
   MOBILE NAVIGATION
================================================== */

.mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 60;

    display: block;

    max-height: 0;

    overflow: hidden;
    overflow-y: auto;

    visibility: hidden;
    opacity: 0;

    background-color: var(--navy);

    border-top:
        1px solid
        rgba(
            231,
            196,
            113,
            0.15
        );

    border-bottom:
        3px solid
        var(--orange);

    box-shadow:
        0 16px 28px
        rgba(0, 0, 0, 0.32);

    transform: translateY(-8px);

    pointer-events: none;

    transition:
        max-height 0.5s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        opacity 0.25s ease,

        transform 0.35s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        visibility 0s
        linear 0.5s;
}

.mobile-nav.open {
    max-height:
        calc(
            100vh -
            var(--header-height)
        );

    visibility: visible;
    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;

    transition:
        max-height 0.55s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        opacity 0.25s ease,

        transform 0.35s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        visibility 0s;
}


/* ==================================================
   MOBILE TOP-LEVEL LINKS
================================================== */

.mobile-nav > .nav-link {
    display: flex;
    align-items: center;

    min-height: 54px;

    padding: 15px 28px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.07
        );

    color:
        rgba(
            255,
            255,
            255,
            0.9
        );

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.09em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.mobile-nav > .nav-link:hover,
.mobile-nav > .nav-link.active,
.mobile-nav >
.nav-link[aria-current="page"] {
    padding-left: 32px;

    background-color:
        rgba(
            255,
            255,
            255,
            0.05
        );

    color: var(--orange);
}


/* ==================================================
   MOBILE DROPDOWNS
================================================== */

.mobile-dropdown {
    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.07
        );
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 54px;

    padding: 15px 28px;

    border: 0;

    background-color: transparent;
    color:
        rgba(
            255,
            255,
            255,
            0.9
        );

    cursor: pointer;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.4;

    text-align: left;
    text-transform: uppercase;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown.open
.mobile-dropdown-toggle {
    background-color:
        rgba(
            255,
            255,
            255,
            0.05
        );

    color: var(--orange);
}

.mobile-dropdown-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -3px;
}

.mobile-dropdown-icon {
    display: none;
}

.mobile-dropdown-toggle::after {
    content: "+";

    flex: 0 0 auto;

    margin-left: 16px;

    color: var(--orange);

    font-size: 21px;
    font-weight: 400;
    line-height: 1;

    transition:
        color 0.2s ease,
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-dropdown.open
.mobile-dropdown-toggle::after {
    content: "−";
    color: var(--gold);
}


/* ==================================================
   MOBILE DROPDOWN MENUS
================================================== */

.mobile-dropdown-menu {
    max-height: 0;

    overflow: hidden;

    background-color:
        rgba(
            255,
            255,
            255,
            0.035
        );

    transition:
        max-height 0.45s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.mobile-dropdown.open
.mobile-dropdown-menu {
    max-height: 420px;
}

.mobile-sub-link {
    display: flex;
    align-items: center;

    min-height: 46px;

    padding:
        12px
        28px
        12px
        48px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.045
        );

    color:
        rgba(
            255,
            255,
            255,
            0.66
        );

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;

    text-decoration: none;
    text-transform: uppercase;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.mobile-sub-link::before {
    content: none;
}

.mobile-sub-link:hover,
.mobile-sub-link.active,
.mobile-sub-link[aria-current="page"] {
    padding-left: 52px;

    background-color:
        rgba(
            255,
            255,
            255,
            0.045
        );

    color: var(--orange);
}


/* ==================================================
   HERO SLIDER
================================================== */

.hero-slider {
    position: sticky;
    top: -1px;
    z-index: 1;

    width: 100%;

    height:
        calc(
            600px +
            var(--header-height)
        );

    margin: 0;
    padding: 0;

    overflow: hidden;
    isolation: isolate;

    background-color: var(--navy);

    transform: translateZ(0);

    backface-visibility: hidden;
}

.hero-slider::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    z-index: 25;

    height: 8px;

    pointer-events: none;
}


/* ==================================================
   SLIDES
================================================== */

.slide {
    position: absolute;

    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;

    z-index: 0;

    overflow: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.8s ease;
}

.slide.active {
    z-index: 1;

    opacity: 1;

    pointer-events: auto;
}


/* ==================================================
   HERO IMAGE
================================================== */

.slide img {
    position: absolute;

    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;

    width: calc(100% + 8px);
    height: calc(100% + 8px);
    max-width: none;

    object-fit: cover;
    object-position: center;

    transform:
        translateZ(0)
        scale(1.004);

    transform-origin: center;

    backface-visibility: hidden;

    will-change: transform;
}


/* ==================================================
   HERO OVERLAY
================================================== */

.hero-overlay {
    position: absolute;
    inset: -4px;
    z-index: 1;

    background-color:
        rgba(
            0,
            0,
            0,
            0.28
        );

    pointer-events: none;
}


/* ==================================================
   HERO CAPTION
================================================== */

.hero-caption {
    position: absolute;

    top:
        calc(
            50% +
            (
                var(--header-height)
                / 2
            )
        );

    left: 50%;
    z-index: 2;

    width: min(
        90%,
        1000px
    );

    text-align: center;

    transform:
        translate(
            -50%,
            -50%
        );
}

.hero-caption > * {
    opacity: 0;

    transform:
        translateY(35px);
}

.slide.active
.hero-caption > * {
    animation:
        hero-text-rise
        0.8s ease
        0.4s forwards;
}

.slide.active
.hero-caption p {
    animation-delay: 0.6s;
}

.slide:not(.active)
.hero-caption > * {
    opacity: 0;

    animation: none;

    transform:
        translateY(35px);
}

@keyframes hero-text-rise {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}

.hero-caption h1,
.hero-caption h2 {
    display: inline-block;

    margin: 0 0 12px;
    padding: 10px 26px;

    background-color:
        rgba(
            0,
            0,
            0,
            0.45
        );

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2rem,
            5vw,
            3.75rem
        );

    font-weight: 400;
    line-height: 1.2;
}

.hero-caption p {
    display: table;

    margin: 0 auto;
    padding: 9px 22px;

    background-color:
        rgba(
            0,
            0,
            0,
            0.45
        );

    color: #ffffff;

    font-size:
        clamp(
            1rem,
            2.2vw,
            1.5rem
        );

    line-height: 1.35;
}


/* ==================================================
   SLIDER ARROWS
================================================== */

.slider-arrow {
    position: absolute;

    top:
        calc(
            50% +
            (
                var(--header-height)
                / 2
            )
        );

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 72px;
    padding: 0;

    border: 0;

    background-color:
        rgba(
            20,
            25,
            32,
            0.22
        );

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

    cursor: pointer;

    font-size: 0;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.3s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.slider-arrow::before {
    content: "";

    display: block;

    width: 18px;
    height: 18px;

    border-top:
        2px solid currentColor;

    border-right:
        2px solid currentColor;
}

.slider-prev {
    left: 0;

    transform:
        translate(
            -12px,
            -50%
        );
}

.slider-prev::before {
    margin-left: 7px;

    transform:
        rotate(-135deg);
}

.slider-next {
    right: 0;

    transform:
        translate(
            12px,
            -50%
        );
}

.slider-next::before {
    margin-right: 7px;

    transform:
        rotate(45deg);
}

.hero-slider:hover
.slider-arrow,
.hero-slider:focus-within
.slider-arrow {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;
}

.hero-slider:hover
.slider-prev,
.hero-slider:focus-within
.slider-prev {
    transform:
        translate(
            0,
            -50%
        );
}

.hero-slider:hover
.slider-next,
.hero-slider:focus-within
.slider-next {
    transform:
        translate(
            0,
            -50%
        );
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    background-color:
        rgba(
            20,
            25,
            32,
            0.48
        );

    color: #ffffff;
}

.slider-arrow:focus-visible {
    outline:
        2px solid #ffffff;

    outline-offset: -4px;
}


/* ==================================================
   SLIDER DOTS
================================================== */

.slider-dots {
    position: absolute;

    right: 0;
    bottom: 20px;
    left: 0;
    z-index: 20;

    display: flex;
    justify-content: center;

    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;

    border:
        2px solid
        rgba(
            255,
            255,
            255,
            0.55
        );

    border-radius: 50%;

    background-color:
        rgba(
            255,
            255,
            255,
            0.35
        );

    cursor: pointer;
}

.slider-dot.active {
    border-color: #ffffff;

    background-color: #ffffff;
}


/* ==================================================
   WELCOME SECTION
================================================== */

.welcome-section {
    position: relative;
    z-index: 3;

    margin-top: -4px;

    padding: 80px 0;

    background-color: #ffffff;
}

.welcome-section::before {
    content: "";

    position: absolute;

    top: -8px;
    right: 0;
    left: 0;

    height: 10px;

    background-color: #ffffff;

    pointer-events: none;
}

.welcome-section
p:not(.section-eyebrow) {
    margin-bottom: 16px;

    color: var(--text);

    font-size: 16px;
    line-height: 1.7;
}

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


/* ==================================================
   FEATURES SECTION
================================================== */

.features-section {
    position: relative;
    z-index: 3;

    padding: 70px 0;

    overflow: hidden;

    background-color: var(--mid-grey);
}

.features-heading {
    margin-bottom: 50px;

    opacity: 1;

    transform: translateY(0);
}

.features-section.reveal-ready:not(.animate-in)
.features-heading {
    opacity: 0;

    transform:
        translateY(70px);
}

.features-section.reveal-ready
.features-heading {
    transition:
        opacity 1.1s ease,
        transform 1.3s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.features-section.animate-in
.features-heading {
    opacity: 1;

    transform:
        translateY(0);
}


/* ==================================================
   FEATURE GRID
================================================== */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

    gap: 30px;

    width: 100%;
}


/* ==================================================
   FEATURE CARDS
================================================== */

.feature-card {
    position: relative;

    overflow: hidden;

    opacity: 1;

    background-color: #ffffff;

    border:
        1px solid
        var(--maroon);

    transform:
        translateX(0);

    backface-visibility: hidden;
}

.features-section.reveal-ready
.feature-card {
    transition:
        opacity 1.1s ease,
        transform 1.6s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.features-section.reveal-ready:not(.animate-in)
.feature-card-left {
    opacity: 0;

    transform:
        translateX(
            calc(
                -100vw - 100%
            )
        );
}

.features-section.reveal-ready:not(.animate-in)
.feature-card-right {
    opacity: 0;

    transform:
        translateX(
            calc(
                100vw + 100%
            )
        );
}

.features-section.animate-in
.feature-card-left,
.features-section.animate-in
.feature-card-right {
    opacity: 1;

    transform:
        translateX(0);
}

.features-section.reveal-ready
.feature-card:nth-child(1),
.features-section.reveal-ready
.feature-card:nth-child(4) {
    transition-delay: 0.22s;
}

.features-section.reveal-ready
.feature-card:nth-child(2),
.features-section.reveal-ready
.feature-card:nth-child(3) {
    transition-delay: 0.32s;
}


/* ==================================================
   FEATURE IMAGE
================================================== */

.feature-image {
    aspect-ratio: 1000 / 625;

    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.feature-card:hover
.feature-image img {
    transform:
        scale(1.1);
}


/* ==================================================
   FEATURE CONTENT
================================================== */

.feature-content {
    min-height: 190px;

    padding: 24px 20px;

    text-align: center;
}

.feature-content h3 {
    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.7;
}

.card-separator {
    width: 25%;
    max-width: 80px;
    height: 1px;

    margin:
        12px auto 18px;

    background-color: var(--rose);
}


/* ==================================================
   MEMBERSHIP BANNER
================================================== */

.membership-banner {
    position: relative;
    z-index: 3;

    overflow: hidden;

    padding:
        175px 20px
        215px;

    background-color: var(--maroon);

    background-image:
        linear-gradient(
            rgba(
                69,
                21,
                42,
                0.74
            ),
            rgba(
                69,
                21,
                42,
                0.74
            )
        ),
        url(
            "images/ekcooutside.JPG"
        );

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.membership-content {
    position: relative;
    z-index: 1;

    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.membership-content h2 {
    margin-bottom: 20px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2rem,
            5vw,
            3.75rem
        );

    font-weight: 400;
    line-height: 1.1;
}

.membership-content p {
    margin-bottom: 32px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.6;

    text-transform: uppercase;
}


/* ==================================================
   EVENTS SECTION
================================================== */

.events-section {
    position: relative;
    z-index: 3;

    padding: 80px 0;

    background-color: #ffffff;
}

.event-list {
    margin: 8px 0 40px;

    text-align: left;
}

.event-item {
    display: flex;

    gap: 20px;

    padding: 20px 0;

    border-bottom:
        1px solid
        rgba(
            69,
            21,
            42,
            0.12
        );
}

.event-item:last-child {
    border-bottom: 0;
}

.event-date {
    align-self: flex-start;

    min-width: 104px;

    padding: 9px 12px;

    background-color: var(--orange);
    color: var(--light-grey);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;

    text-align: center;
}

.event-item h3 {
    margin-bottom: 3px;

    color: var(--maroon);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-weight: 400;
}

.event-item p {
    color: #555555;

    font-size: 14px;
    line-height: 1.5;
}

.event-item
.event-time {
    margin-bottom: 4px;

    color: var(--rose);

    font-size: 13px;
    font-weight: 700;
}


/* ==================================================
   NEWS SECTION
================================================== */

.news-section {
    position: relative;
    z-index: 3;

    padding: 80px 0 85px;

    background-color: var(--light-grey);
}


/* ==================================================
   NEWS INTRODUCTION
================================================== */

.news-intro {
    max-width: 620px;

    margin:
        0 auto
        42px;

    color: #666666;

    font-size: 15px;
    line-height: 1.75;
}


/* ==================================================
   SOCIAL LINKS GRID
================================================== */

.news-social-links {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 26px;

    width: min(900px, 100%);
    margin: 0 auto;
}


/* ==================================================
   SOCIAL CARD
================================================== */

.news-social-card {
    position: relative;

    display: grid;
    grid-template-columns:
        76px
        minmax(0, 1fr);

    align-items: center;
    gap: 24px;

    min-height: 190px;
    padding: 30px;

    overflow: hidden;

    background-color: #ffffff;

    border:
        1px solid
        rgba(0, 0, 0, 0.1);

    border-bottom:
        4px solid
        var(--orange);

    color: inherit;

    text-decoration: none;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.045);

    transform:
        translateY(0);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.news-social-card:hover {
    border-color:
        rgba(
            184,
            134,
            11,
            0.4
        );

    border-bottom-color:
        var(--orange);

    box-shadow:
        0 18px 38px
        rgba(0, 0, 0, 0.1);

    transform:
        translateY(-5px);
}

.news-social-card:focus-visible {
    outline:
        3px solid
        var(--gold);

    outline-offset: 4px;
}


/* ==================================================
   SOCIAL ICON
================================================== */

.news-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 76px;
    height: 76px;

    background-color: var(--navy);
    color: var(--gold);

    border-radius: 50%;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.news-social-icon svg {
    width: 36px;
    height: 36px;

    fill: currentColor;
}

.news-social-card:hover
.news-social-icon {
    background-color: var(--orange);
    color: #ffffff;

    transform:
        translateY(-2px)
        scale(1.03);
}


/* ==================================================
   SOCIAL CONTENT
================================================== */

.news-social-content {
    min-width: 0;
}

.news-social-content h3 {
    margin:
        0 0
        9px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 23px;
    font-weight: 400;
    line-height: 1.25;

    transition:
        color 0.2s ease;
}

.news-social-card:hover
.news-social-content h3 {
    color: var(--orange);
}

.news-social-content p {
    margin:
        0 0
        17px;

    color: #666666;

    font-size: 13px;
    line-height: 1.65;
}


/* ==================================================
   SOCIAL ACTION
================================================== */

.news-social-action {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--orange);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.4;

    text-transform: uppercase;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.news-social-action > span {
    font-size: 18px;
    line-height: 1;
}

.news-social-card:hover
.news-social-action {
    gap: 11px;

    color: var(--navy);
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 850px) {

    .news-section {
        padding:
            68px 0
            72px;
    }

    .news-intro {
        margin-bottom: 36px;
    }

    .news-social-links {
        gap: 20px;
    }

    .news-social-card {
        grid-template-columns:
            64px
            minmax(0, 1fr);

        gap: 20px;

        padding: 26px 24px;
    }

    .news-social-icon {
        width: 64px;
        height: 64px;
    }

    .news-social-icon svg {
        width: 30px;
        height: 30px;
    }

    .news-social-content h3 {
        font-size: 21px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .news-section {
        padding:
            58px 0
            62px;
    }

    .news-intro {
        max-width: 520px;

        margin-bottom: 32px;

        font-size: 14px;
        line-height: 1.7;
    }

    .news-social-links {
        grid-template-columns: 1fr;

        gap: 18px;

        width: min(440px, 100%);
    }

    .news-social-card {
        grid-template-columns:
            58px
            minmax(0, 1fr);

        gap: 18px;

        min-height: 0;

        padding: 24px 20px;
    }

    .news-social-icon {
        width: 58px;
        height: 58px;
    }

    .news-social-icon svg {
        width: 27px;
        height: 27px;
    }

    .news-social-content h3 {
        margin-bottom: 7px;

        font-size: 20px;
    }

    .news-social-content p {
        margin-bottom: 14px;

        font-size: 12px;
        line-height: 1.6;
    }

    .news-social-action {
        font-size: 9px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .news-social-card {
        grid-template-columns: 1fr;

        gap: 16px;

        padding: 24px 19px;

        text-align: center;
    }

    .news-social-icon {
        margin: 0 auto;
    }

    .news-social-action {
        justify-content: center;
    }

}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {

    .news-social-card:hover {
        border-color:
            rgba(0, 0, 0, 0.1);

        border-bottom-color:
            var(--orange);

        box-shadow:
            0 12px 30px
            rgba(0, 0, 0, 0.045);

        transform: none;
    }

    .news-social-card:hover
    .news-social-icon {
        background-color: var(--navy);
        color: var(--gold);

        transform: none;
    }

    .news-social-card:hover
    .news-social-content h3 {
        color: var(--navy);
    }

    .news-social-card:hover
    .news-social-action {
        gap: 7px;

        color: var(--orange);
    }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

    .news-social-card,
    .news-social-icon,
    .news-social-content h3,
    .news-social-action {
        transition: none;
    }

}


/* ==================================================
   PAGINATION
================================================== */

.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 36px;

    padding: 0 14px;

    border:
        1px solid
        var(--orange);

    color: var(--maroon);

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.pagination span,
.pagination a:hover {
    background-color: var(--orange);

    color: #ffffff;
}


/* ==================================================
   LOCATION MAP
================================================== */

.location-map {
    position: relative;
    z-index: 3;

    width: 100%;
    height: 570px;

    overflow: hidden;

    background-color: #e8e8e8;

    border-bottom:
        5px solid
        var(--orange);
}

.location-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* ==================================================
   FOOTER
================================================== */

footer {
    position: relative;
    z-index: 3;
}

.footer-main {
    padding:
        48px 20px
        40px;

    background-color: var(--navy);
}

.footer-container {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 40px;

    width: min(
        1200px,
        100%
    );

    margin: 0 auto;
}

.footer-column {
    color: #ffffff;

    font-size: 14px;
    line-height: 1.9;
}

.footer-column h2 {
    margin-bottom: 18px;
    padding-bottom: 10px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    color: #ffffff;

    font-size: 14px;
    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.footer-column a {
    color: #ffffff;

    text-decoration: none;
}

.footer-column p {
    margin-bottom: 15px;
}

.gold {
    color: var(--orange);
}

.footer-button {
    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.3
        );

    font-size: 12px;
}

.footer-column table {
    width: 100%;

    border-collapse: collapse;
}

.footer-column td {
    padding-bottom: 5px;
}

.footer-column td:first-child {
    padding-right: 12px;

    color: var(--orange);

    text-align: right;
    white-space: nowrap;
}

.footer-column td:last-child {
    padding-left: 10px;

    color: #ffffff;
}


/* ==================================================
   FOOTER BOTTOM
================================================== */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 18px 25px;

    background-color: var(--navy-dark);
}

.footer-bottom p {
    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    font-size: 13px;
}

.social-icons {
    display: flex;

    gap: 15px;
}

.social-icons a {
    color:
        rgba(
            255,
            255,
            255,
            0.5
        );

    transition:
        color 0.2s ease;
}

.social-icons a:hover {
    color: var(--gold);
}

.social-icons svg {
    width: 18px;
    height: 18px;

    fill: currentColor;
}


/* ==================================================
   WEBSITE SEARCH
================================================== */

.website-search-panel {
    position: absolute;

    top: 100%;
    right: 0;
    left: 0;
    z-index: 70;

    overflow: hidden;

    max-height: 0;

    visibility: hidden;
    opacity: 0;

    background-color: var(--navy);

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.08
        );

    border-bottom:
        4px solid
        var(--orange);

    transform:
        translateY(-10px);

    pointer-events: none;

    transition:
        max-height 0.55s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        opacity 0.28s ease,

        transform 0.45s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        visibility 0s
        linear 0.55s;
}

.site-header.website-search-open
.website-search-panel {
    max-height: 560px;

    visibility: visible;
    opacity: 1;

    transform:
        translateY(0);

    pointer-events: auto;

    transition:
        max-height 0.65s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        opacity 0.3s ease,

        transform 0.5s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        ),

        visibility 0s;
}


/* ==================================================
   SEARCH CONTAINER
================================================== */

.website-search-container {
    width: min(
        1120px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding: 22px 0 24px;
}


/* ==================================================
   SEARCH FORM
================================================== */

.website-search-form {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        52px;

    align-items: center;

    gap: 13px;
}


/* ==================================================
   SEARCH FIELD
================================================== */

.website-search-field {
    display: grid;

    grid-template-columns:
        24px
        minmax(0, 1fr)
        34px;

    align-items: center;

    gap: 13px;

    min-height: 56px;

    padding: 0 17px;

    background-color: #ffffff;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.1
        );

    border-radius: 5px;

    box-shadow:
        0 10px 28px
        rgba(
            0,
            0,
            0,
            0.16
        );

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.website-search-field:focus-within {
    border-color: var(--gold);

    box-shadow:
        0 12px 31px
        rgba(
            0,
            0,
            0,
            0.2
        ),

        0 0 0 3px
        rgba(
            231,
            196,
            113,
            0.16
        );
}

.website-search-field svg {
    width: 22px;
    height: 22px;

    fill: none;

    stroke: #8d97a3;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.website-search-field input {
    width: 100%;
    min-width: 0;

    padding: 15px 0;

    border: 0;
    outline: 0;

    background-color: transparent;
    color: var(--navy);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;
    line-height: 1.4;
}

.website-search-field
input::placeholder {
    color: #929292;
}


/* ==================================================
   SEARCH CLEAR BUTTON
================================================== */

.website-search-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    padding: 0;

    border: 0;

    background-color: transparent;
    color: #68788c;

    cursor: pointer;

    font-size: 24px;
    font-weight: 700;
    line-height: 1;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.website-search-clear:hover {
    color: var(--orange);

    transform:
        scale(1.08);
}

.website-search-clear[hidden] {
    display: none;
}


/* ==================================================
   SEARCH CLOSE BUTTON
================================================== */

.website-search-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    padding: 0;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.22
        );

    border-radius: 50%;

    background-color:
        rgba(
            255,
            255,
            255,
            0.06
        );

    color: #ffffff;

    cursor: pointer;

    font-size: 27px;
    line-height: 1;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.website-search-close:hover {
    background-color: var(--orange);
    border-color: var(--orange);

    color: #ffffff;

    transform:
        rotate(5deg);
}

.website-search-close:focus-visible,
.website-search-clear:focus-visible {
    outline:
        3px solid
        var(--gold);

    outline-offset: 3px;
}


/* ==================================================
   SEARCH RESULTS
================================================== */

.website-search-results-panel {
    margin-top: 13px;

    overflow: hidden;

    opacity: 0;

    background-color: #ffffff;

    border-top:
        3px solid
        var(--orange);

    box-shadow:
        0 18px 42px
        rgba(
            0,
            0,
            0,
            0.2
        );

    transform:
        translateY(-8px);

    transition:
        opacity 0.25s ease,
        transform 0.38s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.website-search-results-panel.visible {
    opacity: 1;

    transform:
        translateY(0);
}

.website-search-results-panel[hidden] {
    display: none;
}

.website-search-status {
    margin: 0;

    padding: 13px 18px;

    border-bottom:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    color: #737373;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;

    text-transform: uppercase;
}

.website-search-results {
    max-height: 320px;

    overflow-y: auto;

    overscroll-behavior: contain;
}

.website-search-result {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 20px;

    padding: 16px 18px;

    border-bottom:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    color: inherit;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        padding-left 0.2s ease;
}

.website-search-result:last-child {
    border-bottom: 0;
}

.website-search-result:hover {
    padding-left: 24px;

    background-color: var(--light-grey);
}

.website-search-result:focus-visible {
    outline:
        3px solid
        var(--gold);

    outline-offset: -3px;
}

.website-search-result h3 {
    margin: 0 0 4px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;

    transition:
        color 0.2s ease;
}

.website-search-result:hover h3 {
    color: var(--orange);
}

.website-search-result p {
    margin: 0;

    color: #666666;

    font-size: 11px;
    line-height: 1.5;
}

.website-search-result-arrow {
    color: var(--orange);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 26px;
    line-height: 1;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.website-search-result:hover
.website-search-result-arrow {
    color: var(--navy);

    transform:
        translateX(4px);
}


/* ==================================================
   NO SEARCH RESULTS
================================================== */

.website-search-no-results {
    padding: 28px 20px;

    color: #666666;

    text-align: center;
}

.website-search-no-results strong {
    display: block;

    margin-bottom: 6px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 18px;
    font-weight: 400;
}

.website-search-no-results p {
    margin: 0;

    font-size: 12px;
    line-height: 1.6;
}


/* ==================================================
   ACCESSIBILITY
================================================== */

.website-search-visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip:
        rect(
            0,
            0,
            0,
            0
        );

    white-space: nowrap;

    border: 0;
}


/* ==================================================
   LARGE TABLET / SMALL LAPTOP
================================================== */

@media (max-width: 1180px) {

    .desktop-nav ul {
        gap: 26px;
    }

    .desktop-nav .nav-link {
        font-size: 15px;
    }

    .logo-title {
        font-size: 25px;
    }

}


/* ==================================================
   TABLET NAVIGATION
================================================== */

@media (max-width: 1080px) {

    :root {
        --header-height: 84px;
    }

    .site-header {
        height: var(--header-height);
    }

    .site-header.scrolled {
        height: 74px;
    }

    .nav-container {
        width:
            min(
                100% - 40px,
                1400px
            );
    }

    .desktop-nav {
        display: none;
    }

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

    .logo-title {
        font-size: 24px;
    }

    .logo-subtitle {
        margin-top: 5px;

        font-size: 8px;
        letter-spacing: 0.17em;
    }


    /* Hero */

    .hero-slider {
        position: relative;
        top: auto;

        height:
            calc(
                520px +
                var(--header-height)
            );

        transform: none;
    }

    .slide {
        inset: 0;
    }

    .slide img {
        inset: 0;

        width: 100%;
        height: 100%;

        transform: none;

        will-change: auto;
    }

    .hero-overlay {
        inset: 0;
    }

    .slider-arrow {
        display: none;
    }


    /* Features */

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


    /* Map */

    .location-map {
        height: 480px;
    }


    /* Search */

    .website-search-container {
        width:
            calc(
                100% - 40px
            );
    }

}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 820px) {

    :root {
        --header-height: 78px;
    }

    .site-header.scrolled {
        height: 70px;
    }

    .wide-container,
    .narrow-container {
        width:
            calc(
                100% - 36px
            );
    }

    .logo-title {
        font-size: 22px;
    }

    .logo-subtitle {
        font-size: 7px;
        letter-spacing: 0.15em;
    }


    /* Hero */

    .hero-slider {
        height:
            calc(
                480px +
                var(--header-height)
            );
    }

    .hero-caption {
        width:
            calc(
                100% - 90px
            );
    }

    .hero-caption h1,
    .hero-caption h2 {
        padding:
            9px 20px;
    }

    .slider-arrow {
        width: 44px;
        height: 62px;
    }


    /* Sections */

    .welcome-section,
    .events-section,
    .news-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-eyebrow {
        font-size: 14px;
        letter-spacing: 0.09em;
    }


    /* Membership */

    .membership-banner {
        padding:
            120px 20px
            140px;

    }

    .membership-content p {
        font-size: 14px;
        letter-spacing: 0.08em;
    }


    /* Footer */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 34px;

        width:
            min(
                620px,
                100%
            );
    }

    .footer-column {
        text-align: center;
    }

    .footer-column td:first-child {
        width: 50%;

        text-align: right;
    }

    .footer-column td:last-child {
        width: 50%;

        text-align: left;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 640px) {

    .nav-container {
        width:
            calc(
                100% - 28px
            );
    }

    .wide-container,
    .narrow-container {
        width:
            calc(
                100% - 28px
            );
    }


    /* Logo */

    .logo-title {
        font-size: 20px;
    }

    .logo-subtitle {
        max-width: 220px;

        font-size: 6.5px;
        letter-spacing: 0.13em;
    }

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

        font-size: 25px;
    }


    /* Mobile menu */

    .mobile-nav > .nav-link,
    .mobile-dropdown-toggle {
        min-height: 51px;

        padding:
            14px 20px;

        font-size: 12px;
    }

    .mobile-sub-link {
        min-height: 44px;

        padding:
            11px 20px
            11px 37px;

        font-size: 11px;
    }

    .mobile-sub-link:hover,
    .mobile-sub-link.active,
    .mobile-sub-link[aria-current="page"] {
        padding-left: 41px;
    }


    /* Hero */

    .hero-slider {
        height:
            calc(
                430px +
                var(--header-height)
            );
    }

    .hero-caption {
        width:
            calc(
                100% - 56px
            );
    }

    .hero-caption h1,
    .hero-caption h2 {
        margin-bottom: 8px;

        padding:
            8px 15px;

        font-size:
            clamp(
                1.65rem,
                8vw,
                2.4rem
            );
    }

    .hero-caption p {
        padding:
            7px 13px;

        font-size:
            clamp(
                0.9rem,
                4vw,
                1.05rem
            );
    }

    .slider-arrow {
        width: 38px;
        height: 54px;
    }

    .slider-arrow::before {
        width: 14px;
        height: 14px;
    }

    .slider-dots {
        bottom: 17px;
    }


    /* Welcome */

    .welcome-section {
        margin-top: 0;

        padding: 55px 0;
    }

    .welcome-section::before {
        display: none;
    }


    /* Features */

    .features-section {
        padding:
            52px 0
            58px;
    }

    .features-heading {
        margin-bottom: 35px;
    }

    .feature-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }

    .feature-content {
        min-height: 0;
    }

    .feature-content h3 {
        font-size: 25px;
    }

    .features-section.reveal-ready:not(.animate-in)
    .feature-card-left {
        transform:
            translateX(-110%);
    }

    .features-section.reveal-ready:not(.animate-in)
    .feature-card-right {
        transform:
            translateX(110%);
    }

    .features-section.reveal-ready
    .feature-card:nth-child(1) {
        transition-delay: 0.12s;
    }

    .features-section.reveal-ready
    .feature-card:nth-child(2) {
        transition-delay: 0.22s;
    }

    .features-section.reveal-ready
    .feature-card:nth-child(3) {
        transition-delay: 0.32s;
    }

    .features-section.reveal-ready
    .feature-card:nth-child(4) {
        transition-delay: 0.42s;
    }


    /* Membership */

    .membership-banner {
        padding:
            95px 16px
            115px;
    }

    .membership-content .primary-button {
        width: 100%;
        max-width: 340px;
    }


    /* Events */

    .event-item {
        flex-direction: column;

        gap: 12px;
    }

    .event-date {
        min-width: 0;

        align-self: flex-start;
    }


    /* Map */

    .location-map {
        height: 380px;
    }


    /* Footer */

    .footer-main {
        padding:
            42px 18px
            36px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-column td:first-child {
        text-align: right;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;

        padding:
            18px 20px;

        text-align: center;
    }


    /* Search */

    .website-search-container {
        width:
            calc(
                100% - 24px
            );

        padding:
            13px 0 16px;
    }

    .website-search-form {
        grid-template-columns:
            minmax(0, 1fr)
            44px;

        gap: 8px;
    }

    .website-search-field {
        grid-template-columns:
            20px
            minmax(0, 1fr)
            30px;

        min-height: 47px;

        padding:
            0 11px;

        gap: 9px;
    }

    .website-search-field svg {
        width: 19px;
        height: 19px;
    }

    .website-search-field input {
        padding: 12px 0;

        font-size: 14px;
    }

    .website-search-close {
        width: 44px;
        height: 44px;

        font-size: 24px;
    }

    .website-search-results {
        max-height:
            min(
                300px,
                calc(
                    100vh -
                    var(--header-height) -
                    130px
                )
            );
    }

    .website-search-result {
        gap: 13px;

        padding:
            14px 13px;
    }

    .website-search-result:hover {
        padding-left: 13px;
    }

}


/* ==================================================
   EXTRA SMALL MOBILE
================================================== */

@media (max-width: 430px) {

    .wide-container,
    .narrow-container {
        width:
            calc(
                100% - 24px
            );
    }

    .nav-container {
        width:
            calc(
                100% - 22px
            );
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 6px;
        letter-spacing: 0.11em;
    }


    /* Hero */

    .hero-slider {
        height:
            calc(
                400px +
                var(--header-height)
            );
    }

    .hero-caption {
        width:
            calc(
                100% - 34px
            );
    }

    .slider-arrow {
        top: auto;
        bottom: 17px;

        width: 38px;
        height: 38px;

        transform: none;
    }

    .slider-prev {
        left: 14px;
    }

    .slider-next {
        right: 14px;
    }

    .hero-slider:hover
    .slider-prev,
    .hero-slider:focus-within
    .slider-prev,
    .hero-slider:hover
    .slider-next,
    .hero-slider:focus-within
    .slider-next {
        transform: none;
    }

    .slider-dots {
        bottom: 30px;
    }


    /* Mobile navigation */

    .mobile-nav > .nav-link,
    .mobile-dropdown-toggle {
        padding:
            13px 17px;
    }

    .mobile-sub-link {
        padding:
            11px 17px
            11px 31px;
    }


    /* Footer */

    .footer-column table {
        font-size: 12px;
    }

    .footer-column td:first-child {
        padding-right: 7px;
    }

    .footer-column td:last-child {
        padding-left: 7px;
    }

}


/* ==================================================
   TOUCH DEVICES
================================================== */

@media (hover: none) {

    .feature-card:hover
    .feature-image img {
        transform: none;
    }

    .website-search-result:hover {
        padding-left: 18px;
    }

}




/* ==================================================
   RESPONSIVE FIXES — MOBILE / TABLET
================================================== */

@media (max-width: 1080px) {
    /* Keep slider navigation clean on touch layouts. */
    .slider-arrow,
    .slider-prev,
    .slider-next {
        display: none !important;
    }

    /* Keep the membership image treatment consistent with desktop. */
    .membership-banner {
        background-attachment: fixed;
        background-position: center center;
        background-size: cover;
    }
}

@media (max-width: 640px) {
    .mobile-sub-link {
        padding-left: 37px;
    }

    .mobile-sub-link:hover,
    .mobile-sub-link.active,
    .mobile-sub-link[aria-current="page"] {
        padding-left: 41px;
    }
}

/* ==================================================
   REDUCED MOTION
================================================== */

@media (
    prefers-reduced-motion:
    reduce
) {

    html {
        scroll-behavior: auto;
    }

    .slide,
    .slider-arrow,
    .mobile-nav,
    .mobile-dropdown-menu,
    .mobile-dropdown-icon,
    .website-search-panel,
    .website-search-results-panel,
    .website-search-result,
    .website-search-close,
    .website-search-clear {
        transition: none;
    }

    .hero-caption > * {
        opacity: 1;

        animation:
            none !important;

        transform: none;
    }

    .features-heading,
    .feature-card,
    .features-section.reveal-ready:not(.animate-in)
    .features-heading,
    .features-section.reveal-ready:not(.animate-in)
    .feature-card-left,
    .features-section.reveal-ready:not(.animate-in)
    .feature-card-right {
        opacity: 1;

        transform: none;

        transition: none;
    }

}