/* =========================================
   Global Styles
========================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}
/* =========================================
   Header
========================================= */
header {
    position: sticky;
    top: 0;
    z-index: 100;

    background-color: #333;
    color: white;

    min-height: 80px;
    padding: 20px 40px 20px 170px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37;
}
.site-logo {
    display: flex;
    align-items: center;

    color: white;
    text-decoration: none;
    font-weight: 800;
}
.site-logo img {
    position: absolute;
    top: 10px;
    left: 20px;

    height: 155px;
    width: auto;

    display: block;
    z-index: 101;
}
.site-logo span {
    color: white;
    font-size: 1.75rem;
    line-height: 1.2;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #d4af37;
}
/* =========================================
   Hero
========================================= */

.hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.65) 32%,
            rgba(0, 0, 0, 0.15) 65%,
            rgba(0, 0, 0, 0.05) 100%
        ),
        url("../images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 600px;
    padding: 80px 6%;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    text-align: left;
}
.hero h1 {
    font-size: 4.25rem;
    color: white;
    margin-bottom: 20px;
 }
.hero-divider {
    width: 230px;
    height: 8px;
    background-color: #d4af37;
    margin: 35px 0 45px 0;
}
 .hero p {
    color: white;
    font-size: 1.25rem;
    margin: 15px 0;
}
.hero .tagline {
    color: #d4af37;
    font-style: italic;
    font-size: 1.4rem;
    margin-top: 30px;
}
.hero-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 30px;

    background-color: #d4af37;
    color: #333;

    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.hero-button:hover {
    background-color: #b8941f;
    color: white;
}
.hero-content {
    max-width: 580px;
}
/* =========================================
   Secondary Page Hero
========================================= */

.page-hero {
    background: #ffffff;
    color: #222;
    padding: 1rem 0 2.5rem;
    text-align: left;
}
.page-hero .section-label::before,
.page-hero .section-label::after {
    display: none;
}

.page-hero .section-label {
    
    color: #d4af37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.page-hero h1 {
    margin: 0.5rem 0 1rem;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #222;
}

.page-hero p:not(.section-label) {
    max-width: 700px;
    margin: 0;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
}
/* =========================================
   Materials Page
========================================= */

.materials-section {
    padding: 2rem 0 5rem;
    background: #f7f7f7;
}

.material-group {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.material-group summary {
    padding: 1.1rem 2rem;
    cursor: pointer;
    list-style: none;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 1.4rem;
    font-weight: 800;
    color: #222;

    border-left: 5px solid #d4af37;
}

.material-group summary::-webkit-details-marker {
    display: none;
}

.material-toggle {
    color: #d4af37;
    font-size: 1.6rem;
    transition: transform 0.2s ease;
}

.material-group-content {
    padding: 0 2rem 2rem;
}
.material-group[open] .material-toggle {
    transform: rotate(45deg);
}
.material-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: center;

    padding: 2.5rem 0;
    border-top: 1px solid #e5e5e5;
}

.material-item-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
.material-item-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: #d4af37;
}
.material-price {
    margin: 1.1rem 0 1.2rem;
}

.material-price strong {
    color: #333;
    font-size: 1.05rem;
    font-weight: 800;
}

.material-price span {
    color: #555;
}

.material-price small {
    display: inline;
    color: #777;
    font-size: 0.9rem;
}

.material-price span,
.material-price small {
    white-space: nowrap;
}
.material-item-content p {
    color: #555;
    line-height: 1.7;
}

.material-best-use {
    margin-bottom: 0;
}
.materials-notice {
    width: 75%;
    margin: 0 0 2rem;
    padding: 1rem 1.25rem;

    background: #fff;
    border: 1px solid #ddd;
    border-left: 4px solid #d4af37;
    border-radius: 6px;

    display: flex;
    align-items: center;
    gap: 1rem;

    color: #555;
    line-height: 1.5;
}

