/* =========================================================
   M CLUB HOLIDAYS
   PREMIUM MEMBERSHIP LANDING PAGE
   ========================================================= */


/* =========================================================
   01. ROOT / VARIABLES
========================================================= */

:root {

    --forest: #0d3025;
    --forest-dark: #071d17;
    --forest-light: #174638;

    --gold: #c9a45c;
    --gold-light: #e0bd75;
    --gold-dark: #a9833d;

    --cream: #f8f5ed;
    --ivory: #fcfaf5;

    --white: #ffffff;

    --text: #1d2924;
    --text-light: #65706a;
    --text-white: #f8f8f5;

    --border: rgba(13, 48, 37, 0.14);

    --shadow:
        0 20px 60px rgba(5, 27, 20, 0.10);

    --shadow-dark:
        0 20px 60px rgba(0, 0, 0, 0.25);

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;

    --container: 1240px;

    --transition:
        all 0.35s ease;

}


/* =========================================================
   02. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {

    font-family: var(--sans);

    background: var(--ivory);

    color: var(--text);

    font-size: 16px;

    line-height: 1.7;

    overflow-x: hidden;

}


img {
    display: block;
    width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


ul {
    list-style: none;
}


/* =========================================================
   03. COMMON
========================================================= */

.container {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

}


.section {
    padding: 110px 0;
}


.eyebrow {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: var(--gold);

    margin-bottom: 18px;

}


.eyebrow.dark {
    color: var(--gold-dark);
}


.eyebrow.gold {
    color: var(--gold-light);
}


h1,
h2,
h3,
h4 {

    font-family: var(--serif);

    font-weight: 500;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    min-height: 52px;

    padding: 0 28px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: var(--transition);

    border: 1px solid transparent;

}


.btn span {

    font-size: 18px;

    line-height: 1;

    transition: var(--transition);

}


.btn:hover span {
    transform: translateX(5px);
}


.btn-gold {

    color: var(--forest-dark);

    background: var(--gold);

    border-color: var(--gold);

}


.btn-gold:hover {

    background: var(--gold-light);

    border-color: var(--gold-light);

    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(201, 164, 92, 0.25);

}


.btn-dark {

    color: var(--white);

    background: var(--forest);

    border-color: var(--forest);

}


.btn-dark:hover {

    background: var(--forest-light);

    transform: translateY(-2px);

}


.btn-outline {

    color: var(--white);

    border-color: var(--gold);

    background: transparent;

}


.btn-outline:hover {

    background: var(--gold);

    color: var(--forest-dark);

}


/* =========================================================
   04. HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        padding 0.35s ease;

}


.site-header.scrolled {

    background: rgba(7, 29, 23, 0.96);

    backdrop-filter: blur(12px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.12);

}


.header-inner {

    height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   05. LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--white);

}


.logo-m {

    font-family: var(--serif);

    font-size: 48px;

    line-height: 1;

    color: var(--gold);

    font-weight: 500;

}


.logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.logo-text strong {

    font-size: 18px;

    font-weight: 600;

    letter-spacing: 4px;

}


.logo-text small {

    margin-top: 5px;

    font-size: 8px;

    letter-spacing: 4px;

    color: var(--gold-light);

}


/* =========================================================
   06. DESKTOP NAVIGATION
========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 32px;

}


.main-nav > a {

    color: rgba(255,255,255,0.90);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    position: relative;

}


.main-nav > a:not(.nav-button)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition: width 0.3s ease;

}


.main-nav > a:not(.nav-button):hover::after {
    width: 100%;
}


.nav-button {

    padding: 12px 18px;

    background: var(--gold);

    color: var(--forest-dark) !important;

}


.nav-button:hover {

    background: var(--gold-light);

}


/* =========================================================
   07. MOBILE MENU TOGGLE
========================================================= */

.menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    border: 1px solid rgba(255,255,255,0.35);

    background: transparent;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.menu-toggle span {

    display: block;

    width: 21px;

    height: 1px;

    background: var(--white);

    transition: var(--transition);

}


.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(6px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-6px)
        rotate(-45deg);

}


/* =========================================================
   08. MOBILE NAVIGATION
========================================================= */

.mobile-nav {

    position: fixed;

    top: 88px;

    left: 0;

    width: 100%;

    z-index: 999;

    padding: 25px 30px 30px;

    background: rgba(7, 29, 23, 0.98);

    backdrop-filter: blur(15px);

    transform:
        translateY(-120%);

    opacity: 0;

    pointer-events: none;

    transition:
        transform 0.4s ease,
        opacity 0.4s ease;

}


