/* =========================================================
   GLOBAL SETTINGS
========================================================= */

:root {
    --red: #c30518;
    --red-dark: #74020d;

    --ink: #111214;
    --ink-2: #202225;
    --muted: #62666b;

    --line: #e5e5e5;
    --soft: #f6f6f5;
    --white: #ffffff;

    --max: 1180px;

    --shadow: 0 20px 60px rgba(17, 18, 20, 0.10);
}


/* Make width/padding easier to control */
* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;

    color: var(--ink);
    background: var(--white);

    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}


/* Main content width */
.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}


/* Standard section spacing */
.section {
    padding: 104px 0;
}

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


/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
    position: fixed;

    left: 12px;
    top: -60px;

    z-index: 999;

    padding: 10px 14px;

    background: var(--ink);
    color: #fff;

    border-radius: 4px;
}

.skip-link:focus {
    top: 12px;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: var(--ink);

    color: rgba(255, 255, 255, 0.78);

    font-size: 13px;
    letter-spacing: 0.04em;
}

.topbar-inner {
    min-height: 36px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    gap: 24px;
}

.topbar-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
}

.topbar a:hover {
    color: #fff;
}


/* =========================================================
   HEADER / NAVIGATION
========================================================= */

.site-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 20;
}

.nav {
    min-height: 92px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    color: #fff;
}


/* Brand / logo */
.brand {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;

    gap: 16px;

    width: -webkit-max-content;

    width: -moz-max-content;

    width: max-content;

    text-transform: uppercase;
}

.brand-mark {
    display: block;

    color: var(--red);

    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.12em;
    line-height: 1;

    text-align: left;
}

.brand-copy {
    display: block;

    width: auto;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;

    text-align: left;
    white-space: nowrap;
}


/* Navigation links */
.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    gap: 30px;

    font-size: 14px;
    font-weight: 700;
}

.nav-links > a:not(.btn) {
    position: relative;
}

.nav-links > a:not(.btn)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--red);

    -webkit-transition: width 0.2s ease;

    -o-transition: width 0.2s ease;

    transition: width 0.2s ease;
}

.nav-links > a:not(.btn):hover::after {
    width: 100%;
}


/* Mobile menu button */
.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 9px;

    border: 0;

    background: transparent;
}

.menu-toggle span {
    display: block;

    height: 2px;

    margin: 6px 0;

    background: #fff;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 790px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    color: #fff;

    overflow: hidden;
}


/* Hero background image */
.hero-media {
    position: absolute;
    inset: 0;

    background:
        url("assets/CPS.jpg")
        center 48% / cover
        no-repeat;

    -webkit-transform: scale(1.02);

        -ms-transform: scale(1.02);

            transform: scale(1.02);
}


/* Dark overlay */
.hero-shade {
    position: absolute;
    inset: 0;

    background:
        -webkit-gradient(
            linear,
            left top, right top,
            from(rgba(10, 11, 12, 0.91)),
            color-stop(46%, rgba(10, 11, 12, 0.78)),
            color-stop(72%, rgba(10, 11, 12, 0.34)),
            to(rgba(10, 11, 12, 0.52))
        );

    background:
        -o-linear-gradient(
            left,
            rgba(10, 11, 12, 0.91) 0%,
            rgba(10, 11, 12, 0.78) 46%,
            rgba(10, 11, 12, 0.34) 72%,
            rgba(10, 11, 12, 0.52) 100%
        );

    background:
        linear-gradient(
            90deg,
            rgba(10, 11, 12, 0.91) 0%,
            rgba(10, 11, 12, 0.78) 46%,
            rgba(10, 11, 12, 0.34) 72%,
            rgba(10, 11, 12, 0.52) 100%
        );
}


/* Hero text */
.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 135px;
}

.eyebrow {
    margin: 0 0 18px;

    color: #c33f4c;

    text-transform: uppercase;

    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 900;
}

.eyebrow.dark {
    color: var(--red);
}


/* Remove default top margins */
.hero h1,
h2,
h3,
p {
    margin-top: 0;
}


/* Main hero heading */
.hero h1 {
    max-width: 780px;

    margin-bottom: 22px;

    font-size: clamp(50px, 6vw, 84px);
    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 850;
}

.hero h1 span {
    color: #c30518;
}


/* Hero description */
.hero-lead {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.8);

    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}


