﻿/* =========================================================
   GLOBAL VARIABLES
   ========================================================= */

:root {
    --primary: #1f4d36;
    --primary-dark: #163526;
    --secondary: #f5f1e8;
    --accent: #d8893f;
    --text: #222222;
    --muted: #666666;
    --white: #ffffff;
    --border: #dddddd;
    --max-width: 1200px;
    --radius: 10px;
}


/* =========================================================
   RESET / BASE STYLES
   ========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
}


img {
    max-width: 100%;
    display: block;
}


a {
    color: inherit;
}


.container {
    width: min(90%, var(--max-width));
    margin: 0 auto;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}


.nav-wrapper {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}


.main-nav {
    display: flex;
    gap: 28px;
}


    .main-nav a {
        text-decoration: none;
        color: var(--text);
        font-weight: 600;
    }


        .main-nav a:hover {
            color: var(--primary);
        }


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}


    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        margin: 5px 0;
        background: var(--primary);
        border-radius: 5px;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }


    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }


    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }


    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-block;
    padding: 14px 24px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}


    .btn:hover {
        transform: translateY(-2px);
        opacity: 0.92;
    }


.btn-small {
    padding: 11px 18px;
}


.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
}


/* =========================================================
   HOMEPAGE HERO
   ========================================================= */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient( rgba(17, 48, 33, 0.72), rgba(17, 48, 33, 0.72) ), url("../images/hero-landscape.jpg") center / cover no-repeat;
    color: var(--white);
}


.hero-content {
    padding: 90px 0;
}


.eyebrow {
    margin-bottom: 12px;
    color: #f1c28c;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}


.hero h1 {
    max-width: 800px;
    margin: 0 0 22px;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.98;
}


.hero-text {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.7;
    color: #f2f2f2;
}


.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
    padding: 100px 0;
}


.section-label {
    margin-bottom: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}


.section h2 {
    max-width: 760px;
    margin-top: 0;
    margin-bottom: 45px;
    font-size: clamp(34px, 5vw, 52px);
}


/* =========================================================
   HOMEPAGE SERVICES
   ========================================================= */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.service-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
    }


    .service-card h3 {
        margin-top: 0;
        color: var(--primary);
        font-size: 22px;
    }


    .service-card p {
        margin-bottom: 0;
        color: var(--muted);
        line-height: 1.7;
    }


/* =========================================================
   HOMEPAGE ABOUT
   ========================================================= */

.about-section {
    background: var(--secondary);
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.about-content h2 {
    margin-bottom: 25px;
}


.about-text {
    color: var(--muted);
    line-height: 1.8;
    font-size: 18px;
}


.about-content .btn {
    margin-top: 15px;
}


.trust-box {
    background: var(--primary);
    color: var(--white);
    padding: 45px;
    border-radius: var(--radius);
}


.trust-item {
    display: flex;
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


    .trust-item:first-child {
        padding-top: 0;
    }


    .trust-item:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }


.trust-number {
    color: #f1c28c;
    font-size: 18px;
    font-weight: 800;
}


.trust-item h3 {
    margin: 0 0 8px;
    font-size: 22px;
}


.trust-item p {
    margin: 0;
    color: #dddddd;
    line-height: 1.6;
}


/* =========================================================
   HOMEPAGE GALLERY
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.project-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    }


    .project-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }


.project-info {
    padding: 22px;
}


    .project-info h3 {
        margin: 0 0 6px;
        color: var(--primary);
        font-size: 22px;
    }


    .project-info p {
        margin: 0;
        color: var(--muted);
    }


/* =========================================================
   REVIEWS
   ========================================================= */

.reviews-section {
    background: var(--secondary);
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.review-card {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}


.stars {
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 22px;
    letter-spacing: 2px;
}


.review-text {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.8;
}


.review-author {
    margin: 0;
    color: var(--primary);
    font-weight: 800;
}


/* =========================================================
   SERVICE AREA
   ========================================================= */

.service-area-section {
    background: var(--white);
}


.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.service-area-text {
    max-width: 600px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
}


.city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}


.city-card {
    padding: 25px;
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
    text-align: center;
    border-radius: var(--radius);
    border: 1px solid #ebe4d7;
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    background: var(--primary);
    color: var(--white);
}


.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}