.mobile-nav.active {

    transform: translateY(0);

    opacity: 1;

    pointer-events: auto;

}


.mobile-nav a {

    display: block;

    padding: 15px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.10);

    color: var(--white);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.mobile-register {

    margin-top: 15px;

    padding: 15px !important;

    text-align: center;

    background: var(--gold);

    color: var(--forest-dark) !important;

    border: 0 !important;

}


/* =========================================================
   09. HERO
========================================================= */

.hero {

    position: relative;

    min-height: 100vh;

    min-height: 760px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white);

}


.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-background img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    animation:
        heroZoom 16s ease-out forwards;

}


@keyframes heroZoom {

    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1);
    }

}


.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(4, 20, 15, 0.88) 0%,
            rgba(4, 20, 15, 0.67) 40%,
            rgba(4, 20, 15, 0.18) 80%,
            rgba(4, 20, 15, 0.20) 100%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    padding-top: 70px;

}


.hero h1 {

    font-size: clamp(
        48px,
        6vw,
        82px
    );

    line-height: 1.04;

    letter-spacing: -1.5px;

    margin-bottom: 22px;

}


.hero h1 span {

    color: var(--gold-light);

}


.hero-subtitle {

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 24px;

    color: rgba(255,255,255,0.85);

}


.hero-description {

    max-width: 650px;

    color: rgba(255,255,255,0.84);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 18px;

}


.hero-exclusive {

    color: var(--gold-light);

    font-weight: 600;

    font-size: 14px;

    margin-bottom: 32px;

}


.hero-buttons {

    display: flex;

    gap: 15px;

}


.scroll-indicator {

    position: absolute;

    z-index: 3;

    bottom: 28px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    color: rgba(255,255,255,0.75);

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: 2px;

}


.scroll-icon {

    width: 27px;

    height: 37px;

    border: 1px solid rgba(255,255,255,0.6);

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

}


/* =========================================================
   10. TRANSFORMATION
========================================================= */

.transformation {

    background: var(--cream);

}


.transformation-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 75px;

    align-items: center;

}


.transformation-content h2 {

    font-size: clamp(
        38px,
        4.5vw,
        61px
    );

    line-height: 1.1;

    color: var(--forest);

    margin-bottom: 28px;

}


.transformation-content h2 span {

    color: var(--gold-dark);

}


.transformation-content p {

    color: var(--text-light);

    font-size: 15px;

    max-width: 520px;

    margin-bottom: 18px;

}


.transformation-content .btn {

    margin-top: 18px;

}


.transformation-image {

    position: relative;

    height: 530px;

    overflow: hidden;

}


.transformation-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(0,0,0,0.55)
        );

    pointer-events: none;

}


.transformation-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;

}


.transformation-image:hover img {

    transform: scale(1.04);

}


.image-label {

    position: absolute;

    z-index: 2;

    top: 25px;

    display: flex;

    flex-direction: column;

    gap: 3px;

    color: var(--white);

}


.image-label.before {

    left: 25px;

}


.image-label.after {

    right: 25px;

    text-align: right;

}


.image-label small {

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 700;

}


.image-label strong {

    font-size: 12px;

    letter-spacing: 1px;

}


/* =========================================================
   11. EXPERIENCE
========================================================= */

.experience {

    background: var(--forest);

    color: var(--white);

    padding: 75px 0;

}


.experience-wrapper {

    display: grid;

    grid-template-columns:
        250px
        1fr;

    gap: 50px;

    align-items: center;

}


.experience-intro {

    border-right:
        1px solid rgba(201,164,92,0.35);

    padding-right: 35px;

}


.experience-intro h2 {

    font-size: 34px;

    line-height: 1.2;

}


.experience-intro h2 span {

    color: var(--gold-light);

}


.experience-items {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

}


.experience-item {

    text-align: center;

    padding: 10px 22px;

    border-right:
        1px solid rgba(255,255,255,0.10);

}


.experience-item:last-child {

    border-right: 0;

}


.experience-icon {

    width: 50px;

    height: 50px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--gold);

    border-radius: 50%;

    color: var(--gold-light);

    font-size: 22px;

}


.experience-item h3 {

    color: var(--gold-light);

    font-size: 15px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 8px;

}


.experience-item p {

    color: rgba(255,255,255,0.62);

    font-size: 11px;

    line-height: 1.6;

}


