
/* =========================================================
   CASA LUXE INTERIORS
   PREMIUM INTERIOR DESIGN WEBSITE
========================================================= */


/* =========================================================
   1. ROOT VARIABLES
========================================================= */

:root {
    --cream: #f8f5f0;
    --beige: #e8ded2;
    --taupe: #b7a99a;
    --brown: #796b5d;
    --gold: #b89b6a;
    --dark: #292725;
    --white: #ffffff;
    --light-gray: #eeeae5;

    --heading-font: "Playfair Display", serif;
    --body-font: "DM Sans", sans-serif;

    --container: 1200px;
}


/* =========================================================
   2. RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 320px;

    font-family: var(--body-font);
    background: var(--cream);
    color: var(--dark);

    overflow-x: hidden;
}

main,
section,
header,
footer {
    width: 100%;
}

img {
    width: 100%;
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}


/* =========================================================
   3. COMMON
========================================================= */

.container {
    width: min(90%, var(--container));
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 110px 0;
}

.section-label {
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

h1,
h2,
h3 {
    font-family: var(--heading-font);
    font-weight: 500;
}

h2 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.1;
}

h2 em {
    color: var(--brown);
    font-style: italic;
}


/* =========================================================
   4. HEADER / NAVBAR
========================================================= */

.header {
    background: #f6ecd9;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: auto;

    z-index: 1000;

    transition: 0.4s ease;
}

.header.scrolled {
    background: rgba(248, 245, 240, 0.96);
    backdrop-filter: blur(15px);

    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.navbar {
    width: min(90%, var(--container));
    max-width: 1200px;

    height: 90px;

    margin-left: auto;
    margin-right: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}

.logo {
    font-family: var(--heading-font);
    font-size: 29px;
    font-weight: 600;

    letter-spacing: -1px;

    white-space: nowrap;
}

.logo span {
    color: var(--gold);
}


/* =========================================================
   5. DESKTOP NAVIGATION
========================================================= */

.nav-menu {
    display: flex;
    align-items: center;

    gap: 35px;

    list-style: none;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    position: relative;

    font-size: 14px;

    color: var(--dark);

    transition: 0.3s;
}

.nav-menu a:not(.nav-btn)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s;
}

.nav-menu a:not(.nav-btn):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 22px;

    border: 1px solid var(--dark);

    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--dark);
    color: var(--white) !important;
}


/* =========================================================
   6. MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;

    flex-shrink: 0;
}

.menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: var(--dark);

    transition: 0.3s;
}


/* =========================================================
   7. HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-bg {
    position: absolute;

    top: -8%;
    left: -8%;
    right: -8%;
    bottom: -8%;

    background-image:
        url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=2200&q=90");

    background-size: cover;
    background-position: center;

    transform: scale(1.08);

    animation: heroZoom 12s ease-out forwards;

    pointer-events: none;
}

@keyframes heroZoom {

    from {
        transform: scale(1.15);
    }

    to {
        transform: scale(1.03);
    }
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(20, 18, 16, 0.72),
            rgba(20, 18, 16, 0.25),
            rgba(20, 18, 16, 0.08)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(90%, var(--container));
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;

    color: var(--white);

    padding-top: 80px;
}

.hero-small {
    font-size: 12px;

    letter-spacing: 4px;

    margin-bottom: 25px;

    color: #e4d2b3;
}

.hero h1 {
    max-width: 750px;

    font-size: clamp(55px, 8vw, 105px);

    line-height: 0.98;

    margin-bottom: 30px;
}

.hero h1 span {
    display: block;

    color: #e3d2b8;

    font-style: italic;
}

.hero-description {
    max-width: 530px;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.85);

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


/* =========================================================
   8. BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 27px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition: 0.4s ease;

    position: relative;

    overflow: hidden;

    max-width: 100%;
}

.btn-primary {
    background: var(--gold);

    color: var(--white);
}

.btn-primary:hover {
    background: var(--white);

    color: var(--dark);

    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);

    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);

    color: var(--dark);

    transform: translateY(-3px);
}


/* =========================================================
   9. SCROLL INDICATOR
========================================================= */

.scroll-down {
    position: absolute;

    z-index: 2;

    right: 5%;
    bottom: 45px;

    color: var(--white);

    display: flex;

    align-items: center;

    gap: 15px;

    transform: rotate(90deg);

    transform-origin: right center;

    white-space: nowrap;
}

