:root {
    --primary: #006dab;
    --primary-dark: #005784;

    --dark: #101820;
    --text: #26343d;
    --muted: #72808a;

    --light: #f3f6f8;
    --white: #ffffff;

    --border: #dce4e8;
}


* {
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;
}


body {
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background: var(--white);
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea {
    font-family: inherit;
}


.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==========================================================
   HEADER
========================================================== */

.site-header {
    position: relative;
    z-index: 20;

    background: #101820;

    border-bottom: 1px solid rgba(16, 24, 32, .07);
}


.header-inner {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
}


.logo img {
    display: block;

    width: 150px;
    height: auto;
}


.header-phone {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    color: var(--white);

    font-size: 13px;
    font-weight: 800;

    transition: color .2s ease;
}


.header-phone:hover {
    color: var(--primary);
}


.header-phone-icon {
    width: 39px;
    height: 39px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--primary);
}


.header-phone-icon img {
    display: block;

    width: 18px;

    filter: brightness(0) invert(1);
}


/* ==========================================================
   MAIN
========================================================== */

.maintenance {
    position: relative;

    min-height: calc(100vh - 137px);

    overflow: hidden;

    background: var(--light);
}


/* photo */

.maintenance-photo {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 53%;

    background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2200&q=85");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.maintenance-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(243, 246, 248, 1) 0%,
            rgba(243, 246, 248, .98) 34%,
            rgba(243, 246, 248, .75) 52%,
            rgba(243, 246, 248, .18) 100%
        );
}


/* ==========================================================
   HERO GRID
========================================================== */

.maintenance-inner {
    position: relative;

    z-index: 5;

    min-height: calc(100vh - 137px);

    display: grid;

    grid-template-columns: minmax(0, 1fr) 475px;

    align-items: center;

    gap: 95px;

    padding-top: 70px;
    padding-bottom: 70px;
}


/* ==========================================================
   LEFT CONTENT
========================================================== */

.maintenance-copy {
    position: relative;

    max-width: 670px;
}


.copy-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}


.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 10px 15px;

    background: rgba(0, 109, 171, .09);

    border-radius: 50px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .9px;
}


.eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 4px rgba(0, 109, 171, .09);
}


.section-number {
    margin-right: 12px;

    color: rgba(16, 24, 32, .10);

    font-size: 100px;
    line-height: .7;

    font-weight: 800;

    letter-spacing: -6px;
}


.maintenance-copy h1 {
    position: relative;

    max-width: 700px;

    margin: 0;

    color: var(--dark);

    font-size: clamp(54px, 6vw, 82px);

    line-height: .96;

    letter-spacing: -4.5px;

    font-weight: 800;
}


.maintenance-copy h1 span {
    color: var(--primary);
}


.intro {
    max-width: 520px;

    margin: 30px 0 0;

    color: #4d5b64;

    font-size: 17px;

    line-height: 1.75;

    font-weight: 500;
}


/* ==========================================================
   LEFT BOTTOM
========================================================== */

.copy-footer {
    max-width: 625px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin-top: 40px;
    padding-top: 27px;

    border-top: 1px solid rgba(16, 24, 32, .11);
}


.email-contact {
    display: flex;

    align-items: center;

    gap: 13px;
}


.email-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background: var(--dark);

    border-radius: 50%;
}


.email-icon img {
    display: block;

    width: 17px;

    filter: brightness(0) invert(1);
}


.email-contact span {
    display: block;

    margin-bottom: 3px;

    color: #85929a;

    font-size: 9px;
    font-weight: 700;
}


.email-contact a {
    color: var(--dark);

    font-size: 12px;
    font-weight: 800;

    transition: color .2s ease;
}


.email-contact a:hover {
    color: var(--primary);
}


.coming-soon {
    display: flex;

    align-items: center;

    gap: 11px;
}


.coming-soon::before {
    content: "";

    width: 34px;
    height: 1px;

    background: var(--primary);
}


.coming-soon span,
.coming-soon strong {
    display: block;

    color: var(--dark);

    font-size: 10px;

    line-height: 1.05;

    letter-spacing: 2px;
}


.coming-soon strong {
    font-weight: 800;
}


/* ==========================================================
   FORM AREA
========================================================== */

.contact-area {
    position: relative;
}


.contact-card {
    position: relative;

    z-index: 5;

    padding: 39px;

    background: rgba(255, 255, 255, .98);

    border: 1px solid rgba(16, 24, 32, .08);

    box-shadow:
        0 30px 90px rgba(16, 24, 32, .16),
        0 8px 25px rgba(16, 24, 32, .06);
}


.contact-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: var(--primary);
}


/* ==========================================================
   FORM HEADER
========================================================== */

.card-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}


.card-overline {
    display: block;

    margin-bottom: 7px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;
}


.card-header h2 {
    margin: 0;

    color: var(--dark);

    font-size: 34px;

    line-height: 1;

    letter-spacing: -1.7px;

    font-weight: 800;
}


.card-arrow {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--light);

    color: var(--primary);

    font-size: 17px;
}


.card-text {
    margin: 18px 0 28px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}


/* ==========================================================
   FORM
========================================================== */