/* Hero buttons */
.hero-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;

    gap: 12px;

    margin: 34px 0 56px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 52px;

    display: -webkit-inline-box;

    display: -ms-inline-flexbox;

    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

    padding: 0 24px;

    background: var(--red);
    color: #fff;

    border: 1px solid var(--red);
    border-radius: 3px;

    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0.02em;

    cursor: pointer;

    -webkit-transition: 0.2s ease;

    -o-transition: 0.2s ease;

    transition: 0.2s ease;
}

.btn:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);

    -webkit-transform: translateY(-1px);

        -ms-transform: translateY(-1px);

            transform: translateY(-1px);
}


/* Transparent button */
.btn-ghost {
    background: rgba(255, 255, 255, 0.06);

    border-color: rgba(255, 255, 255, 0.35);

    -webkit-backdrop-filter: blur(5px);

            backdrop-filter: blur(5px);
}

.btn-ghost:hover {
    background: #fff;
    color: var(--ink);

    border-color: #fff;
}


/* Smaller button */
.btn-small {
    min-height: 42px;

    padding: 0 17px;

    font-size: 13px;
}


/* Dark button */
.btn-dark {
    background: var(--ink);
    border-color: var(--ink);
}

.btn-dark:hover {
    background: var(--red);
    border-color: var(--red);
}


/* Full width button */
.btn-full {
    width: 100%;
}


/* =========================================================
   HERO TRUST DETAILS
========================================================= */

.hero-trust {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    width: -webkit-fit-content;

    width: -moz-fit-content;

    width: fit-content;

    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-trust div {
    min-width: 190px;

    padding: 20px 40px 0 0;
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    font-size: 15px;
}

.hero-trust span {
    margin-top: 3px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 13px;
}


/* =========================================================
   INTRO SECTION
========================================================= */

.intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    -webkit-box-align: start;

        -ms-flex-align: start;

            align-items: start;
}

h2 {
    margin-bottom: 22px;

    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.05;

    letter-spacing: -0.04em;
}

.intro-copy {
    padding-top: 30px;

    color: var(--muted);

    font-size: 18px;
}


/* Text links */
.text-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    gap: 9px;

    margin-top: 8px;

    color: var(--ink);

    font-weight: 800;
}

.text-link span {
    color: var(--red);

    -webkit-transition: -webkit-transform 0.2s;

    transition: -webkit-transform 0.2s;

    -o-transition: transform 0.2s;

    transition: transform 0.2s;

    transition: transform 0.2s, -webkit-transform 0.2s;
}

.text-link:hover span {
    -webkit-transform: translateX(4px);
        -ms-transform: translateX(4px);
            transform: translateX(4px);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    display: grid;

    grid-template-columns: 1.4fr 0.7fr;

    gap: 60px;

    -webkit-box-align: end;

        -ms-flex-align: end;

            align-items: end;

    margin-bottom: 54px;
}

.section-heading > p {
    margin-bottom: 10px;

    color: var(--muted);
}


/* =========================================================
   SERVICES
========================================================= */

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;

    min-height: 310px;

    padding: 34px;

    background: #fff;

    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);

    -webkit-transition:
        -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.2s ease;

    transition:
        -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.2s ease;

    -o-transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        -webkit-transform 0.2s ease,
        -webkit-box-shadow 0.2s ease;
}

.service-card:hover {
    z-index: 2;

    -webkit-transform: translateY(-4px);

        -ms-transform: translateY(-4px);

            transform: translateY(-4px);

    -webkit-box-shadow: var(--shadow);

            box-shadow: var(--shadow);
}


/* Featured service */
.service-card.featured {
    background: var(--ink);
    color: #fff;
}


/* Service number */
.service-number {
    position: absolute;

    top: 24px;
    right: 26px;

    color: #b5b6b7;

    font-size: 12px;
    font-weight: 800;
}

.featured .service-number {
    color: rgba(255, 255, 255, 0.4);
}


/* Service icon */
.service-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    margin-bottom: 60px;

    background: #f1e6e8;
    color: var(--red);

    border-radius: 50%;

    font-weight: 900;
}

.featured .service-icon {
    background: var(--red);
    color: #fff;
}


/* Service text */
.service-card h3 {
    margin-bottom: 10px;

    font-size: 21px;
    letter-spacing: -0.02em;
}

.service-card p {
    margin-bottom: 0;

    color: var(--muted);

    font-size: 15px;
}

