/* EVICK contact page — page-specific styles only. */
.contact-page {
    --contact-surface: #101010;
    --contact-surface-soft: #171717;
    --contact-border: rgba(255, 255, 255, .1);
    background: #080808;
    color: #fff;
}

.contact-page .contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.1rem;
    color: var(--red, #dc0000);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.contact-page .contact-kicker::before {
    width: 42px;
    height: 2px;
    background: currentColor;
    content: "";
}

.contact-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 4px solid var(--red, #dc0000);
}

.contact-hero__media,
.contact-hero__media::after {
    position: absolute;
    inset: 0;
}

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

.contact-hero__media::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .64) 55%, rgba(0, 0, 0, .28) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, .8), transparent 60%);
    content: "";
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 180px;
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-hero__copy {
    max-width: 850px;
}

.contact-hero h1 {
    margin: 0 0 1.5rem;
    font-size: clamp(3.1rem, 7vw, 6.6rem);
    line-height: .94;
    letter-spacing: -.055em;
}

.contact-hero h1 span,
.contact-intro h2 span,
.contact-coverage h2 span {
    color: var(--red, #dc0000);
}

.contact-hero__copy > p {
    max-width: 650px;
    margin-bottom: 2.2rem;
    color: rgba(255, 255, 255, .76);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.contact-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem 1.8rem;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    color: #fff;
    font-weight: 800;
}

.contact-phone > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: var(--red, #dc0000);
}

.contact-phone span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.contact-phone small {
    margin-bottom: .25rem;
    color: rgba(255, 255, 255, .5);
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-options {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    background: #050505;
}

.contact-options__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 1px solid var(--contact-border);
}

.contact-option {
    min-height: 120px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem clamp(1.2rem, 3vw, 2rem);
    border-left: 1px solid var(--contact-border);
    border-bottom: 1px solid var(--contact-border);
    background: rgba(255, 255, 255, .02);
}

a.contact-option:hover {
    background: rgba(255, 255, 255, .055);
}

.contact-option > i:first-child {
    color: var(--red, #dc0000);
    font-size: 1.35rem;
}

.contact-option > i:last-child {
    color: rgba(255, 255, 255, .35);
}

.contact-option span {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-option small {
    margin-bottom: .28rem;
    color: rgba(255, 255, 255, .45);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.contact-option strong {
    overflow-wrap: anywhere;
    font-size: .98rem;
}

.contact-main {
    position: relative;
    background:
        radial-gradient(circle at 5% 10%, rgba(220, 0, 0, .1), transparent 30%),
        #090909;
}

.contact-main__grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 7rem);
}

.contact-intro {
    position: sticky;
    top: 130px;
}

.contact-intro h2,
.contact-coverage h2 {
    margin: 0 0 1.4rem;
    font-size: clamp(2.5rem, 4.5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.045em;
}

.contact-intro__lead {
    color: rgba(255, 255, 255, .9);
    font-size: 1.16rem;
}

.contact-emergency {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.4rem;
    border-left: 3px solid var(--red, #dc0000);
    background: rgba(220, 0, 0, .1);
}

.contact-emergency > i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--red, #dc0000);
}

.contact-emergency strong {
    display: block;
    margin-bottom: .3rem;
}

.contact-emergency p {
    margin: 0 0 .5rem;
    font-size: .9rem;
}

.contact-emergency a {
    color: #fff;
    font-weight: 800;
}

.contact-benefits {
    display: grid;
    gap: .8rem;
}

.contact-benefits li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    color: rgba(255, 255, 255, .72);
}

.contact-benefits i {
    margin-top: .28rem;
    color: var(--red, #dc0000);
}

.contact-form-card {
    overflow: hidden;
    border: 1px solid var(--contact-border);
    border-radius: 18px;
    background: var(--contact-surface);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}

.contact-form-card__heading {
    padding: clamp(1.6rem, 4vw, 2.5rem);
    border-bottom: 1px solid var(--contact-border);
    background: linear-gradient(120deg, rgba(220, 0, 0, .15), transparent 65%);
}

.contact-form-card__heading > span {
    color: var(--red, #dc0000);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.contact-form-card__heading h2 {
    margin: .45rem 0 .4rem;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-form-card__heading p,
.form-responses p {
    margin: 0;
    font-size: .9rem;
}

.contact-form {
    display: grid;
    gap: 1.25rem;
    padding: clamp(1.6rem, 4vw, 2.5rem);
}

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

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.contact-field {
    min-width: 0;
}

.contact-field label {
    display: block;
    margin-bottom: .55rem;
    color: rgba(255, 255, 255, .8);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-field label span {
    color: var(--red, #dc0000);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-height: 54px;
    padding: .9rem 1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    outline: none;
    background: #090909;
    color: #fff;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}

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

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--red, #dc0000);
    box-shadow: 0 0 0 3px rgba(220, 0, 0, .13);
}

.contact-form.was-validated :invalid {
    border-color: #ff5a5a;
}

.contact-upload {
    position: relative;
    min-height: 112px;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 1px dashed rgba(255, 255, 255, .2);
    border-radius: 10px;
    background: rgba(255, 255, 255, .025);
}

.contact-upload > i {
    color: var(--red, #dc0000);
    font-size: 1.65rem;
}

.contact-upload strong,
.contact-upload small {
    display: block;
}

.contact-upload small {
    margin-top: .2rem;
    color: rgba(255, 255, 255, .48);
}

.contact-upload input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.file-summary {
    margin-top: .55rem;
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    overflow-wrap: anywhere;
}

.file-summary.is-error {
    color: #ff7373;
}

.contact-captcha {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1rem;
}

.captcha-image {
    height: 54px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    background: #fff;
}

.captcha-image img {
    width: 150px;
    height: 100%;
    object-fit: contain;
}

.captcha-image button {
    width: 48px;
    border: 0;
    border-left: 1px solid #ddd;
    cursor: pointer;
    background: #f1f1f1;
    color: #111;
}

.contact-privacy {
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: .78rem;
    line-height: 1.55;
}

.contact-submit {
    width: 100%;
    min-height: 58px;
    border-radius: 9px;
}

.form-responses {
    margin: 1.5rem 2.5rem 0;
    padding: 1rem 1.2rem;
    border-left: 3px solid var(--red, #dc0000);
    background: rgba(220, 0, 0, .1);
}

.contact-coverage {
    padding: clamp(4rem, 8vw, 7rem) 0;
    border-top: 1px solid var(--contact-border);
    background:
        linear-gradient(110deg, rgba(0, 0, 0, .92), rgba(90, 0, 0, .82)),
        url("../img/van-nottingham.png") center / cover no-repeat;
}

.contact-coverage__inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr auto;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}

.contact-coverage h2,
.contact-coverage p {
    margin-bottom: 0;
}

.contact-coverage p {
    color: rgba(255, 255, 255, .76);
}

@media (max-width: 1050px) {
    .contact-options__grid {
        grid-template-columns: 1fr;
    }

    .contact-option {
        min-height: 90px;
    }

    .contact-main__grid,
    .contact-coverage__inner {
        grid-template-columns: 1fr;
    }

    .contact-intro {
        position: static;
    }

    .contact-coverage__inner .btn {
        justify-self: start;
    }
}

@media (max-width: 700px) {
    .contact-hero {
        min-height: 650px;
    }

    .contact-hero__inner {
        padding-top: 145px;
        padding-bottom: 3.5rem;
    }

    .contact-hero h1 {
        font-size: clamp(2.55rem, 13vw, 4.2rem);
    }

    .contact-hero__actions,
    .contact-hero__actions .btn,
    .contact-phone {
        width: 100%;
    }

    .contact-phone {
        justify-content: center;
        min-height: 56px;
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 10px;
    }

    .contact-phone > i {
        width: auto;
        height: auto;
        border: 0;
    }

    .contact-form__row,
    .contact-captcha {
        grid-template-columns: 1fr;
    }

    .captcha-image {
        width: 100%;
    }

    .captcha-image img {
        flex: 1;
    }

    .contact-option {
        grid-template-columns: 34px minmax(0, 1fr) auto;
        padding-inline: 1rem;
    }

    .form-responses {
        margin-inline: 1.6rem;
    }

    .contact-coverage__inner .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-page * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
