.contact-hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #06080a
}

.contact-hero__media,
.contact-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden
}

.contact-hero__media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.contact-hero__overlay {
    background: linear-gradient(90deg, rgba(3, 6, 8, .98), rgba(3, 6, 8, .82) 50%, rgba(3, 6, 8, .2))
}

.contact-hero__content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    padding: 7rem 0
}

.contact-hero h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .96;
    letter-spacing: -.055em
}

.contact-hero p:last-child {
    max-width: 760px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.15rem;
    line-height: 1.7
}

.contact-section {
    padding: clamp(4.5rem, 8vw, 8rem) 0;
    background: #f3f5f6
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start
}

.contact-details {
    position: sticky;
    top: 2rem
}

.contact-details h2,
.contact-form-card h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -.045em
}

.contact-details>p {
    color: #66717b;
    line-height: 1.75
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
    border-top: 1px solid #dde2e6;
    border-left: 1px solid #dde2e6
}

.contact-cards>* {
    padding: 1.35rem;
    min-height: 125px;
    border-right: 1px solid #dde2e6;
    border-bottom: 1px solid #dde2e6;
    background: #fff;
    text-decoration: none
}

.contact-cards span,
.contact-cards strong {
    display: block
}

.contact-cards span {
    margin-bottom: .45rem;
    color: #d71920;
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase
}

.contact-cards strong {
    color: #12171c;
    overflow-wrap: anywhere
}

.contact-form-card {
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid #dde2e6;
    background: #fff;
    box-shadow: 0 28px 70px rgba(8, 20, 30, .13)
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
}

.field {
    margin-bottom: 1.15rem
}

.field label {
    display: block;
    margin-bottom: .45rem;
    font-weight: 800
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: .88rem .95rem;
    border: 1px solid #cbd3d9;
    background: #fff;
    font: inherit
}

.field textarea {
    min-height: 180px;
    resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #d71920;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(215, 25, 32, .12)
}

.field small {
    display: block;
    margin-top: .35rem;
    color: #66717b;
    text-align: right
}

.field--check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .7rem
}

.field--check input {
    width: 19px;
    height: 19px;
    min-height: 19px;
    accent-color: #d71920
}

.field--check label {
    color: #66717b;
    font-weight: 500;
    line-height: 1.55
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important
}

.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 4px solid
}

.form-message--success {
    border-color: #1f7a43;
    background: #edf8f1;
    color: #175f35
}

.form-message--error {
    border-color: #ba2d2d;
    background: #fff0f1;
    color: #8e161c
}

.submit-button {
    min-width: 180px;
    border: 0;
    cursor: pointer
}

@media(max-width:992px) {
    .contact-layout {
        grid-template-columns: 1fr
    }

    .contact-details {
        position: static
    }
}

@media(max-width:700px) {
    .contact-hero__overlay {
        background: linear-gradient(rgba(3, 6, 8, .68), rgba(3, 6, 8, .97))
    }

    .form-grid,
    .contact-cards {
        grid-template-columns: 1fr
    }

    .contact-form-card {
        padding: 1.25rem
    }

    .submit-button {
        width: 100%
    }
}