.featured p {
    color: rgba(255, 255, 255, 0.64);
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
}

.about-photo-wrap {
    position: relative;
}

.about-photo {
    width: 100%;

    aspect-ratio: 1 / 0.88;

    -o-object-fit: cover;

       object-fit: cover;

    -webkit-box-shadow: var(--shadow);

            box-shadow: var(--shadow);
}


/* Experience badge */
.experience-badge {
    position: absolute;

    right: -24px;
    bottom: -24px;

    width: 150px;
    height: 150px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

    background: var(--red);
    color: #fff;
}

.experience-badge strong {
    font-size: 34px;
    line-height: 1;
}

.experience-badge span {
    margin-top: 8px;

    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}


/* About text */
.about-copy > p:not(.eyebrow) {
    color: var(--muted);

    font-size: 17px;
}


/* Tick list */
.tick-list {
    margin: 28px 0 34px;

    border-top: 1px solid var(--line);
}

.tick-list p {
    margin: 0;

    padding: 13px 0;

    border-bottom: 1px solid var(--line);

    font-weight: 700;
}

.tick-list span {
    margin-right: 10px;

    color: var(--red);
}


/* =========================================================
   PROMISE SECTION
========================================================= */

.promise {
    background: var(--ink);
    color: #fff;
}

.promise-inner {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 100px;
}

.promise h2 {
    margin-bottom: 0;
}

.promise-points article {
    display: grid;

    grid-template-columns: 55px 1fr;

    -webkit-column-gap: 20px;

       -moz-column-gap: 20px;

            column-gap: 20px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.promise-points article:first-child {
    padding-top: 0;
}

.promise-points span {
    grid-row: 1 / span 2;

    padding-top: 6px;

    color: var(--red);

    font-size: 12px;
    font-weight: 850;
}

.promise-points h3 {
    margin: 0 0 6px;

    font-size: 20px;
}

.promise-points p {
    margin: 0;

    color: rgba(255, 255, 255, 0.6);

    font-size: 15px;
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    -webkit-box-align: start;

        -ms-flex-align: start;

            align-items: start;
}

.contact-copy > p:not(.eyebrow) {
    max-width: 520px;

    color: var(--muted);

    font-size: 17px;
}


/* Contact details */
.contact-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 26px 34px;

    margin-top: 42px;
}

.contact-details > * {
    padding-top: 13px;

    border-top: 2px solid var(--ink);
}

.contact-details span,
.contact-details strong {
    display: block;
}

.contact-details span {
    margin-bottom: 5px;

    color: var(--muted);

    text-transform: uppercase;

    letter-spacing: 0.12em;

    font-size: 10px;
    font-weight: 850;
}