.scroll-down span {
    font-size: 10px;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.scroll-line {
    width: 60px;

    height: 1px;

    background: rgba(255, 255, 255, 0.6);

    flex-shrink: 0;
}


/* =========================================================
   10. INTRO SECTION
========================================================= */

.intro {
    background: var(--cream);
}

.intro-grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 100px;

    min-width: 0;
}

.intro-image {
    position: relative;

    min-width: 0;

    max-width: 100%;
}

.image-frame {
    width: 100%;

    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 620px;

    object-fit: cover;

    transition: transform 1s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.experience-box {
    position: absolute;

    right: -40px;
    bottom: 40px;

    width: 160px;
    height: 160px;

    background: var(--gold);

    color: var(--white);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    z-index: 2;
}

.experience-box strong {
    font-family: var(--heading-font);

    font-size: 48px;

    font-weight: 500;
}

.experience-box span {
    font-size: 11px;

    letter-spacing: 1px;

    line-height: 1.5;
}

.intro-content {
    min-width: 0;
    max-width: 100%;
}

.intro-content p:not(.section-label) {
    color: var(--brown);

    line-height: 1.9;

    margin-top: 25px;

    max-width: 520px;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 30px;

    font-size: 13px;

    font-weight: 600;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 7px;

    transition: 0.3s;
}

.text-link span {
    transition: 0.3s;
}

.text-link:hover {
    color: var(--gold);
}

.text-link:hover span {
    transform: translateX(7px);
}


/* =========================================================
   11. SERVICES
========================================================= */

.services-preview {
    background: var(--white);
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 60px;

    min-width: 0;
}

.section-heading > * {
    min-width: 0;
}

.section-heading h2 {
    max-width: 650px;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 1px;

    background: var(--beige);

    min-width: 0;
}

.service-card {
    position: relative;

    min-height: 390px;

    min-width: 0;

    padding: 45px 40px;

    background: var(--white);

    transition: 0.5s ease;

    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 0;

    background: var(--cream);

    transition: 0.5s ease;

    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card > * {
    position: relative;

    z-index: 1;
}

.service-number {
    position: absolute;

    top: 30px;
    right: 35px;

    font-family: var(--heading-font);

    color: var(--taupe);

    font-size: 18px;
}

.service-icon {
    font-size: 38px;

    color: var(--gold);

    margin-top: 45px;

    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 32px;

    line-height: 1.1;

    max-width: 250px;

    margin-bottom: 20px;
}

.service-card p {
    color: var(--brown);

    font-size: 14px;

    line-height: 1.8;

    max-width: 300px;
}

.service-card a {
    display: inline-flex;

    gap: 10px;

    margin-top: 25px;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.service-card a span {
    transition: 0.3s;
}

.service-card a:hover span {
    transform: translateX(6px);
}


/* =========================================================
   12. PROJECTS
========================================================= */

.projects {
    background: var(--cream);
}

.project-grid {
    display: grid;

    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);

    grid-template-rows: 400px 400px;

    gap: 20px;

    min-width: 0;
}

.project-item {
    position: relative;

    overflow: hidden;

    min-width: 0;
}

.project-large {
    grid-row: span 2;
}

.project-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.project-item:hover img {
    transform: scale(1.08);
}

.project-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 40%,
            rgba(0, 0, 0, 0.75)
        );

    opacity: 0.8;
}

.project-overlay {
    position: absolute;

    left: 30px;
    right: 20px;
    bottom: 30px;

    z-index: 2;

    color: var(--white);

    max-width: 100%;
}

.project-overlay p {
    color: #dfc79f;

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.project-overlay h3 {
    font-size: 25px;

    line-height: 1.2;
}


/* =========================================================
   13. STATS / PARALLAX SECTION
========================================================= */

.stats {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    color: var(--white);
}

.stats-bg {
    position: absolute;

    top: -15%;
    left: -15%;
    right: -15%;
    bottom: -15%;

    background-image:
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=85");

    background-size: cover;

    background-position: center;

    transform: scale(1.05);
}

.stats-overlay {
    position: absolute;

    inset: 0;

    background: rgba(35, 30, 26, 0.78);
}

.stats-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px;

    text-align: center;

    min-width: 0;
}

.stat {
    padding: 20px;

    min-width: 0;
}

.stat strong {
    display: block;

    font-family: var(--heading-font);

    font-size: 60px;

    font-weight: 400;

    color: #e2cfac;

    margin-bottom: 10px;
}

