
        :root {

            --dark: #171717;
            --dark-2: #222222;

            --gold: #c49a55;
            --gold-light: #e0bd7b;

            --cream: #f8f5ef;
            --white: #ffffff;

            --text: #303030;
            --muted: #747474;

            --border: #e8e1d6;

        }


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }


        html {
            scroll-behavior: smooth;
        }


        body {

            font-family: "DM Sans", sans-serif;

            color: var(--text);

            background: var(--white);

            overflow-x: hidden;

        }


        h1,
        h2,
        h3,
        h4,
        h5 {

            font-family: "Playfair Display", serif;

        }


        a {
            text-decoration: none;
        }


        .section-padding {

            padding: 100px 0;

        }


        .section-heading {

            max-width: 700px;

            margin: 0 auto 55px;

            text-align: center;

        }


        .section-heading .small-title {

            color: var(--gold);

            text-transform: uppercase;

            letter-spacing: 3px;

            font-size: 13px;

            font-weight: 700;

            display: block;

            margin-bottom: 12px;

        }


        .section-heading h2 {

            font-size: 44px;

            color: var(--dark);

            margin-bottom: 15px;

        }


        .section-heading p {

            color: var(--muted);

            line-height: 1.8;

            margin: 0;

        }



        /* =========================
           NAVBAR
        ========================= */

        .navbar {

            background: rgba(23, 23, 23, .97);

            padding: 15px 0;

            position: fixed;

            width: 100%;

            top: 0;

            left: 0;

            z-index: 9999;

            box-shadow: 0 5px 25px rgba(0,0,0,.12);

        }


        .navbar-brand {

            display: flex;

            align-items: center;

            gap: 12px;

            color: #fff !important;

        }


        .brand-icon {

            width: 45px;

            height: 45px;
            color: var(--gold);

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 22px;

        }


        .brand-name {

            font-size: 19px;

            font-weight: 700;

            letter-spacing: 1px;

        }


        .brand-name small {

            display: block;

            color: var(--gold);

            font-size: 9px;

            letter-spacing: 3px;

            font-family: "DM Sans", sans-serif;

        }


        .navbar-nav .nav-link {

            color: #ddd !important;

            font-size: 14px;

            font-weight: 500;

            margin-left: 25px;

            transition: .3s;

        }


        .navbar-nav .nav-link:hover {

            color: var(--gold) !important;

        }


        .nav-btn {

            margin-left: 25px;

            padding: 11px 20px;

            background: var(--gold);

            color: #fff !important;

            font-size: 13px;

            font-weight: 600;

            transition: .3s;

        }


        .nav-btn:hover {

            background: var(--gold-light);

        }



        /* =========================
           HERO
        ========================= */

        .hero {

            min-height: 720px;

            background:

                linear-gradient(
                    90deg,
                    rgba(10,10,10,.92) 0%,
                    rgba(10,10,10,.75) 48%,
                    rgba(10,10,10,.20) 100%
                ),

                url("assets/images/hero.jpg") center/cover no-repeat;

            display: flex;

            align-items: center;

            position: relative;

            padding-top: 80px;

        }


        .hero-content {

            max-width: 700px;

            color: #fff;

        }


        .hero-tag {

            display: inline-flex;

            align-items: center;

            gap: 10px;

            color: var(--gold-light);

            text-transform: uppercase;

            letter-spacing: 3px;

            font-size: 12px;

            font-weight: 700;

            margin-bottom: 20px;

        }


        .hero-tag::before {

            content: "";

            width: 35px;

            height: 1px;

            background: var(--gold);

        }


        .hero h1 {

            font-size: 68px;

            line-height: 1.08;

            margin-bottom: 25px;

        }


        .hero h1 span {

            color: var(--gold-light);

        }


        .hero p {

            max-width: 600px;

            color: #ddd;

            font-size: 17px;

            line-height: 1.8;

            margin-bottom: 35px;

        }


        .btn-gold {

            display: inline-flex;

            align-items: center;

            gap: 10px;

            background: var(--gold);

            color: #fff;

            padding: 14px 25px;

            font-weight: 600;

            font-size: 14px;

            transition: .3s;

            border: none;

        }


        .btn-gold:hover {

            background: var(--gold-light);

            color: #fff;

            transform: translateY(-2px);

        }


        .btn-outline-light-custom {

            display: inline-flex;

            align-items: center;

            gap: 10px;

            border: 1px solid rgba(255,255,255,.6);

            color: #fff;

            padding: 13px 25px;

            font-weight: 600;

            font-size: 14px;

            margin-left: 10px;

            transition: .3s;

        }


        .btn-outline-light-custom:hover {

            background: #fff;

            color: var(--dark);

        }



        /* =========================
           STATS
        ========================= */

        .hero-stats {

            position: absolute;

            bottom: 0;

            left: 0;

            width: 100%;

            background: rgba(15,15,15,.85);

            backdrop-filter: blur(10px);

            border-top: 1px solid rgba(255,255,255,.12);

        }


        .stat-box {

            padding: 20px 15px;

            text-align: center;

            color: #fff;

            border-right: 1px solid rgba(255,255,255,.12);

        }


        .stat-box:last-child {

            border: none;

        }


        .stat-box strong {

            display: block;

            font-family: "Playfair Display", serif;

            color: var(--gold-light);

            font-size: 25px;

        }


        .stat-box span {

            font-size: 11px;

            color: #bbb;

            text-transform: uppercase;

            letter-spacing: 1px;

        }



        /* =========================
           ABOUT
        ========================= */

        .about {
            background: var(--cream);
        }
        .about-image {
            position: relative;
            padding: 20px;

        }
        .about-image img {
            width: 100%;
            height: 530px;
        }
        .about-badge {

            position: absolute;
            bottom: 0;
            right: 0;
            background: var(--dark);
            color: #fff;
            padding: 25px 30px;
            min-width: 180px;

        }


        .about-badge strong {

            display: block;

            color: var(--gold-light);

            font-size: 30px;

            font-family: "Playfair Display", serif;

        }


        .about-content {

            padding-left: 30px;

        }


        .about-content .small-title {

            color: var(--gold);

            text-transform: uppercase;

            letter-spacing: 3px;

            font-size: 12px;

            font-weight: 700;

        }


        .about-content h2 {

            font-size: 45px;

            margin: 12px 0 20px;

            color: var(--dark);

        }


        .about-content p {

            color: var(--muted);

            line-height: 1.9;

        }


        .about-list {

            margin-top: 25px;

            padding: 0;

            list-style: none;

        }


        .about-list li {

            margin-bottom: 14px;

            display: flex;

            gap: 12px;

            align-items: center;

            font-weight: 600;

        }


        .about-list i {

            color: var(--gold);

            font-size: 20px;

        }



        /* =========================
           WHY CHOOSE
        ========================= */

        .why-section {

            background: #fff;

        }


        .feature-card {

            height: 100%;

            border: 1px solid var(--border);

            padding: 35px 30px;

            transition: .35s;

            background: #fff;

        }


        .feature-card:hover {

            transform: translateY(-8px);

            border-color: var(--gold);

            box-shadow: 0 20px 50px rgba(0,0,0,.08);

        }


        .feature-icon {

            width: 58px;

            height: 58px;

            display: flex;

            align-items: center;

            justify-content: center;

            background: var(--cream);

            color: var(--gold);

            font-size: 25px;

            margin-bottom: 22px;

        }


        .feature-card h4 {

            font-size: 22px;

            margin-bottom: 12px;

        }


        .feature-card p {

            color: var(--muted);

            line-height: 1.7;

            margin: 0;

            font-size: 14px;

        }



        /* =========================
           PRODUCTS
        ========================= */

        .products {

            background: var(--cream);

        }


        .product-card {

            background: #fff;

            height: 100%;

            border: 1px solid var(--border);

            overflow: hidden;

            transition: .35s;

        }


        .product-card:hover {

            transform: translateY(-7px);

            box-shadow: 0 20px 40px rgba(0,0,0,.09);

        }


        .product-image {

            height: 270px;

            overflow: hidden;

            position: relative;

        }


        .product-image img {

            width: 100%;
            height: 100%;
            transition: .5s;

        }


        .product-card:hover .product-image img {

            transform: scale(1.07);

        }


        .product-number {

            position: absolute;

            top: 15px;

            left: 15px;

            background: var(--dark);

            color: var(--gold-light);

            width: 38px;

            height: 38px;

            display: flex;

            justify-content: center;

            align-items: center;

            font-size: 12px;

            font-weight: 700;

        }


        .product-body {

            padding: 25px;

        }


        .product-body h4 {

            font-size: 21px;

            margin-bottom: 10px;

        }


        .product-body p {

            color: var(--muted);

            font-size: 13px;

            line-height: 1.7;

            margin-bottom: 18px;

        }


        .product-link {

            color: var(--gold);

            font-size: 13px;

            font-weight: 700;

            text-transform: uppercase;

            letter-spacing: 1px;

        }



        /* =========================
           GALLERY
        ========================= */

        .gallery {

            background: var(--dark);

        }


        .gallery .section-heading h2 {

            color: #fff;

        }


        .gallery .section-heading p {

            color: #aaa;

        }


        .gallery-item {

            height: 280px;

            overflow: hidden;

            position: relative;

        }


        .gallery-item.large {

            height: 580px;

        }


        .gallery-item img {

            width: 100%;

            height: 100%;

            /* object-fit: cover; */

            transition: .5s;

        }


        .gallery-item:hover img {

            transform: scale(1.08);

        }


        .gallery-overlay {

            position: absolute;

            left: 0;

            bottom: 0;

            width: 100%;

            padding: 25px;

            background: linear-gradient(
                transparent,
                rgba(0,0,0,.85)
            );

            color: #fff;

        }


        .gallery-overlay h5 {

            margin: 0;

            font-size: 21px;

        }


        .gallery-overlay span {

            color: var(--gold-light);

            font-size: 11px;

            text-transform: uppercase;

            letter-spacing: 1px;

        }



        /* =========================
           FACTORY
        ========================= */

        .factory {

            background: var(--cream);

        }


        .factory-image img {
            width: 100%;
            height: 480px;
            object-fit: cover;

        }


        .factory-content {

            padding-left: 35px;

        }


        .factory-content h2 {

            font-size: 43px;

            margin: 12px 0 20px;

        }


        .factory-content p {

            color: var(--muted);

            line-height: 1.8;

        }


        .factory-info {

            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 15px;

            margin-top: 25px;

        }


        .factory-box {

            background: #fff;

            padding: 18px;

            border-left: 3px solid var(--gold);

        }


        .factory-box strong {

            display: block;

            font-size: 14px;

            margin-bottom: 5px;

        }


        .factory-box span {

            color: var(--muted);

            font-size: 13px;

        }



        /* =========================
           CTA
        ========================= */

        .cta {

            background:

                linear-gradient(
                    rgba(20,20,20,.92),
                    rgba(20,20,20,.92)
                ),

                url("assets/images/cta.jpg") center/cover;

            padding: 90px 0;

            text-align: center;

            color: #fff;

        }


        .cta h2 {

            font-size: 48px;

            margin-bottom: 15px;

        }


        .cta p {

            max-width: 650px;

            margin: 0 auto 30px;

            color: #ccc;

            line-height: 1.8;

        }



        /* =========================
           CONTACT
        ========================= */

        .contact {

            background: #fff;

        }


        .contact-box {

            height: 100%;

            padding: 35px;

            background: var(--cream);

        }


        .contact-item {

            display: flex;

            gap: 15px;

            margin-bottom: 25px;

        }


        .contact-icon {

            width: 48px;

            height: 48px;

            flex-shrink: 0;

            background: var(--dark);

            color: var(--gold-light);

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 20px;

        }


        .contact-item strong {

            display: block;

            margin-bottom: 5px;

        }


        .contact-item span {

            color: var(--muted);

            font-size: 14px;

            line-height: 1.6;

        }


        .contact-form {

            padding: 35px;

            border: 1px solid var(--border);

        }


        .form-control {

            border-radius: 0;

            border: 1px solid var(--border);

            padding: 14px 15px;

            font-size: 14px;

        }


        .form-control:focus {

            border-color: var(--gold);

            box-shadow: none;

        }


        textarea.form-control {

            min-height: 130px;

        }



        /* =========================
           FOOTER
        ========================= */

        footer {

            background: var(--dark);

            color: #aaa;

            padding-top: 65px;

        }


        .footer-brand {

            color: #fff;

            font-family: "Playfair Display", serif;

            font-size: 24px;

            margin-bottom: 18px;

        }


        .footer-brand span {

            color: var(--gold-light);

        }


        footer p {

            font-size: 13px;

            line-height: 1.8;

        }


        footer h5 {

            color: #fff;

            margin-bottom: 20px;

            font-size: 18px;

        }


        .footer-links {

            list-style: none;

            padding: 0;

            margin: 0;

        }


        .footer-links li {

            margin-bottom: 10px;

        }


        .footer-links a {

            color: #aaa;

            font-size: 13px;

            transition: .3s;

        }


        .footer-links a:hover {

            color: var(--gold-light);

        }


        .footer-social {

            display: flex;

            gap: 10px;

            margin-top: 20px;

        }


        .footer-social a {

            width: 38px;

            height: 38px;

            border: 1px solid #444;

            color: #aaa;

            display: flex;

            justify-content: center;

            align-items: center;

            transition: .3s;

        }


        .footer-social a:hover {

            background: var(--gold);

            border-color: var(--gold);

            color: #fff;

        }


        .copyright {

            border-top: 1px solid #333;

            margin-top: 50px;

            padding: 20px 0;

            text-align: center;

            font-size: 12px;

        }



        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 991px) {

            .navbar-nav {

                padding-top: 15px;

            }

            .navbar-nav .nav-link {

                margin-left: 0;

                padding: 10px 0;

            }

            .nav-btn {

                display: inline-block;

                margin-left: 0;

                margin-top: 10px;

            }

            .hero {

                min-height: 650px;

            }

            .hero h1 {

                font-size: 52px;

            }

            .about-content {

                padding-left: 0;

                margin-top: 30px;

            }

            .factory-content {

                padding-left: 0;

                margin-top: 30px;

            }

        }


        @media (max-width: 767px) {

            .section-padding {

                padding: 70px 0;

            }

            .section-heading {

                margin-bottom: 35px;

            }

            .section-heading h2 {

                font-size: 34px;

            }

            .hero {

                min-height: 650px;

                padding: 100px 0 100px;

                background-position: 65% center;

            }

            .hero h1 {

                font-size: 42px;

            }

            .hero p {

                font-size: 15px;

            }

            .btn-outline-light-custom {

                margin-left: 0;

                margin-top: 10px;

            }

            .hero-stats {

                position: relative;

                margin-top: 40px;

            }

            .stat-box {

                border-bottom: 1px solid rgba(255,255,255,.12);

            }

            .about-image img {

                height: 380px;

            }

            .about-content h2 {

                font-size: 35px;

            }

            .factory-image img {

                height: 350px;

            }

            .factory-content h2 {

                font-size: 35px;

            }

            .gallery-item.large {

                height: 320px;

            }

            .gallery-item {

                height: 250px;

            }

            .cta h2 {

                font-size: 35px;

            }

            .contact-box,

            .contact-form {

                padding: 25px;

            }

        }


        @media (max-width: 480px) {

            .brand-name {

                font-size: 15px;

            }

            .brand-icon {

                width: 38px;

                height: 38px;

            }

            .hero h1 {

                font-size: 36px;

            }

            .hero {

                min-height: 700px;

            }

            .factory-info {

                grid-template-columns: 1fr;

            }

        }

/* logo */
.brand-icon {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-icon img {
    width: 120px;
    height: 100px;
    object-fit: contain;
    display: block;
}