/* Landscape Sample Style Sheet 
    filename: landscape.css */

        :root {
            --primary: #2f6b3b;
            --primary-dark: #1f4d2a;
            --accent: #d8a93c;
            --background: #f7f8f4;
            --white: #ffffff;
            --text: #26302a;
            --text-light: #667069;
            --border: #dfe5df;
            --shadow: 0 12px 30px rgba(30, 70, 40, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--background);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .container {
            width: min(1100px, 90%);
            margin: 0 auto;
        }

        .section {
            padding: 80px 0;
        }

        .section-heading {
            max-width: 650px;
            margin: 0 auto 45px;
            text-align: center;
        }

        .section-heading span {
            display: inline-block;
            margin-bottom: 8px;
            color: var(--primary);
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.85rem;
        }

        .section-heading h2 {
            margin-bottom: 12px;
            font-size: clamp(2rem, 4vw, 2.8rem);
            line-height: 1.15;
        }

        .section-heading p {
            color: var(--text-light);
        }

        /* Navigation */

        .site-header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 10;
            padding: 22px 0;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            color: var(--white);
            font-size: 1.35rem;
            font-weight: bold;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            color: var(--white);
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-contact {
            padding: 10px 18px;
            border: 1px solid var(--accent);
            border-radius: 999px;

            color: var(--primary-dark);
            background: var(--accent);

            font-weight: 700;
        }

        .nav-contact:hover {
            color: var(--white);
            background: transparent;
        }

        /* =========================
   HEADER LOGO
========================= */

.site-logo {
    display: block;
    flex-shrink: 0;
}

.logo-placeholder {
    width: 190px;
    height: 65px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.header-logo {
    width: 230px;
    max-width: 100%;
    height: auto;
    display: block;
}

        /* Hero */

        .hero {
            min-height: 760px;
            display: flex;
            align-items: center;
            color: var(--white);
            background:
                linear-gradient(rgba(15, 45, 25, 0.78), rgba(15, 45, 25, 0.78)),
                url("https://images.unsplash.com/photo-1558904541-efa843a96f01?auto=format&fit=crop&w=1800&q=85")
                center/cover no-repeat;
        }

        .hero-content {
    max-width: 720px;
    padding-top: 0;
    transform: translateY(-40px);
}

        .hero-label {
            display: inline-block;
            margin-bottom: 18px;
            padding: 8px 14px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            font-size: 0.9rem;
        }

        .hero h1 {
            margin-bottom: 22px;
            font-size: clamp(3rem, 5vw, 4.5rem);
            line-height: 1;
            letter-spacing: -2px;
        }

        .hero p {
            max-width: 610px;
            margin-bottom: 32px;
            color: rgba(255, 255, 255, 0.88);
            font-size: 1.15rem;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .button {
            display: inline-block;
            padding: 14px 24px;
            border-radius: 6px;
            font-weight: bold;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .button:hover {
            transform: translateY(-2px);
        }

        .button-primary {
            color: var(--primary-dark);
            background: var(--accent);
        }

        .button-secondary {
            color: var(--white);
            border: 1px solid rgba(255, 255, 255, 0.7);
        }

        /* Trust strip */

        .trust-strip {
            position: relative;
            z-index: 2;
            margin-top: -55px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .trust-item {
            padding: 28px;
            text-align: center;
            border-right: 1px solid var(--border);
        }

        .trust-item:last-child {
            border-right: 0;
        }

        .trust-item strong {
            display: block;
            margin-bottom: 4px;
            color: var(--primary);
            font-size: 1.25rem;
        }

        .trust-item span {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Services */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            padding: 34px;
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(30, 70, 40, 0.06);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }

        .service-icon {
            width: 54px;
            height: 54px;
            display: grid;
            place-items: center;
            margin-bottom: 22px;
            border-radius: 50%;
            color: var(--white);
            background: var(--primary);
            font-size: 1.6rem;
        }

        .service-card h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .service-card p {
            color: var(--text-light);
        }

        /* Testimonials */

        .testimonials {
            background: #eaf0e9;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            padding: 32px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(30, 70, 40, 0.07);
        }

        .stars {
            margin-bottom: 16px;
            color: var(--accent);
            letter-spacing: 2px;
        }

        .testimonial-card blockquote {
            margin-bottom: 22px;
            color: var(--text-light);
            font-style: italic;
        }

        .customer {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .customer-initials {
            width: 44px;
            height: 44px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--white);
            background: var(--primary);
            font-weight: bold;
        }

        .customer strong {
            display: block;
        }

        .customer span {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* CTA */

        .contact-section {
            padding: 90px 0;
            color: var(--white);
            text-align: center;
            background: var(--primary-dark);
        }

        .contact-content {
            max-width: 720px;
            margin: 0 auto;
        }

        .contact-section h2 {
            margin-bottom: 18px;
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            line-height: 1.1;
        }

        .contact-section p {
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        /* Footer */

        footer {
            padding: 26px 0;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            background: #17381f;
            font-size: 0.9rem;
        }

        /* Responsive */

        @media (max-width: 850px) {
            .nav-links a:not(.nav-contact) {
                display: none;
            }

            .hero {
                min-height: 680px;
            }

            .services-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }

            .trust-item {
                border-right: 0;
                border-bottom: 1px solid var(--border);
            }

            .trust-item:last-child {
                border-bottom: 0;
            }
        }

        @media (max-width: 550px) {
            .section {
                padding: 65px 0;
            }

            .site-header {
                padding: 18px 0;
            }

            .logo {
                font-size: 1.1rem;
            }

            .nav-contact {
                padding: 8px 13px;
                font-size: 0.85rem;
            }

            .hero h1 {
                font-size: 3.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
            }

        }

@media (max-width: 550px) {

    .youtube-cta,
    .review-cta {
        text-align: center;
    }

    .youtube-button,
    .review-button {
        display: inline-block;
        width: auto;
        margin: 0 auto;
    }

}


.service-image {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(30, 70, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 90px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrap {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.about-image {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-content h2 {
    margin-bottom: 22px;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    line-height: 1.1;
}

.about-content p {
    margin-bottom: 18px;
    color: var(--text-light);
}

.about-highlights {
    display: grid;
    gap: 14px;
    margin: 30px 0;
}

.about-highlight {
    padding: 16px 18px;
    border-left: 4px solid var(--accent);
    background: var(--background);
    border-radius: 6px;
}

.about-highlight strong {
    display: block;
    margin-bottom: 3px;
    color: var(--primary-dark);
}

.about-highlight span {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 850px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 450px;
    }

}

@media (max-width: 550px) {

    .about-section {
        padding: 65px 0;
    }

    .about-image {
        height: 380px;
    }

}

/* =========================
   REVIEW CTA
========================= */

.review-cta {
    margin-top: 45px;
    text-align: center;
}

.review-cta p {
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 1rem;
}

.review-button {
    color: var(--white);
    background: var(--primary);
    padding: 14px 26px;
}

.review-button:hover {
    background: var(--primary-dark);
}

/* =========================
   OUR WORK
========================= */

.work-section {
    background: var(--background);
}

/* Gallery */

.work-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 18px;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(30, 70, 40, 0.08);
}

.work-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.work-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-item:hover img {
    transform: scale(1.05);
}

/* Project Labels */

.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--white);
    background:
        linear-gradient(
            to top,
            rgba(10, 30, 15, 0.8),
            transparent 60%
        );
}

.work-overlay span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.work-overlay strong {
    font-size: 1.2rem;
}


/* =========================
   VIDEO PROOF
========================= */

.work-video {
    max-width: 480px;
    margin: 90px auto 0;
}

.work-video-heading {
    max-width: 680px;
    margin: 0 auto 35px;
    text-align: center;
}

.work-video-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.work-video-heading h3 {
    margin-bottom: 15px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
}

.work-video-heading p {
    color: var(--text-light);
}

/* Responsive YouTube Embed */

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--shadow);
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.youtube-cta {
    margin-top: 28px;
    text-align: center;
}

.youtube-button {
    color: var(--white);
    background: var(--primary);
}

.youtube-button:hover {
    background: var(--primary-dark);
}


/* =========================
   OUR WORK - RESPONSIVE
========================= */

@media (max-width: 850px) {

    .work-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .work-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .work-video {
        margin-top: 65px;
    }
}

@media (max-width: 550px) {

    .work-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .work-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .work-overlay {
        padding: 18px;
    }

    .work-video {
        margin-top: 55px;
    }
}

/* =========================
   CONTACT / FREE ESTIMATE
========================= */

.contact-section {
    padding: 100px 0;
    color: var(--white);
    background: var(--primary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: start;
}


/* LEFT SIDE */

.contact-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-info h2 {
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
}

.contact-intro {
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.contact-details {
    display: grid;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary-dark);
    background: var(--accent);
    font-size: 1.05rem;
}

.contact-detail > div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-detail strong {
    margin-bottom: 3px;
    color: var(--accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail a,
.contact-detail span {
    color: var(--white);
}

.contact-detail a:hover {
    color: var(--accent);
}


/* FORM CARD */

.estimate-form-wrap {
    padding: 40px;
    color: var(--text);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.estimate-form-heading {
    margin-bottom: 28px;
}

.estimate-form-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.estimate-form-heading h3 {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.15;
}

.estimate-form-heading p {
    color: var(--text-light);
}


/* FORM FIELDS */

.estimate-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: bold;
}

.optional {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: normal;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--text);
    background: var(--white);
    font: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(47, 107, 59, 0.2);
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.estimate-button {
    width: 100%;
    border: 0;
    cursor: pointer;
    color: var(--primary-dark);
    background: var(--accent);
    font-size: 1rem;
}

.estimate-button i {
    margin-right: 7px;
}

.form-disclaimer {
    color: var(--text-light);
    text-align: center;
    font-size: 0.8rem;
}

.form-disclaimer i {
    margin-right: 5px;
    color: var(--primary);
}


/* MOBILE */

@media (max-width: 850px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media (max-width: 550px) {

    .contact-section {
        padding: 70px 0;
    }

    .estimate-form-wrap {
        padding: 28px 20px;
    }

}

/* ==================================================
   FOOTER
================================================== */

.site-footer {
    padding: 70px 0 0;
    color: rgba(255, 255, 255, 0.78);
    background: #122d19;
    text-align: left;
}


/* ==================================================
   FOOTER MAIN GRID
================================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
    gap: 50px;
    align-items: start;
    padding-bottom: 50px;
}


/* ==================================================
   FOOTER BRAND / LOGO
================================================== */

.footer-brand {
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo-image {
    width: 250px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-brand p {
    max-width: 330px;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ==================================================
   SOCIAL MEDIA
================================================== */

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-socials a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    font-size: 1rem;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    color: var(--primary-dark);
    background: var(--accent);
    border-color: var(--accent);
}


/* ==================================================
   FOOTER COLUMNS
================================================== */

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    position: relative;

    margin: 0 0 22px;
    padding-bottom: 12px;

    color: var(--white);

    font-size: 1.05rem;
    font-weight: 700;
}

.footer-column h3::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: var(--accent);
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin-bottom: 11px;
}

.footer-column li:last-child {
    margin-bottom: 0;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.72);

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.footer-column ul a:hover {
    padding-left: 4px;
    color: var(--accent);
}


/* ==================================================
   FOOTER CONTACT
================================================== */

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact > a,
.footer-contact-item {
    width: 100%;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 17px;

    color: rgba(255, 255, 255, 0.72);
}

.footer-contact > a:hover {
    color: var(--accent);
}

.footer-contact i {
    width: 20px;
    flex-shrink: 0;

    margin-top: 4px;

    color: var(--accent);
    text-align: center;
}

.footer-contact span {
    overflow-wrap: anywhere;
    line-height: 1.5;
}


/* ==================================================
   GOOGLE REVIEW CTA
================================================== */

.footer-review {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
    padding: 26px 30px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.05);
}

.footer-review-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-review-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-dark);
    background: var(--accent);

    border-radius: 50%;

    font-size: 1.1rem;
}

.footer-review-content strong {
    display: block;

    margin-bottom: 3px;

    color: var(--white);
    font-size: 1.05rem;
}

.footer-review-content span {
    display: block;

    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    padding: 13px 20px;

    color: var(--primary-dark);
    background: var(--accent);

    border-radius: 6px;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.footer-review-button:hover {
    transform: translateY(-2px);
    color: var(--primary-dark);
    background: #e5b843;
}


/* ==================================================
   FOOTER BOTTOM
================================================== */

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 25px;

    padding: 24px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.6);

    font-size: 0.82rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
}

.footer-legal a,
.footer-credit a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover,
.footer-credit a:hover {
    color: var(--accent);
}

.footer-credit {
    text-align: right;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 950px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;

        gap: 12px;

        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-credit {
        text-align: center;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 650px) {

    .site-footer {
        padding-top: 55px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 40px;
    }

    .footer-logo-image {
        width: 230px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-review {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;

        margin-bottom: 35px;
        padding: 22px;
    }

    .footer-review-button {
        width: 100%;
    }

    .footer-bottom {
        padding: 22px 0;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

}

/* ==================================================
   MOBILE HEADER + HERO FIX
================================================== */

@media (max-width: 550px) {

    .site-header {
        padding: 14px 0;
    }

    .nav {
        align-items: center;
        gap: 12px;
    }

    .header-logo {
        width: 145px;
    }

    .nav-links {
        margin-left: auto;
    }

    .nav-contact {
        padding: 8px 12px;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero {
        min-height: 720px;
        align-items: flex-start;
        padding-top: 150px;
    }

    .hero-content {
        max-width: 100%;
        padding-top: 0;
        transform: none;
    }

    .hero-label {
        margin-bottom: 18px;
        padding: 7px 11px;
        font-size: 0.75rem;
    }

    .hero h1 {
        margin-bottom: 20px;
        font-size: 2.55rem;
        line-height: 1.02;
        letter-spacing: -1px;
    }

    .hero p {
        margin-bottom: 26px;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .button {
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 650px) {

    .site-footer {
        padding-top: 55px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-brand,
    .footer-column,
    .footer-contact {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        display: block;
        width: fit-content;
        margin: 0 auto 22px;
    }

    .footer-logo-image {
        width: 230px;
        margin: 0 auto;
    }

    .footer-brand p {
        max-width: 340px;
        margin: 0 auto 25px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact > a,
    .footer-contact-item {
        width: auto;
        justify-content: center;
        text-align: left;
    }

    .footer-review {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        margin-bottom: 35px;
        padding: 22px;
    }

    .footer-review-content {
        justify-content: center;
    }

    .footer-review-button {
        width: 100%;
    }

    .footer-bottom {
        padding: 22px 0;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-credit {
        text-align: center;
    }
}

@media (max-width: 550px) {

    .about-content .button,
    .youtube-button,
    .review-button {
        display: block;
        width: fit-content;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

}

/* =========================
   MOBILE CONTACT CENTERING
========================= */

@media (max-width: 550px) {

    .contact-info {
        text-align: center;
    }

    .contact-detail {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .contact-detail > div:last-child {
        align-items: center;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-detail strong,
    .contact-detail a,
    .contact-detail span {
        text-align: center;
    }

}

/* =========================
   MOBILE HAMBURGER NAV
========================= */

.menu-toggle {
    display: none;
}

@media (max-width: 850px) {

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 10px 0;
        background: rgba(15, 45, 25, 0.96);
    }

    .header-logo {
        width: 145px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;
        margin-left: auto;

        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 6px;

        color: white;
        background: transparent;

        font-size: 1.25rem;
        cursor: pointer;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;
        gap: 0;

        padding: 15px;

        background: var(--primary-dark);

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a,
    .nav-links a:not(.nav-contact) {
        display: block;
        width: 100%;

        padding: 13px 15px;

        color: white;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links .nav-contact {
        margin-top: 10px;

        color: var(--primary-dark);
        background: var(--accent);

        border: 0;
        border-radius: 6px;

        text-align: center;
    }

}

.mobile-contact {
    display: none;
}

@media (max-width: 850px) {

    .mobile-contact {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        margin-left: auto;
        padding: 9px 16px;

        color: var(--primary-dark);
        background: var(--accent);

        border: none;
        border-radius: 6px;

        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;

        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }

    .mobile-contact:hover {
        background: #e5b843;
    }

    .menu-toggle {
        margin-left: 10px;
    }
}

