/* ============================================================
   THE HOUSE GOLF CLUB — Main Stylesheet
   Design Specs:
   - Headings: TeX Gyre Heros Bold 90pt, -7% letter-spacing
   - Body: PP Neue Montreal Book 14pt, 1.11 line-height
   - Colors: #e72f0d (red), #e7e3e0 (off-white), #443d2f (dark brown),
             #333333 (dark bg), #fc3500 (checkmarks), #209d50 (green)
   ============================================================ */

/* ---- Reset ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---- Custom Properties ---- */
:root {
    /* Brand Colors */
    --color-red: #e72f0d;
    --color-off-white: #e7e3e0;
    --color-cream: #e7e5e1;
    --color-black: #000000;
    --color-dark: #292929;
    --color-dark-bg: #333333;
    --color-dark-brown: #443d2f;
    --color-check-red: #e72f0d;
    --color-green-submit: #209d50;
    --color-white: #ffffff;

    /* Fonts */
    --font-heros: 'Tex Gyre Heros', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-pp: 'PP Neue Montreal', 'Neue Montreal', 'Helvetica Neue', sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;

    /* Letter Spacing */
    --ls-hero: -0.07em;
    --ls-tight-5: -0.05em;
    --ls-tight-3: -0.03em;
    --ls-tight-2: -0.02em;
    --ls-wide-6: 0.06em;
    --ls-wide-8: 0.08em;

    /* Responsive Hero Sizes */
    --size-hero-title: clamp(100px, 12vw, 157pt);
    --size-section-title: clamp(48px, 7.5vw, 90pt);
    --size-feature-item: clamp(36px, 5vw, 61pt);
    --size-ritual-item: clamp(40px, 4.5vw, 57pt);
    --size-body: 14pt;
    --size-body-sm: 11pt;
    --size-nav: 20pt;
    --size-subtitle: clamp(14px, 2vw, 20pt);
}