.contact-details strong {
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   CONTACT FORM
========================================================= */

.enquiry-card {
    padding: 38px;

    background: var(--soft);

    border: 1px solid var(--line);
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;
    font-weight: 850;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.form-row input,
.form-row textarea {
    width: 100%;

    padding: 13px 14px;

    background: #fff;

    border: 1px solid #d8d8d8;
    border-radius: 2px;

    outline: none;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--red);

    -webkit-box-shadow: 0 0 0 3px rgba(168, 70, 80, 0.10);

            box-shadow: 0 0 0 3px rgba(168, 70, 80, 0.10);
}


/* Two fields side by side */
.two-col {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.form-note {
    margin: 12px 0 0;

    color: var(--muted);

    font-size: 12px;

    text-align: center;
}


/* =========================================================
   MAP
========================================================= */

.map-section {
    width: 100%;

    padding: 80px 20px;

    background: var(--ink);
}

.map-container {
    width: min(1180px, 100%);
    height: 500px;

    margin: 0 auto;

    overflow: hidden;
}

.map-container iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* Map heading / find us */
.Find {
    padding-bottom: 20px;

    color: white;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #0b0c0e;
    color: #fff;

    border-top: 4px solid var(--red);
}

.footer-top {
    min-height: 130px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top p {
    margin: 0;

    color: rgba(255, 255, 255, 0.52);

    font-size: 13px;
}

.footer-bottom {
    min-height: 74px;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;

    color: rgba(255, 255, 255, 0.38);

    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}


/* =========================================================
   TABLET
   Screens below 900px
========================================================= */

@media (max-width: 900px) {

    .section {
        padding: 78px 20px;
    }


    /* Top bar */
    .topbar-inner > span {
        display: none;
    }

    .topbar-inner {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }

    .topbar-links a:last-child {
        display: none;
    }


    /* Keep logo above mobile menu */
    .brand {
        position: relative;
        z-index: 32;
    }


    /* Mobile menu button */
    .menu-toggle {
        display: block;

        position: fixed;

        top: 52px;
        right: 20px;

        z-index: 100;

        width: 46px;
        height: 46px;

        padding: 10px;

        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 50%;

        background: rgba(17, 18, 20, 0.82);

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        -webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);

                box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);

        cursor: pointer;

        -webkit-transition:
            background 0.25s ease,
            border-color 0.25s ease,
            -webkit-transform 0.25s ease;

        transition:
            background 0.25s ease,
            border-color 0.25s ease,
            -webkit-transform 0.25s ease;

        -o-transition:
            background 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s ease;

        transition:
            background 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s ease;

        transition:
            background 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s ease,
            -webkit-transform 0.25s ease;
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.10);

        border-color: rgba(255, 255, 255, 0.4);
    }


    /* Hamburger lines */
    .menu-toggle span {
        position: absolute;

        left: 12px;

        width: 20px;
        height: 2px;

        margin: 0;

        background: #fff;

        border-radius: 2px;

        -webkit-transition:
            top 0.3s ease,
            opacity 0.2s ease,
            -webkit-transform 0.3s ease;

        transition:
            top 0.3s ease,
            opacity 0.2s ease,
            -webkit-transform 0.3s ease;

        -o-transition:
            transform 0.3s ease,
            top 0.3s ease,
            opacity 0.2s ease;

        transition:
            transform 0.3s ease,
            top 0.3s ease,
            opacity 0.2s ease;

        transition:
            transform 0.3s ease,
            top 0.3s ease,
            opacity 0.2s ease,
            -webkit-transform 0.3s ease;
    }

    .menu-toggle span:nth-child(1) {
        top: 15px;
    }

    .menu-toggle span:nth-child(2) {
        top: 22px;
    }

    .menu-toggle span:nth-child(3) {
        top: 29px;
    }


    /* Turn hamburger into X */
    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        top: 22px;

        -webkit-transform: rotate(45deg);

            -ms-transform: rotate(45deg);

                transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;

        -webkit-transform: translateX(8px);

            -ms-transform: translateX(8px);

                transform: translateX(8px);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        top: 22px;

        -webkit-transform: rotate(-45deg);

            -ms-transform: rotate(-45deg);

                transform: rotate(-45deg);
    }


    /* Mobile navigation */
    .nav-links {
        position: fixed;
        inset: 0;

        z-index: 30;

        display: -webkit-box;

        display: -ms-flexbox;

        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        -webkit-box-align: stretch;

            -ms-flex-align: stretch;

                align-items: stretch;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;

        gap: 0;

        padding:
            135px
            max(28px, calc((100vw - 720px) / 2))
            46px;

        background: rgba(11, 12, 14, 0.90);
        color: #fff;

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        -webkit-transform: translateX(100%);

            -ms-transform: translateX(100%);

                transform: translateX(100%);

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        -webkit-transition:
            opacity 0.28s ease,
            visibility 0s linear 0.42s,
            -webkit-transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);

        transition:
            opacity 0.28s ease,
            visibility 0s linear 0.42s,
            -webkit-transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);

        -o-transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            visibility 0s linear 0.42s;

        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            visibility 0s linear 0.42s;

        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            visibility 0s linear 0.42s,
            -webkit-transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }


    /* Open mobile navigation */
    .nav-links.open {
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
        visibility: visible;

        pointer-events: auto;

        -webkit-transition:
            opacity 0.28s ease,
            visibility 0s,
            -webkit-transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);

        transition:
            opacity 0.28s ease,
            visibility 0s,
            -webkit-transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);

        -o-transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            visibility 0s;

        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            visibility 0s;

        transition:
            transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.28s ease,
            visibility 0s,
            -webkit-transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }


    /* Mobile links */
    .nav-links > a:not(.btn) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;

        min-height: 74px;

        padding: 16px 2px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.14);

        font-size: clamp(28px, 7vw, 44px);
        font-weight: 800;
        letter-spacing: -0.035em;
        line-height: 1;

        -webkit-transition:
            color 0.2s ease,
            padding-left 0.2s ease;

        -o-transition:
            color 0.2s ease,
            padding-left 0.2s ease;

        transition:
            color 0.2s ease,
            padding-left 0.2s ease;
    }

    .nav-links > a:not(.btn):first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }


    /* Arrow after mobile links */
    .nav-links > a:not(.btn)::after {
        content: "→";

        position: static;

        width: auto;
        height: auto;

        margin-left: auto;

        background: none;

        color: var(--red);

        font-size: 0.7em;

        opacity: 0.9;

        -webkit-transition: -webkit-transform 0.2s ease;

        transition: -webkit-transform 0.2s ease;

        -o-transition: transform 0.2s ease;

        transition: transform 0.2s ease;

        transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    }

    .nav-links > a:not(.btn):hover {
        padding-left: 8px;

        color: rgba(255, 255, 255, 0.72);
    }

    .nav-links > a:not(.btn):hover::after {
        width: auto;

        -webkit-transform: translateX(5px);

            -ms-transform: translateX(5px);

                transform: translateX(5px);
    }


    /* Mobile button inside nav */
    .nav-links .btn {
        width: 100%;
        min-height: 58px;

        margin-top: 28px;

        font-size: 15px;

        border-radius: 2px;
    }


    /* Prevent page scrolling when menu open */
    body.menu-open {
        overflow: hidden;
    }


    /* Hero */
    .hero {
        min-height: 760px;
    }

    .hero-shade {
        background: rgba(10, 11, 12, 0.72);
    }


    /* Trust information */
    .hero-trust {
        width: 100%;
    }

    .hero-trust div {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;

        min-width: 0;

        padding-right: 18px;
    }


    /* Change 2-column sections into 1 column */
    .intro-grid,
    .section-heading,
    .about-grid,
    .promise-inner,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 48px;
    }

    .intro-copy {
        padding-top: 0;
    }


    /* Services */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    /* About */
    .about-grid {
        gap: 65px;
    }

    .experience-badge {
        right: 14px;
    }


    /* Footer */
    .footer-top {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;

        padding: 34px 0;
    }
}


