:root {
    --red: #c71920;
    --red-dark: #9e1116;
    --black: #111111;
    --text: #242424;
    --muted: #6c6c6c;
    --light: #f4f4f4;
    --white: #ffffff;
    --border: #dddddd;
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

/* =========================================================
   Base
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

/* =========================================================
   Header
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.topbar {
    background: var(--black);
    color: var(--white);
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-inner div {
    display: flex;
    gap: 18px;
}

.topbar a {
    text-decoration: none;
}

.nav-row {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand img {
    width: 220px;
    max-height: 70px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

nav a {
    text-decoration: none;
    font-weight: 700;
}

nav a:hover {
    color: var(--red);
}

.nav-cta {
    padding: 10px 16px;
    border-radius: 7px;
    background: var(--red);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 28px;
    cursor: pointer;
}

/* =========================================================
   Hero
========================================================= */

.hero {
    color: var(--white);
    background:
        linear-gradient(
            105deg,
            rgba(0, 0, 0, 0.96),
            rgba(0, 0, 0, 0.72)
        ),
        radial-gradient(
            circle at 85% 20%,
            rgba(199, 25, 32, 0.4),
            transparent 35%
        );
}

.hero-grid {
    min-height: 690px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 54px;
    padding: 65px 0;
}

.eyebrow,
.section-heading span {
    display: inline-block;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.contact-banner h2 {
    margin: 12px 0 18px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 70px);
}

.hero-copy > p {
    max-width: 680px;
    color: #dddddd;
    font-size: 18px;
}

.hero-points,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-points {
    margin: 26px 0;
}

.hero-points span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 700;
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 2px solid transparent;
    border-radius: 7px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.btn-red {
    background: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--red-dark);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--red);
}

.btn-black {
    background: var(--black);
    color: var(--white);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.hero-stats div {
    padding: 15px;
    border-left: 3px solid var(--red);
    background: rgba(255, 255, 255, 0.08);
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats span {
    color: #cccccc;
    font-size: 12px;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: -16px 16px 16px -16px;
    border: 2px solid var(--red);
    border-radius: 20px;
}

.hero-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    object-position: top;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

/* =========================================================
   Trust strip
========================================================= */

.trust-strip {
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-grid div {
    display: grid;
}

.trust-grid span {
    color: var(--muted);
    font-size: 12px;
}

/* =========================================================
   General sections
========================================================= */

.section {
    padding: 85px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-heading h2,
.section h2,
.contact-banner h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.section-heading p,
.section p {
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 50px;
}

/* =========================================================
   Services
========================================================= */

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cards article {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cards article div {
    font-size: 26px;
}

.cards h3 {
    margin: 12px 0 7px;
}

.cards p {
    margin: 0;
}

/* =========================================================
   Why us
========================================================= */

.dark {
    background: #1c1c1c;
    color: var(--white);
}

.dark p {
    color: #c8c8c8;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.features div {
    padding: 16px;
    border-left: 3px solid var(--red);
    background: rgba(255, 255, 255, 0.06);
}

.features b,
.features span {
    display: block;
}

.features span {
    color: #bbbbbb;
    font-size: 13px;
}

.dark-panel {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background:
        linear-gradient(
            150deg,
            rgba(199, 25, 32, 0.22),
            rgba(255, 255, 255, 0.04)
        );
}

.dark-panel h3 {
    margin-top: 0;
    font-size: 26px;
}

.dark-panel li {
    margin: 9px 0;
}

/* =========================================================
   UK coverage
========================================================= */

.coverage {
    background: #f2f2f2;
}

.coverage .split {
    display: grid;
    grid-template-columns: minmax(330px, 500px) 1fr;
    align-items: center;
    gap: 65px;
}

.uk-map {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background: transparent;
    clip-path: none;
    overflow: visible;
}

.uk-map-image {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 24px 0;
}

.coverage-list span {
    padding: 12px;
    border-left: 3px solid var(--red);
    background: var(--white);
    font-weight: 700;
}

/* =========================================================
   About
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.about-grid p {
    font-size: 17px;
}

/* =========================================================
   Quote
========================================================= */

.quote {
    background: linear-gradient(135deg, #111111, #2a0b0c);
    color: var(--white);
}

.quote-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.quote p {
    color: #cccccc;
}

.quote-contact {
    display: grid;
    gap: 7px;
    margin-top: 24px;
}

.quote-contact a {
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
}

.quote-form {
    padding: 28px;
    border-radius: 16px;
    background: var(--white);
    color: var(--text);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.form-grid label {
    display: grid;
    gap: 7px;
    font-size: 13px;
    font-weight: 800;
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 7px;
}

.full {
    grid-column: 1 / -1;
}

.quote-form .btn {
    margin-top: 18px;
}

/* =========================================================
   Contact banner
========================================================= */

.contact-banner {
    padding: 44px 0;
    background: var(--red);
    color: var(--white);
}

.contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.contact-banner span {
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-banner h2 {
    margin-bottom: 0;
}

/* =========================================================
   Footer
========================================================= */

footer {
    background: var(--black);
    color: #cccccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 34px;
    padding: 50px 0 40px;
}

.footer-grid img {
    width: 210px;
    padding: 8px;
    border-radius: 8px;
    background: var(--white);
}

.footer-grid h3 {
    color: var(--white);
}

.footer-grid p {
    margin: 6px 0;
}

.footer-bottom {
    padding: 15px 0;
    border-top: 1px solid #333333;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 980px) {
    .hero-grid,
    .split,
    .about-grid,
    .quote-grid,
    .coverage .split {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

    .cards,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage .split {
        gap: 35px;
    }

    .uk-map-image {
        max-width: 420px;
    }
}

@media (max-width: 780px) {
    .topbar-inner > span {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;
        display: none;
        padding: 18px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    nav.open {
        display: grid;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-stats,
    .features,
    .coverage-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner,
    .footer-bottom .container {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .brand img {
        width: 175px;
    }

    .cards,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .uk-map-image {
        max-width: 330px;
    }
}