/* ---- @font-face declarations ---- */
@font-face {
    font-family: 'Tex Gyre Heros';
    src: url('../assets/fonts/texgyreheros-regular-webfont.woff') format('woff'),
        url('../assets/fonts/texgyreheros-regular-webfont.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tex Gyre Heros';
    src: url('../assets/fonts/texgyreheros-bold-webfont.woff') format('woff'),
        url('../assets/fonts/texgyreheros-bold-webfont.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Serif';
    src: url('../assets/fonts/InstrumentSerif-Regular.woff') format('woff'),
        url('../assets/fonts/InstrumentSerif-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../assets/fonts/PPNeueMontreal-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../assets/fonts/PPNeueMontreal-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../assets/fonts/PPNeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../assets/fonts/PPNeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../assets/fonts/PPNeueMontreal-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('../assets/fonts/PPNeueMontreal-SemiBolditalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../assets/fonts/NeueMontreal-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../assets/fonts/NeueMontreal-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../assets/fonts/NeueMontreal-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---- Base ---- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-pp);
    color: var(--color-black);
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    padding: 0 40px;
    width: 100%;
    margin-inline: auto;
}

.heading-2 {
    font-size: var(--size-section-title);
    font-family: var(--font-heros);
}

.text-uppercase {
    text-transform: uppercase;
}

.gray-font {
    color: var(--color-off-white);
}

.red-text {
    color: rgb(231, 47, 13);
}

.faq-main.red-text .faq-item-header h3 {
    font-weight: 500;
}

.faq-main.red-text .faq-item-header h3,
.faq-main.red-text .faq-item-content p {
    color: rgb(231, 47, 13);

}


.faq-item-content p {
    font-size: var(--size-body);
    line-height: 19px;
    font-family: var(--font-pp);
}

.form-page .membership-cta .faq-main .faq-item {
    border-color: rgb(231, 47, 13) !important;
    padding-left: 0;

    h3 {
        font-family: 'Tex Gyre Heros';
        font-weight: 700;
        letter-spacing: -0.07em;
    }
}

.form-page .membership-cta .faq-main .faq-item:last-child {
    border-bottom: 1px solid rgb(231, 47, 13);
}

/* house section */
.house-section-green {
    background-color: #209d50;
    padding: 60px 48px;
}

.house-section {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: center;
    position: relative;
}



/* Left — big headline */
.house-headline {
    font-family: 'Instrument Serif', serif;
    font-size: 139px;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #443d2f;
    font-weight: 400;
}

/* Right — rows */
.house-rows {
    display: flex;
    flex-direction: column;
}

.house-row {
    display: grid;
    grid-template-columns: 55% 40%;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(68, 61, 47, 0.35);
}

/* Label — TeX Gyre Heros Bold (or fallback) */
.row-label {
    font-family: 'TeX Gyre Heros', 'Arial Black', Arial, sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: rgb(68, 61, 47);
    text-transform: uppercase;
    padding-right: 33px;
}

.house-section-green .lp2-stat__cta {
    margin-top: 40px;
    color: rgb(68, 61, 47);
    font-size: 18px;
}

/* Body — PP Neue Montreal / Helvetica Neue */
.row-desc {
    font-family: 'PP Neue Montreal', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: rgb(35, 35, 35);
    font-weight: 400;
}



/* =====================
   FORM BANNER SECTION
   ===================== */

.form-banner-section {
    background-image: url(../Website-Assets/Landingpage1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 72px 0 80px;
}

.form-page-banner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ---- LEFT ---- */

.form-page-banner-title {
    font-family: 'Instrument Serif', serif;
    font-size: 160px;
    line-height: 0.92;
    letter-spacing: -0.048em;
    color: #443d2f;
    font-weight: 400;
    margin: 0 0 28px;
}

.form-page-banner-left p {
    font-family: var(--font-pp) !important;
    font-size: 20px;
    line-height: 1.4;
    color: rgb(68, 61, 47);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 28px;
}

.banner-sub-title {
    max-width: 77%;
    width: 100%;
}

.form-page-banner-left ul {
    list-style: none;
    padding: 0;
    margin: 45px 0 0;
}

.form-page-banner-left ul li {
    /* font-family: 'PP Neue Montreal', 'Helvetica Neue', Arial, sans-serif; */
    /* font-size: 18px;
    line-height: 1.9; */
    opacity: 0.7;

    font-size: var(--size-body);
    margin-top: 16px;
    line-height: 19px;
    font-family: var(--font-pp) !important;
}

/* ---- RIGHT ---- */

.form-page-banner-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.top-logo {
    display: flex;
    justify-content: end;
    margin-bottom: 32px;
}

.top-logo img {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.form-page-banner-right h4 {
    font-family: 'TeX Gyre Heros', 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #443d2f;
    text-transform: uppercase;

    margin: 0 0 38px;
    line-height: 1.4;
}

.form-page-banner-right form {
    display: flex;
    flex-direction: column;
}

.form-page-banner-right input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(68, 61, 47, 0.45);
    padding: 12px 4px;
    font-family: 'PP Neue Montreal', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    color: #443d2f;
    outline: none;
    width: 100%;
    margin-bottom: 14px;
    transition: border-color 0.2s;
    padding-left: 20px;
}

.form-page-banner-right input::placeholder {
    color: #443d2f;
    font-size: 18px;
}

.form-page-banner-right input:focus {
    border-bottom-color: #443d2f;
}

.form-page-banner-right button[type="submit"] {
    background: #443d2f;
    color: #fff;
    border: none;
    padding: 14px;
    font-family: 'TeX Gyre Heros', 'Helvetica Neue', Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 25px;
    margin-inline: auto;
    max-width: 300px;
    width: 100%;
    transition: background 0.2s;
    border-radius: 10px;
}

.form-page-banner-right button[type="submit"]:hover {
    background: #2e2820;
}

.form-banner-right-inner {
    max-width: 87%;
    width: 100%;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
}

.form-banner-right-inner .top-logo.hide-mobile {
    display: flex;
    justify-content: end;
}


.house-section-green .lp2-stat__cta.hide-desktop {
    display: none;
}

/* =====================
   GOLF BG IMAGE SECTION
   ===================== */

.golf-bg-image {
    background-image: url(../Website-Assets/Landing4.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 20px 0 50px;
    position: relative;
}

.golf-bg-image h2 {
    font-family: 'TeX Gyre Heros', 'Arial Black', Arial, sans-serif;
    font-size: clamp(160px, 22vw, 394px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 0.87;
    color: rgb(231, 227, 224);
    margin: 0;
}

.golf-left-inner {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
}

/* ---- BOTTOM PANEL ---- */

.golf-bg-bottom {
    background-color: #e7e3e0;
    padding: 20px 0 50px
}

.golf-bg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* ---- LEFT ---- */

.golg-bottom-left h4 {
    font-family: 'TeX Gyre Heros', 'Arial Black', Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.93;
    color: #443d2f;
    text-transform: uppercase;
    margin: 0;
}

/* ---- RIGHT ---- */

.golf-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.golf-right-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.golf-right-inner p {
    font-family: var(--font-pp);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: rgb(30, 30, 30);
    text-transform: uppercase;
    /* letter-spacing: 0.01em; */
    margin: 0;
}

.golf-bottom-right .lp2-stat__cta {
    margin-top: 15px;
    color: rgb(30, 30, 30);
}


/* end */


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    color: var(--color-off-white);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.15) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 40px;
}

.hero__nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    padding-right: 60px;
}

.hero__nav-item {
    font-family: var(--font-pp);
    font-weight: 400;
    font-size: var(--size-nav);
    letter-spacing: var(--ls-tight-2);
    text-transform: uppercase;
    color: var(--color-off-white);
    cursor: default;
}

.hero__brand {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
}

.hero__brand img {
    max-width: 844px;
    width: 100%;
}

.hero__title {
    font-family: var(--font-heros);
    font-weight: 700;
    font-size: clamp(60px, 15vw, 190px);
    letter-spacing: -0.06em;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-off-white);
    word-break: break-word;
}

.hero__subtitle {
    font-family: var(--font-pp);
    font-weight: 400;
    font-size: 32px;
    letter-spacing: var(--ls-logo);
    margin-top: 5px;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
    padding-left: 50px;

    span {
        letter-spacing: 95px;
    }
}

.hero__subtitle-gap {
    width: 3em;
}

.hero__menu-toggle {
    position: fixed;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--color-off-white);
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
    z-index: 9999;
}