.form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


.form-field {
    margin-bottom: 16px;
}


.form-field label {
    display: block;

    margin-bottom: 7px;

    color: var(--dark);

    font-size: 10px;

    font-weight: 800;
}


.form-field label em {
    color: var(--primary);

    font-style: normal;
}


.form-field input,
.form-field textarea {
    width: 100%;

    display: block;

    border: 1px solid var(--border);

    border-radius: 2px;

    outline: none;

    background: #f8fafb;

    color: var(--dark);

    font-size: 12px;

    transition:
        border-color .2s ease,
        background-color .2s ease,
        box-shadow .2s ease;
}


.form-field input {
    height: 46px;

    padding: 0 14px;
}


.form-field textarea {
    min-height: 117px;

    padding: 13px 14px;

    resize: vertical;
}


.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a0abb1;
}


.form-field input:focus,
.form-field textarea:focus {
    background: var(--white);

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(0, 109, 171, .08);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================
   CONSENT
========================================================== */

.consent {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin: 3px 0 21px;

    color: #758189;

    font-size: 9px;

    line-height: 1.6;
}


.consent input {
    width: 13px;
    height: 13px;

    margin: 1px 0 0;

    flex-shrink: 0;

    accent-color: var(--primary);
}


/* ==========================================================
   BUTTON
========================================================== */

.contact-card button {
    width: 100%;
    min-height: 53px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 15px 0 20px;

    border: 0;

    border-radius: 2px;

    background: var(--primary);

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    cursor: pointer;

    transition:
        background-color .2s ease,
        transform .2s ease;
}


.contact-card button:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}


.submit-arrow {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    font-size: 15px;
}


/* ==========================================================
   DECORATIVE BLUE SHAPES
========================================================== */

.blue-shape {
    position: absolute;

    z-index: 2;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--primary);

    color: rgba(255, 255, 255, .78);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.blue-shape::before {
    content: "";

    position: absolute;

    inset: 10px;

    border: 1px solid rgba(255, 255, 255, .22);

    border-radius: 50%;
}


.blue-shape-top {
    width: 105px;
    height: 105px;

    top: -53px;
    right: -43px;
}


.blue-shape-bottom {
    width: 88px;
    height: 88px;

    bottom: -42px;
    left: -43px;

    background: var(--dark);
}


/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    position: relative;
    z-index: 10;

    background: var(--dark);

    color: rgba(255, 255, 255, .5);

    font-size: 9px;
}


.footer-inner {
    min-height: 49px;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


.footer-inner a {
    transition: color .2s ease;
}


.footer-inner a:hover {
    color: var(--white);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1050px) {

    .maintenance-photo {
        width: 45%;
    }


    .maintenance-inner {
        grid-template-columns: minmax(0, 1fr) 430px;

        gap: 50px;
    }


    .maintenance-copy h1 {
        font-size: clamp(50px, 6vw, 68px);
    }


    .section-number {
        font-size: 80px;
    }

}


/* ==========================================================
   MOBILE / TABLET
========================================================== */

@media (max-width: 850px) {

    .maintenance {
        min-height: auto;
    }


    .maintenance-photo {
        width: 100%;

        opacity: .22;
    }


    .maintenance-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(243, 246, 248, .94) 0%,
                rgba(243, 246, 248, .95) 55%,
                rgba(243, 246, 248, .98) 100%
            );
    }


    .maintenance-inner {
        min-height: auto;

        grid-template-columns: 1fr;

        gap: 70px;

        max-width: 720px;

        padding-top: 65px;
        padding-bottom: 75px;
    }


    .maintenance-copy {
        max-width: none;
    }


    .contact-area {
        width: 100%;

        max-width: 560px;
    }


    .section-number {
        font-size: 90px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 32px);
    }


    .header-inner {
        min-height: 72px;
    }


    .logo img {
        width: 130px;
    }


    .header-phone {
        font-size: 11px;
    }


    .header-phone-icon {
        width: 34px;
        height: 34px;
    }


    .header-phone-icon img {
        width: 16px;
    }


    .maintenance-inner {
        padding-top: 50px;
        padding-bottom: 60px;

        gap: 60px;
    }


    .copy-top {
        margin-bottom: 22px;
    }


    .section-number {
        margin-right: 0;

        font-size: 67px;

        letter-spacing: -4px;
    }


    .maintenance-copy h1 {
        font-size: 46px;

        letter-spacing: -2.8px;
    }


    .intro {
        margin-top: 23px;

        font-size: 15px;
    }


    .copy-footer {
        align-items: flex-start;

        flex-direction: column;

        margin-top: 31px;

        padding-top: 22px;

        gap: 22px;
    }


    .contact-card {
        padding: 29px 22px;
    }


    .card-header h2 {
        font-size: 29px;
    }


    .form-grid {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .blue-shape-top {
        width: 78px;
        height: 78px;

        top: -28px;
        right: -11px;
    }


    .blue-shape-bottom {
        width: 72px;
        height: 72px;

        bottom: -31px;
        left: -14px;
    }


    .footer-inner {
        min-height: auto;

        padding: 15px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }

}