/* =========================================================
   12. JOURNEY / VIDEO
========================================================= */

.journey {

    background: var(--ivory);

}


.section-heading {

    max-width: 700px;

    margin:
        0 auto 45px;

    text-align: center;

}


.section-heading h2 {

    font-size: clamp(
        40px,
        5vw,
        62px
    );

    line-height: 1.1;

    color: var(--forest);

    margin-bottom: 18px;

}


.section-heading h2 span {

    color: var(--gold-dark);

}


.section-heading > p:last-child {

    color: var(--text-light);

    font-size: 14px;

}


.video-wrapper {

    position: relative;

    width: 100%;

    max-width: 1050px;

    height: 580px;

    margin: 0 auto;

    overflow: hidden;

    background: var(--forest-dark);

    box-shadow: var(--shadow);

}


.video-wrapper video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.video-wrapper::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.30)
        );

    pointer-events: none;

}


.video-play {

    position: absolute;

    z-index: 3;

    top: 50%;

    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 82px;

    height: 82px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,0.8);

    background:
        rgba(8,29,23,0.35);

    backdrop-filter: blur(8px);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: var(--transition);

}


.video-play span {

    margin-left: 4px;

    font-size: 23px;

}


.video-play:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: var(--forest-dark);

    transform:
        translate(-50%, -50%)
        scale(1.08);

}


.video-play.playing {

    opacity: 0;

    pointer-events: none;

}


.video-wrapper:hover .video-play.playing {

    opacity: 1;

    pointer-events: auto;

}


.video-duration {

    position: absolute;

    z-index: 4;

    left: 25px;

    bottom: 22px;

    color: var(--white);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 600;

}


.video-duration span {

    color: var(--gold-light);

    font-size: 15px;

    margin-right: 6px;

}


/* =========================================================
   13. MEMBERSHIP
========================================================= */

.membership {

    background: var(--forest-dark);

    color: var(--white);

    padding: 110px 0;

}


.membership-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 80px;

    align-items: center;

}


.membership-content h2 {

    font-size: clamp(
        37px,
        4.5vw,
        58px
    );

    line-height: 1.12;

    margin-bottom: 25px;

}


.membership-content > p {

    color: rgba(255,255,255,0.68);

    max-width: 480px;

    font-size: 14px;

}


.membership-divider {

    color: var(--gold);

    margin: 30px 0;

    display: flex;

    align-items: center;

    gap: 15px;

}


.membership-divider::before,
.membership-divider::after {

    content: "";

    width: 65px;

    height: 1px;

    background:
        rgba(201,164,92,0.45);

}


.membership-content h3 {

    font-size: 30px;

    line-height: 1.25;

    color: var(--gold-light);

    max-width: 500px;

    margin-bottom: 30px;

}


/* =========================================================
   14. REGISTRATION FORM
========================================================= */

.registration-box {

    padding: 40px;

    background:
        rgba(255,255,255,0.055);

    border:
        1px solid rgba(255,255,255,0.10);

    box-shadow:
        0 20px 70px rgba(0,0,0,0.15);

}


.registration-box h2 {

    font-size: 36px;

    margin-bottom: 5px;

}


.form-intro {

    color: rgba(255,255,255,0.60);

    font-size: 13px;

    margin-bottom: 27px;

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 16px;

}


.form-group {

    margin-bottom: 17px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,0.82);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.5px;

}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border:
        1px solid rgba(255,255,255,0.16);

    background:
        rgba(255,255,255,0.96);

    color: var(--text);

    padding:
        13px 14px;

    outline: none;

    font-size: 13px;

    border-radius: 0;

    transition: var(--transition);

}


.form-group input,
.form-group select {

    height: 47px;

}


.form-group textarea {

    resize: vertical;

    min-height: 90px;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(201,164,92,0.10);

}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #969d99;

}


.form-group select {

    cursor: pointer;

}


.form-submit {

    width: 100%;

    margin-top: 5px;

    border: 0;

}


.form-security {

    margin-top: 14px;

    text-align: center;

    color: rgba(255,255,255,0.40);

    font-size: 10px;

}


/* =========================================================
   15. FINAL CTA
========================================================= */

.final-cta {

    position: relative;

    min-height: 480px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: var(--white);

    background-image:
        url("../images/dream-world.jpg");

    background-size: cover;

    background-position: center;

    overflow: hidden;

}


.final-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(4,22,16,0.70),
            rgba(4,22,16,0.78)
        );

}


