:root {
            --cream: #f8f4e9;
            --cream-light: #fffdf7;
            --gold: #b98a35;
            --gold-light: #d5b66b;
            --green: #526b3e;
            --green-dark: #30452b;
            --text: #514633;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            min-height: 100%;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--cream);
            color: var(--text);
            overflow-x: hidden;
        }

        /* ==============================
           MAIN SECTION
        ============================== */

        .coming-soon {
            position: relative;
            display: flex;
            align-items: center;
            height: 100vh;
            justify-content: center;
            overflow: hidden;
            background: radial-gradient(circle at center, rgb(252 248 237) 0%, rgba(248, 244, 233, 0.95) 42%, #fcf8ed 100%);
        }
        /* ==============================
           DECORATIVE CIRCLES
        ============================== */

        .circle {
            position: absolute;
            border: 1px solid rgba(185, 138, 53, 0.16);
            border-radius: 50%;
            pointer-events: none;
        }

        .circle-one {
            width: 620px;
            height: 620px;
            animation: rotateSlow 35s linear infinite;
        }

        .circle-two {
            width: 850px;
            height: 850px;
            border-color: rgba(82, 107, 62, 0.08);
            animation: rotateReverse 50s linear infinite;
        }

        .circle-three {
            width: 1050px;
            height: 1050px;
            border-color: rgba(185, 138, 53, 0.06);
        }

        @keyframes rotateSlow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes rotateReverse {
            from {
                transform: rotate(360deg);
            }

            to {
                transform: rotate(0deg);
            }
        }

        /* ==============================
           CONTENT
        ============================== */

        .content-wrapper {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 850px;
            padding: 80px 20px;
            text-align: center;
        }
        /* ==============================
           LOGO
        ============================== */

        .logo-wrapper {
            width: 270px;
            max-width: 75vw;
            margin: 0 auto 25px;
            position: relative;
            animation: logoFloat 5s ease-in-out infinite;
        }

        .logo-wrapper::before {
            content: "";
            position: absolute;
            inset: 12%;
            border-radius: 50%;
            background: rgba(185, 138, 53, 0.10);
            filter: blur(25px);
            z-index: -1;
            animation: logoGlow 4s ease-in-out infinite;
        }

        .logo-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes logoGlow {

            0%,
            100% {
                transform: scale(0.9);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.1);
                opacity: 1;
            }
        }

        /* ==============================
           SMALL LABEL
        ============================== */

        .coming-label {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--gold);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .coming-label::before,
        .coming-label::after {
            content: "";
            width: 35px;
            height: 1px;
            background: var(--gold-light);
        }

        /* ==============================
           HEADING
        ============================== */

        .main-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(45px, 7vw, 78px);
            line-height: 0.95;
            font-weight: 600;
            color: var(--green-dark);
            margin-bottom: 20px;
        }

        .main-title span {
            display: block;
            color: var(--gold);
            font-style: italic;
            font-weight: 500;
        }

        .description {
            max-width: 650px;
            margin: 0 auto 30px;
            font-size: 18px;
            line-height: 1.9;
            color: #000000;
            font-weight: 600;
        }
        /* ==============================
           BLOOMING ANIMATION
        ============================== */

        .bloom-wrapper {
            width: 100%;
            max-width: 420px;
            margin: 0 auto 30px;
        }

        .bloom-line {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .bloom-line::before,
        .bloom-line::after {
            content: "";
            height: 1px;
            flex: 1;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(185, 138, 53, 0.55)
            );
        }

        .bloom-line::after {
            background: linear-gradient(
                90deg,
                rgba(185, 138, 53, 0.55),
                transparent
            );
        }

        .lotus-symbol {
            width: 42px;
            height: 42px;
            border: 1px solid rgba(185, 138, 53, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 20px;
            animation: lotusPulse 3s ease-in-out infinite;
        }

        @keyframes lotusPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(185, 138, 53, 0);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 0 25px rgba(185, 138, 53, 0.15);
            }
        }

        /* ==============================
           PROGRESS
        ============================== */

        .progress-area {
            max-width: 430px;
            margin: 0 auto 30px;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 9px;
            font-size: 12px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #000000;
        }

        .custom-progress {
            height: 4px;
            background: rgba(82, 107, 62, 0.12);
            border-radius: 10px;
            overflow: hidden;
        }

        .custom-progress-bar {
            width: 72%;
            height: 100%;
            background: linear-gradient(
                90deg,
                var(--green),
                var(--gold)
            );
            border-radius: 10px;
            animation: progressMove 3s ease-in-out infinite alternate;
        }

        @keyframes progressMove {
            from {
                width: 68%;
            }

            to {
                width: 76%;
            }
        }

        /* ==============================
           CONTACT BUTTON
        ============================== */

        .contact-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 27px;
            border: 1px solid var(--gold);
            border-radius: 50px;
            color: var(--green-dark);
            text-decoration: none;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.35s ease;
            background: rgba(255,255,255,0.25);
        }

        .contact-btn:hover {
            background: var(--green-dark);
            border-color: var(--green-dark);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(48, 69, 43, 0.15);
        }

        /* ==============================
           FOOTER
        ============================== */

        .footer-text {
            margin-top: 35px;
            font-size: 10px;
            color: #8d826d;
            letter-spacing: 1.5px;
        }

        /* ==============================
           FLOATING LEAVES
        ============================== */

        .leaf {
            position: absolute;
            width: 35px;
            height: 18px;
            border-radius: 100% 0 100% 0;
            background: rgba(82, 107, 62, 0.12);
            pointer-events: none;
        }

        .leaf-one {
            left: 10%;
            top: 25%;
            transform: rotate(-35deg);
            animation: leafFloatOne 7s ease-in-out infinite;
        }

        .leaf-two {
            right: 11%;
            top: 30%;
            transform: rotate(40deg);
            animation: leafFloatTwo 8s ease-in-out infinite;
        }

        .leaf-three {
            left: 15%;
            bottom: 20%;
            transform: rotate(20deg);
            animation: leafFloatOne 9s ease-in-out infinite;
        }

        .leaf-four {
            right: 15%;
            bottom: 22%;
            transform: rotate(-25deg);
            animation: leafFloatTwo 6s ease-in-out infinite;
        }

        @keyframes leafFloatOne {

            0%,
            100% {
                transform: translate(0, 0) rotate(-35deg);
            }

            50% {
                transform: translate(15px, -20px) rotate(-20deg);
            }
        }

        @keyframes leafFloatTwo {

            0%,
            100% {
                transform: translate(0, 0) rotate(40deg);
            }

            50% {
                transform: translate(-15px, 18px) rotate(55deg);
            }
        }

        /* ==============================
           DOTS
        ============================== */

        .dot {
            position: absolute;
            width: 5px;
            height: 5px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.35;
            animation: dotPulse 3s ease-in-out infinite;
        }

        .dot-one {
            top: 18%;
            left: 23%;
        }

        .dot-two {
            top: 22%;
            right: 22%;
            animation-delay: 1s;
        }

        .dot-three {
            bottom: 18%;
            left: 27%;
            animation-delay: 1.5s;
        }

        .dot-four {
            bottom: 25%;
            right: 25%;
            animation-delay: 0.5s;
        }

        @keyframes dotPulse {

            0%,
            100% {
                opacity: 0.2;
                transform: scale(1);
            }

            50% {
                opacity: 0.7;
                transform: scale(1.8);
            }
        }

        /* ==============================
           TABLET
        ============================== */

        @media (max-width: 991px) {

            .circle-one {
                width: 500px;
                height: 500px;
            }

            .circle-two {
                width: 700px;
                height: 700px;
            }

            .circle-three {
                width: 850px;
                height: 850px;
            }

            .logo-wrapper {
                width: 245px;
            }

            .leaf-one {
                left: 5%;
            }

            .leaf-two {
                right: 5%;
            }
        }

        /* ==============================
           MOBILE
        ============================== */

        @media (max-width: 575px) {

            .coming-soon {
                min-height: 100svh;
            }

            .content-wrapper {
                padding: 35px 18px;
            }

            .logo-wrapper {
                width: 210px;
                margin-bottom: 18px;
            }

            .coming-label {
                font-size: 12px;
                letter-spacing: 2.5px;
                gap: 8px;
            }

            .coming-label::before,
            .coming-label::after {
                width: 20px;
            }

            .main-title {
                font-size: clamp(40px, 12vw, 58px);
                margin-bottom: 15px;
            }

            .description {
                font-size: 14px;
                line-height: 1.75;
                max-width: 340px;
                margin-bottom: 24px;
            }

            .bloom-wrapper {
                max-width: 300px;
                margin-bottom: 25px;
            }

            .lotus-symbol {
                width: 36px;
                height: 36px;
                font-size: 17px;
            }

            .progress-area {
                max-width: 300px;
            }

            .contact-btn {
                padding: 11px 22px;
                font-size: 9px;
            }

            .footer-text {
                margin-top: 25px;
                font-size: 8px;
            }

            .circle-one {
                width: 350px;
                height: 350px;
            }

            .circle-two {
                width: 500px;
                height: 500px;
            }

            .circle-three {
                width: 650px;
                height: 650px;
            }

            .leaf {
                width: 25px;
                height: 13px;
            }

            .leaf-one {
                left: 2%;
                top: 20%;
            }

            .leaf-two {
                right: 2%;
                top: 25%;
            }

            .leaf-three {
                left: 5%;
                bottom: 15%;
            }

            .leaf-four {
                right: 5%;
                bottom: 17%;
            }

            .dot-one {
                left: 15%;
            }

            .dot-two {
                right: 15%;
            }

            .dot-three {
                left: 18%;
            }

            .dot-four {
                right: 18%;
            }
        }