.hero__menu-toggle:hover {
    opacity: 0.7;
}

/* ---- Hero Play Button ---- */
.hero__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--color-off-white);
    background: #2e2a2a;
    color: var(--color-off-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    transition: background 0.3s,
}

.hero__play-btn:hover {
    background: rgba(0, 0, 0, 0.5);
}

.hero__play-btn:focus,
.hero__play-btn:focus-visible {
    outline: none;
}

.hero__play-btn svg {
    width: 28px;
    height: 28px;
}

/* ---- Hero Playing State ---- */
.hero.hero--playing .hero__media {
    filter: none;
}

.hero.hero--playing .hero__overlay {
    opacity: 0;
    transition: opacity 0.5s;
}

.hero.hero--playing .hero__content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.hero.hero--playing .hero__menu-toggle {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.hero.hero--playing .hero__play-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s, visibility 0.4s;
}

/* ---- Dropdown Menu ---- */
.dropdown-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-red);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.dropdown-menu.is-open {
    opacity: 1;
    visibility: visible;
    overflow: auto;
}

.dropdown-menu__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.dropdown-menu__close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--color-off-white);
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s;
    position: fixed;
    top: 30px;
    right: 40px;
}

/* .dropdown-menu__close:hover {
    opacity: 0.7;
} */

.dropdown-menu__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.dropdown-menu__link {
    font-family: var(--font-heros);
    font-weight: 700;
    font-size: clamp(40px, 5vw, 64pt);
    letter-spacing: var(--ls-hero);
    line-height: 1.06;
    text-transform: uppercase;
    color: var(--color-dark-brown);
    transition: color 0.3s;
    padding: 8px 0;
}

.dropdown-menu__link:hover {
    color: var(--color-off-white);
}

.dropdown-menu__footer {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-pp);
    font-weight: 400;
    font-size: var(--size-nav);
    color: var(--color-off-white);
    text-transform: uppercase;
    padding-top: 40px;
    border-top: 1px solid rgba(231, 227, 224, 0.2);
}

.dropdown-menu__content .container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* ============================================================
   A NEW KIND OF CLUB
   ============================================================ */
.section--red {
    background-color: var(--color-red);
    color: var(--color-off-white);
}

.intro {
    padding: 25px 0 70px;
}

.intro__grid {
    display: grid;
    grid-template-columns: 2fr 396px;
    gap: clamp(30px, 4vw, 80px);
    align-items: end;
}

.intro__title {
    font-family: var(--font-heros);
    font-weight: 700;
    font-size: var(--size-hero-title);
    letter-spacing: var(--ls-hero);
    line-height: 0.8;
    text-transform: uppercase;
    color: var(--color-off-white);
}

.intro__body {
    padding-top: clamp(20px, 3vw, 60px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: right;
}

.intro__body p {
    font-family: var(--font-pp);
    font-weight: 400;
    font-size: 20px;
    /* line-height: 1.2; */
    line-height: 19px;
    color: var(--color-off-white);
    text-transform: uppercase;
}

.intro__image {
    background-color: var(--color-off-white);
    position: relative;
}

.intro__image-grid {
    /* display: grid;
    grid-template-columns: 47.2% 52.4%;
    align-items: end; */
    display: block;

    h2 {
        color: #443d2f;
        font-size: 78px;
        font-weight: 600;
        font-family: var(--font-heros);
        line-height: 1.06;
        letter-spacing: -5.8px;
    }

    p {
        font-size: var(--size-body);
        margin-top: 20px;
        color: rgb(68, 61, 47);
        line-height: 19px;
    }
}

.intro__image-wrap {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 48%;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom;
    }
}

.intro__image-content {

    width: 100%;
    text-align: right;
    text-transform: uppercase;
    padding: 40px 0px 60px 30px;
}