.final-content {

    position: relative;

    z-index: 2;

}


.final-content h2 {

    font-size: clamp(
        43px,
        6vw,
        75px
    );

    line-height: 1.05;

    margin-bottom: 20px;

}


.final-content h2 span {

    color: var(--gold-light);

}


.final-content > p {

    color: rgba(255,255,255,0.78);

    font-size: 15px;

    margin-bottom: 30px;

}


.final-content small {

    display: block;

    margin-top: 15px;

    color: rgba(255,255,255,0.45);

    font-size: 10px;

}


/* =========================================================
   16. FOOTER
========================================================= */

.footer {

    background: #051812;

    color: var(--white);

    border-top:
        1px solid rgba(201,164,92,0.25);

}


.footer-inner {

    min-height: 110px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 30px;

}


.footer-brand .logo-m {

    font-size: 37px;

}


.footer-brand .logo-text strong {

    font-size: 15px;

}


.footer-links {

    display: flex;

    align-items: center;

    gap: 22px;

}


.footer-links a {

    color: rgba(255,255,255,0.55);

    font-size: 10px;

    transition: var(--transition);

}


.footer-links a:hover {

    color: var(--gold-light);

}


.footer-copy {

    text-align: right;

    color: rgba(255,255,255,0.40);

    font-size: 10px;

}


/* =========================================================
   17. TABLET
========================================================= */

@media (max-width: 1100px) {


    .container {

        width:
            min(
                calc(100% - 50px),
                var(--container)
            );

    }


    .main-nav {

        gap: 20px;

    }


    .main-nav > a {

        font-size: 9px;

    }


    .transformation-grid {

        gap: 45px;

    }


    .experience-wrapper {

        grid-template-columns: 210px 1fr;

        gap: 30px;

    }


    .experience-item {

        padding: 10px 12px;

    }


    .experience-item p {

        font-size: 10px;

    }


    .membership-grid {

        gap: 45px;

    }

}


/* =========================================================
   18. TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {


    .header-inner {

        height: 78px;

    }


    .main-nav {

        display: none;

    }


    .menu-toggle {

        display: flex;

    }


    .mobile-nav {

        top: 78px;

    }


    .hero {

        min-height: 720px;

    }


    .hero-content {

        max-width: 650px;

    }


    .hero h1 {

        font-size: clamp(
            45px,
            8vw,
            68px
        );

    }


    .transformation-grid {

        grid-template-columns: 1fr;

    }


    .transformation-content {

        max-width: 700px;

    }


    .transformation-image {

        height: 500px;

    }


    .experience {

        padding: 75px 0;

    }


    .experience-wrapper {

        display: block;

    }


    .experience-intro {

        border-right: 0;

        border-bottom:
            1px solid rgba(201,164,92,0.30);

        padding:
            0 0 35px;

        margin-bottom: 35px;

    }


    .experience-items {

        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 35px;

    }


    .experience-item:nth-child(3) {

        border-right: 0;

    }


    .membership-grid {

        grid-template-columns: 1fr;

    }


    .membership-content {

        max-width: 700px;

    }


    .video-wrapper {

        height: 480px;

    }


    .footer-inner {

        grid-template-columns: 1fr;

        text-align: center;

        padding: 30px 0;

    }


    .footer-brand {

        display: flex;

        justify-content: center;

    }


    .footer-links {

        justify-content: center;

        flex-wrap: wrap;

    }


    .footer-copy {

        text-align: center;

    }

}


/* =========================================================
   19. MOBILE
========================================================= */