.materials-notice strong {
    flex-shrink: 0;
    color: #222;
    font-size: 1rem;
}
@media (max-width: 700px) {
    .material-item {
        grid-template-columns: 1fr;
    }
}
/* =========================
   Reusable Components
========================= */

.section-container {
    width: min(1100px, 100%);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-intro {
    max-width: 800px;
    margin-top: 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* =========================
   Services Section
========================= */

.services {
    padding: 5rem 0;
    background: #f7f7f7;
}
.section-heading {
    max-width: 700px;
    margin-bottom: 3rem;
}
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;

    margin-bottom: 0.75rem;

    color: #b58a2a;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-label::before,
.section-label::after {
    content: "";
    width: 80px;
    height: 2px;
    background: #b58a2a;
}
.section-heading h2 {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #222;
    line-height: 1.2;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-card {
    background: #fff;   
    padding: 2rem;
    border-top: 4px solid #b58a2a;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #222;
}
.service-card p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
/* =========================
   Why Choose Section
========================= */

.why-choose {
    padding: 5rem 0;
}
.trust-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
}
.trust-item h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #222;
    font-size: 1.35rem;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}
.trust-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #b58a2a;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 1.3rem;
    font-weight: 700;
}
.pli-marker {
    position: relative;
    width: 56px;
    height: 50px;
    margin-top: 10px;
    flex-shrink: 0;

    background: #0b4f2f;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.pli-marker-inner {
    position: absolute;
    left: 9px;
    right: 9px;
    top: 8px;
    bottom: 11px;

    background: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.pli-marker-inner {
    background: #0b4f2f;
}

.pli-corner {
    position: absolute;
    z-index: 2;
    width: 11px;
    height: 11px;
    background: #d4af37;
}

.pli-corner-left {
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.pli-corner-right {
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.pli-corner-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.pli-marker-check {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 43%;
    transform: translate(-50%, -50%);

    color: #d4af37;
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
}
.trust-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #222;
    font-size: 1.3rem;
}

.trust-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}
/* =========================
   Featured Work
========================= */

.featured-work {
    padding: 5rem 0;
    background: #f7f7f7;
}

.featured-work-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 2rem;
}

.featured-project-side {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.featured-project {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 8px;
    background: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.featured-project-main {
    min-height: 545px;
}

.featured-project img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-project::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.05) 75%
    );
}

.featured-project:hover img {
    transform: scale(1.04);
}

.featured-project-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 2rem;
    color: #fff;
}

.featured-project-side .featured-project-overlay {
    padding: 1.5rem;
}