.contact-content .section-label {
    color: #f1c28c;
}


.contact-content h2 {
    margin-bottom: 25px;
}


.contact-content > p {
    max-width: 550px;
    font-size: 18px;
    line-height: 1.8;
    color: #eeeeee;
}


.contact-details {
    margin-top: 35px;
}


    .contact-details p {
        margin: 12px 0;
        color: #eeeeee;
    }


    .contact-details a {
        color: var(--white);
    }


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form {
    padding: 35px;
    display: grid;
    gap: 20px;
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


.form-group {
    display: grid;
    gap: 8px;
}


    .form-group label {
        font-weight: 700;
        color: var(--primary);
    }


    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 7px;
        font: inherit;
        background: var(--white);
        color: var(--text);
    }


        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: 2px solid var(--accent);
            border-color: transparent;
        }


    .form-group textarea {
        resize: vertical;
    }


.contact-form .btn {
    justify-self: start;
}


.form-submit {
    font-size: 16px;
}


.form-note {
    margin: -5px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}


.hidden-field {
    position: absolute;
    left: -9999px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 55px 0 20px;
    background: #111111;
    color: var(--white);
}


.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}


    .footer-content strong {
        font-size: 20px;
    }


    .footer-content p {
        color: #bbbbbb;
        line-height: 1.7;
    }


    .footer-content a {
        text-decoration: none;
        font-weight: 700;
    }


.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #888888;
    font-size: 14px;
}


/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--secondary);
}


.thank-you-card {
    width: min(100%, 680px);
    padding: 60px;
    background: var(--white);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}


.thank-you-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 34px;
    font-weight: 800;
}


.thank-you-card h1 {
    margin: 0 0 18px;
    color: var(--primary);
    font-size: clamp(36px, 6vw, 54px);
}


.thank-you-card p {
    margin: 0 auto 30px;
    max-width: 520px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   SHARED INNER PAGE HERO
   Used by Services, About, Gallery, Contact, etc.
   ========================================================= */

.page-hero {
    padding: 120px 0;
    background: linear-gradient( rgba(17, 48, 33, 0.82), rgba(17, 48, 33, 0.82) ), url("../images/hero-landscape.jpg") center / cover no-repeat;
    color: var(--white);
}


    .page-hero h1 {
        max-width: 900px;
        margin: 0 0 25px;
        font-size: clamp(46px, 7vw, 76px);
        line-height: 1;
    }


.page-hero-text {
    max-width: 720px;
    margin-bottom: 32px;
    color: #eeeeee;
    font-size: 20px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES PAGE - SERVICE DETAIL SECTIONS
   ========================================================= */

.service-detail-section {
    background: var(--white);
}


.alt-section {
    background: var(--secondary);
}


.service-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}


    .service-detail-grid.reverse {
        grid-template-columns: 0.85fr 1.15fr;
    }


        .service-detail-grid.reverse .service-detail-content {
            order: 2;
        }


        .service-detail-grid.reverse .service-image-card {
            order: 1;
        }


.service-detail-content h2 {
    margin-bottom: 25px;
}


.service-detail-content > p {
    max-width: 700px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}


.service-list {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}


    .service-list li {
        position: relative;
        margin-bottom: 14px;
        padding-left: 30px;
        color: var(--text);
        font-size: 17px;
        line-height: 1.6;
    }


        .service-list li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent);
            font-weight: 800;
        }


/* =========================================================
   SERVICES PAGE - IMAGE CARDS
   ========================================================= */

.service-image-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
}


    .service-image-card img {
        width: 100%;
        height: 430px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }


    .service-image-card:hover img {
        transform: scale(1.04);
    }


    .service-image-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( transparent 45%, rgba(10, 30, 20, 0.82) );
        pointer-events: none;
    }