.stat span {
    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   14. TESTIMONIAL
========================================================= */

.testimonial-preview {
    background: var(--white);

    text-align: center;
}

.testimonial-content {
    max-width: 850px;

    margin-left: auto;
    margin-right: auto;

    min-width: 0;
}

.quote {
    font-family: var(--heading-font);

    color: var(--gold);

    font-size: 80px;

    line-height: 0.7;

    margin: 25px 0;
}

blockquote {
    font-family: var(--heading-font);

    font-size: clamp(27px, 4vw, 44px);

    line-height: 1.4;

    color: var(--dark);

    font-style: italic;

    overflow-wrap: break-word;
}

.client {
    margin-top: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;
}

.client-avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: var(--beige);

    display: flex;

    align-items: center;
    justify-content: center;

    font-family: var(--heading-font);

    color: var(--brown);

    flex-shrink: 0;
}

.client div:last-child {
    display: flex;

    flex-direction: column;

    text-align: left;
}

.client strong {
    font-size: 13px;
}

.client span {
    color: var(--taupe);

    font-size: 11px;

    margin-top: 4px;
}


/* =========================================================
   15. CTA
========================================================= */

.cta {
    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    overflow: hidden;

    text-align: center;

    color: var(--white);
}

.cta-bg {
    position: absolute;

    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;

    background-image:
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=90");

    background-size: cover;

    background-position: center;

    transform: scale(1.05);
}

.cta-overlay {
    position: absolute;

    inset: 0;

    background: rgba(35, 30, 26, 0.72);
}

.cta-content {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin-left: auto;
    margin-right: auto;

    min-width: 0;
}

.cta-content h2 {
    font-size: clamp(45px, 7vw, 80px);

    margin-bottom: 25px;
}

.cta-content p:not(.section-label) {
    max-width: 550px;

    margin: 0 auto 30px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.8);
}


/* =========================================================
   16. FOOTER
========================================================= */

.footer {
    background: #252321;

    color: var(--white);

    padding-top: 80px;

    overflow: hidden;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 2fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 80px;

    padding-bottom: 70px;

    min-width: 0;
}

.footer-grid > * {
    min-width: 0;
}

.footer .logo {
    color: var(--white);
}

.footer-brand p {
    max-width: 300px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.55);

    line-height: 1.8;

    font-size: 14px;
}

.footer h4 {
    font-size: 12px;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #d5b988;

    margin-bottom: 25px;
}

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.footer-links a,
.footer-contact p {
    font-size: 13px;

    color: rgba(255, 255, 255, 0.6);

    transition: 0.3s;

    overflow-wrap: anywhere;
}

.footer-links a:hover {
    color: var(--white);

    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding: 22px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;

    text-align: center;
}


/* =========================================================
   17. SCROLL REVEAL ANIMATION
========================================================= */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;

    min-width: 0;
}

.reveal {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-70px);
}

.reveal-right {
    transform: translateX(70px);
}

.reveal.show,
.reveal-left.show,
.reveal-right.show {
    opacity: 1;

    transform: translate(0);
}


/* =========================================================
   18. TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 20px;
    }

    .intro-grid {
        gap: 50px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card:last-child {
        grid-column: span 2;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        gap: 40px;
    }

    .experience-box {
        right: -20px;
    }
}


/* =========================================================
   19. MOBILE
========================================================= */

