:root {
    --green-900: #12352a;
    --green-800: #184b38;
    --green-700: #276548;
    --green-100: #e7f0e7;
    --charcoal: #17211d;
    --muted: #5d665f;
    --cream: #f7f4ec;
    --soil: #9a7149;
    --soil-dark: #6d4e31;
    --white: #ffffff;
    --line: #dfe4dc;
    --shadow: 0 18px 45px rgba(18, 53, 42, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid #d4a857;
    outline-offset: 3px;
}

h1,
h2,
h3 {
    margin: 0 0 0.55em;
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 4.9rem);
    max-width: 920px;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 1rem;
}

ul {
    margin: 0;
    padding-left: 1.2rem;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(840px, calc(100% - 40px));
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 1000;
    background: var(--white);
    color: var(--green-900);
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 244, 236, 0.96);
    border-bottom: 1px solid rgba(23, 33, 29, 0.12);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    color: var(--green-900);
}

.brand img {
    width: auto;
    height: 72px;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-left: auto;
    font-size: 0.95rem;
    font-weight: 700;
}

.primary-nav a {
    text-decoration: none;
    color: var(--charcoal);
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
    color: var(--green-700);
}

.mobile-nav-actions {
    display: none;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-left: 0.4rem;
}

.header-phone,
.phone-link {
    font-weight: 800;
    color: var(--green-900);
    text-decoration: none;
}

.button,
.wp-element-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0.8rem 1.15rem;
    border: 0;
    border-radius: var(--radius);
    background: var(--green-800);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
    background: var(--green-700);
    transform: translateY(-1px);
}

.button--secondary {
    background: var(--white);
    color: var(--green-900);
}

.button--small {
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    background: var(--green-900);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero {
    position: relative;
    min-height: clamp(560px, calc(100svh - 112px), 760px);
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--green-900);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 31, 25, 0.88), rgba(12, 31, 25, 0.48), rgba(12, 31, 25, 0.2));
    z-index: 1;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(4rem, 10vw, 8rem) 0 4rem;
}