.service-image-label {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
}


    .service-image-label span {
        color: #f1c28c;
        font-size: 17px;
        letter-spacing: 2px;
    }


/* =========================================================
   SHARED WHY CHOOSE US SECTION
   ========================================================= */

.why-us-section {
    background: var(--white);
}


.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.why-us-card {
    padding: 32px;
    background: var(--secondary);
    border: 1px solid #ebe4d7;
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .why-us-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }


    .why-us-card h3 {
        margin-top: 0;
        color: var(--primary);
        font-size: 23px;
    }


    .why-us-card p {
        margin-bottom: 0;
        color: var(--muted);
        line-height: 1.7;
    }


/* =========================================================
   SHARED INNER PAGE CTA
   ========================================================= */

.services-cta {
    padding: 85px 0;
    background: var(--primary);
    color: var(--white);
}


.services-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


.services-cta .section-label {
    color: #f1c28c;
}


.services-cta h2 {
    margin: 0 0 15px;
    font-size: clamp(34px, 5vw, 52px);
}


.services-cta p {
    margin: 0;
    max-width: 650px;
    color: #dddddd;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   ABOUT PAGE - STORY SECTION
   ========================================================= */

.about-page-section {
    background: var(--white);
}


.about-page-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}


.about-page-content h2 {
    margin-bottom: 25px;
}


.about-page-content > p {
    max-width: 700px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}


.about-page-content .btn {
    margin-top: 15px;
}


/* =========================================================
   ABOUT PAGE - HIGHLIGHT BOX
   ========================================================= */

.about-highlight-box {
    padding: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


    .about-highlight-box .section-label {
        color: #f1c28c;
    }


    .about-highlight-box h3 {
        margin: 0 0 18px;
        font-size: 30px;
        line-height: 1.25;
    }


    .about-highlight-box > p {
        margin-bottom: 25px;
        color: #dddddd;
        font-size: 17px;
        line-height: 1.7;
    }


.about-check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}


    .about-check-list li {
        position: relative;
        padding: 13px 0 13px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
        color: #eeeeee;
        line-height: 1.5;
    }


        .about-check-list li:last-child {
            border-bottom: none;
        }


        .about-check-list li::before {
            content: "\2713";
            position: absolute;
            left: 0;
            color: #f1c28c;
            font-weight: 800;
        }


/* =========================================================
   ABOUT PAGE - VALUES
   ========================================================= */

.values-section {
    background: var(--secondary);
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


.value-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid #ebe4d7;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .value-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }


.value-number {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2px;
}


.value-card h3 {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 23px;
}


.value-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}


/* =========================================================
   ABOUT PAGE - LOCAL SERVICE SECTION
   ========================================================= */

.local-service-section {
    background: var(--white);
}


.local-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.local-service-text {
    max-width: 620px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}


.local-service-grid .btn {
    margin-top: 15px;
}


/* =========================================================
   ABOUT PAGE - SERVICE AREA CARDS
   ========================================================= */

.about-service-area-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}


.about-service-area-item {
    padding: 28px 18px;
    background: var(--secondary);
    color: var(--primary);
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    border: 1px solid #ebe4d7;
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .about-service-area-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    }


/* =========================================================
   GALLERY PAGE - INTRO / PROJECT SECTION
   ========================================================= */

.gallery-page-section {
    background: var(--white);
}


.gallery-page-intro {
    max-width: 760px;
    margin: -20px 0 50px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   GALLERY PAGE - PROJECT GRID
   ========================================================= */

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* =========================================================
   GALLERY PAGE - PROJECT CARDS
   ========================================================= */

.gallery-page-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}


    .gallery-page-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
    }


    .gallery-page-card img {
        width: 100%;
        height: 390px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }


    .gallery-page-card:hover img {
        transform: scale(1.035);
    }


/* =========================================================
   GALLERY PAGE - PROJECT CARD CONTENT
   ========================================================= */

.gallery-page-card-content {
    padding: 26px;
}


.gallery-project-type {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    font-weight: 800;
}


.gallery-page-card-content h3 {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 24px;
}


