:root {
    --blue: #087bc1;
    --bright-blue: #18a4ed;
    --deep-blue: #045083;
    --ink: #07131d;
    --black: #02070b;
    --white: #ffffff;
    --paper: #f2f3f1;
    --silver: #d9dfe3;
    --gray: #647079;
    --line: #cbd1d4;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: var(--blue);
    color: #fff;
}


/* =========================
   HEADER
========================= */

.site-header {
    min-height: 82px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #fff;
    border-bottom: 1px solid #d6dbde;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 900;
    transform: skew(-7deg);
    border-bottom: 4px solid var(--ink);
}

.brand-text strong,
.brand-text span {
    display: block;
    line-height: .9;
    font-weight: 900;
    letter-spacing: .7px;
}

.brand-text strong {
    font-size: 19px;
}

.brand-text span {
    color: var(--blue);
    font-size: 16px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 700;
}

nav a {
    text-decoration: none;
}

nav a:hover {
    color: var(--blue);
}

.header-phone {
    background: var(--ink);
    color: #fff;
    padding: 12px 17px;
}


/* =========================
   GENERAL
========================= */

.eyebrow {
    margin: 0 0 20px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.8px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 21px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    border: 2px solid transparent;
    transition:
        transform .18s ease,
        background-color .18s ease,
        color .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-blue {
    background: var(--bright-blue);
    color: var(--ink);
}

.button-blue:hover {
    background: #fff;
}

.button-outline {
    border-color: #73808a;
    color: #fff;
}

.button-outline:hover {
    background: #fff;
    color: var(--ink);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 54% 46%;
    background: var(--ink);
    color: #fff;
}

.hero-copy {
    padding: 110px 5vw 100px 8vw;
    position: relative;
    z-index: 3;
}

.hero h1 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(78px, 10vw, 148px);
    line-height: .78;
    letter-spacing: -4px;
    font-weight: 900;
}

.hero h1 span {
    color: var(--bright-blue);
}

.hero-description {
    max-width: 555px;
    margin: 42px 0 31px;
    color: #c6d0d6;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image-wrap {
    position: relative;
    margin: 55px 6vw 55px 0;
    z-index: 2;
}

.image-frame {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-left: 10px solid var(--bright-blue);
    transform: skewY(-2deg);
    background: #222;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: skewY(2deg) scale(1.04);
    filter: saturate(.92);
}

.image-label {
    position: absolute;
    left: 23px;
    bottom: 22px;
    background: #fff;
    color: var(--ink);
    padding: 12px 17px;
    line-height: 1;
    transform: skewY(2deg);
}

.image-label span,
.image-label strong {
    display: block;
}

.image-label span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--blue);
}

.image-label strong {
    margin-top: 4px;
    font-size: 18px;
}

.image-blue-bar {
    position: absolute;
    width: 75%;
    height: 12px;
    right: -8%;
    bottom: -10px;
    background: var(--bright-blue);
    transform: skewX(-42deg);
}

.hero-background-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    right: 29%;
    top: -260px;
    border: 45px solid rgba(255,255,255,.035);
    transform: rotate(45deg);
}

.hero-roof-mark {
    position: absolute;
    width: 260px;
    height: 150px;
    left: 4%;
    bottom: -70px;
    opacity: .09;
    z-index: 1;
}

.roof-left,
.roof-right {
    position: absolute;
    top: 20px;
    height: 12px;
    background: #fff;
}

.roof-left {
    width: 160px;
    left: 0;
    transform: rotate(-27deg);
    transform-origin: right center;
}

.roof-right {
    width: 160px;
    right: 0;
    transform: rotate(27deg);
    transform-origin: left center;
}


/* =========================
   INTRO
========================= */

.intro-section {
    padding: 105px 9vw;
    display: grid;
    grid-template-columns: 80px 1.2fr 1fr;
    gap: 35px;
    align-items: start;
    border-bottom: 1px solid var(--line);
}

.intro-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--blue);
}

.intro-heading h2 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(58px, 7vw, 105px);
    line-height: .84;
    letter-spacing: -2px;
}

.intro-heading h2 span {
    color: var(--blue);
}

.intro-copy {
    max-width: 470px;
    margin-top: 5px;
    color: #566168;
}

.intro-copy p {
    margin: 0 0 20px;
}


/* =========================
   WORK
========================= */

.work-section {
    padding: 110px 9vw;
}

.work-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
}

.work-top h2 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(80px, 10vw, 145px);
    line-height: .75;
    letter-spacing: -3px;
}

.work-intro {
    max-width: 330px;
    color: #657078;
    margin: 0 0 5px;
}

.work-list {
    border-top: 2px solid var(--ink);
}

.work-row {
    display: grid;
    grid-template-columns: 70px 1fr 50px;
    gap: 25px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.work-number {
    color: var(--blue);
    font-size: 18px;
    font-weight: 900;
}

.work-content h3 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: 40px;
    letter-spacing: -.5px;
}

.work-content p {
    margin: 7px 0 0;
    max-width: 680px;
    color: #647079;
}

.work-arrow {
    text-align: right;
    font-size: 30px;
    transition: transform .18s ease;
}

.work-row:hover .work-arrow {
    transform: translate(4px, -4px);
}


/* =========================
   STATEMENT
========================= */

.statement-band {
    min-height: 430px;
    position: relative;
    overflow: hidden;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 80px 14vw;
}

.statement-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.statement-small {
    margin: 0 0 22px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2.5px;
}

.statement-band blockquote {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(43px, 5.5vw, 82px);
    line-height: .9;
    letter-spacing: -.5px;
    text-transform: uppercase;
}

