/* =====================================================================
   Deal Direct Landscaping — styles
   ===================================================================== */
:root {
    --green-900: #082013;
    --green-800: #0d3b22;
    --green-700: #14532d;
    --green-600: #1c6b3c;
    --green-500: #2f9e5f;
    --green-050: #eef5ef;
    --sand-100: #f7f4ee;
    --sand-200: #efe8db;
    --sand-300: #e2d6bf;
    --ink: #1b201c;
    --muted: #5a635c;
    --line: #e4e2da;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(11, 40, 24, .06);
    --shadow-md: 0 14px 40px rgba(11, 40, 24, .12);
    --maxw: 1180px;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-head: 'Sora', 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--green-700); }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; color: var(--green-900); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }

.section { padding: clamp(3.25rem, 7vw, 6rem) 0; }
.section--muted { background: var(--sand-100); }
.section--dark { background: var(--green-900); color: #d9e6db; }

.eyebrow {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
    font-weight: 700;
    color: var(--green-500);
    margin: 0 0 .65rem;
}

.section__head { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section__head--light h2 { color: #fff; }
.section__head--light .eyebrow { color: var(--green-500); }
.section__intro { color: var(--muted); font-size: 1.05rem; margin: 0; }
.section__cta { text-align: center; margin-top: 2.75rem; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--green-700); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--font-head); font-weight: 600; font-size: .98rem;
    padding: .8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
    text-align: center; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--green-600); color: #fff; box-shadow: 0 8px 20px rgba(28, 107, 60, .28); }
.btn--primary:hover { background: var(--green-700); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.btn--light { background: #fff; color: var(--green-800); }
.btn--light:hover { background: var(--sand-100); color: var(--green-900); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,.14); color:#fff; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }

.link-arrow { font-family: var(--font-head); font-weight: 600; color: var(--green-600); display: inline-flex; align-items: center; gap: .4rem; }
.link-arrow::after { content: "\2192"; transition: transform .2s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Topbar ---------- */
.topbar { background: var(--green-900); color: #cfe0d3; font-size: .85rem; transition: font-size .28s ease; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; flex-wrap: wrap; transition: min-height .28s ease; }
.topbar a { color: #cfe0d3; }
.topbar a:hover { color: #fff; }
.topbar__contact { display: flex; gap: 1.35rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__social { display: flex; gap: .5rem; }

/* ---------- Social icons ---------- */
.social-btn {
    width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .1); color: #fff; transition: background .2s ease, transform .2s ease;
}
.social-btn:hover { background: var(--green-500); color: #fff; transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.social-btn--whatsapp:hover { background: #25d366; }
.topbar__social .social-btn { width: 30px; height: 30px; }
.topbar__social .social-btn svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-top { position: sticky; top: 0; z-index: 100; transition: box-shadow .2s ease; }
.site-top.is-stuck { box-shadow: 0 6px 24px rgba(11, 40, 24, .12); }
.site-header {
    position: relative; background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 88px; transition: min-height .28s ease; }
.brand__logo { height: 68px; width: auto; display: block; transition: height .28s ease; }

/* Shrink slightly on scroll */
.site-top.is-stuck .topbar__inner { min-height: 32px; }
.site-top.is-stuck .topbar { font-size: .8rem; }
.site-top.is-stuck .site-header__inner { min-height: 62px; }
.site-top.is-stuck .brand__logo { height: 46px; }
.primary-nav ul { list-style: none; display: flex; align-items: center; gap: .35rem; margin: 0; padding: 0; }
.primary-nav a {
    font-family: var(--font-head); font-weight: 600; color: var(--green-900);
    padding: .55rem .9rem; border-radius: 999px; display: inline-block; font-size: .98rem;
}
.primary-nav a:hover { background: var(--green-050); color: var(--green-700); }
.primary-nav a.is-active { color: var(--green-600); }
.primary-nav__cta a { color: #fff; }
.primary-nav__cta a:hover { color: #fff; background: var(--green-700); }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--green-900); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    background-size: cover; background-position: center; color: #fff;
    padding: clamp(4rem, 11vw, 8.5rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero__inner { max-width: 760px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 700; font-family: var(--font-head); color: #bfe6cd; margin: 0 0 1rem; }
.hero__title { color: #fff; margin-bottom: 1rem; }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #e7f0e9; max-width: 620px; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badges { list-style: none; display: flex; gap: 1.75rem; flex-wrap: wrap; margin: 2.5rem 0 0; padding: 1.5rem 0 0; border-top: 1px solid rgba(255,255,255,.2); font-size: .95rem; color: #dcece0; }
.hero__badges strong { color: #fff; }

/* ---------- Intro ---------- */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.intro__badge {
    position: absolute; right: -14px; bottom: -14px; background: var(--green-700); color: #fff;
    border-radius: var(--radius-sm); padding: .85rem 1rem; display: flex; align-items: center; gap: .65rem;
    font-family: var(--font-head); font-weight: 700; font-size: .85rem; line-height: 1.15; box-shadow: var(--shadow-md);
}
.intro__badge img { width: 60px; height: auto; background: #fff; border-radius: 6px; padding: 4px 6px; }
.intro__body .eyebrow { margin-top: 0; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; }
.service-card__body p { color: var(--muted); margin: 0 0 .4rem; font-size: .96rem; }

/* ---------- Projects ---------- */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-grid--full { gap: 1.5rem; }
.project-card {
    display: block; background: #fff; border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--ink);
    transition: transform .2s ease, box-shadow .2s ease;
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: var(--ink); }
.project-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.project-card:hover .project-card__media img { transform: scale(1.06); }
.project-card__body { padding: 1.15rem 1.25rem 1.4rem; }
.project-card__tag { font-family: var(--font-head); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--green-500); font-weight: 700; }
.project-card__body h3 { margin: .35rem 0 .25rem; font-size: 1.12rem; }
.project-card__loc { color: var(--muted); margin: 0; font-size: .9rem; }
.project-grid__empty { text-align: center; color: var(--muted); padding: 2rem 0; }

/* ---------- Filter ---------- */
.filter { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter__btn {
    font-family: var(--font-head); font-weight: 600; font-size: .92rem; padding: .55rem 1.15rem;
    border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--green-900); cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter__btn:hover { border-color: var(--green-500); }
.filter__btn.is-active { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--green-800); color: #fff; }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: clamp(2rem, 4vw, 2.75rem) 0; }
.stat { text-align: center; padding: .25rem clamp(.5rem, 2vw, 1rem); position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 60%; width: 1px; background: rgba(255,255,255,.16); }
.stat__value { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: #fff; line-height: 1.1; letter-spacing: -.01em; }
.stat__label { display: block; margin-top: .35rem; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #bfe6cd; font-family: var(--font-head); font-weight: 600; }

/* ---------- Process ---------- */
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; counter-reset: step; }
.process-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.75rem 1.85rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.process-step::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--green-700), var(--green-500)); }
.process-step__num { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green-500); margin-bottom: .85rem; }
.process-step h3 { margin: 0 0 .5rem; font-size: 1.2rem; }
.process-step p { color: var(--muted); margin: 0; font-size: .97rem; }

/* ---------- Reasons (dark) ---------- */
.reasons__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.reason { border-top: 2px solid rgba(255,255,255,.16); padding-top: 1.25rem; }
.reason__num { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--green-500); }
.reason h3 { color: #fff; margin: .6rem 0 .5rem; }
.reason p { color: #b9cbbe; margin: 0; font-size: .96rem; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; margin: 0; box-shadow: var(--shadow-sm); }
.testimonial__stars { color: #e0a52a; letter-spacing: 2px; margin-bottom: .75rem; }
.testimonial blockquote { margin: 0 0 1rem; font-size: 1rem; color: #33403a; }
.testimonial figcaption { font-family: var(--font-head); font-weight: 700; color: var(--green-800); }

/* ---------- Areas ---------- */
.areas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.area-card { background: var(--sand-100); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.area-card h3 { margin: 0 0 .35rem; font-size: 1.08rem; }
.area-card__pc { font-family: var(--font-head); font-weight: 700; color: var(--green-500); font-size: .82rem; letter-spacing: .06em; margin: 0 0 .6rem; }
.area-card__towns { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--green-800), var(--green-600)); color: #fff; padding: clamp(2.75rem, 6vw, 4.25rem) 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin: 0 0 .35rem; }
.cta-band p { color: #dcece0; margin: 0; max-width: 46ch; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #b8cabd; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 2.5rem; padding: clamp(3rem, 6vw, 4.5rem) 0 2.75rem; }
.site-footer h3 { color: #fff; font-size: 1rem; margin: 0 0 1.1rem; text-transform: uppercase; letter-spacing: .08em; }
.site-footer p { color: #b8cabd; font-size: .95rem; }
.site-footer a { color: #cfe0d3; }
.site-footer a:hover { color: #fff; }
.site-footer__logo { display: block; width: 190px; max-width: 100%; height: auto; margin-bottom: 1.15rem; background: #fff; border-radius: 12px; padding: .75rem .9rem; }
.site-footer__social { display: flex; gap: .5rem; margin-top: 1rem; }
.site-footer__links, .site-footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; font-size: .95rem; }
.site-footer__brett { display: block; width: 172px; max-width: 100%; height: auto; margin-bottom: 1rem; background: #fff; border-radius: 12px; padding: .75rem .9rem; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bar-inner { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; font-size: .85rem; flex-wrap: wrap; }
.site-footer__bar p { margin: 0; }
.site-footer__credit { color: #8fa79a; letter-spacing: .02em; }
.site-footer__credit a { color: #cfe0d3; font-weight: 600; }
.site-footer__credit a:hover { color: #fff; }

/* ---------- Floating call ---------- */
.floating-call {
    position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: #fff; display: none; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
}
.floating-call svg { width: 30px; height: 30px; fill: currentColor; }
.floating-call:hover { background: #1ebe57; color: #fff; }

/* ---------- Page hero ---------- */
.page-hero { background-size: cover; background-position: center; color: #fff; padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem); }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: #e0ece3; max-width: 640px; margin: 0; font-size: 1.08rem; }

/* ---------- Service list rows ---------- */
.service-list { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 4.5rem); }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem, 4vw, 3.5rem); align-items: center; scroll-margin-top: 120px; }
.service-row--rev .service-row__media { order: 2; }
.service-row__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-row__lead { font-size: 1.12rem; color: var(--green-800); font-weight: 500; }
.service-row__body p { color: var(--muted); }
.service-row__body .service-row__lead { color: var(--green-800); }

/* ---------- Project / detail ---------- */
.detail-hero { background-size: cover; background-position: center; color: #fff; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem); }
.detail-hero h1 { color: #fff; margin: 0 0 .5rem; }
.detail-hero__back { display: inline-flex; align-items: center; gap: .45rem; color: #cfe0d3; font-family: var(--font-head); font-weight: 600; font-size: .9rem; margin-bottom: 1.25rem; }
.detail-hero__back:hover { color: #fff; }
.detail-hero__tags { display: flex; gap: .5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.pill { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); color: #fff; padding: .3rem .85rem; border-radius: 999px; font-size: .8rem; font-family: var(--font-head); font-weight: 600; }
.detail-hero__loc { color: #dcece0; font-size: 1.05rem; margin: 0; display: flex; gap: .4rem; align-items: center; }

.case-study__grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.case-study__lead { font-size: 1.25rem; line-height: 1.6; color: #33403a; margin: .5rem 0 2rem; }

.gallery { display: block; }
.gallery__figure { margin: 0 0 1rem; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.gallery__item { padding: 0; border: 0; background: none; cursor: pointer; border-radius: var(--radius-sm); overflow: hidden; display: block; width: 100%; box-shadow: var(--shadow-sm); }
.gallery__item--lead { aspect-ratio: 16 / 10; }
.gallery__thumbs .gallery__item { aspect-ratio: 4 / 3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.05); }

.project-facts { position: sticky; top: 104px; background: var(--sand-100); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; }
.project-facts h2 { font-size: 1.15rem; margin: 0 0 1.2rem; }
.project-facts dl { margin: 0 0 1.5rem; display: grid; gap: 0; }
.project-facts dl > div { display: grid; gap: .2rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.project-facts dl > div:first-child { padding-top: 0; }
.project-facts dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.project-facts dt { font-family: var(--font-head); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--green-600); font-weight: 700; }
.project-facts dd { margin: 0; color: var(--ink); font-weight: 500; }
.project-facts .btn { width: 100%; }
.project-facts__call { display: flex; align-items: center; justify-content: center; gap: .4rem; margin-top: .85rem; font-family: var(--font-head); font-weight: 700; color: var(--green-800); }
.project-facts__call:hover { color: var(--green-600); }

.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(6, 20, 12, .92); display: flex; align-items: center; justify-content: center; }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 18px; right: 24px; background: none; border: 0; color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; }
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.contact-form::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--green-700), var(--green-500)); }
.contact-form__head { margin-bottom: 1.75rem; }
.contact-form__eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green-600); background: #e6f4ea; padding: .3rem .7rem; border-radius: 999px; margin-bottom: .75rem; }
.contact-form__head h2 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); margin: 0 0 .35rem; color: var(--green-900); }
.contact-form__head p { margin: 0; color: var(--muted); font-size: .95rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-bottom: .4rem; color: var(--green-900); }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
    font-family: var(--font-body); font-size: 1rem; padding: .8rem .9rem; border: 1px solid var(--line);
    border-radius: var(--radius-sm); background: var(--sand-100); color: var(--ink); width: 100%; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(47,158,95,.16); background-color: #fff; }
.field select {
    appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314532d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .9rem center; background-size: 1.05rem; padding-right: 2.6rem;
}
.field textarea { resize: vertical; }
.field__error { color: #c0392b; font-size: .85rem; margin-top: .35rem; }
.contact-form button[type="submit"] { width: 100%; margin-top: .25rem; }
.contact-form__note { color: var(--muted); font-size: .85rem; margin: 1rem 0 0; text-align: center; }
.contact-form__recaptcha { color: var(--muted); font-size: .72rem; line-height: 1.5; margin: .5rem 0 0; text-align: center; opacity: .7; }
.contact-form__recaptcha a { color: inherit; text-decoration: underline; }
/* Badge hidden per Google policy — disclosure text above provides the required attribution. */
.grecaptcha-badge { visibility: hidden; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: .98rem; }
.alert--success { background: #e6f4ea; border: 1px solid #b6ddc2; color: #1c5a33; }
.alert--error { background: #fbeaea; border: 1px solid #edc4c4; color: #94322a; }

.contact__aside { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card { background: var(--green-900); color: #cfe0d3; border-radius: var(--radius); padding: 1.75rem; }
.contact-card h2 { color: #fff; font-size: 1.3rem; }
.contact-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .85rem; }
.contact-card__list li { display: flex; flex-direction: column; }
.contact-card__list span { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--green-500); font-family: var(--font-head); font-weight: 700; }
.contact-card__list a { color: #fff; font-size: 1.05rem; }
.contact-card__social { display: flex; gap: .5rem; margin-top: 1.25rem; }
.contact-card--brett { background: var(--sand-100); color: var(--muted); display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.contact-card--brett img { width: 220px; max-width: 100%; height: auto; background: #fff; border-radius: 10px; padding: .9rem 1.1rem; }
.contact-card--brett p { margin: 0; font-size: .92rem; }

/* ---------- Error pages ---------- */
.error-page { text-align: center; }
.error-page__code { font-family: var(--font-head); font-weight: 800; font-size: clamp(4rem, 14vw, 8rem); color: var(--green-050); line-height: 1; margin: 0; }
.error-page__inner { max-width: 560px; margin: 0 auto; }
.error-page__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.error-page .btn--ghost { color: var(--green-700); border-color: var(--green-600); }
.error-page .btn--ghost:hover { background: var(--green-050); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
    .card-grid, .project-grid, .testimonial-grid, .areas__grid { grid-template-columns: repeat(2, 1fr); }
    .reasons__grid { grid-template-columns: repeat(2, 1fr); }
    .process__grid { grid-template-columns: 1fr; }
    .intro__grid, .contact__grid { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .service-row, .service-row--rev { grid-template-columns: 1fr; }
    .service-row--rev .service-row__media { order: 0; }
    .case-study__grid { grid-template-columns: 1fr; }
    .project-facts { position: static; }
    .topbar__item--hours { display: none; }
}

@media (max-width: 720px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line);
        max-height: 0; overflow: hidden; transition: max-height .3s ease; box-shadow: var(--shadow-md);
    }
    .primary-nav.is-open { max-height: 460px; }
    .primary-nav ul { flex-direction: column; align-items: stretch; padding: 1rem; gap: .35rem; }
    .primary-nav a { padding: .85rem 1rem; }
    .primary-nav__cta { margin-top: .5rem; }
    .primary-nav__cta a { text-align: center; }
    .floating-call { display: flex; }
    .topbar__item--email { display: none; }
    .hero__badges { gap: 1rem 1.5rem; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .brand__logo { height: 56px; }
    .site-footer__bar-inner { padding-bottom: 5.5rem; }
}

@media (max-width: 520px) {
    .card-grid, .project-grid, .testimonial-grid, .areas__grid, .reasons__grid, .gallery__thumbs, .site-footer__grid, .field-row { grid-template-columns: 1fr; }
    .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0; }
    .stat:nth-child(odd)::before { display: none; }
    .hero__actions .btn, .cta-band__actions .btn, .error-page__actions .btn { width: 100%; }
    .topbar__contact { gap: .85rem; }
    .brand__logo { height: 50px; }
    .intro__badge { right: 8px; bottom: 8px; padding: .7rem .85rem; }
    .site-footer__grid { gap: 0; padding-top: clamp(2.25rem, 8vw, 3rem); text-align: center; }
    .site-footer__col { padding: 1.5rem 0; border-top: 1px solid rgba(255, 255, 255, .1); }
    .site-footer__col:first-child { padding-top: 0; border-top: none; }
    .site-footer h3 { margin-bottom: .85rem; }
    .site-footer__logo { margin-left: auto; margin-right: auto; }
    .site-footer__social, .contact-card__social { justify-content: center; }
    .site-footer__links, .site-footer__contact { align-items: center; }
    .site-footer__col--brett { align-items: center; }
    .site-footer__brett { margin-left: auto; margin-right: auto; }
    .site-footer__bar-inner { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; }
}
