:root {
    --ink: #16201d;
    --muted: #60706a;
    --surface: #fbfaf6;
    --surface-soft: #eee8dc;
    --surface-cool: #e4eee9;
    --forest: #1f5f4a;
    --forest-dark: #10372c;
    --teal: #3c8174;
    --amber: #8f6428;
    --line: rgba(22, 32, 29, 0.14);
    --shadow: 0 18px 50px rgba(22, 32, 29, 0.12);
    --max-width: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

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

.narrow {
    max-width: 820px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(16, 30, 27, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
}

.navbar-inner {
    width: min(calc(100% - 32px), var(--max-width));
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin: 0 auto;
}

.navbar-brand {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
}

.navbar-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}

.navbar-list a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.navbar-list a:hover,
.navbar-list a:focus-visible,
.navbar-list a[aria-current="page"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.navbar-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.navbar-toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.34);
    outline-offset: 2px;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 180ms ease, opacity 180ms ease;
}

.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;
}

.navbar.is-open .hamburger-line:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.is-open .hamburger-line:nth-of-type(2) {
    opacity: 0;
}

.navbar.is-open .hamburger-line:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: 680px;
    padding: 152px 20px 84px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 20, 18, 0.92) 0%, rgba(16, 55, 44, 0.78) 48%, rgba(7, 20, 18, 0.52) 100%),
        url("/images/hero-texture.webp") center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(7, 20, 18, 0) 0%, rgba(7, 20, 18, 0.54) 100%);
    pointer-events: none;
}

.hero-content,
.hero-inner {
    width: min(100%, 760px);
    position: relative;
    z-index: 1;
    margin-left: max(0px, calc((100vw - var(--max-width)) / 2));
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(2.6rem, 5.4vw, 5.4rem);
    line-height: 1.03;
    letter-spacing: 0;
}

.hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-lead,
.hero-content > p:not(.eyebrow),
.hero-inner > p:not(.eyebrow) {
    margin: 24px 0 0;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.eyebrow {
    margin: 0 0 12px;
    color: #5f716b;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid var(--forest);
    border-radius: 6px;
    background: var(--forest);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    transform: translateY(-1px);
    outline: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.text-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--forest);
    font-weight: 800;
    text-decoration-color: rgba(31, 95, 74, 0.35);
    text-underline-offset: 5px;
}

.section,
.split,
.case,
.case-alt,
.credibility,
.approach,
.contact {
    padding: 92px 0;
}