.hero-content p {
    max-width: 760px;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.trust-points span {
    padding: 1rem;
    background: rgba(18, 53, 42, 0.78);
    font-weight: 800;
}

.section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

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

.section--green {
    background: var(--green-900);
    color: var(--white);
}

.section--green p,
.section--green li {
    color: rgba(255, 255, 255, 0.86);
}

.section-heading {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
    margin-bottom: 2rem;
}

.section-intro {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.05rem;
}

.eyebrow {
    margin-bottom: 0.8rem;
    color: var(--soil-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section--green .eyebrow,
.page-hero .eyebrow,
.hero .eyebrow,
.cta-band .eyebrow {
    color: #e3c079;
}

.grid {
    display: grid;
    gap: 1.3rem;
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(23, 33, 29, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(23, 33, 29, 0.12);
}

.card > div,
.card-content {
    padding: 1.25rem;
}

.service-card img,
.post-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.post-card__meta {
    margin-bottom: .45rem;
    color: var(--green-700);
    font-size: .76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: .84rem;
    font-weight: 700;
}

.article-content { font-size: 1.05rem; line-height: 1.8; }
.article-content h2 { margin: 2.1rem 0 .65rem; color: var(--green-900); font-size: 1.65rem; line-height: 1.2; }
.article-content h3 { margin: 1.7rem 0 .55rem; color: var(--green-900); font-size: 1.25rem; }
.article-content p { margin: 0 0 1.15rem; }
.article-content li + li { margin-top: .4rem; }
.article-content a { color: var(--green-700); font-weight: 800; }
.article-content img { width: 100%; height: auto; display: block; margin: 1.6rem 0; border-radius: 8px; }
.article-content blockquote { margin: 1.5rem 0; padding: .75rem 1.1rem; border-left: 4px solid var(--green-700); background: var(--green-100); font-size: 1.08rem; }
.article-footer { margin-top: 2.3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.preview-notice { margin-bottom: 1.25rem; padding: .8rem 1rem; border: 1px solid #d8bd75; border-radius: 8px; background: #fff7dd; color: #644d12; font-weight: 800; }

.text-link {
    color: var(--green-800);
    font-weight: 900;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-list li,
.check-list li {
    margin-bottom: 0.65rem;
}

.feature-box {
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
}

.property-card {
    background: var(--white);
    box-shadow: 0 10px 28px rgba(23, 33, 29, 0.08);
}

.intro-copy {
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.service-area-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}

.service-area-cloud span {
    padding: 0.62rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--green-100);
    color: var(--green-900);
    font-weight: 800;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.8rem;
}

.area-pill {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 58px;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--green-900);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
}

.area-note {
    margin: 1rem 0 0;
    color: var(--muted);
    font-weight: 700;
}

.gallery {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 0.9rem;
}

.gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--green-100);
}

.gallery figure:first-child {
    grid-row: span 2;
}

.gallery img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.testimonial {
    position: relative;
    padding: 1.6rem;
    border-top: 4px solid var(--soil);
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    right: 1rem;
    top: 0.35rem;
    color: rgba(154, 113, 73, 0.2);
    font-size: 4rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial p {
    color: var(--muted);
    margin-right: 2.5rem;
}

.testimonial strong {
    display: block;
    color: var(--green-900);
}

.testimonial span {
    color: var(--soil-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.testimonial footer a {
    color: var(--soil-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.testimonial__rating {
    margin-bottom: 0.7rem;
    color: #8b641f;
    font-size: 1rem;
    letter-spacing: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    max-width: 1100px;
    margin-top: 1.5rem;
}

.cta-band {
    padding: 4rem 0;
    background:
        linear-gradient(135deg, rgba(18, 53, 42, 0.96), rgba(24, 75, 56, 0.96)),
        var(--green-900);
    color: var(--white);
}

.cta-band__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cta-band p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
}

.cta-band__actions {
    display: grid;
    gap: 0.9rem;
    justify-items: end;
}

.page-hero {
    position: relative;
    padding: clamp(4rem, 9vw, 7rem) 0;
    background: var(--green-900);
    color: var(--white);
    overflow: hidden;
}

.page-hero--image {
    min-height: 430px;
    display: grid;
    align-items: end;
}

.page-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.breadcrumbs {
    padding-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.breadcrumbs a {
    color: var(--green-800);
    font-weight: 800;
}

.split {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.split img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split--spaced {
    margin-top: 2.5rem;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 1rem 1.15rem;
}

summary {
    cursor: pointer;
    color: var(--green-900);
    font-weight: 900;
}

details p {
    margin: 0.8rem 0 0;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
    align-items: start;
}

.contact-intro {
    padding-top: clamp(3rem, 5vw, 4.5rem);
    padding-bottom: 3rem;
}

.contact-intro h1 {
    color: var(--green-900);
}

.contact-intro p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.12rem;
}

.contact-panel,
.form-panel {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(23, 33, 29, 0.08);
}

.contact-form-heading {
    margin-bottom: 1.35rem;
}

.contact-form-heading h2 {
    color: var(--green-900);
    font-size: 1.5rem;
}

.contact-form-heading p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.contact-support {
    display: grid;
    gap: 1rem;
}

.contact-details {
    display: grid;
    gap: 1rem;
}

.contact-help h2 {
    font-size: 1.35rem;
}

.trust-strip {
    margin-top: 2rem;
}

.trust-strip__inner,
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.trust-strip span,
.trust-strip__inner span {
    padding: 1rem;
    background: var(--green-100);
    color: var(--green-900);
    font-weight: 800;
    text-align: center;
}

.area-trust-strip {
    margin: 0;
    padding: 0;
    background: var(--white);
}

.area-trust-strip .trust-strip__inner {
    transform: translateY(-50%);
    box-shadow: 0 16px 35px rgba(23, 33, 29, 0.12);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.gallery-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(23, 33, 29, 0.08);
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card figcaption {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
}

.gallery-card strong {
    color: var(--green-900);
    font-size: 1.05rem;
}

.gallery-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1rem;
}

.field-full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 0.35rem;
    color: var(--green-900);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    padding: 0.78rem 0.9rem;
    border: 1px solid #cfd7ce;
    border-radius: var(--radius);
    background: #fff;
    color: var(--charcoal);
    font: inherit;
}

select {
    padding-right: 2.2rem;
}

.legal-content {
    width: min(800px, calc(100% - 40px));
}

.legal-content h1 {
    color: var(--green-900);
}

.legal-content h2 {
    margin-top: 2rem;
    font-size: 1.45rem;
}

.legal-updated {
    color: var(--soil-dark);
    font-weight: 800;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.notice {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    background: #fff3d4;
    color: #5b3e0d;
}

.site-footer {
    padding: 4rem 0 1.5rem;
    background: #0f251d;
    color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand img {
    width: 132px;
}

.footer-link {
    color: var(--white);
}

.site-footer h2 {
    font-size: 1rem;
    color: var(--white);
}

.site-footer ul {
    display: grid;
    gap: 0.45rem;
    list-style: none;
    padding: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

.license {
    color: #e3c079;
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

.hero--home {
    min-height: clamp(620px, calc(100svh - 88px), 820px);
}

.hero--home::before {
    background:
        linear-gradient(90deg, rgba(9, 27, 21, 0.92), rgba(9, 27, 21, 0.58) 52%, rgba(9, 27, 21, 0.24)),
        linear-gradient(0deg, rgba(9, 27, 21, 0.42), rgba(9, 27, 21, 0));
}

.hero--home .hero-content {
    padding-bottom: clamp(3.25rem, 7vw, 5rem);
}

.hero--home .trust-points {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1040px;
}

.proof-bar {
    background: var(--green-900);
    color: var(--white);
}

.proof-bar__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-bar__inner span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    padding: 1rem;
    background: #14382c;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 900;
    text-align: center;
}

.split--intro {
    align-items: stretch;
}

.request-service-card {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border-radius: var(--radius);
    background: var(--green-900);
    color: var(--white);
    box-shadow: var(--shadow);
}

.request-service-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.request-service-card p,
.request-service-card li {
    color: rgba(255, 255, 255, 0.84);
}

.request-service-card ul {
    display: grid;
    gap: 0.55rem;
    padding-left: 1.1rem;
}

.request-service-card .button {
    margin-top: 0.35rem;
    background: #e3c079;
    color: var(--green-900);
}

.section--service-tiles {
    background: var(--cream);
}

.service-tile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: minmax(280px, auto);
    gap: 1rem;
}

.service-tile {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--green-900);
    box-shadow: 0 16px 34px rgba(23, 33, 29, 0.12);
}

.service-tile--primary {
    grid-column: span 2;
    grid-row: span 2;
}

.service-tile a,
.service-tile img,
.service-tile__content {
    position: absolute;
    inset: 0;
}

.service-tile a {
    color: var(--white);
    text-decoration: none;
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 220ms ease, opacity 220ms ease;
}

.service-tile a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 28, 22, 0.9), rgba(10, 28, 22, 0.16));
}

.service-tile:hover img {
    opacity: 0.86;
    transform: scale(1.035);
}

.service-tile__content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.45rem;
    padding: clamp(1rem, 2.4vw, 1.8rem);
}

.service-tile__content strong {
    max-width: 520px;
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    line-height: 1.05;
}

.service-tile:not(.service-tile--primary) .service-tile__content strong {
    font-size: 1.35rem;
}

.service-tile__content span:last-child {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 650;
}

.property-band {
    background:
        linear-gradient(135deg, rgba(18, 53, 42, 0.98), rgba(24, 75, 56, 0.96)),
        var(--green-900);
    color: var(--white);
}

.property-band p {
    color: rgba(255, 255, 255, 0.84);
}

.property-band .eyebrow {
    color: #e3c079;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.16);
}

.property-panel {
    min-height: 180px;
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.07);
}

.property-panel h3 {
    color: var(--white);
}

.featured-work-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 1rem;
}

.featured-work-card {
    position: relative;
    min-height: 320px;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--green-900);
    box-shadow: 0 16px 34px rgba(23, 33, 29, 0.1);
}

.featured-work-card:first-child {
    grid-row: span 2;
    min-height: 660px;
}

.featured-work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
}

