

        :root {
            --dark: #171614;
            --dark-2: #24211e;
            --cream: #f7f4ef;
            --gold: #b28a57;
            --gold-light: #d4b17d;
            --text: #292725;
            --muted: #77716b;
            --white: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "DM Sans", sans-serif;
            color: var(--text);
            background: var(--white);
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: "Playfair Display", serif;
        }

        a {
            text-decoration: none;
        }

        /* =========================
           TOP BAR
        ========================= */

        .topbar {
            background: var(--dark);
            color: #fff;
            font-size: 13px;
        }

        .topbar a {
            color: #fff;
        }

        .topbar a:hover {
            color: var(--gold-light);
        }

        /* =========================
           NAVBAR
        ========================= */

        .main-navbar {
            background: rgba(255,255,255,.97);
            border-bottom: 1px solid rgba(0,0,0,.07);
            transition: all .3s ease;
        }

        .main-navbar.scrolled {
            box-shadow: 0 8px 30px rgba(0,0,0,.08);
        }

        .navbar-brand {
            font-family: "Playfair Display", serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--dark);
        }

        .navbar-brand span {
            color: var(--gold);
        }

        .navbar-nav .nav-link {
            color: var(--text);
            font-size: 14px;
            font-weight: 600;
            padding: 25px 14px !important;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold);
        }

        .btn-gold {
            background: var(--gold);
            border: 1px solid var(--gold);
            color: #fff;
            padding: 12px 22px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 2px;
        }

        .btn-gold:hover {
            background: var(--dark);
            border-color: var(--dark);
            color: #fff;
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            min-height: 720px;
            position: relative;
            display: flex;
            align-items: center;
            background:
                linear-gradient(
                    90deg,
                    rgba(20,18,16,.88) 0%,
                    rgba(20,18,16,.63) 45%,
                    rgba(20,18,16,.15) 100%
                ),
                url("images/hero-kitchen.jpg") center center / cover no-repeat;
        }

        .hero-content {
            color: #fff;
            max-width: 720px;
        }

        .hero-label {
            color: var(--gold-light);
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: clamp(48px, 6vw, 82px);
            line-height: 1.02;
            margin-bottom: 25px;
        }

        .hero h1 span {
            color: var(--gold-light);
        }

        .hero p {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255,255,255,.82);
            max-width: 600px;
        }

        .hero-buttons {
            margin-top: 35px;
        }

        .btn-outline-light-custom {
            border: 1px solid rgba(255,255,255,.6);
            color: #fff;
            padding: 12px 24px;
            margin-left: 10px;
        }

        .btn-outline-light-custom:hover {
            background: #fff;
            color: var(--dark);
        }

        /* =========================
           SECTION
        ========================= */

        .section {
            padding: 100px 0;
        }

        .section-light {
            background: var(--cream);
        }

        .section-title {
            max-width: 720px;
            margin: 0 auto 55px;
            text-align: center;
        }

        .section-label {
            display: block;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .section-title h2 {
            font-size: clamp(36px, 5vw, 55px);
            margin-bottom: 18px;
        }

        .section-title p {
            color: var(--muted);
            line-height: 1.8;
        }

        /* =========================
           CATEGORIES
        ========================= */

        .category-card {
            position: relative;
            height: 420px;
            overflow: hidden;
            margin-bottom: 25px;
            background: #ddd;
        }

        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .7s ease;
        }

        .category-card:hover img {
            transform: scale(1.06);
        }

        .category-overlay {
            position: absolute;
            inset: auto 0 0 0;
            padding: 30px;
            color: #fff;
            background: linear-gradient(
                transparent,
                rgba(0,0,0,.85)
            );
        }

        .category-overlay h3 {
            margin: 0 0 8px;
            font-size: 28px;
        }

        .category-overlay a {
            color: var(--gold-light);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        /* =========================
           INTRO
        ========================= */

        .intro-image {
            min-height: 560px;
            background: url("images/about-kitchen.jpg") center / cover no-repeat;
        }

        .intro-content {
            padding: 50px 8%;
        }

        .intro-content h2 {
            font-size: 48px;
            margin-bottom: 25px;
        }

        .intro-content p {
            color: var(--muted);
            line-height: 1.9;
        }

        .feature {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            flex: 0 0 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--cream);
            color: var(--gold);
            font-size: 21px;
        }

        .feature h5 {
            font-family: "DM Sans", sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .feature p {
            margin: 0;
            font-size: 14px;
        }

        /* =========================
           PROJECTS
        ========================= */

        .project-card {
            position: relative;
            overflow: hidden;
            height: 430px;
        }

        .project-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .project-card:hover img {
            transform: scale(1.05);
        }

        .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px;
            color: #fff;
            background: linear-gradient(
                transparent,
                rgba(0,0,0,.8)
            );
        }

        .project-info h4 {
            margin: 0;
            font-size: 24px;
        }

        /* =========================
           NUMBERS
        ========================= */

        .numbers {
            background: var(--dark);
            color: #fff;
            padding: 75px 0;
        }

        .number-box {
            text-align: center;
            padding: 20px;
        }

        .number-box strong {
            display: block;
            color: var(--gold-light);
            font-family: "Playfair Display", serif;
            font-size: 52px;
        }

        .number-box span {
            color: rgba(255,255,255,.7);
            font-size: 14px;
        }

        /* =========================
           CTA
        ========================= */

        .cta {
            padding: 100px 0;
            background:
                linear-gradient(
                    rgba(25,22,19,.85),
                    rgba(25,22,19,.85)
                ),
                url("images/cta-kitchen.jpg") center / cover no-repeat;
            color: #fff;
            text-align: center;
        }

        .cta h2 {
            font-size: clamp(38px, 5vw, 60px);
            margin-bottom: 20px;
        }

        .cta p {
            max-width: 650px;
            margin: auto;
            color: rgba(255,255,255,.75);
            line-height: 1.8;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            background: #11100f;
            color: rgba(255,255,255,.7);
            padding: 70px 0 25px;
        }

        footer h4 {
            color: #fff;
            margin-bottom: 20px;
        }

        footer a {
            color: rgba(255,255,255,.65);
        }

        footer a:hover {
            color: var(--gold-light);
        }

        .footer-logo {
            font-family: "Playfair Display", serif;
            font-size: 30px;
            color: #fff;
        }

        .footer-logo span {
            color: var(--gold-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.08);
            margin-top: 50px;
            padding-top: 20px;
            font-size: 12px;
        }

        /* =========================
           MOBILE
        ========================= */

        @media (max-width: 991px) {

            .navbar-nav .nav-link {
                padding: 12px 0 !important;
            }

            .hero {
                min-height: 650px;
            }

            .hero h1 {
                font-size: 52px;
            }

            .section {
                padding: 70px 0;
            }

        }

        @media (max-width: 767px) {

            .topbar {
                display: none;
            }

            .hero {
                min-height: 620px;
            }

            .hero h1 {
                font-size: 44px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero-buttons .btn {
                display: block;
                width: 100%;
                margin: 8px 0;
            }

            .btn-outline-light-custom {
                margin-left: 0;
            }

            .category-card,
            .project-card {
                height: 360px;
            }

            .intro-image {
                min-height: 350px;
            }

            .intro-content {
                padding: 45px 25px;
            }

            .intro-content h2 {
                font-size: 38px;
            }

        }

		```css
/* =========================================================
   ARTICLES LIST
   ========================================================= */

.articles-list {
    background: #f8f7f4;
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Grid */
.articles-list .row {
    align-items: stretch;
}


/* =========================================================
   ARTICLE CARD
   ========================================================= */

.article-card {
    height: 100%;
    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid rgba(30, 30, 30, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    overflow: hidden;
}


/* Hover */

.article-card:hover {
    transform: translateY(-6px);

    border-color: rgba(30, 30, 30, 0.14);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   IMAGE
   ========================================================= */

.article-card-image {
    display: block;

    position: relative;

    width: 100%;
    height: 260px;

    overflow: hidden;

    background: #eee;
}


.article-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s cubic-bezier(.2,.7,.2,1);
}


/* Image zoom */

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}


/* =========================================================
   CARD BODY
   ========================================================= */

.article-card-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 28px 30px 25px;
}


/* =========================================================
   DATE
   ========================================================= */

.article-card-date {
    margin-bottom: 14px;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.7;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #8a8a84;
}


.article-card-date i {
    margin-right: 5px;

    font-size: 12px;

    color: #a18a62;
}


/* =========================================================
   TITLE
   ========================================================= */

.article-card-title {
    margin: 0 0 15px;

    font-family: "Playfair Display", serif;

    font-size: 25px;

    font-weight: 600;

    line-height: 1.25;

    letter-spacing: -0.01em;
}


.article-card-title a {
    color: #242424;

    text-decoration: none;

    transition: color 0.25s ease;
}


.article-card-title a:hover {
    color: #9a8158;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.article-card-description {
    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 400;

    line-height: 1.75;

    color: #666660;

    margin-bottom: 22px;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   FOOTER
   ========================================================= */

.article-card-footer {
    margin-top: auto;

    padding-top: 20px;

    border-top: 1px solid rgba(30, 30, 30, 0.08);
}


/* =========================================================
   READ MORE
   ========================================================= */

.btn-text {
    display: inline-flex;
    align-items: center;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    text-decoration: none;

    color: #292929;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


.btn-text i {
    font-size: 14px;

    transition:
        transform 0.25s ease;
}


.btn-text:hover {
    color: #9a8158;
}


.btn-text:hover i {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .articles-list {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .article-card-image {
        height: 230px;
    }

    .article-card-body {
        padding: 25px;
    }

    .article-card-title {
        font-size: 23px;
    }
}


@media (max-width: 767px) {

    .articles-list {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .article-card-image {
        height: 240px;
    }

    .article-card-body {
        padding: 23px 22px 22px;
    }

    .article-card-title {
        font-size: 22px;
    }

    .article-card-description {
        font-size: 14px;
        line-height: 1.7;
    }
}


@media (max-width: 575px) {

    .article-card-image {
        height: 220px;
    }

    .article-card-title {
        font-size: 21px;
    }
}
```
