.about-hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        #000;
    padding: 10vw 0;
    text-align: center;
}

.membership-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    overflow: hidden;
    padding: 10vw 0;
}

.membership-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.membership-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.membership-hero-inner {
    position: relative;
    z-index: 3;
}

.membership-hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.4rem, 6vw, 5.6rem);
    text-transform: uppercase;
    color: var(--membership-white);
    letter-spacing: 0.04em;
    margin: 0;
}

.membership-details,
.membership-details-alt {
    background: var(--membership-black);
    padding: 70px 0 90px;
}

.about-hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.6rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.about-main {
    background: #000;
    padding: 80px 0 110px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 3.5rem;
}

.about-left h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
}

.about-block h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #ccb957;
    margin: 1.5rem 0 0.8rem;
}

.about-block p {
    color: #fff;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.about-image img,
.about-side-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    display: block;
}

.about-image {
    margin: 2rem 0;
}

.about-values {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}

.about-values li {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.about-values li::before {
    content: "•";
    color: #ccb957;
    position: absolute;
    left: 0;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

.about-menu {
    background: #025602;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
}

.about-menu-item {
    display: block;
    color: #fff;
    padding: 16px 24px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.about-menu-item:last-child {
    border-bottom: none;
}

.about-menu-item.highlight {
    color: #ccb957;
}

.about-demo-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    background: #ccb957;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.about-cta {
    position: relative;
    background-image: linear-gradient(180deg, #000 0%, rgba(19, 23, 54, 0) 100%),
        url("https://golfenvy.com/wp-content/uploads/2025/04/66b266f4ea44fc74e1af93ca.jpg");
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    text-align: center;
    color: #fff;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.about-cta-logo {
    max-width: 260px;
    width: 100%;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.about-cta-btn {
    padding: 16px 40px;
    border-radius: 50px;
    background: #ccb957;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.about-cta-contact p {
    margin: 0.3rem 0;
    font-size: 1rem;
}

.about-cta-social {
    display: flex;
    gap: 1rem;
}

.about-cta-social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #ccb957;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-right {
        align-items: center;
    }

    .about-menu,
    .about-side-image,
    .about-demo-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .about-main {
        padding: 70px 0 90px;
    }

    .about-cta {
        padding: 90px 0;
    }

    .about-cta-logo {
        max-width: 210px;
    }
}

/* ================================
   START: Site Footer
   ================================ */

.site-footer {
    background: #0b5d1e;
    padding: 16px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 34px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-link {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-link:hover {
    color: #d4af37;
}

.footer-sep {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 700;
}

/* Social icons pinned right */
.footer-social {
    position: absolute;
    right: 0;
    display: flex;
    gap: 14px;
}

.footer-social-link {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.footer-social-link:hover {
    color: #d4af37;
}

.title-color {
    color: #fff!important;
}

@media (max-width: 576px) {
    .membership-hero {
        min-height: 50vh;
    }

    .membership-cta {
        padding: 80px 0;
    }

    .membership-btn {
        width: 100%;
    }

    .about-cta {
        padding: 90px 0;
    }

    .about-cta-logo {
        max-width: 210px;
    }
}

/* Mobile: stack and center */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social {
        position: static;
    }
}

/* ================================
   END: Site Footer
   ================================ */