.featured-work-card figcaption {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 0.35rem;
    padding: 1.2rem;
    background: linear-gradient(0deg, rgba(10, 28, 22, 0.92), rgba(10, 28, 22, 0));
    color: var(--white);
}

.featured-work-card strong {
    font-size: 1.15rem;
}

.featured-work-card span {
    color: rgba(255, 255, 255, 0.82);
}

.section-action {
    margin-top: 1.4rem;
}

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

.why-panel {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.why-panel__copy {
    max-width: 560px;
}

.why-panel__media {
    position: relative;
}

.why-panel__media img {
    width: 100%;
    min-height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-grid {
    position: absolute;
    left: -1.5rem;
    bottom: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 1px;
    overflow: hidden;
    width: min(420px, calc(100% - 2rem));
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: 0 18px 38px rgba(23, 33, 29, 0.18);
}

.stat-grid span {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--white);
    color: var(--green-900);
    font-weight: 900;
}

.stat-grid strong {
    font-size: 1.45rem;
}

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

.location-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.location-chips a,
.location-chips span {
    display: flex;
    align-items: center;
    min-height: 70px;
    padding: 1rem;
    border: 1px solid rgba(18, 53, 42, 0.16);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--green-900);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(23, 33, 29, 0.07);
}

.service-proof-strip {
    background: var(--white);
}

