/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    --orange: #ff7b00;
    --soft-grey: #F2F2F2;
    --dark: #0A0A0A;
    --hover-blue: #0044FF;
    --nav-transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    --grape: #4a0472;
    /* Vibrant purple */
    --berry: rgb(36, 138, 233);
    --menu-transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--soft-grey);
    -webkit-font-smoothing: antialiased;
}

/* =========================================
     NAVBAR
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 999;
    background: transparent;
    transition: var(--nav-transition);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(247, 247, 247);
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

/* Hamburger Menu Trigger */
.menu-trigger {
    width: 36px;
    height: 14px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.menu-trigger .line {
    width: 100%;
    height: 2px;
    background-color: white;
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1), background-color 0.4s ease;
    transform-origin: center;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hamburger to Cross Animation */
.menu-trigger.is-active .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-trigger.is-active .line:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
}

.navbar.menu-is-open .logo {
    color: var(--dark) !important;
}

.navbar.menu-is-open .menu-trigger .line {
    background-color: var(--dark) !important;
}

/* =========================================
   FULLSCREEN MENU OVERLAY
========================================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    max-height: 100vh;
    background-color: var(--soft-grey);
    z-index: 998;

    transform: translateY(-100%);
    transition: var(--menu-transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.menu-overlay.is-open {
    transform: translateY(0);
}

.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-backdrop.is-active {
    opacity: 1;
    pointer-events: auto;
}

.menu-inner {
    padding: 8rem 4vw 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.menu-link {
    font-size: clamp(3rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--dark);
    position: relative;
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}

.menu-overlay.is-open .menu-link {
    opacity: 1;
    transform: translateY(0);
}

.menu-overlay.is-open .menu-link:nth-child(1) {
    transition-delay: 0.3s;
}

.menu-overlay.is-open .menu-link:nth-child(2) {
    transition-delay: 0.4s;
}

.menu-overlay.is-open .menu-link:nth-child(3) {
    transition-delay: 0.5s;
}

.menu-overlay.is-open .menu-link:nth-child(4) {
    transition-delay: 0.6s;
}

/* Menu Link Arrow */
.menu-link svg {
    width: clamp(2rem, 5vw, 4rem);
    height: clamp(2rem, 5vw, 4rem);
    margin-left: 1.5rem;
    opacity: 0;
    transform: translateX(-20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Menu Link Underline */
.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--hover-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Hover States */
.menu-link:hover {
    color: var(--hover-blue);
}

.menu-link:hover svg {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.menu-link:hover::after {
    transform: scaleX(1);
}

/* Menu Footer */
.menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

.menu-overlay.is-open .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.footer-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--hover-blue);
}

/* =========================================
   MENU / NAVBAR RESPONSIVE ADJUSTMENTS
 ========================================= */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
    }

    .nav-content {
        gap: 1.5rem;
    }

    .menu-overlay {
        transform: translateX(100%);
        transform-origin: right;
        inset: 0 0 0 auto;
        width: 70vw;
        max-height: 100vh;
        border-left: 2px solid var(--dark);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    }

    .menu-overlay.is-open {
        transform: translateX(0);
    }

    .menu-link {
        font-size: clamp(1.2rem, 4.5vw, 1.6rem);
        font-weight: 700;
        flex-wrap: nowrap;
    }

    .menu-link svg {
        display: none;
    }

    .menu-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

/* =========================================
    HERO SECTION
 ========================================= */
.hero {
    background-color: var(--orange);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    align-items: flex-start;

}

.hero-title {
    margin: 15px 1%;
    font-size: clamp(7rem, 27vw, 27rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.8;
    color: rgb(255, 255, 255);
}

.hero-subheading {
    max-width: 450px;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.5;
    margin-left: 40px;
    color: white;
}

/* =========================
   TICKER SECTION
========================= */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
}

@media (hover: hover) {
    .ticker-wrapper:hover {
        overflow: visible;
    }
}

.ticker-track {
    display: flex;
    gap: 10px;
    width: max-content;
}

.ticker-item {
    position: relative;
    flex: 0 0 auto;
    cursor: pointer;
}