.gallery-page-card-content p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}


/* =========================================================
   GALLERY PAGE - PROJECT PROCESS SECTION
   ========================================================= */

.gallery-process-section {
    background: var(--secondary);
}


.gallery-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* =========================================================
   GALLERY PAGE - PROJECT PROCESS CARDS
   ========================================================= */

.gallery-process-card {
    padding: 34px;
    background: var(--white);
    border: 1px solid #ebe4d7;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .gallery-process-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }


    .gallery-process-card > span {
        display: inline-block;
        margin-bottom: 18px;
        color: var(--accent);
        font-size: 17px;
        font-weight: 800;
        letter-spacing: 2px;
    }


    .gallery-process-card h3 {
        margin: 0 0 14px;
        color: var(--primary);
        font-size: 23px;
    }


    .gallery-process-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }


/* =========================================================
   TABLET / MOBILE
   900px AND BELOW
   ========================================================= */

@media (max-width: 900px) {

    /* =====================================================
       HEADER
       ===================================================== */

    .nav-wrapper {
        position: relative;
    }


    .menu-toggle {
        display: block;
        flex-shrink: 0;
    }


    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        padding: 12px 20px;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        border-radius: 0 0 var(--radius) var(--radius);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    }


        .main-nav.active {
            display: flex;
        }


        .main-nav a {
            padding: 15px 5px;
            border-bottom: 1px solid var(--border);
        }


            .main-nav a:last-child {
                border-bottom: none;
            }


    /* =====================================================
       HOMEPAGE
       ===================================================== */

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .gallery-grid {
        grid-template-columns: 1fr;
    }


    .reviews-grid {
        grid-template-columns: 1fr;
    }


    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .footer-content {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       SERVICES PAGE
       ===================================================== */

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 45px;
    }


        .service-detail-grid.reverse .service-detail-content,
        .service-detail-grid.reverse .service-image-card {
            order: initial;
        }


    .why-us-grid {
        grid-template-columns: 1fr;
    }


    .services-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }


    /* =====================================================
       ABOUT PAGE
       ===================================================== */

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .local-service-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    /* =====================================================
       GALLERY PAGE
       ===================================================== */

    .gallery-page-grid {
        grid-template-columns: 1fr;
    }


    .gallery-page-card img {
        height: 350px;
    }


    .gallery-process-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   PHONE
   600px AND BELOW
   ========================================================= */