/* Member section */
.member-section {
    background-color: var(--color-green-submit);
    position: relative;

    .container {
        position: relative;
    }

    h2 {
        font-size: var(--size-section-title);
        font-family: var(--font-heros);
        color: #fffbfa;
        text-transform: uppercase;
        line-height: 0.82;
        letter-spacing: -6px;
    }

}

.league__grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem 2rem;
    margin-top: 165px;
}

.league__item p {
    color: var(--color-white);
    font-family: var(--font-heros);


    &.league__name {
        text-transform: uppercase;
        font-size: var(--size-body);
        font-weight: 700;
        letter-spacing: -0.5px;
    }
}

.league__desc {
    margin-top: 28px;
    font-size: var(--size-body);
    margin-top: 35px;
    line-height: 19px;
    font-family: var(--font-pp) !important;

}

.member-image {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    max-width: 52%;
    width: 100%;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: left;
    }
}

.member-sec-main {
    z-index: 999;
    position: relative;
    padding: 60px 0 70px;
}

.home-faq {
    background-color: var(--color-check-red);
    padding: 40px 0;

    h2 {
        letter-spacing: -0.07em;
    }
}

.faq-toggle {
    background-color: transparent;
    border: 0;
    padding: 0;

    img {
        width: 100px;
    }
}

.faq-top {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 20px;

    p {
        font-size: var(--size-body);
        margin-top: 25px;
        line-height: 19px;
        max-width: 480px;
        width: 100%;
        font-family: var(--font-pp) !important;
        letter-spacing: 10%;
    }
}


.faq-item .faq-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.faq-item-header h3 {
    font-size: var(--size-ritual-item);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -4.5px;
    color: #fffbfa;
    text-transform: uppercase;
}

.faq-item-content {
    font-size: var(--size-body);
    color: #fff;
    font-family: var(--font-pp) !important;
    line-height: 19px;
    padding-top: 10px;
    max-width: 61%;

    p:not(:last-child) {
        margin-bottom: 20px;
    }
}

.faq-item {
    border-top: 1px solid var(--color-off-white);

    padding: 16px 25px;
}


.faq-main {
    display: flex;
    flex-direction: column;
}



.faq-item-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
}

.faq-item-header h3 {
    margin: 0;
    max-width: calc(100% - 120px);
    width: 100%;
    word-break: break-word;
}

.faq-toggle {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.faq-toggle img {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle img {
    transform: rotate(180deg);
}

.faq-item-content {
    display: none;
    padding-block: 20px;
}

.faq-item.active .faq-item-content {
    display: block;
}

/*  */
.membership-cta {
    background-image: url(../Website-Assets/home-6-1.jpg);
    background-size: cover;
    background-position: center bottom -70px;
    padding: 60px 0 64px;

    .faq-item {
        padding: 8px 25px;
        text-transform: uppercase
    }
}

.form-page-membership {
    padding-bottom: 50px;
}

.membership-cta-main>h2 {
    line-height: 0.8;
    letter-spacing: -5.9px;
}

.membership-cta-main .faq-main {
    margin-top: 160px;
    max-width: 57%;
    width: 100%;
}

.membership-cta-main .faq-item {
    padding-inline: 10px;
}

.membership-cta-main .faq-item:last-child {
    border-bottom: 1px solid var(--color-off-white);
}


/* contact section */
.contact-section {
    text-transform: uppercase;

    .white-bg-desc {
        word-break: break-all;
        max-width: 60.5%;
        width: 100%;
        padding: 36px 25px;
        background-color: #fff;
        color: var(--color-red);

        h2 {
            letter-spacing: -0.07em;
        }

        p {
            font-size: 30px;
            letter-spacing: -0.07em;
            line-height: 1.06;
            font-family: var(--font-hero);
            font-weight: 400;
            padding-right: 140px;
            margin-block: 30px 90px;
        }

        ul {
            max-width: 429px;
            width: 100%;
        }

        li {
            font-size: var(--size-body);
            color: var(--color-red);
            font-family: var(--font-pp) !important;

            &:not(:last-child) {
                margin-bottom: 14px;
            }
        }

    }

}

.contact-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contect-form-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 0 0 30px;

    h4 {
        font-family: var(--font-heros);
        font-size: 22px;
        font-weight: 400;
        line-height: 0.8;
        letter-spacing: 6px;
        margin-bottom: 10px;
        color: #e7e3e0;
        text-align: left;
    }

    p {
        font-size: 12pt;
        margin-bottom: 40px;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 1px;
        font-family: var(--font-pp) !important;
    }
}



.contect-form-right form {
    display: flex;
    flex-direction: column;
    gap: 10px;

    input {
        border-top: 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid #fff;
        padding: 14px 0px 10px 10px;
        color: #fff;
        background-color: transparent;
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 15px;
        width: 100%;

        &:focus {
            outline: none;
        }
    }

    small.error-message {
        color: #000000;
    }

    ::placeholder {
        color: var(--color-off-white);
        opacity: 1;
        font-family: var(--font-pp);
        font-weight: 300;
    }

    button {
        background-color: #fff;
        color: var(--color-red);
        font-family: var(--font-heros);
        font-size: 22px;
        padding: 16px;
        border: 0;
        cursor: pointer;
        text-transform: uppercase;
        display: inline-block;
        max-width: 350px;
        width: 100%;
        margin-inline: auto;
        border-radius: 10px;
        line-height: 1;
        margin-top: 60px;
    }
}

.image-with-faq-main {
    display: flex;
    flex-wrap: wrap;

    img {
        height: 100%;
        object-fit: cover;
    }
}

.image-with-faq {
    background: rgb(160, 96, 39);
    position: relative;
}

.image-with-faq-left {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 48%;

    img {
        height: 100%;
    }
}

.image-with-faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: right;
    padding: 80px 0px 80px 30px;

    h2 {
        margin-bottom: 40px;
        font-size: 94px;
        letter-spacing: -0.077em;
    }

    p {
        color: var(--color-off-white);
    }
}