.ticker-item img {
    height: 550px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

/* HOVER POP */
.ticker-item:hover img {
    transform: scale(1.3) translateY(-20px);
    z-index: 10;
}

/* FLOATING ELEMENTS */
.hover-elements {
    position: absolute;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transition: 0.5s ease;
}

/* SHOW ON HOVER */
.ticker-item:hover .hover-elements {
    opacity: 1;
}

/* =========================
   MOBILE TICKER RESPONSIVNESS
========================= */
@media (max-width: 768px) {

    .hero {
        overflow: hidden;
    }

    .hero-title {
        padding-top: 50px;
        font-size: clamp(4rem, 24vw, 9rem);
    }

    .hero-subheading {
        margin-left: 10px;
    }

    .ticker-wrapper {
        margin-top: 110px;
        padding-bottom: 40px;
    }

    .ticker-track {
        gap: 1px;
    }

    .ticker-item img {
        height: 65vh;
    }

    /* show only ~1–2 cans */
    .ticker-item {
        flex: 0 0 auto;
    }

    /* reduce hover madness for touch devices */
    .ticker-item:hover img {
        transform: scale(1.1) translateY(-10px);
    }

    .hover-elements {
        display: none;
    }
}

/* =========================================
    DUMMY CONTENT (For scroll testing)
========================================= */
.dummy-scroll-section {
    height: 150vh;
    background-color: var(--dark);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* =========================
   BIG FLAVOUR TEXT SECTION
========================= */
.flavour-intro {
    width: 100%;
    padding: 60px 3%;
    background: var(--orange);

}

.flavour-heading {
    font-size: clamp(5rem, 11vw, 11rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -1px;
    color: #ffffff;
    max-width: 1200px;
}

/* ========================================
   BIG FLAVOUR TEXT SECTION RESPONSIVNESS
=========================================== */
@media (max-width: 768px) {

    .flavour-intro {
        padding: 80px 5vw;
    }

    .flavour-heading {
        font-size: clamp(2.5rem, 12vw, 5rem);
        line-height: 1;
        letter-spacing: -1px;
    }
}

/* =========================================
   ORANGE FEATURE SCROLL SECTION
========================================= */
.orange-feature-section {
    position: relative;
    width: 100%;
    min-height: 250vh;
    background-color: var(--orange);
    z-index: 1;
    overflow: hidden;
}

/* The Can (Matches your JS perfectly) */
.traveling-can {
    position: absolute;
    top: 50vh;
    /* Needed for your JS math to center perfectly */
    left: 50%;

    /* Noticeably shorter/smaller can size */
    width: clamp(200px, 28vw, 550px);

    z-index: 5;
    will-change: transform;
    pointer-events: none;
    filter: drop-shadow(-10px 20px 30px rgba(0, 0, 0, 0.445));
}

/* Content Container (Pure padding, no max-width constraints) */
.orange-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40vh 5% 15vh;
    display: flex;
    flex-direction: column;
    gap: 50vh;
    /* Spacing between the zig-zag blocks */
}

.orange-text-block {
    width: 100%;
}

/* HEADING: LEFT */
.orange-huge-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

/* PARAGRAPHS: RIGHT */
.right-aligned {
    width: 50%;
    margin-left: 50%;
    /* Pushes text to the right side */
    padding-left: 5vw;
    /* Keeps it from touching the center can */
    display: flex;
    text-align: right;
    flex-direction: column;
    gap: 2rem;
}

/* LAST PARAGRAPH: LEFT */
.left-aligned {
    width: 40%;
    margin-right: 50%;
    /* Keeps text on the left side */
    padding-right: 5vw;
    /* Keeps it from touching the center can */
    display: flex;
    text-align: left;
    flex-direction: column;
}

.orange-text-block p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

/* ========================================
   MOBILE RESPONSIVENESS
=========================================== */
@media (max-width: 768px) {
    .orange-feature-section {
        min-height: 150vh;
    }

    .traveling-can {
        top: 40vh;
        width: 65vw;
        /* Adjusted for mobile */
        opacity: 1;
        /* Fades behind text so it's readable */
    }

    .orange-content-container {
        padding: 15vh 5vw 15vh;
        gap: 20vh;
    }

    /* Keeps elements left-aligned but full width */
    .right-aligned,
    .left-aligned {
        width: 100%;
        margin: 0;
        padding: 0;
        align-items: flex-start;
    }

    .orange-text-block p {
        text-align: left;
    }

    .orange-huge-title {
        text-align: center;
        font-size: clamp(2.5rem, 15vw, 6rem);
    }
}

/* =========================================
   GRAPE FEATURE SCROLL SECTION
========================================= */
.grape-feature-section {
    position: relative;
    width: 100%;
    min-height: 250vh;
    background-color: var(--grape);
    z-index: 0;
    overflow: hidden;
}

/* Seamless Blending Effect (Orange to Grape) */
.grape-blend {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    /* How long the fade lasts */
    background: linear-gradient(to bottom, var(--orange) 0%, var(--grape) 100%);
    z-index: 1;
}

/* The Can (Same exact math and sizing as orange) */
.grape-traveling-can {
    position: absolute;
    top: 50vh;
    left: 50%;
    width: clamp(200px, 28vw, 550px);
    z-index: 5;
    will-change: transform;
    pointer-events: none;
    filter: drop-shadow(-10px 20px 30px rgba(0, 0, 0, 0.445));
}

/* Content Container */
.grape-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60vh 5% 15vh;
    display: flex;
    flex-direction: column;
    gap: 40vh;
}

.grape-text-block {
    width: 100%;
}

/* HEADING */
.grape-huge-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.grape-text-block {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

.grape-reveal-elem-right {
    width: 50%;
    margin-left: 50%;
    /* Pushes text to the right side */
    padding-left: 5vw;
    /* Keeps it from touching the center can */
    display: flex;
    text-align: right;
    flex-direction: column;
    gap: 2rem;
}

.grape-reveal-elem-left {
    width: 40%;
    margin-right: 50%;
    /* Keeps text on the left side */
    padding-right: 5vw;
    /* Keeps it from touching the center can */
    display: flex;
    text-align: left;
    flex-direction: column;
}

/* ========================================
   MOBILE RESPONSIVENESS (GRAPE)
=========================================== */
@media (max-width: 768px) {
    .grape-feature-section {
        min-height: 150vh;
    }

    .grape-traveling-can {
        width: 65vw;
        opacity: 1;
    }

    .grape-content-container {
        padding: 15vh 5vw 15vh;
        gap: 20vh;
    }

    .grape-text-block p {
        text-align: left;
    }

    .grape-huge-title {
        text-align: center;
        font-size: clamp(2.5rem, 15vw, 6rem);
    }

    .grape-reveal-elem-right,
    .grape-reveal-elem-left {
        width: 100%;
        margin: 0;
        padding: 0 5vw;
        text-align: left;
        align-items: flex-start;
    }
}

/* =========================================
   BERRY LEMON FEATURE SCROLL SECTION
========================================= */
.berry-feature-section {
    position: relative;
    width: 100%;
    min-height: 250vh;
    background-color: var(--berry);
    z-index: 0;
    overflow: hidden;
}

/* Seamless Blending Effect (Grape to Berry Lemon OR adjust as needed) */
.berry-blend {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    /* How long the fade lasts */
    background: linear-gradient(to bottom, var(--grape) 0%, var(--berry) 100%);
    z-index: 1;
}

/* The Can */
.berry-traveling-can {
    position: absolute;
    top: 50vh;
    left: 50%;
    width: clamp(200px, 28vw, 550px);
    z-index: 5;
    will-change: transform;
    pointer-events: none;
    filter: drop-shadow(-10px 20px 30px rgba(0, 0, 0, 0.445));
}

/* Content Container */
.berry-content-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60vh 5% 15vh;
    display: flex;
    flex-direction: column;
    gap: 40vh;
}

.berry-text-block {
    width: 100%;
}

/* HEADING */
.berry-huge-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.berry-text-block {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

.berry-reveal-elem-right {
    width: 50%;
    margin-left: 50%;
    padding-left: 5vw;
    display: flex;
    text-align: right;
    flex-direction: column;
    gap: 2rem;
}

.berry-reveal-elem-left {
    width: 40%;
    margin-right: 50%;
    padding-right: 5vw;
    display: flex;
    text-align: left;
    flex-direction: column;
}

/* ========================================
   MOBILE RESPONSIVENESS (BERRY)
=========================================== */
@media (max-width: 768px) {
    .berry-feature-section {
        min-height: 150vh;
    }

    .berry-traveling-can {
        width: 65vw;
        opacity: 1;
    }

    .berry-content-container {
        padding: 15vh 5vw 15vh;
        gap: 20vh;
    }

    .berry-text-block p {
        text-align: left;
    }

    .berry-huge-title {
        text-align: center;
        font-size: clamp(2.2rem, 15vw, 6rem);
    }

    .berry-reveal-elem-right,
    .berry-reveal-elem-left {
        width: 100%;
        margin: 0;
        padding: 0 5vw;
        text-align: left;
        align-items: flex-start;
    }
}

/* =========================================
   WHY FROZ SECTION
========================================= */
.whyfroz-section {
    position: relative;
    width: 100%;
    min-height: 150vh;
    background: var(--berry);
    /* SAME AS BERRY = STORY CONTINUES */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.whyfroz-container {
    width: 100%;
    max-width: 1900px;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* BIG TITLE */
.whyfroz-title {
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

/* SUBHEADING */
.whyfroz-subheading {
    font-size: clamp(1.2rem, 1.5rem, 1.5rem);
    font-weight: 400;
    color: #ffffff;
    max-width: 600px;
}

/* STATS */
.whyfroz-stats {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
}

.stat h3 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.stat p {
    font-size: 1rem;
    opacity: 0.8;
    color: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
    .whyfroz-section {
        min-height: 80vh;
        padding: 10vh 0;
    }

    .whyfroz-title {
        font-size: clamp(2.5rem, 11vw, 6rem);
    }

    .whyfroz-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials-section {
    position: relative;
    height: 150vh;
    /* gives scroll room */
    background: var(--berry);
    /* keep story */
    overflow: hidden;
}

/* FADE TOP & BOTTOM */
.testimonials-section::before,
.testimonials-section::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-section::before {
    top: 0;
    background: linear-gradient(to bottom, var(--berry), transparent);
}

.testimonials-section::after {
    bottom: 0;
    background: linear-gradient(to top, var(--berry), transparent);
}

/* WRAPPER */
.testimonials-wrapper {
    display: flex;
    justify-content: center;
    gap: 2vw;
    padding: 10vh 3%;
}

/* COLUMNS */
.testimonial-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 20%;
}

/* ZIG-ZAG OFFSET */
.col-2 {
    transform: translateY(80px);
}

.col-3 {
    transform: translateY(160px);
}

.col-4 {
    transform: translateY(40px);
}

/* CARDS */
.testimonial-card {
    padding: 2rem;
    border-radius: 20px;
    font-weight: 500;
    line-height: 1.4;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* COLORS */
.orange {
    background: #ff7a00;
    color: #fff;
}

.purple {
    background: #6a0dad;
    color: #fff;
}

.white {
    background: #ffffff;
    color: #000;
}

.black {
    background: #cfcfcf;
    color: #fff;
}

.blue {
    background: #007aff;
    color: #fff;
}

/* HOVER */
.testimonial-card:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
    .testimonials-section {
        height: auto;
        padding: 10vh 0;
        overflow: visible;
    }

    .testimonials-wrapper {
        flex-direction: column;
    }

    .testimonial-column {
        width: 100%;
        transform: none !important;
    }
}

/* =========================================
   LEMON UPCOMING SECTION
========================================= */

:root {
    --lemon: #ffa600;
}

.lemon-upcoming-section {
    position: relative;
    min-height: 90vh;
    width: 100%;
    background: var(--lemon);
    overflow: hidden;
}

/* SMOOTH FADE FROM BERRY -> LEMON */
.lemon-blend {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45vh;

    background: linear-gradient(to bottom,
            var(--berry) 0%,
            var(--lemon) 100%);

    z-index: 1;
}

/* MAIN LAYOUT */
.lemon-content {
    position: relative;
    z-index: 2;

    min-height: 120vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 60vh 5%;
}

/* LEFT CAN */
.lemon-can-wrap {
    width: 45%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.lemon-can {
    width: clamp(240px, 30vw, 500px);

    filter: drop-shadow(-10px 25px 40px rgba(0, 0, 0, 0.144));

    will-change: transform;
}

/* RIGHT TEXT */
.lemon-text {
    width: 45%;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    text-align: right;
}

.launching-tag {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.925);

    margin-bottom: 1rem;
}

.lemon-text h2 {
    font-size: clamp(4rem, 10vw, 10rem);
    line-height: 0.85;
    font-weight: 900;
    text-transform: uppercase;

    color: #ffffff;
    filter: drop-shadow(10px 10px rgba(0, 0, 0, 0.164));
}

.lemon-text p {
    margin-top: 6rem;

    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    font-weight: 500;

    color: rgba(255, 255, 255, 0.945);

    max-width: 500px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
    .lemon-upcoming-section {
        min-height: auto;
    }

    .lemon-content {
        flex-direction: column;
        justify-content: center;
        gap: 4rem;
        text-align: center;
        padding: 15vh 5vw 10vh;
        min-height: auto;
    }

    .lemon-can-wrap,
    .lemon-text {
        width: 100%;
    }

    .lemon-can-wrap {
        justify-content: center;
    }

    .lemon-text {
        align-items: center;
        text-align: center;
    }

    .lemon-text h2 {
        font-size: clamp(2.5rem, 15vw, 6rem);
    }

    .lemon-text p {
        margin-top: 2rem;
    }

    .lemon-can {
        width: 70vw;
    }
}


/* =========================================
   FINAL CTA SECTION
========================================= */

.final-cta-section {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, var(--lemon) 0%, var(--orange) 100%);

    color: #111;

    overflow: hidden;
}

/* MAIN CTA AREA */
.final-cta-content {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 5vh 5%;
}

/* SMALL TEXT */
.cta-mini-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;

    opacity: 0.6;

    margin-bottom: 2rem;
}

/* HUGE TITLE */
.final-cta-title {
    text-shadow: 0px 10px 30px rgba(0, 0, 0, 0.144);
    color: #F2F2F2;
    font-size: clamp(5rem, 14vw, 14rem);
    line-height: 0.85;

    font-weight: 900;
    text-transform: uppercase;

    letter-spacing: -4px;
}

/* DESCRIPTION */
.final-cta-description {
    text-shadow: 0px 10px 30px rgba(0, 0, 0, 0.685);
    color: #F2F2F2;
    margin-top: 2rem;

    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.6;

    max-width: 700px;

    opacity: 0.8;
}

/* BUTTON */
.final-cta-button {
    margin-top: 3rem;

    padding: 1.2rem 2.5rem;

    background: #111;
    color: #fff;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;

    border-radius: 100px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.final-cta-button:hover {
    background: white;
    color: #111;

    transform: translateY(-6px);
}

/* =========================================
   FOOTER (Modernized Grid)
   ========================================= */

.site-footer {
    width: 100%;
    padding: 6rem 5% 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    letter-spacing: -1px;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: #fff;
    color: var(--orange);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.footer-links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer-links-list a:hover {
    color: #fff;
}

.footer-links-list a:hover::after {
    transform: scaleX(1);
}

.newsletter-text {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 350px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 360px;
    border-bottom: 2px solid #fff;
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.newsletter-form button svg {
    width: 20px;
    height: 20px;
}

.newsletter-form button:hover {
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1.5px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    margin-top: 4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: clamp(3rem, 12vw, 7rem);
        letter-spacing: -2px;
    }

    .final-cta-content {
        min-height: 80vh;
    }

    .site-footer {
        padding: 4rem 5% 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        font-size: 2.2rem;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }
}