.project-type {
    margin: 0 0 0.6rem;
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.featured-project h3 {
    margin: 0;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.2;
}

.featured-project-side h3 {
    font-size: 1.35rem;
}

.featured-work-footer {
    margin-top: 2.5rem;
    text-align: center;
}
.featured-work-link {
    display: inline-block;
    padding: 15px 30px;

    background-color: #d4af37;
    color: #333;

    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;

    transition: background-color 0.2s ease, color 0.2s ease;
}

.featured-work-link:hover {
    background-color: #b8941f;
    color: white;
}

/* =========================
   Featured Work Responsive
========================= */

@media (max-width: 850px) {
    .featured-work-layout {
        grid-template-columns: 1fr;
    }

    .featured-project-main {
        min-height: 420px;
    }

    .featured-project-side {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }
}

@media (max-width: 600px) {
    .featured-project-main,
    .featured-project {
        min-height: 300px;
    }

    .featured-project-side {
        grid-template-columns: 1fr;
    }

    .featured-project-overlay,
    .featured-project-side .featured-project-overlay {
        padding: 1.5rem;
    }

    .featured-project h3,
    .featured-project-side h3 {
        font-size: 1.35rem;
    }
}
/* ==========================================
   Service Area
========================================== */

.service-area {
    padding: 5rem 0;
}

.service-area-content {
    margin-top: 2rem;
}

.service-area-content h3 {
    margin: 2.5rem 0 1rem;
    color: #222;
    font-size: 1.2rem;
}

.service-area-content h3:first-child {
    margin-top: 0;
}

.county-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.county-list span {
    background: #faf4e6;
    border: 1px solid #d7bf7b;
    border-radius: 999px;
    padding: .65rem 1.25rem;
    font-weight: 600;
    color: #333;
}

.community-list {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    line-height: 1.8;
}

.community-list span::after {
    content: "•";
    margin-left: 1rem;
    color: #b58a2a;
}

.community-list span:last-child::after {
    content: "";
    margin: 0;
}
/* =========================
   Contact Invitation
========================= */

.contact-invitation {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
 padding: 1.5rem 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    text-align: center;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-highlight {
    font-size: 1.35rem;
    font-weight: 700;
    color: #b58a2a;
}

.contact-note {
    margin-top: 2rem;
    text-align: center;
    color: #666;
    font-style: italic;
}
.contact-link {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 700;
    color: #b58a2a;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}
/* =========================
   Footer
========================= */

footer {
    background: #222;
    color: #ddd;
    padding: 1.25rem 0;
}

.footer-content {
    text-align: center;
}

.footer-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: .25rem;
}
.footer-contact p {
    margin: .35rem 0;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #b58a2a;
}

.footer-copy {
    margin-top: 1.5rem;
    font-size: .85rem;
    color: #999;
}
.payment-methods {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.payment-methods strong {
    color: #444;
    font-weight: 600;
}
.footer-webmaster {
    margin: 1.25rem 0 0;
    font-size: 0.85rem;
}

.footer-webmaster a {
    color: #999;
    text-decoration: none;
}

.footer-webmaster a:hover {
    color: #b58a2a;
}

.footer-copy {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #999;
}
/* =========================================
   About Page
========================================= */

.about-matt {
    padding: 5rem 0;
    background: #f7f7f7;
}

.about-matt-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: center;
}

.about-matt-photo img {
    width: 100%;
    min-height: 430px;
    max-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.about-matt-content .section-label {
    margin-bottom: 0.75rem;
}

.about-matt-content h2 {
    margin: 0.5rem 0 1.5rem;
    color: #222;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.about-matt-content p:not(.section-label) {
    margin: 0 0 1.25rem;
    color: #555;
    line-height: 1.8;
}

.about-matt-content p:last-child {
    margin-bottom: 0;
}

.about-why {
    padding: 5rem 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-service-area {
    padding: 5rem 0;
    background: #f7f7f7;
}

.about-service-area-note {
    margin-top: 1rem;
}

.about-cta {
    padding: 5rem 0 6rem;
}

.about-cta-button {
    margin-top: 2rem;
}

@media (max-width: 850px) {
    .about-matt-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-matt-photo {
        max-width: 650px;
    }

    .about-matt-photo img {
        min-height: 0;
        max-height: 500px;
    }
}

@media (max-width: 700px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   Contact Page
========================================= */

.contact-page-details {
    padding: 5rem 0;
    background: #f7f7f7;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-page-card {
    text-align: left;
}

.contact-page-card p {
    color: #555;
    line-height: 1.7;
}

.contact-page-highlight {
    margin: 0 0 0.75rem;
    color: #b58a2a !important;
    font-size: 1.2rem;
    font-weight: 700;
}

.contact-estimate {
    padding: 5rem 0;
}

.contact-estimate-list {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    max-width: 850px;
}

.contact-estimate-item {
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-left: 4px solid #b58a2a;
    border-radius: 6px;
    color: #444;
    line-height: 1.5;
}

.contact-estimate-note {
    margin-top: 2rem;
}

.contact-payment {
    padding: 5rem 0;
    background: #f7f7f7;
}

.contact-page-cta {
    padding: 5rem 0 6rem;
}

.contact-page-cta-button {
    margin-top: 2rem;
}

@media (max-width: 800px) {
    .contact-page-grid,
    .contact-estimate-list {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   Services Page
========================================= */

.services-page-rates {
    padding: 5rem 0;
    background: #f7f7f7;
}

.services-pricing-notice {
    width: min(850px, 100%);
    margin: 0 0 3rem;
    padding: 1rem 1.25rem;

    background: #fff;
    border: 1px solid #ddd;
    border-left: 4px solid #d4af37;
    border-radius: 6px;

    display: flex;
    align-items: flex-start;
    gap: 1rem;

    color: #555;
    line-height: 1.6;
}

.services-pricing-notice strong {
    flex-shrink: 0;
    color: #222;
}

.services-feature {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;

    padding: 3rem 0;
    border-top: 1px solid #ddd;
}

.services-feature:first-of-type {
    border-top: 0;
}

.services-feature-reverse .services-feature-image {
    order: 2;
}

.services-feature-reverse .services-feature-content {
    order: 1;
}

.services-feature-image {
    min-height: 300px;
}

.services-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    max-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.services-image-placeholder {
    min-height: 300px;
    border: 2px dashed #c9c9c9;
    border-radius: 8px;
    background: #eee;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #777;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}

.services-feature-label {
    margin: 0 0 0.6rem;
    color: #b58a2a;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.services-feature-content h2,
.services-material-content h2 {
    margin: 0 0 1rem;
    color: #222;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
}

.services-feature-content > p:not(.services-feature-label):not(.services-small-note):not(.services-best-for),
.services-material-content > p:not(.section-label) {
    color: #555;
    line-height: 1.8;
}

.services-rate-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.75rem 0 0.75rem;
    max-width: 520px;
}

.services-rate-box > div {
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #ddd;
    border-left: 4px solid #b58a2a;
    border-radius: 6px;
}

.services-rate-box span {
    display: block;
    margin-bottom: 0.35rem;
    color: #777;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.services-rate-box strong {
    color: #222;
    font-size: 1.2rem;
}

.services-small-note {
    margin: 0 0 1.4rem;
    color: #777;
    font-size: 0.9rem;
    font-style: italic;
}

.services-best-for {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.services-page-additional {
    padding: 5rem 0;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services-card-note {
    margin-top: 1.25rem !important;
    color: #777 !important;
    font-size: 0.95rem;
}

.services-material-delivery {
    padding: 5rem 0;
    background: #f7f7f7;
}

.services-material-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    gap: 4rem;
    align-items: center;
}

.services-material-content .section-label::before,
.services-material-content .section-label::after {
    display: none;
}

.services-material-button {
    margin-top: 1.5rem;
}

.services-page-cta {
    padding: 5rem 0 6rem;
}

.services-page-cta-button {
    margin-top: 2rem;
}

@media (max-width: 850px) {
    .services-feature,
    .services-material-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-feature-reverse .services-feature-image,
    .services-feature-reverse .services-feature-content {
        order: initial;
    }

    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .services-page-grid,
    .services-rate-box {
        grid-template-columns: 1fr;
    }

    .services-pricing-notice {
        flex-direction: column;
    }
}
/* =========================================
   Projects Page
========================================= */

.project-case-study {
    padding: 5rem 0 6rem;
}

.project-case-study-light {
    background: #f7f7f7;
}

.project-case-study-dark {
    background: #ffffff;
}

.project-heading {
    max-width: 850px;
    margin-bottom: 2.5rem;
}

.project-heading .section-label::before,
.project-heading .section-label::after {
    display: none;
}

.project-heading h2 {
    margin: 0.5rem 0 0.75rem;
    color: #222;
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    line-height: 1.15;
}

.project-subtitle {
    margin: 0 0 0.5rem;
    color: #555;
    font-size: 1.25rem;
    font-weight: 600;
}

.project-location {
    margin: 0;
    color: #888;
    font-size: 0.95rem;
}

.project-hero-image {
    width: 100%;
    margin-bottom: 2.5rem;
}

.project-hero-image img {
    width: 100%;
    height: clamp(360px, 52vw, 620px);
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.project-overview {
    max-width: 900px;
    margin-bottom: 2.5rem;
}

.project-overview p {
    margin: 0 0 1.25rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.project-overview p:last-child {
    margin-bottom: 0;
}

.project-services {
    margin-bottom: 3.25rem;
}

.project-services h3,
.project-gallery-heading h3 {
    margin: 0 0 1rem;
    color: #222;
    font-size: 1.35rem;
}

.project-service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.project-service-chips span {
    padding: 0.65rem 1rem;
    background: #faf4e6;
    border: 1px solid #d7bf7b;
    border-radius: 999px;
    color: #333;
    font-size: 0.92rem;
    font-weight: 700;
}

.project-gallery-heading {
    margin-bottom: 1.5rem;
}

.project-gallery-heading p {
    margin: -0.4rem 0 0;
    color: #777;
    line-height: 1.6;
}

.project-gallery {
    display: grid;
    gap: 1.5rem;
}

.project-gallery-drainage,
.project-gallery-landscape {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-gallery-item {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.project-gallery-item img {
    width: 100%;
    height: 310px;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.025);
}

.project-gallery-item figcaption {
    padding: 1rem 1.1rem 1.15rem;
    color: #666;
    font-size: 0.92rem;
    line-height: 1.55;
}

.projects-growing {
    padding: 4rem 0;
    background: #eeeeee;
}

.projects-growing-content {
    max-width: 820px;
    padding: 2rem 2.25rem;
    background: #fff;
    border: 1px solid #ddd;
    border-left: 5px solid #d4af37;
    border-radius: 8px;
}

.projects-growing-content .section-label::before,
.projects-growing-content .section-label::after {
    display: none;
}

.projects-growing-content h2 {
    margin: 0.5rem 0 1rem;
    color: #222;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.projects-growing-content p:not(.section-label) {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

.projects-page-cta {
    padding: 5rem 0 6rem;
}

.projects-page-cta-button {
    margin-top: 2rem;
}

@media (max-width: 850px) {
    .project-gallery-drainage,
    .project-gallery-landscape {
        grid-template-columns: 1fr;
    }

    .project-gallery-item img {
        height: auto;
        max-height: 520px;
    }
}

@media (max-width: 600px) {
    .project-case-study {
        padding: 4rem 0;
    }

    .project-hero-image img {
        height: 320px;
    }

    .projects-growing-content {
        padding: 1.5rem;
    }
}
.project-gallery-driveway {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-gallery-driveway .project-gallery-item img {
    height: auto;
    max-height: none;
    object-fit: contain;
}
/* =========================================
   Mobile Header
========================================= */

@media (max-width: 768px) {

    header {
        min-height: auto;
        padding: 12px 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .site-logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .site-logo img {
        position: static;
        width: 70px;
        height: auto;
        flex-shrink: 0;
    }

    .site-logo span {
        font-size: 1.35rem;
        line-height: 1.15;
    }

    nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 18px;
    }

     nav a {
        font-size: 0.95rem;
    }

    .hero {
        min-height: auto;
        padding: 40px 24px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero .tagline {
        font-size: 1.15rem;
    }

    .hero-divider {
        width: 180px;
        margin: 24px 0 30px;
    }

    .hero-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-title h2 {
        font-size: 1.75rem;
        line-height: 1.25;
    }

    .section-container {
        width: auto;
        margin: 0;
        padding: 0 1.25rem;
    }

    .service-card {
        width: auto;
    }

    .section-label {
        justify-content: center;
        text-align: center;
    }

.trust-list {
    grid-template-columns: 1fr;
    gap: 2rem;
}
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .materials-notice {
        width: 100%;
        display: block;
    }

    .materials-notice strong,
    .materials-notice span {
        display: block;
    }

    .materials-notice strong {
        margin-bottom: 0.5rem;
    }
}