@media (max-width: 767px) {


    .container {

        width:
            calc(100% - 36px);

    }


    .section {

        padding: 75px 0;

    }


    .header-inner {

        height: 72px;

    }


    .logo-m {

        font-size: 40px;

    }


    .logo-text strong {

        font-size: 15px;

        letter-spacing: 3px;

    }


    .logo-text small {

        font-size: 7px;

    }


    .mobile-nav {

        top: 72px;

    }


    .hero {

        min-height: 760px;

        align-items: flex-end;

        padding-bottom: 80px;

    }


    .hero-background img {

        object-position:
            62% center;

    }


    .hero-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(4,20,15,0.28) 0%,
                rgba(4,20,15,0.50) 30%,
                rgba(4,20,15,0.92) 100%
            );

    }


    .hero-content {

        padding-top: 100px;

    }


    .hero h1 {

        font-size: 45px;

        letter-spacing: -0.5px;

    }


    .hero-description {

        font-size: 14px;

        line-height: 1.7;

    }


    .hero-exclusive {

        font-size: 13px;

    }


    .hero-buttons {

        width: 100%;

    }


    .hero-buttons .btn {

        width: 100%;

    }


    .scroll-indicator {

        display: none;

    }


    .transformation-content h2 {

        font-size: 42px;

    }


    .transformation-image {

        height: 400px;

    }


    .image-label {

        top: 18px;

    }


    .image-label.before {

        left: 18px;

    }


    .image-label.after {

        right: 18px;

    }


    .experience {

        padding: 65px 0;

    }


    .experience-intro h2 {

        font-size: 38px;

    }


    .experience-items {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .experience-item {

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,0.08);

        padding:
            10px 10px 25px;

    }


    .experience-item:last-child {

        grid-column:
            1 / -1;

        border-bottom: 0;

    }


    .journey {

        padding-top: 75px;

    }


    .section-heading {

        margin-bottom: 30px;

    }


    .section-heading h2 {

        font-size: 43px;

    }


    .video-wrapper {

        height: 390px;

    }


    .video-play {

        width: 65px;

        height: 65px;

    }


    .video-play span {

        font-size: 18px;

    }


    .membership {

        padding: 75px 0;

    }


    .membership-content h2 {

        font-size: 42px;

    }


    .membership-content h3 {

        font-size: 27px;

    }


    .registration-box {

        padding: 25px 20px;

    }


    .registration-box h2 {

        font-size: 31px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .final-cta {

        min-height: 430px;

    }


    .final-content h2 {

        font-size: 45px;

    }


    .final-content > p {

        font-size: 13px;

    }


    .final-content .btn {

        width: 100%;

    }


    .footer-links {

        flex-direction: column;

        gap: 10px;

    }

}


/* =========================================================
   20. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {


    .container {

        width:
            calc(100% - 28px);

    }


    .hero {

        min-height: 720px;

    }


    .hero h1 {

        font-size: 39px;

    }


    .hero-subtitle {

        font-size: 12px;

    }


    .hero-description {

        font-size: 13px;

    }


    .transformation-content h2 {

        font-size: 36px;

    }


    .transformation-image {

        height: 330px;

    }


    .experience-items {

        grid-template-columns: 1fr;

    }


    .experience-item:last-child {

        grid-column: auto;

    }


    .experience-item {

        border-bottom:
            1px solid rgba(255,255,255,0.08);

    }


    .video-wrapper {

        height: 310px;

    }


    .video-duration {

        left: 15px;

        bottom: 15px;

        font-size: 8px;

    }


    .membership-content h2 {

        font-size: 36px;

    }


    .registration-box {

        padding: 22px 17px;

    }


    .final-content h2 {

        font-size: 39px;

    }

}


/* =========================================================
   21. ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

    }

}


/* =========================================================
   LOGIN / REGISTER ACCESS TABS
========================================================= */

.access-box {
    position: relative;
}


/* TABS */

.access-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 28px 0 25px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}


.access-tab {
    position: relative;

    padding: 15px 10px;

    border: 0;

    background: transparent;

    color: rgba(255,255,255,0.45);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: all 0.3s ease;
}


.access-tab:hover {
    color: var(--gold-light);
}


.access-tab.active {
    color: var(--gold-light);
}


.access-tab.active::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: -1px;

    height: 2px;

    background: var(--gold);

}


/* PANELS */

.access-panel {
    display: none;
}


.access-panel.active {
    display: block;
}


/* REGISTER NOTE */

.register-note {

    margin-bottom: 22px;

    padding: 12px 15px;

    background:
        rgba(201,164,92,0.08);

    border-left:
        2px solid var(--gold);

    color:
        rgba(255,255,255,0.62);

    font-size: 12px;

    line-height: 1.6;

}


/* LOGIN OPTIONS */

.login-options {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: -3px;

    margin-bottom: 20px;

}


.remember-me {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255,255,255,0.55);

    font-size: 11px;

    cursor: pointer;

}


.remember-me input {

    width: 13px;
    height: 13px;

    accent-color: var(--gold);

}


.forgot-password {

    color: var(--gold-light);

    font-size: 11px;

    transition: all 0.3s ease;

}


.forgot-password:hover {

    color: var(--white);

    text-decoration: underline;

}


/* MOBILE */

@media (max-width: 767px) {

    .access-tabs {
        margin-top: 22px;
    }

    .login-options {
        flex-wrap: wrap;
        gap: 10px;
    }

}