@media (max-width: 768px) {

    /* GLOBAL MOBILE SAFETY */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section-padding {
        padding: 80px 0;
    }

    .container {
        width: 90%;
        max-width: 100%;
        min-width: 0;
    }


    /* =====================================================
       NAVBAR
    ===================================================== */

    .navbar {
        width: 90%;
        height: 75px;
    }

    .menu-toggle {
        display: flex;

        position: relative;

        z-index: 1002;
    }

    .nav-menu {
        position: fixed;

        top: 0;
        right: 0;

        width: min(85%, 350px);
        max-width: 100vw;

        height: 100vh;

        background: var(--cream);

        padding: 110px 35px 40px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);

        transform: translateX(100%);

        transition: transform 0.4s ease;

        overflow-y: auto;
        overflow-x: hidden;

        z-index: 1001;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: auto;
        max-width: 100%;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .nav-btn {
        margin-top: 10px;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: 650px;
    }

    .hero-bg {
        top: -5%;
        left: -10%;
        right: -10%;
        bottom: -5%;

        background-position: 60% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(20, 18, 16, 0.78),
                rgba(20, 18, 16, 0.35)
            );
    }

    .hero-content {
        width: 90%;

        padding-top: 50px;

        min-width: 0;
    }

    .hero h1 {
        max-width: 100%;

        font-size: clamp(48px, 14vw, 72px);

        overflow-wrap: break-word;
    }

    .hero-description {
        max-width: 100%;

        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;

        width: 100%;
    }

    .btn {
        width: auto;

        max-width: 100%;
    }

    .scroll-down {
        display: none;
    }


    /* =====================================================
       INTRO
    ===================================================== */

    .intro-grid {
        grid-template-columns: minmax(0, 1fr);

        gap: 60px;

        width: 90%;
    }

    .intro-image,
    .intro-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .image-frame {
        width: 100%;
    }

    .image-frame img {
        width: 100%;
        height: 500px;
    }

    .experience-box {
        right: 15px;
        bottom: 20px;

        width: 130px;
        height: 130px;
    }

    .experience-box strong {
        font-size: 38px;
    }


    /* =====================================================
       SECTION HEADING
    ===================================================== */

    .section-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 25px;

        width: 100%;
    }

    .section-heading h2 {
        max-width: 100%;

        overflow-wrap: break-word;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services-grid {
        grid-template-columns: minmax(0, 1fr);

        width: 100%;
    }

    .service-card {
        width: 100%;
        min-width: 0;

        padding: 35px 28px;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .service-card h3 {
        max-width: 100%;
    }

    .service-card p {
        max-width: 100%;
    }


    /* =====================================================
       PROJECTS
    ===================================================== */

    .project-grid {
        grid-template-columns: minmax(0, 1fr);

        grid-template-rows:
            400px
            300px
            300px;

        width: 100%;

        gap: 20px;
    }

    .project-large {
        grid-row: auto;
    }

    .project-item {
        width: 100%;
        min-width: 0;
    }

    .project-overlay {
        left: 25px;
        right: 20px;
        bottom: 25px;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .stats {
        padding: 80px 0;
    }

    .stats-bg {
        top: -10%;
        left: -10%;
        right: -10%;
        bottom: -10%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 20px;

        width: 90%;
    }

    .stat {
        padding: 15px 5px;
    }

    .stat strong {
        font-size: 45px;
    }

    .stat span {
        font-size: 10px;

        line-height: 1.5;
    }


    /* =====================================================
       TESTIMONIAL
    ===================================================== */

    .testimonial-content {
        width: 100%;

        max-width: 100%;

        min-width: 0;
    }

    blockquote {
        font-size: clamp(27px, 8vw, 40px);

        overflow-wrap: break-word;
    }


    /* =====================================================
       CTA
    ===================================================== */

    .cta {
        min-height: 500px;

        padding: 80px 0;
    }

    .cta-bg {
        top: -10%;
        left: -10%;
        right: -10%;
        bottom: -10%;
    }

    .cta-content {
        width: 90%;

        max-width: 100%;
    }

    .cta-content h2 {
        font-size: clamp(45px, 12vw, 65px);

        overflow-wrap: break-word;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);

        gap: 45px;

        width: 90%;
    }

    .footer-grid > * {
        min-width: 0;
        max-width: 100%;
    }


    /* =====================================================
       MOBILE REVEAL ANIMATION
    ===================================================== */

    .reveal-left {
        transform: translateX(-30px);
    }

    .reveal-right {
        transform: translateX(30px);
    }
}


/* =========================================================
   20. SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 88%;
        max-width: 100%;
    }

    .navbar {
        width: 88%;
    }

    .hero-content {
        width: 88%;
    }

    .hero h1 {
        font-size: 48px;

        line-height: 1;
    }

    .hero-description {
        max-width: 100%;
    }

    .image-frame img {
        height: 420px;
    }

    .experience-box {
        right: 10px;

        width: 115px;
        height: 115px;
    }

    .experience-box strong {
        font-size: 32px;
    }

    .service-card {
        padding: 35px 28px;
    }

    .stats-grid {
        grid-template-columns: minmax(0, 1fr);

        gap: 25px;
    }

    .stat strong {
        font-size: 50px;
    }

    blockquote {
        font-size: 27px;
    }

    .project-grid {
        grid-template-rows:
            350px
            280px
            280px;
    }

    .project-overlay h3 {
        font-size: 22px;
    }

    .cta {
        min-height: 500px;
    }
}


/* =========================================================
   21. VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .container,
    .navbar,
    .hero-content {
        width: 90%;
    }

    .logo {
        font-size: 25px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .experience-box {
        width: 105px;
        height: 105px;
    }

    .experience-box strong {
        font-size: 29px;
    }

    .service-card {
        padding: 30px 22px;
    }

    .project-grid {
        grid-template-rows:
            320px
            250px
            250px;
    }
}
```