.faq-right-text {
    max-width: 380px;
    margin-left: auto;
    text-transform: uppercase;

    strong {
        display: block;
    }

    p {
        font-size: var(--size-body-sm);
        margin-bottom: 15px;
        line-height: 15px;

        span {

            /* font-size: var(--size-body);
            line-height: 19px; */
            font-family: var(--font-pp) !important;
        }


        &:last-child {
            margin-bottom: 0px;

        }
    }
}

footer {
    background-color: #333;
    padding: 15px 0;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;

    img {
        max-width: 310px;
        width: 100%;
        filter: invert(1);
    }
}

.footer-text {
    color: rgb(231, 227, 224);
    text-align: right;
    text-transform: uppercase;
}

.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}



.hero__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__play-btn.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* Form page */
.lp2-stat--orange {
    background-color: #fc3500;
    position: relative;
    color: var(--color-white);
    padding: 20px 0;
    overflow: hidden;
}

.lp2-stat--orange .image-content {
    position: absolute;
    top: 0;
    z-index: 9;
    left: 0;
    bottom: 0;
    line-height: 0.8;
    padding: 50px;
    width: 97%;

    h2 {
        font-size: 293px;
    }

    h4 {
        text-transform: uppercase;
        font-size: 44px;
        line-height: 1;
        text-align: right;
        margin-top: 50px;
    }
}

.lp2-stat--orange .lp2-stat__content {
    flex: 1;
    width: 100%;
    padding-left: 30px;
    gap: 20px;
}

.lp2-stat__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0.5rem;
    max-width: 50%;
    width: 100%;
}

.lp2-stat--orange .lp2-stat__content {
    max-width: 50%;
    width: 100%;
    justify-content: space-between;
}

.lp2-stat--orange .lp2-stat__figure {
    position: relative;
    max-width: 70.4%;
    width: 100%;
}

.lp2-stat__figure figure {
    border-radius: 10px;
    overflow: hidden;

}

.lp2-stat__figure figure img {
    height: 720px;
}

.lp2-stat--orange .lp2-stat__layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lp2-stat__layout .lp2-stat__cta {
    width: 100%;
}

.lp2-stat__cta {
    /* font-family: var(--font-pp); */
    font-family: 'Tex Gyre Heros';
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 7rem;
    align-self: flex-end;
    margin-top: 7rem;
    align-self: flex-end;
    display: flex;
}


.lp2-stat__cta {
    img {
        width: 55px;
        object-fit: contain;
        margin-left: 12px;
    }
}

.lp2-stat__body {
    font-size: 18px;
    text-transform: uppercase;
    color: rgb(231, 227, 224);

}

.golf-bg-bottom .hide-desktop {
    display: none;
}

header {
    padding: 15px 0;
    position: fixed;
    background-color: #fff;
    z-index: 9999;
    top: 0;
    width: 100%;
}

header ul {
    display: flex;
    justify-content: end;
    gap: 20px;

    li {
        a {
            color: #304254;
            font-weight: 400;
            font-size: 15px;

            &.active {
                color: #000;
                font-weight: 500;
            }
        }
    }
}

header .container {
    max-width: 100%;
    padding: 0 20px;
}

.form-page small.error-message {
    color: red;
    font-size: 16px;
}



/* Toast Notification - Top Right */
.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #209D50;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    font-family: Arial, sans-serif;
    min-width: 280px;
    max-width: 400px;
}

.toast.error {
    background: #c62828;
}

