        :root {
            --nav-bg-light: #281d52;
        }
        html {
            scroll-padding-top: 80px;
        }
        @font-face {
            font-family: "heading-font1";
            src: url("../fonts/heading/Fontspring-DEMO-theseasons-lt.otf") format("opentype");
        }

        @font-face {
            font-family: "heading-font2";
            src: url("../fonts/heading/Fontspring-DEMO-theseasons-ltit.otf") format("opentype");
        }

        @font-face {
            font-family: "paragraph-font";
            src: url("../fonts/body-font/TT\ Drugs\ Trial\ Regular.otf") format("opentype");
        }
        @font-face {
            font-family: "paragraph-font2";
            src: url("../fonts/heading/Fontspring-DEMO-theseasons-reg.otf") format("opentype");
        }

        .heading-font1 {
            font-family: "heading-font1", serif;
        }
        
        .heading-font2 {
            font-family: "heading-font2", serif;
        }
        
        .paragraph-font {
            font-family: "paragraph-font", serif !important;
        }
        .paragraph-font2 {
            font-family: "paragraph-font2", serif !important;
        }
        .button-color{
            background:#e9d7f1 !important;
        }
        body {
            margin: 0;
            background-color: #f7f5f4;
            overflow-x:hidden !important;
        }
        
        /* HEADER */
        header {
            background: #fff;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        /* DESKTOP NAV */
        .desktop-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
        }

        .brand {
            text-decoration: none;
            color: #000000;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .desktop-nav ul {
            display: flex;
            gap: 35px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .desktop-nav ul a {
            text-decoration: none;
            color: #111;
            font-weight: 700;
            letter-spacing:2px;
        }

        /* MOBILE NAV */
        .mobile-nav {
            display: none;
            padding: 12px 0;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-brand {
            font-size: 16px;
            color: #1a1624;
            text-decoration: none;
            font-weight: 700;;
        }

        /* HAMBURGER */
        .hamburger {
            width: 30px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .hamburger span {
            height: 2px;
            width: 100%;
            background: #0c0633;
            display: block;
            transition: 0.3s;
        }

        /* Slide Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 75%;
            max-width: 420px;
            height: 100vh;
            background: #0c0633;
            color: #fff;
            padding: 40px 25px;
            transition: 0.4s ease;
            z-index: 200;
        }

        .mobile-menu.open {
            right: 0;
        }

        .close-menu {
            font-size: 32px;
            color: #fff;
            cursor: pointer;
            border: none;
            background: transparent;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .mobile-menu ul {
            list-style: none;
            margin-top: 60px;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .mobile-menu ul li {

            border-bottom: 1px solid #868484;
        }

        .mobile-menu ul a {
            text-decoration: none;
            color: #fff;
            font-size: 32px;
            text-transform: uppercase;
            padding-bottom: 10px;
        }

        .director-btn {
            display: inline-block;
            margin-top: 25px;
            padding: 15px 25px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #e3dbff;
            font-style: italic;
            text-decoration: none;
            font-size: 25px;
        }

        .director-btn::before {
            content: "— ";
            opacity: 0.8;
            margin-right: 4px;
        }

        .modal-content {
            background: #2f2f2f;
            color: white;
            border-radius: 12px;
            padding: 20px;
        }
        
        .payment-btn {
            background: #ff9c00;
            border: none;
            padding: 8px 30px;
            font-size: 18px;
            border-radius: 8px;
            font-weight: bold;
            color: black;
        }
        
        .qr-box img {
            width: 100%;
            max-width: 230px;
            background: white;
            border-radius: 10px;
        }
                /* ---------- HERO WRAPPER ---------- */
        /* Mobile and desktop use separate background images */
        .hero {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        /* MOBILE HERO (default) */

        /* Heading placed near top for mobile */
        .hero .title {
            position: relative;
            z-index: 2;
            margin: 30px 0 6px;
            text-align: center;
            color: #fff;
            font-weight: 700;
            font-size: 44px;
            line-height: 1.5;
            letter-spacing: 1px;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
            letter-spacing: 4px;
        }
        .hero .title img{
            width:60%;
        }

        /* small stacked line under main wording (like "ON THE HIGHWAY") */
        .hero .title small {
            display: block;
            font-weight: 400;
            font-size: 18px;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.96);
        }

        /* film credit near bottom of poster (positioned inside poster) */
        .hero .mobile-credit {
            margin-top: auto;
            /* push to bottom */
            margin-bottom: 10px;
            z-index: 2;
            color: rgba(255, 255, 255, 0.95);
            font-size: 16px;
            letter-spacing: 2px;
            font-weight: 600;
            text-align: center;
            width: 100%;
            text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
            padding: 0 10px;
        }

        /* MOBILE WHITE STRIP */
        .white-strip {
            background: #ffffff;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 18px;
            box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04);
            gap: 14px;
        }

        /* SPLIT BUTTON STYLE (used everywhere) */
        .btn-split {
            display: inline-flex;
            align-items: center;
            border: 2px solid #0c0d3d;
            /* dark navy border */
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
        }

        .btn-split .text {
            padding: 10px 26px;
        }

        .btn-split .arrow-box {
            padding: 10px 18px;
            border-left: 2px solid #0c0d3d;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a3702b;
            /* gold-ish arrow color from your image */
            font-size: 18px;
        }

        /* DESKTOP BUTTONS */
        .desktop-buttons {
            display: flex;
            gap: 24px;
        }

        /* Section background */
        .film-section {
            background: #f7f5f4;
        }

        /* Heading */
        .film-title {
            color: #2b2540;
            font-size: 24px;
            font-weight: 400;
            line-height: 1.5;
            max-width: 450px;
            margin: 0 auto;
            word-spacing: 3px;
        }

        .video-box {
            width: 100%;
            height: 200px;
            background: #000;
            overflow: hidden;
        }

        /* Paragraph */
        .film-desc {
            color: #6e6768;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 16px;
            text-align: justify;
        }

        /* Section background */
        .help-section {
            background: #f7f5f4;
        }

        /* Title styles */
        .help-title {
            font-size: 34px;
            letter-spacing: 1px;
            color: #2b2540;
            margin: 0;
            font-weight: 400;
        }

        .help-sub {
            font-size: 22px;
            margin: 0;
            font-style: italic;
            color: #2b2540;
            font-weight: 400;
        }

        .help-sub .dash {
            margin-left: 6px;
        }

        /* Paragraph styling */
        .lead-desc {
            color: #6e6768;
            font-size: 14.5px;
            line-height: 1.9;
            margin-bottom: 0.9rem;
        }

        /* Flower image responsive sizing */
        .flower-responsive {
            height: auto;
            object-fit: contain;
            width: 50%;
        }

        /* Buttons: split outline style */
        .btn-split {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            border: 2px solid #221b3a;
            padding: 0;
            overflow: hidden;
            border-radius: 3px;
            min-height: 44px;
            background: transparent;
        }

        .btn-split .btn-text {
            padding: 10px 18px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            color: #221b3a;
            background: white;
        }

        .btn-split .btn-arrow {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 14px;
            border-left: 2px solid #221b3a;
            background: #fff;
            color: #c1863a;
        }

        /* Primary filled variant */
        .btn-primary.btn-split {
            background: #fff;
        }

        /* Outline variant text color */
        .btn-outline-primary.btn-split .btn-text {
            color: #221b3a;
        }


        .funding-section {
            background: #f7f5f4;
        }

        /* heading */
        .funding-title {
            font-size: 30px;
            font-weight: 400;
            color: #2b2540;
            margin: 0;
        }

        .funding-sub {
            font-style: italic;
            font-size: 40px;
            margin-left: .35rem;
            color: #2b2540;
        }

        .funding-dash {
            color: #2b2540;
            margin-left: .5rem;
        }

        .tier-item {
            gap: 12px;
        }

        /* badge */
        .tier-badge {
            flex: 0 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* lavender pill */
        .tier-label {
            background: #e9d7f1;
            color: #3b244a;
            padding: 12px 30px;
            border-radius: 15px;
            font-weight: 700;
            font-size: 13px;
            text-align: center;
            white-space: nowrap;
        }

        .tier-amt {
            margin-top: 8px;
            font-size: 12px;
            color: #6b5a73;
            text-align: center;
        }

        .tier-list {
            margin: 0;
            padding-left: 18px;
            color: #5e5960;
            font-size: 14px;
            line-height: 1.9;
        }

        .story-section {
            background: #f7f5f4;
        }

        .story-title {
            font-size: 32px;
            letter-spacing: 1px;
            color: #1b1734;
            font-weight: 400;
            margin-bottom: 0;
        }

        .story-sub {
            font-size: 24px;
            color: #1b1734;
            font-style: italic;
            margin-top: 2px;
        }

        .story-dash {
            font-style: normal;
            margin-left: 6px;
        }

        .story-text p {
            color: #6e6768;
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 1.2rem;
        }

        .testimonial-section {
            background: #f7f5f4;
            color: #222;
            padding-top: 30px;
            padding-bottom: 30px;
        }

        .photo-wrap {
            position: relative;
            width: fit-content;
            margin: 0 auto;
            /* centered on mobile */
            padding-top: 6px;
        }

        .photo-wrap .decor-square {
            position: absolute;
            left: -18px;
            top: -18px;
            width: 200px;
            height: 60px;
            background: #e9e2db;
            z-index: 1;
            border-radius: 2px;
        }

        /* portrait image */
        .portrait {
            display: block;
            width: 100%;
            max-width: 320px;
            height: auto;
            box-shadow: none;
            border: 6px solid transparent;
            background-color: #fff;
            position: relative;
            z-index: 2;
            object-fit: cover;
        }

        .text-wrap {
            margin-top: 8px;
        }
        .director-text{
            font-size: 17px !important;
            font-weight: 700 !important;
        }
        .lead-copy {
            color: #6e6768;
            font-size: 14.5px;
            line-height: 1.85;
            margin-bottom: 1rem;
        }

            .signature {
            font-style: italic;
            color: #2b2540;
            margin-top: 8px;
            font-size: 15px;
        }

        .footer {
            font-size: 16px;
            color: #333;
        }
        .other-note a{
            text-decoration:none;
            color:#000;
        }
          /* Dark popup background */
          .video-modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
          }
        
          /* Popup box */
          .video-modal-content {
            width: 90%;
            max-width: 800px;
            background: #000;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
          }
        
          /* Close anywhere */
          .video-modal-backdrop iframe {
            width: 100%;
            height: 450px;
          }
        /* ------------------ DESKTOP LAYOUT ------------------ */
        @media (min-width: 992px) {

            .hero.mobile {
                display: none;
            }

            .hero.desktop {
                display: block;
                height: 90vh;
                background-image: url('../image/desktop-banner.png');
                background-size: cover;
                background-position: center;
                position: relative;
                padding: 48px 80px;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                filter: brightness(1.2);
            }

            .hero.desktop::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0) 100%);
                pointer-events: none;
            }

            .desktop-content {
                position: relative;
                z-index: 2;
                max-width: 520px;
                color: #fff;
                text-align: left;
            }

            .desktop-content .title {
                font-size: 64px;
                line-height: 1;
                text-align: left;
                color: #fff;
                margin: 0 0 12px 0;
                text-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
            }

            .desktop-content .title small {
                display: block;
                font-size: 22px;
                font-weight: 400;
                letter-spacing: 2px;
                color: rgba(255, 255, 255, 0.96);
            }

            .desktop-credit {
                color: rgba(255, 255, 255, 0.95);
                font-size: 13px;
                letter-spacing: 3px;
                font-weight: 600;
                margin-bottom: 18px;
            }

            .desktop-content .banner-text {
                font-size: 14px;
                line-height: 1.6;
                margin-bottom: 24px;
                color: rgba(255, 255, 255, 0.9);
                text-align: justify;
            }

            .desktop-buttons {
                display: flex;
                gap: 14px;
            }

            .desktop-buttons .btn.primary {
                background: #ffffff;
                color: #1a1724;
                border: 1px solid #fff;
            }

            .desktop-buttons .btn.ghost {
                color: #fff;
                border: 2px solid #fff;
            }

            .white-strip {
                display: none;
            }

            .desktop-buttons .btn-split {
                border-color: #0c0d3d;
            }

            .btn-split {
                color: #fff;
            }

            .btn-split .arrow-box {
                color: #fff;
            }

            .video-box {
                height: 280px;
            }

            .film-title {
                text-align: left;
                font-size: 32px;
                max-width: 480px;
                margin: 0 auto;
                word-spacing: 2px;
            }

            .help-title {
                font-size: 48px;
            }

            .help-sub {
                font-size: 32px;
            }



            .funding-title {
                font-size: 34px;
            }

            .tier-item {
                align-items: flex-start;
            }

            .tier-badge {
                align-items: flex-start;
            }

            .tier-label {
                font-size: 14px;
                padding: 10px 30px;
                border-radius: 12px;
            }

            .tier-amt {
                margin-top: 10px;
            }

            .tier-list {
                font-size: 14px;
                line-height: 1.8;
            }

            .photo-wrap {
                margin: 0;
            }

            .portrait {
                max-width: 360px;
            }

            .decor-square {
                left: -28px;
                top: -28px;
                width: 110px;
                height: 110px;
            }


            .lead-copy {
                font-size: 15px;
                line-height: 1.9;
            }

            .testimonial-section {
                padding-top: 48px;
                padding-bottom: 48px;
            }
        }

        /* RESPONSIVE */
        @media(max-width: 991px) {
            .flower-responsive {
                width: 100%;
            }

            .desktop-nav {
                display: none;
            }

            .mobile-nav {
                display: flex;
            }

            .hero.desktop {
                display: none;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 575px) {
            .film-title {
                font-size: 21px;
            }

            .help-title,
            .help-sub {
                font-size: 30px;
            }

            .lead-desc {
                font-size: 14px;
                line-height: 1.85;
            }

            .btn-split .btn-text {
                padding: 10px 12px;
                font-size: 12px;
            }

            .btn-split .btn-arrow {
                padding: 10px 8px;
            }

            .funding-title {
                font-size: 30px;
                max-width: 350px;
            }

            .title-wrap {
                max-width: 240px;
            }

            .tier-label {
                letter-spacing: 2px;
                padding: 10px 30px;
                font-size: 16px;
                border-radius: 15px;
            }

            .tier-badge {
                align-items: center;
            }

            .tier-amt {
                font-size: 14px;
            }

            .tier-item {
                align-items: flex-start;
            }

            .story-title {
                font-size: 28px;
            }

            .story-sub {
                font-size: 20px;
            }

            .btn-split {
                font-size: 11px;
            }

            .btn-split .btn-text {
                font-size: 12px;
                padding: 10px;
            }
            .btn-split{
                min-height:30px;
            }
            .btn-split .btn-arrow {
                padding: 10px 10px;
            }

            .btn-split .text {
                padding: 10px;
                ;
            }
        }

        /* small screens adjustments */
        @media (max-width: 360px) {


            .hero .title {
                font-size: 40px;
            }

            .hero .title small {
                font-size: 16px;
            }

            .white-strip {
                padding: 14px;
            }

            .btn {
                padding: 10px 14px;
                font-size: 13px;
            }
        }

        /* tweaks for very small screens */
        @media (max-width: 375px) {
            .portrait {
                max-width: 280px;
            }

            .photo-wrap .decor-square {
                left: -14px;
                top: -14px;
            }

            .lead-copy {
                font-size: 14px;
            }
        }