* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

a {
    color: #006ca8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-shell {
    width: 1110px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}


/* HEADER */

.site-header {
    padding-top: 3px;
}

.header-row {
    height: 116px;
    position: relative;
}

.phone {
    position: absolute;
    top: 16px;
    color: #006ca8;
    font-size: 18px;
}

.phone-left {
    left: 15px;
}

.phone-right {
    right: 15px;
}

.logo-wrap {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    text-align: center;
}

.logo-text {
    font-family: Arial Black, Arial, sans-serif;
    font-weight: 900;
    font-size: 82px;
    line-height: .92;
    letter-spacing: -8px;
    color: #fff;
}

.logo-subtitle {
    margin-top: 4px;
    font-size: 16px;
    color: #fff;
}


/* NAVIGATION */

.main-nav {
    text-align: center;
    margin-top: 1px;
    margin-bottom: 14px;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 20px;
    line-height: 36px;
}

.nav-row a,
.nav-row span {
    color: #006ca8;
    white-space: nowrap;
}

.nav-row-second {
    margin-top: 2px;
}


/* HERO GRID */

.hero-grid {
    display: grid;
    grid-template-columns: 203px 610px 203px;
    column-gap: 14px;
    align-items: stretch;
}

.side-gallery {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
    background: #222;
    padding: 8px;
    height: 525px;
}

.side-image {
    overflow: hidden;
    background: #111;
}

.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    background:
        linear-gradient(
            135deg,
            #151515,
            #252525
        );
    text-align: center;
}

.image-placeholder.large {
    min-height: 385px;
}

.hero-centre {
    display: flex;
    flex-direction: column;
}

.hero-image {
    height: 385px;
    overflow: hidden;
    background: #111;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-strip {
    height: 140px;
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    gap: 10px;
    align-items: center;
    padding-top: 12px;
}

.contact-badge {
    width: 120px;
    height: 120px;
    background: #fff;
    padding: 6px;
}

.badge-inner {
    width: 100%;
    height: 100%;
    border: 5px solid #111;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.badge-phone {
    font-size: 7px;
    font-weight: bold;
    margin-bottom: 3px;
}

.badge-logo {
    font-family: Arial Black, Arial, sans-serif;
    font-size: 35px;
    line-height: 1;
    letter-spacing: -4px;
}

.badge-small {
    font-size: 6px;
    margin-top: 3px;
}

.badge-site {
    font-size: 6px;
    margin-top: 8px;
}

.contact-details {
    text-align: center;
    font-size: 14px;
    line-height: 24px;
}

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

.contact-details strong {
    font-size: 17px;
}

.qr-box {
    width: 120px;
    height: 120px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-pattern {
    color: #000;
    font-size: 95px;
    line-height: 1;
}


/* TAGLINE */

.tagline {
    text-align: center;
    font-size: 21px;
    padding-top: 36px;
}


/* REVIEW */

.review-link {
    padding-top: 38px;
    padding-left: 12px;
}

.review-link a {
    text-decoration: underline;
}


/* FOOTER */

.footer-content {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 40px;
    padding-top: 72px;
    padding-bottom: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: 220px 220px;
    gap: 38px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column a {
    line-height: 21px;
}

.footer-right {
    text-align: right;
    align-self: start;
    font-size: 12px;
    line-height: 24px;
}

.footer-right p {
    margin: 0 0 12px;
}


/* RESPONSIVE */

@media (max-width: 1140px) {

    .site-shell {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-grid {
        grid-template-columns: 19% 58% 19%;
        gap: 2%;
    }
}


@media (max-width: 850px) {

    .header-row {
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .phone {
        position: static;
        text-align: center;
        margin-bottom: 5px;
    }

    .logo-wrap {
        position: static;
        transform: none;
    }

    .logo-text {
        font-size: 62px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-centre {
        order: 1;
    }

    .side-gallery {
        height: auto;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 150px);
    }

    .hero-image {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .contact-strip {
        height: auto;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-badge,
    .qr-box {
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-right {
        text-align: left;
    }
}


@media (max-width: 560px) {

    .site-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo-text {
        font-size: 50px;
    }

    .logo-subtitle {
        font-size: 14px;
    }

    .nav-row {
        display: block;
        line-height: 27px;
    }

    .nav-row a,
    .nav-row span {
        display: inline-block;
        margin: 0 5px;
    }

    .side-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 120px);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