.toast.show {
    display: flex;
    animation: slideInRight 0.4s ease forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.error-message {

    color: #ff4d4f;

    font-size: 13px;

    margin-top: 6px;

    display: block;
}

input.error {

    border-color: #ff4d4f !important;
}

.lp2-stat__layout .mobile-btn {
    display: none;
}

@media(width<=1500px) {
    .hero__nav {
        padding-right: 100px;
    }
}

/* responsive */
@media(width<=1024px) {
    .form-page-banner-row {
        grid-template-columns: 1fr;
    }

    .form-banner-right-inner {
        max-width: 100%;
    }

    .top-logo.hide-mobile {
        display: none;
    }

    .top-logo.hide-desktop {
        display: block;
    }

    .form-page-banner-title {
        font-size: 95px;
        line-height: 75px;
        letter-spacing: -5%;
    }

    .top-logo {
        margin-bottom: 25px;
    }

    .form-banner-section {
        padding: 25px 0 40px;
    }

    .form-page-banner-left p {
        width: clamp(202px, 50%, 100%);
    }

    .form-page-banner-left ul {
        text-align: right;

        li {
            line-height: 1.6;

        }
    }

    .house-headline {
        font-size: 48px;
        line-height: 1;
        letter-spacing: -1.3%;
    }

    .house-section-green {
        padding: 0px;
        background-color: #222222;
    }

    .house-section {
        grid-template-columns: 1fr;
    }

    .house-headline,
    .row-label,
    .row-desc {
        color: var(--color-off-white);
    }

    .house-row {
        border-top: 0px;
        padding: 10px 0;
    }

    .house-section {
        gap: 20px;
    }

    .row-desc,
    .row-label {
        font-size: 12px;
    }

    .house-section {
        padding: 30px 0;
    }

    .house-section-green .lp2-stat__cta {
        color: var(--color-off-white);
        margin-top: 25px;
        width: 100%;
    }

    .house-section .house-rows h2 {
        margin-top: 20px;
    }

    .house-section-green .hide-desktop img:not(.lp2-stat__cta img) {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }

    .house-section a.lp2-stat__cta.desktop-btn.hide-desktop {
        display: flex;
    }
}

@media(width<=768px) {
    .container {
        padding: 0 20px;
    }

    .heading-2 {
        font-size: 64px;
        letter-spacing: -0.05em;
        line-height: 1;
    }

    .hero {
        min-height: 500px;
        height: calc(100dvh - 48px);
    }

    .hero__subtitle span {
        letter-spacing: 20px;
    }

    .hero__content {
        flex-direction: column-reverse;
        padding: 15px;
    }

    .hero__nav {
        gap: 1.25rem;
        font-size: 1rem;
        padding: 0 0px 30px;
    }

    .hero__nav span {
        font-size: 20px;
    }

    .hero__subtitle {
        padding-left: 0;
        font-size: 20px;
    }

    .hero__title {
        font-size: 90px;
        text-align: left;
    }

    .hero__menu-toggle {
        right: 10px;
    }

    .hero__play-btn {
        width: 56px;
        height: 56px;
        bottom: 25px;
    }

    .hero__play-btn svg {
        width: 14px;
        height: 18px;
    }

    .hero__close-btn {
        left: 20px;
        top: 20px;
        width: 40px;
        height: 40px;
    }

    .intro__title {
        font-size: 105px;
        line-height: 1;
        letter-spacing: -7px;
    }

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

    .intro__image-grid {
        display: block;
    }

    .intro__body {
        max-width: 270px;
        margin-left: auto;
    }

    .intro {
        padding: 25px 0 40px;
    }

    .intro__image-grid .intro__image-wrap {
        position: relative;
        max-width: 100%;
        width: 100%;

        img {
            height: 405px;
        }
    }

    .intro__body p {
        font-size: 14px;
        line-height: 17px;
    }

    .intro__image {
        padding: 30px 0 25px;
    }

    .intro__image-grid h2 {
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 20px;
        letter-spacing: -4%;
    }

    .hide-mobile {
        display: none;
    }


    .lp2-stat__layout .mobile-btn {
        display: flex;
    }

    .hide-desktop {
        display: block;
    }

    .intro__image-grid p {
        text-align: left;
        font-size: 16px;
        line-height: 18px;
        color: #333;
        margin: 0;
    }

    .intro__image-content {
        padding-block: 25px 0;
        padding-left: 0;
    }

    .member-section .container {
        padding: 0 10px;
    }

    .member-sec-main {
        padding: 25px 0;

        h2 {
            font-size: 64px;
            line-height: 1;
            letter-spacing: -7%;
            padding: 0 10px;
        }

    }

    .league__grid {
        grid-template-columns: 1fr 1fr;
        gap: 0px;
        display: grid;
        margin-top: 30px;
        background-color: #209D50;
        padding: 20px 10px 55px;
    }

    .league__item:nth-child(even) {
        padding-left: 15px;
    }

    .league__item:not(:nth-child(-n+2)) {
        border-top: 1px solid #FFFFFF;
        margin-top: 30px;
        padding-top: 15px;
    }

    .league__item p {
        font-weight: 400;
        margin-top: 7px;
        font-size: 14px;

        &.league__name {
            font-weight: 400;
        }

        .league__name {
            font-size: 20px;
            font-weight: 400;
        }

        .league__desc {
            margin-top: 8px;
        }
    }

    .faq-top p {
        margin-top: 5px;
    }

    .home-faq {
        padding: 25px 0;

        h2 {
            letter-spacing: -0.05em;
            margin-bottom: 10px;
        }
    }

    .faq-item-content {
        font-size: 16px;
        max-width: 100%;
        padding-top: 10px;
    }

    .member-image {
        max-width: 100%;
    }

    .faq-item-content p {
        font-size: 15px;
    }

    .faq-item {
        padding: 10px 0px;

        h3 {
            letter-spacing: 0;
            max-width: calc(100% - 60px);
            font-size: 40px;
        }
    }

    .faq-toggle {
        img {
            width: 40px;
        }
    }

    .mobile-btn {
        display: flex;
        align-items: end;
    }

    .membership-cta {
        background-color: #222222;
        padding: 25px 0 40px;
        background-image: unset;

        .faq-item {
            padding: 8px 0px;
            text-transform: uppercase;
        }
    }

    .membership-cta-main .faq-main {
        margin-top: 10px;
        max-width: 100%;
        width: 100%;
    }

    .membership-cta-main img {
        margin-top: 10px;
    }

    .contact-section .container {
        padding: 0;
    }

    .contact-section {
        .white-bg-desc {
            max-width: 100%;
            max-width: 100%;
            padding: 30px 20px;

            h2 {
                font-size: 50px;
            }

            p {
                padding-right: 0;
                font-size: 24px;
                margin-block: 20px;
                letter-spacing: -4%;
                word-break: break-word;
            }

            li {
                font-size: 16px;
            }
        }
    }

    .form-banner-section {
        background-image: none;
        background-color: #E7E5E0;
    }

    .form-page small.error-message {
        font-size: 12px;
        margin-top: 3px;
    }

    .contect-form-right {
        padding: 40px 20px 60px;

        form {
            gap: 0;
        }

        h4 {
            font-size: 15px;
            line-height: 1.3;
            letter-spacing: 30%;
            margin-bottom: 5px;
        }

        p {
            margin-bottom: 30px;
            font-size: 11px;
            line-height: 1;
        }

        input {
            margin-bottom: 12px !important;
            font-size: 15px !important;
        }

    }

    .form-page-banner-right input::placeholder {
        font-size: 12px;
    }

    .contect-form-right button {
        margin-top: 30px !important;
        max-width: 210px !important;
        padding: 12px !important;
        font-size: 16px !important;
    }

    .image-with-faq .container {
        padding: 0;
    }

    .image-with-faq-left {
        max-width: 100%;
        position: relative;

        img {
            height: 375px;
        }
    }

    .image-with-faq-right {
        padding: 30px 20px;

        p {
            line-height: 1.1;
        }
    }

    .image-with-faq {
        position: relative;
    }

    .image-with-faq-right h2 {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 64px;
    }


    .footer-text p {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .dropdown-menu {
        overflow: auto;
    }

    .dropdown-menu__content {
        padding: 55px 0;
    }

    .dropdown-menu__nav .dropdown-menu__link {
        margin-bottom: 20px;
    }

    .dropdown-menu__close {
        right: 10px;
        /* top: 0px; */
    }

    .dropdown-menu__close img {
        width: 50px;
        filter: invert(1);
    }

    .dropdown-menu__footer {
        font-size: 18px;
    }

    .form-page-banner-left p {
        font-size: 16px;
        line-height: 17px;
        letter-spacing: -2%;
        margin-bottom: 25px;
    }


    .form-page-banner-row {
        gap: 27px;
    }

    .form-page-banner-left ul {
        margin-top: 30px;
    }

    .form-page-banner-right h4 {
        letter-spacing: 28%;
        font-size: 20px;
    }

    .form-page-banner-right input {
        padding: 5px 4px 5px 5px;
        margin-bottom: 10px;
        font-size: 12px;
    }

    .form-page-banner-right button[type="submit"] {
        font-size: 16px;
        padding: 10px;
        max-width: 200px;
        margin-top: 20px;
    }

    .form-page-banner-left ul li {
        margin-top: 3px;
        font-size: 12px;
        line-height: 1;
        letter-spacing: -1%;
    }

    .lp2-stat__content {
        position: relative;

        figure {

            width: calc(100% + 60px);
            margin-top: -240px;
            height: 402px;
            position: relative;
            left: -30px;

            img {
                height: 100%;
            }
        }

        .lp2-stat__body {
            p {
                position: relative;
                z-index: 2;
                line-height: 17px;
            }
        }
    }

    .lp2-stat__cta {
        img {
            width: 185px;
            object-fit: contain;
            margin-left: 12px;
            flex: 1;
        }
    }

    .house-rows {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 35px;
        margin-top: 10px;
    }

    .house-section {
        gap: 10px;
    }

    .row-desc,
    .row-label {
        font-size: 12px;
        line-height: 1;
        font-weight: 500;
        letter-spacing: -1%;
    }

    .row-desc {
        font-weight: 300;
        margin-top: 3px;
    }

    .house-row {
        display: block;
    }

    .lp2-stat--orange .lp2-stat__figure,
    .lp2-stat--orange .lp2-stat__content {
        max-width: 100%;
    }

    .lp2-stat__figure {
        display: none;
    }

    .lp2-stat__content .lp2-stat__number {
        font-size: clamp(140px, 10vw, 170px);
        line-height: 0.85;
        font-weight: 700;
    }

    .lp2-stat--orange .lp2-stat__content {
        padding-left: 0;
    }

    .lp2-stat__body {
        max-width: 180px;
        margin-top: 8px;
        width: 100%;
        margin-left: auto;
        font-size: 15px;
    }

    .lp2-stat__layout .lp2-stat__cta {
        margin-top: -35px;
        font-weight: 700;
        z-index: 3;
    }

    .lp2-stat__layout {
        padding-inline: 30px;
    }

    .golf-bg-image-section {
        /* background-image: url(../Website-Assets/Landingpage1and4mobile.png); */
        background-color: #209D50;
    }

    .golf-bg-row {
        grid-template-columns: 131px 1fr;
        padding-right: 20px;
        gap: 46px;
    }

    .golf-bg-image {
        background-image: unset;
        padding: 25px 0 0;
    }

    .golf-bg-bottom .container {
        padding: 0;
    }

    .golg-bottom-left {
        max-width: 131px;
        width: 100%;
        height: 100%;

        img {
            height: 100%;
        }
    }

    .golf-right-inner p {
        font-size: 15px;
        letter-spacing: -2%;
        color: #fff;
    }

    .golf-bg-image-section {
        a.lp2-stat__cta.desktop-btn.hide-desktop {
            font-size: 21px;
        }
    }

    .golf-bg-bottom {
        background-color: transparent;
        padding-bottom: 30px;
        margin-top: 7px;

        a.lp2-stat__cta.desktop-btn.hide-desktop {
            display: flex;
            margin-top: 57px;
            padding-inline: 20px;
            color: #fff;
            /* img{
                filter: invert(1);
            } */
        }
    }

    .golf-bg-bottom .hide-desktop {
        display: block;
    }

    .lp2-stat__cta {
        font-weight: 700;
        font-size: 24px;
    }

    .golf-bg-image h4 {
        font-size: 48px;
        color: #fff;
        font-family: "Instrument Serif", serif;
        font-weight: 300;
        line-height: 40px;
        margin-top: 10px;
    }

    .golf-bg-image h2 {
        color: #fff;
        line-height: 0.85;
    }

    .form-page-membership {
        position: relative;
        min-height: 550px;


        /* .membership-cta-main img {
            margin-top: 0;
        } */

        .faq-main {
            position: relative;
            z-index: 999;
            /* margin-top: 75px; */
        }

        .faq-toggle img {
            filter: brightness(0) invert(1)
        }
    }

    .faq-main.red-text .faq-item-header h3,
    .faq-main.red-text .faq-item-content p {
        color: var(--color-off-white);
    }

    .form-page .membership-cta .faq-main .faq-item {
        border-color: var(--color-off-white) !important;
    }

    .form-page .membership-cta .faq-main .faq-item {
        h3 {
            font-weight: 400;
        }
    }

    .footer-text {
        margin-top: 5px;
    }

    .form-page-member-image {
        /* position: absolute;
        top: 0;
        left: 0;
        z-index: 99;
        height: 100%;
        width: 100%;

        &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background-color: #0000003b;
        } */


        img {
            width: 100%;
            height: 100%;
        }
    }

    .membership-cta-main>h2 {
        position: relative;
        z-index: 9999;
        line-height: 1;
    }

    .form-page-membership .faq-item-header,
    .membership-cta-main h2 {
        color: var(--color-off-white);
    }
    .row-label{
        padding-right: 25px;
                font-family: var(--font-pp);
    }


}


@media (max-width: 385px) {
    .lp2-stat__cta {
        font-size: 18px;
    }

    .form-page-banner-right h4 {
        letter-spacing: 22%;
    }

    .house-headline {
        font-size: 43px;  
    }
}