@media (max-width: 1020px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav,
    .header-cta {
        display: none;
    }

    .primary-nav.is-open {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        display: grid;
        gap: 0;
        padding: 0.7rem;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .brand img {
        height: 58px;
    }

    .primary-nav.is-open a {
        padding: 0.85rem;
    }

    .primary-nav.is-open .mobile-nav-actions {
        display: grid;
        gap: 0.65rem;
        margin: 0.35rem 0.15rem 0.15rem;
        padding: 0.85rem;
        border-top: 1px solid var(--line);
    }

    .primary-nav.is-open .mobile-nav-actions .button {
        width: 100%;
    }

    .mobile-nav-phone {
        color: var(--green-900);
        font-weight: 900;
        text-align: center;
        text-decoration: none;
    }

    .section-heading,
    .split,
    .why-panel,
    .cta-band__inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-band__actions {
        justify-items: start;
    }

    .grid-4,
    .areas-list,
    .project-gallery,
    .testimonial-grid,
    .trust-strip,
    .trust-strip__inner,
    .proof-bar__inner,
    .property-grid,
    .featured-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero--home .trust-points,
    .service-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-tile--primary {
        grid-row: auto;
    }

    .stat-grid {
        left: 1rem;
    }

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

@media (max-width: 760px) {
    .container,
    .narrow {
        width: min(100% - 28px, 1160px);
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 3.2rem 0 2.5rem;
    }

    .hero--home .hero-content {
        padding: 2.6rem 0 2.25rem;
    }

    .hero--home h1 {
        font-size: clamp(2.25rem, 10.2vw, 2.8rem);
    }

    .hero--home ~ .section {
        padding: 3.5rem 0;
    }

    .trust-points,
    .hero--home .trust-points,
    .service-tile-grid,
    .property-grid,
    .featured-work-grid,
    .location-chips,
    .grid-2,
    .grid-3,
    .feature-list,
    .form-grid,
    .testimonial-grid,
    .trust-strip,
    .trust-strip__inner {
        grid-template-columns: 1fr;
    }

    .proof-bar__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-bar__inner span {
        min-height: 76px;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

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

    .gallery figure:first-child {
        grid-row: auto;
    }

    .service-tile,
    .service-tile--primary,
    .featured-work-card,
    .featured-work-card:first-child {
        grid-column: auto;
        grid-row: auto;
        min-height: 260px;
    }

    .property-panel {
        min-height: 150px;
        padding: 1.15rem;
    }

    .why-panel__media img {
        min-height: 290px;
    }

    .stat-grid {
        position: static;
        width: 100%;
        margin-top: 1rem;
        grid-template-columns: 1fr;
    }

    .brand img {
        height: 54px;
    }

    .header-inner {
        min-height: 70px;
    }

    .primary-nav.is-open {
        top: 70px;
    }

    .contact-grid .form-panel {
        order: -1;
    }

    .form-panel > .button {
        width: 100%;
        margin-top: 0.25rem;
    }

    .areas-list {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        display: grid;
    }

    .testimonial p {
        margin-right: 0;
    }

    .area-trust-strip .trust-strip__inner {
        transform: none;
        margin: 1rem auto 0;
    }
}