/* =========================================================
   MOBILE
   Screens below 620px
========================================================= */

@media (max-width: 620px) {

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


    /* Top bar */
    .topbar-links {
        gap: 12px;
    }


    /* Header */
    .nav {
        min-height: 82px;
    }


    /* Menu button */
    .menu-toggle {
        top: 50px;
        right: 14px;
    }


    /* Mobile menu */
    .nav-links {
        padding: 120px 22px 32px;
    }

    .nav-links > a:not(.btn) {
        min-height: 66px;

        font-size: clamp(27px, 9vw, 38px);
    }


    /* Logo */
    .brand {
        gap: 10px;
    }

    .brand-mark {
        padding-left: 20px;

        font-size: 30px;
    }

    .brand-copy {
        display: block;

        width: auto;

        font-size: 8px;

        letter-spacing: 0.16em;

        white-space: nowrap;
    }


    /* Hero */
    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 115px;
        padding-left: 20px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        margin-bottom: 38px;
    }


    /* Hero trust */
    .hero-trust {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

    .hero-trust div {
        padding: 15px 12px 0 0;
    }

    .hero-trust div:last-child {
        display: none;
    }


    /* Services */
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 270px;
    }


    /* Contact */
    .contact-details {
        grid-template-columns: 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .enquiry-card {
        padding: 25px 20px;
    }


    /* Map */
    .map-section {
        padding: 50px 14px;
    }

    .map-container {
        height: 400px;
    }


    /* Footer */
    .footer-top,
    .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;

        -webkit-box-align: start;

            -ms-flex-align: start;

                align-items: flex-start;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .footer-bottom {
        gap: 4px;

        padding: 20px 0;
    }
}


/* =========================================================
   404 PAGE
========================================================= */

.error-page {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: var(--ink);
    color: white;
    text-align: center;
}

.error-content {
    padding: 80px 20px;
}

.error-number {
    margin: 0 0 15px;
    color: var(--red);
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
}

.error-page h1 {
    margin: 0 0 20px;
    font-size: 48px;
}

.error-message {
    max-width: 550px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
}


/* MOBILE */

@media (max-width: 620px) {
    .error-number {
        font-size: 72px;
    }
    .error-page h1 {
        font-size: 34px;
    }
    .error-message {
        font-size: 16px;
    }
}