@media (max-width: 600px) {

    /* =====================================================
       HEADER
       ===================================================== */

    .header-call-button {
        display: none;
    }


    /* =====================================================
       HOMEPAGE HERO
       ===================================================== */

    .hero {
        min-height: 560px;
    }


        .hero h1 {
            font-size: 48px;
        }


    .hero-text {
        font-size: 18px;
    }


    /* =====================================================
       GENERAL SECTIONS
       ===================================================== */

    .section {
        padding: 70px 0;
    }


    /* =====================================================
       HOMEPAGE SERVICES
       ===================================================== */

    .service-grid {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       HOMEPAGE ABOUT
       ===================================================== */

    .trust-box {
        padding: 30px;
    }


    .trust-item {
        gap: 15px;
    }


    /* =====================================================
       SERVICE AREA
       ===================================================== */

    .city-grid {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       CONTACT FORM
       ===================================================== */

    .form-row {
        grid-template-columns: 1fr;
    }


    .contact-form {
        padding: 25px;
    }


    /* =====================================================
       HOMEPAGE GALLERY
       ===================================================== */

    .project-card img {
        height: 240px;
    }


    /* =====================================================
       THANK YOU PAGE
       ===================================================== */

    .thank-you-card {
        padding: 40px 25px;
    }


    /* =====================================================
       INNER PAGE HERO
       ===================================================== */

    .page-hero {
        padding: 90px 0;
    }


        .page-hero h1 {
            font-size: 46px;
        }


    .page-hero-text {
        font-size: 18px;
    }


    /* =====================================================
       SERVICES PAGE
       ===================================================== */

    .service-image-card {
        min-height: 300px;
    }


        .service-image-card img {
            height: 300px;
        }


    .service-image-label {
        left: 22px;
        right: 22px;
        bottom: 22px;
        font-size: 21px;
    }


    .services-cta {
        padding: 65px 0;
    }


    /* =====================================================
       ABOUT PAGE
       ===================================================== */

    .about-highlight-box {
        padding: 30px;
    }


        .about-highlight-box h3 {
            font-size: 26px;
        }


    .values-grid {
        grid-template-columns: 1fr;
    }


    .about-service-area-box {
        grid-template-columns: 1fr;
    }


    /* =====================================================
       GALLERY PAGE
       ===================================================== */

    .gallery-page-intro {
        margin-top: -15px;
        margin-bottom: 35px;
        font-size: 17px;
    }


    .gallery-page-grid {
        gap: 22px;
    }


    .gallery-page-card img {
        height: 260px;
    }


    .gallery-page-card-content {
        padding: 22px;
    }


        .gallery-page-card-content h3 {
            font-size: 21px;
        }


    .gallery-process-card {
        padding: 28px;
    }
}

/* =========================================================
   REVIEWS PAGE - INTRO
   ========================================================= */

.reviews-page-section {
    background: var(--white);
}


.reviews-page-intro {
    max-width: 760px;
    margin-top: -20px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   REVIEWS PAGE - REVIEW SHOWCASE
   ========================================================= */

.reviews-showcase-section {
    background: var(--secondary);
}


.reviews-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


.review-feature-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid #ebe4d7;
    border-radius: var(--radius);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .review-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 35px rgba(0, 0, 0, 0.1);
    }


.review-feature-text {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}


.review-feature-author {
    color: var(--primary);
    font-weight: 800;
    font-size: 17px;
}


.review-feature-location {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
}


/* =========================================================
   REVIEWS PAGE - TRUST SECTION
   ========================================================= */

.review-trust-section {
    background: var(--white);
}


.review-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.review-trust-card {
    padding: 34px;
    background: var(--secondary);
    border: 1px solid #ebe4d7;
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .review-trust-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }


    .review-trust-card > span {
        display: inline-block;
        margin-bottom: 18px;
        color: var(--accent);
        font-size: 17px;
        font-weight: 800;
        letter-spacing: 2px;
    }


    .review-trust-card h3 {
        margin: 0 0 14px;
        color: var(--primary);
        font-size: 23px;
    }


    .review-trust-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }


/* =========================================================
   CONTACT PAGE - MAIN SECTION
   ========================================================= */

.contact-page-section {
    background: var(--secondary);
}


.contact-page-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}


/* =========================================================
   CONTACT PAGE - INFORMATION
   ========================================================= */

.contact-page-info h2 {
    margin-bottom: 25px;
}


.contact-page-intro {
    max-width: 560px;
    margin-bottom: 32px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}


.contact-info-card {
    margin-bottom: 18px;
    padding: 22px 24px;
    background: var(--white);
    border: 1px solid #ebe4d7;
    border-radius: var(--radius);
}


.contact-info-label {
    display: block;
    margin-bottom: 7px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 800;
}


.contact-info-card a {
    color: var(--primary);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    overflow-wrap: anywhere;
}


    .contact-info-card a:hover {
        text-decoration: underline;
    }


.contact-info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}


/* =========================================================
   CONTACT PAGE - PROCESS SECTION
   ========================================================= */

.contact-process-section {
    background: var(--white);
}


.contact-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.contact-process-card {
    padding: 34px;
    background: var(--secondary);
    border: 1px solid #ebe4d7;
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


    .contact-process-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }


    .contact-process-card > span {
        display: inline-block;
        margin-bottom: 18px;
        color: var(--accent);
        font-size: 17px;
        font-weight: 800;
        letter-spacing: 2px;
    }


    .contact-process-card h3 {
        margin: 0 0 14px;
        color: var(--primary);
        font-size: 23px;
    }


    .contact-process-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
    }