.statement-name {
    margin: 27px 0 0;
    font-size: 13px;
    font-weight: 800;
}

.statement-pattern {
    position: absolute;
    width: 430px;
    height: 430px;
    right: -130px;
    top: -90px;
    border: 34px solid rgba(255,255,255,.14);
    transform: rotate(45deg);
}

.statement-pattern::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    left: 70px;
    top: 70px;
    border: 16px solid rgba(255,255,255,.12);
}


/* =========================
   REVIEWS
========================= */

.reviews-section {
    padding: 115px 8vw;
    background: #fff;
    display: grid;
    grid-template-columns: 33% 67%;
    gap: 50px;
}

.reviews-heading h2 {
    margin: 0 0 35px;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(52px, 5.8vw, 88px);
    line-height: .85;
    letter-spacing: -1px;
}

.reviews-heading h2 span {
    color: var(--blue);
}

.reviews-link {
    display: inline-flex;
    gap: 10px;
    color: var(--blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 6px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    align-items: start;
}

.review {
    margin: 0;
    padding: 28px 24px;
    min-height: 305px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #cbd1d4;
    background: #f7f8f7;
}

.review-offset {
    margin-top: 32px;
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.review-top {
    height: 35px;
}

.quote-symbol {
    color: var(--blue);
    font-family: Georgia, serif;
    font-size: 60px;
    line-height: .5;
}

.review blockquote {
    margin: 20px 0;
    font-size: 14px;
}

.review figcaption {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 115px 9vw;
    background: var(--ink);
    color: #fff;
}

.contact-heading {
    position: relative;
    z-index: 2;
}

.contact-heading h2 {
    margin: 0;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(90px, 11vw, 165px);
    line-height: .76;
    letter-spacing: -4px;
}

.contact-heading h2 span {
    color: var(--bright-blue);
}

.contact-info {
    padding-top: 28px;
    position: relative;
    z-index: 2;
}

.contact-phone {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-size: clamp(42px, 5vw, 75px);
    line-height: .9;
    border-bottom: 4px solid var(--bright-blue);
}

.contact-address {
    margin: 45px 0 30px;
}

.contact-address span {
    color: var(--bright-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
}

.contact-address p {
    margin: 9px 0 0;
    color: #c4cdd2;
    font-size: 17px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button-white {
    background: #fff;
    color: var(--ink);
}

.button-white:hover {
    background: var(--bright-blue);
}

.contact-angle {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -300px;
    bottom: -420px;
    border: 60px solid rgba(8,123,193,.22);
    transform: rotate(45deg);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 28px 8vw;
    background: #02070b;
    color: #aeb8be;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    font-size: 12px;
}

.footer-logo strong,
.footer-logo span {
    display: block;
    line-height: .9;
    font-weight: 900;
}

.footer-logo strong {
    color: #fff;
    font-size: 19px;
}

.footer-logo span {
    color: var(--blue);
    font-size: 15px;
}

.site-footer p {
    margin: 0;
}

.site-footer p span {
    margin: 0 7px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy {
        padding: 85px 7vw 65px;
    }

    .hero-image-wrap {
        height: 450px;
        margin: 0 7vw 65px;
    }

    .intro-section {
        grid-template-columns: 55px 1fr;
        padding: 80px 7vw;
    }

    .intro-copy {
        grid-column: 2;
    }

    .work-section {
        padding: 85px 7vw;
    }

    .reviews-section {
        grid-template-columns: 1fr;
        padding: 85px 7vw;
    }

    .contact-section {
        grid-template-columns: 1fr;
        padding: 85px 7vw;
        gap: 25px;
    }

    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-offset {
        margin-top: 0;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .site-header {
        min-height: 72px;
        padding: 12px 5vw;
    }

    nav {
        gap: 0;
    }

    nav a:not(.header-phone) {
        display: none;
    }

    .header-phone {
        padding: 10px 11px;
        font-size: 11px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .brand-text span {
        font-size: 14px;
    }

    .brand-icon {
        width: 37px;
        height: 37px;
    }

    .hero-copy {
        padding: 65px 7vw 55px;
    }

    .hero h1 {
        font-size: 75px;
        letter-spacing: -2px;
    }

    .hero-description {
        margin-top: 32px;
        font-size: 15px;
    }

    .hero-image-wrap {
        height: 360px;
        margin: 0 5vw 45px;
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 70px 7vw;
    }

    .intro-copy {
        grid-column: auto;
    }

    .intro-heading h2 {
        font-size: 62px;
    }

    .work-section {
        padding: 70px 7vw;
    }

    .work-top {
        display: block;
    }

    .work-top h2 {
        font-size: 85px;
    }

    .work-intro {
        margin-top: 30px;
    }

    .work-row {
        grid-template-columns: 38px 1fr 20px;
        gap: 12px;
        padding: 25px 0;
    }

    .work-content h3 {
        font-size: 31px;
    }

    .work-content p {
        font-size: 13px;
    }

    .statement-band {
        padding: 75px 8vw;
        min-height: 390px;
    }

    .statement-band blockquote {
        font-size: 47px;
    }

    .reviews-section {
        padding: 75px 7vw;
    }

    .reviews-heading h2 {
        font-size: 57px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review {
        min-height: 260px;
    }

    .contact-section {
        padding: 75px 7vw;
    }

    .contact-heading h2 {
        font-size: 90px;
    }

    .contact-phone {
        font-size: 43px;
    }

    .site-footer {
        display: block;
        padding: 25px 7vw;
    }

    .site-footer p {
        margin-top: 12px;
    }
}


/* =========================
   ACCESSIBILITY
========================= */

a:focus-visible {
    outline: 3px solid var(--bright-blue);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