.contact {
    background:
        radial-gradient(circle at 18% 18%, rgba(31, 95, 74, 0.08), transparent 34%),
        linear-gradient(180deg, #f1eadf 0%, #e5eee9 100%);
}

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

.intro {
    background: linear-gradient(180deg, #f2ede4 0%, var(--surface-soft) 100%);
    text-align: center;
}

.center {
    text-align: center;
}

.center .container,
.section.center > .container {
    margin-left: auto;
    margin-right: auto;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.15;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(2.25rem, 4.4vw, 4.2rem);
}

h2 {
    font-size: clamp(2rem, 3.2vw, 3.2rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 18px 0 0;
}

.section p,
.split p,
.case p,
.case-alt p,
.credibility p,
.approach p {
    color: var(--muted);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.services-overview {
    background:
        radial-gradient(circle at 22% 18%, rgba(143, 100, 40, 0.08), transparent 34%),
        linear-gradient(180deg, #f7f4ee 0%, var(--surface-cool) 100%);
}

.grid-3,
.grid-4,
.service-columns,
.metrics,
.steps {
    display: grid;
    gap: 18px;
}

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

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

.card,
.grid-3 > div,
.grid-4 > div,
.steps p,
.impact-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    padding: 28px;
    box-shadow: 0 8px 24px rgba(22, 32, 29, 0.07);
}

.card h3,
.grid-3 h3,
.grid-4 h3 {
    color: var(--forest-dark);
}

.split {
    background:
        linear-gradient(135deg, #fbfaf6 0%, #f2f6f3 56%, #f7f1e7 100%);
}

.split-grid,
.case-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 56px;
    align-items: center;
}

.split-grid.reverse,
.reverse {
    direction: rtl;
}

.split-grid.reverse > *,
.reverse > * {
    direction: ltr;
}

.split img,
.case img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.impact-panel {
    background: var(--forest-dark);
    color: #fff;
    box-shadow: var(--shadow);
}

.impact-panel h3 {
    color: #fff;
}

ul {
    margin: 18px 0 0;
    padding-left: 20px;
}

li + li {
    margin-top: 8px;
}

.impact-panel li,
.service-hero li {
    color: rgba(255, 255, 255, 0.88);
}

.credibility {
    color: #fff;
    background: linear-gradient(135deg, var(--forest-dark) 0%, #204a42 48%, #6f5c2e 100%);
}

.credibility h2,
.credibility p,
.credibility .eyebrow {
    color: #fff;
}

.metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 36px;
}

.metrics div {
    border-left: 3px solid var(--amber);
    padding: 6px 0 6px 20px;
}

.metrics strong {
    display: block;
    font-size: clamp(2rem, 3vw, 3.6rem);
    line-height: 1;
}

.metrics span {
    display: block;
    max-width: 260px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.cta-section {
    background: linear-gradient(180deg, var(--surface-soft) 0%, #e7eee9 100%);
}

.service-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--forest-dark);
}

.service-flytipping {
    background:
        linear-gradient(90deg, rgba(9, 23, 21, 0.9), rgba(9, 23, 21, 0.7)),
        url("/images/flytipping.webp") center / cover no-repeat;
}

.service-vehicles {
    background:
        linear-gradient(90deg, rgba(9, 23, 21, 0.92), rgba(9, 23, 21, 0.74)),
        url("/images/abandoned.webp") center / cover no-repeat;
}

.service-overlay {
    display: none;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.service-hero p,
.service-hero h2,
.service-hero h3 {
    color: #fff;
}

.lead {
    font-size: 1.22rem;
}

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

.training-feature .btn {
    margin-top: 24px;
}

.training-detail {
    background:
        radial-gradient(circle at 12% 20%, rgba(143, 100, 40, 0.08), transparent 30%),
        linear-gradient(180deg, #eef4f0 0%, #f4eee4 100%);
}

.training-columns {
    align-items: stretch;
    margin-top: 34px;
}

.training-columns > * {
    height: 100%;
}

.training-governance {
    background: rgba(255, 255, 255, 0.94);
}

.training-outcomes {
    margin-top: 18px;
}

.vehicle-detail {
    background:
        radial-gradient(circle at 82% 18%, rgba(31, 95, 74, 0.09), transparent 34%),
        linear-gradient(180deg, #f3efe6 0%, #e4eee9 100%);
}

.vehicle-story {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 40px;
    align-items: stretch;
}

.vehicle-result p {
    color: rgba(255, 255, 255, 0.86);
}

.vehicle-outcomes {
    margin-top: 28px;
}

.vehicle-cta {
    margin-top: 34px;
    padding: 54px 0 0;
}

.case {
    background: linear-gradient(180deg, var(--surface-cool) 0%, #f3efe6 100%);
}

.case-alt,
.approach {
    background:
        radial-gradient(circle at 82% 18%, rgba(31, 95, 74, 0.08), transparent 32%),
        linear-gradient(180deg, #f4eee4 0%, var(--surface-soft) 100%);
}

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

.form-group.full {
    grid-column: 1 / -1;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: start;
}

.contact-panel,
.contact-form {
    border: 1px solid rgba(22, 32, 29, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(22, 32, 29, 0.13);
}

.contact-panel {
    padding: 30px;
}

.contact-form {
    padding: 30px;
}

label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
}

label span {
    margin-left: 6px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(22, 32, 29, 0.28);
    border-radius: 6px;
    padding: 12px 13px;
    color: var(--ink);
    background: #f7f4ed;
    font: inherit;
    box-shadow: inset 0 1px 2px rgba(22, 32, 29, 0.06);
}

input::placeholder,
textarea::placeholder {
    color: #6f7d78;
    opacity: 1;
}

textarea {
    resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(31, 95, 74, 0.46);
    background: #fffdf8;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--forest);
    background: #fff;
    outline: 3px solid rgba(31, 95, 74, 0.22);
}

.form-note {
    color: var(--muted);
    font-size: 0.95rem;
}

.form-note a {
    color: var(--forest);
    font-weight: 800;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.form-actions.full {
    grid-column: 1 / -1;
}

.form-message {
    display: none;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: 0.95rem;
    font-weight: 700;
}

.form-message.full {
    grid-column: 1 / -1;
}

.form-message.is-error {
    display: block;
    border: 1px solid rgba(150, 44, 44, 0.28);
    background: #fff1f1;
    color: #7a2323;
}

button:disabled {
    cursor: progress;
    opacity: 0.72;
}

.policy-section {
    background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface-cool) 100%);
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: 40px;
    align-items: start;
}

.policy-summary,
.policy-content {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 32, 29, 0.07);
}

.policy-summary {
    position: sticky;
    top: 96px;
    padding: 28px;
}

.policy-content {
    padding: 38px;
}

.policy-content h2 + h3 {
    margin-top: 22px;
}

.policy-content h2:not(:first-child) {
    margin-top: 42px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.policy-content h3 {
    margin-top: 28px;
}

.policy-content a {
    color: var(--forest);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.footer {
    background: #111916;
    color: rgba(255, 255, 255, 0.78);
    padding: 36px 20px;
    text-align: center;
}

.footer-inner {
    width: min(100%, var(--max-width));
    margin: 0 auto;
}

.footer a {
    color: #fff;
    font-weight: 800;
    text-underline-offset: 4px;
}

.footer p {
    margin: 8px 0 0;
}

.cookie-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 2000;
    width: min(calc(100% - 36px), 520px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 22px;
    box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner h2 {
    font-size: 1.2rem;
}

.cookie-banner p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.cookie-actions button {
    min-height: 42px;
    border-radius: 6px;
    padding: 9px 14px;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.cookie-accept {
    border: 1px solid var(--forest);
    background: var(--forest);
    color: #fff;
}

.cookie-reject {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

@media (max-width: 860px) {
    .navbar-inner {
        min-height: 68px;
        position: relative;
    }

    .navbar-toggle {
        display: inline-flex;
    }

    .navbar-list {
        position: absolute;
        top: calc(100% + 1px);
        left: -16px;
        right: -16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 16px 16px;
        background: rgba(16, 30, 27, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 18px 34px rgba(5, 14, 12, 0.28);
    }

    .navbar.is-open .navbar-list {
        display: flex;
    }

    .navbar-list a {
        min-height: 46px;
        justify-content: center;
        border-radius: 6px;
    }

    .hero {
        min-height: 640px;
        padding-top: 170px;
    }

    .hero-content,
    .hero-inner {
        margin-left: auto;
        margin-right: auto;
    }

    .grid-3,
    .grid-4,
    .metrics,
    .split-grid,
    .case-grid,
    .service-columns,
    .contact-layout,
    .policy-layout,
    .vehicle-story,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .policy-summary {
        position: static;
    }

    .split img,
    .case img {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
    }

    .container {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .navbar-inner {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .navbar-brand {
        font-size: 0.95rem;
    }

    .hero {
        min-height: 600px;
        padding: 156px 14px 64px;
    }

    .hero-actions,
    .cookie-actions,
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .cookie-actions button {
        width: 100%;
    }

    .section,
    .split,
    .case,
    .case-alt,
    .credibility,
    .approach,
    .contact {
        padding: 64px 0;
    }

    .card,
    .grid-3 > div,
    .grid-4 > div,
    .steps p,
    .impact-panel {
        padding: 22px;
    }
}