/* =========================================================
   REVIEWS + CONTACT PAGE
   TABLET / MOBILE
   900px AND BELOW
   ========================================================= */

@media (max-width: 900px) {

    /* REVIEWS PAGE */

    .reviews-showcase-grid {
        grid-template-columns: 1fr;
    }


    .review-trust-grid {
        grid-template-columns: 1fr;
    }


    /* CONTACT PAGE */

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .contact-process-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   REVIEWS + CONTACT PAGE
   PHONE
   600px AND BELOW
   ========================================================= */

@media (max-width: 600px) {

    /* REVIEWS PAGE */

    .reviews-page-intro {
        margin-top: -15px;
        font-size: 17px;
    }


    .review-feature-card {
        padding: 28px;
    }


    .review-trust-card {
        padding: 28px;
    }


    /* CONTACT PAGE */

    .contact-info-card {
        padding: 20px;
    }


    .contact-process-card {
        padding: 28px;
    }
}

/* =========================================================
   PRIVACY POLICY PAGE
   ========================================================= */


/* ---------------------------------------------------------
   HERO
   Uses the same full-size hero as the other internal pages.
   --------------------------------------------------------- */

.privacy-hero .page-hero-text {
    max-width: 650px;
    margin-bottom: 22px;
}


.privacy-updated {
    margin: 0;
    color: #f1c28c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* ---------------------------------------------------------
   MAIN POLICY AREA
   --------------------------------------------------------- */

.privacy-section {
    padding: 90px 0 100px;
    background: var(--secondary);
}


.privacy-container {
    max-width: 900px;
}


/* ---------------------------------------------------------
   INTRODUCTION
   --------------------------------------------------------- */

.privacy-intro {
    margin-bottom: 55px;
}


    .privacy-intro .section-label {
        margin-top: 0;
    }


    .privacy-intro h2 {
        max-width: 700px;
        margin: 0 0 18px;
        color: var(--primary);
        font-size: clamp(30px, 4vw, 42px);
        line-height: 1.15;
    }


    .privacy-intro p:last-child {
        max-width: 720px;
        margin: 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.8;
    }


/* ---------------------------------------------------------
   INDIVIDUAL POLICY SECTIONS
   --------------------------------------------------------- */

.privacy-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 22px;
    padding: 32px 0;
    border-top: 1px solid #d8d0c2;
}


    .privacy-item:last-child {
        border-bottom: 1px solid #d8d0c2;
    }


/* Orange section numbers */

.privacy-number {
    padding-top: 5px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


/* Intentionally smaller than normal marketing headings */

.privacy-item h2 {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 25px;
    line-height: 1.25;
}


.privacy-item p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   CONTACT BOX
   --------------------------------------------------------- */

.privacy-contact {
    margin-top: 60px;
    padding: 38px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
}


    .privacy-contact h2 {
        margin: 0 0 8px;
        font-size: 27px;
    }


    .privacy-contact p {
        max-width: 580px;
        margin: 0;
        color: #dddddd;
        line-height: 1.7;
    }


    .privacy-contact .btn {
        flex-shrink: 0;
    }


/* =========================================================
   PRIVACY PAGE - TABLET / PHONE
   ========================================================= */

@media (max-width: 700px) {

    .privacy-section {
        padding: 65px 0 75px;
    }


    .privacy-intro {
        margin-bottom: 35px;
    }


    .privacy-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 27px 0;
    }


    .privacy-number {
        padding-top: 0;
    }


    .privacy-item h2 {
        font-size: 22px;
    }


    .privacy-contact {
        margin-top: 45px;
        padding: 30px 25px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   PLACEHOLDER BRAND / LOGO
   ========================================================= */

.brand {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}


.brand-main {
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1.5px;
}


.brand-sub {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* =========================================================
   FORM VALIDATION
   ========================================================= */

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #b42318;
}

.field-error {
    margin: 8px 0 0;
    color: #b42318;
    font-size: 0.875rem;
    line-height: 1.4;
}

.form-group [aria-invalid="true"]:focus {
    outline: 2px solid #b42318;
    outline-offset: 2px;
}
