.contact-page {
    background: #fff;
}

.contact-hero {
    position: relative;
    display: grid;
    min-height: 390px;
    align-items: end;
    overflow: hidden;
    padding: 170px 0 72px;
    color: #fff;
    background-color: #171717;
    background-image: linear-gradient(90deg, rgba(9, 9, 9, .84), rgba(9, 9, 9, .50) 58%, rgba(9, 9, 9, .62)), var(--contact-hero-bg);
    background-position: center;
    background-size: cover;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: rgba(255, 255, 255, .18);
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 21px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 700;
}

.contact-breadcrumb a {
    transition: color .2s ease;
}

.contact-breadcrumb a:hover,
.contact-breadcrumb a:focus-visible {
    color: var(--brand);
}

.contact-breadcrumb svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-hero h1 {
    max-width: 840px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(54px, 7vw, 86px);
    line-height: .92;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .22);
}

.contact-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
}

.contact-section {
    padding: 98px 0 118px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    gap: clamp(60px, 7vw, 104px);
    align-items: start;
}

.contact-info {
    padding-top: 10px;
}

.contact-info h2 {
    max-width: 560px;
    margin: 0 0 20px;
    font-size: clamp(42px, 4vw, 62px);
}

.contact-info__intro {
    max-width: 560px;
    margin: 0 0 42px;
    color: var(--muted);
}

.contact-list {
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
}

.contact-list__item {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 92px;
    padding: 18px 2px;
    border-bottom: 1px solid var(--line);
    transition: padding-left .25s var(--ease), color .2s ease;
}

.contact-list__item:not(.contact-list__item--static):hover,
.contact-list__item:not(.contact-list__item--static):focus-visible {
    padding-left: 8px;
}

.contact-list__item:not(.contact-list__item--static):hover .contact-list__icon,
.contact-list__item:not(.contact-list__item--static):focus-visible .contact-list__icon {
    color: var(--ink);
    border-color: var(--brand);
    background: var(--brand);
}

.contact-list__icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    transition: border-color .25s ease, background-color .25s ease, transform .25s var(--ease);
}

.contact-list__item:hover .contact-list__icon {
    transform: translateY(-2px);
}

.contact-list__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-list__item > span:nth-child(2) {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.contact-list__item small {
    color: #777770;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-list__item strong {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.contact-list__arrow {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #7d7d76;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: color .2s ease, transform .25s var(--ease);
}

.contact-list__item:hover .contact-list__arrow,
.contact-list__item:focus-visible .contact-list__arrow {
    color: var(--ink);
    transform: translateX(4px);
}


.contact-socials {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
}

.contact-socials > span {
    color: #777770;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-socials__links {
    display: flex;
    gap: 8px;
}

.contact-socials__links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 50%;
    color: var(--ink);
    background: #fff;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .25s var(--ease);
}

.contact-socials__links a:hover,
.contact-socials__links a:focus-visible {
    border-color: var(--brand);
    background: var(--brand);
    transform: translateY(-3px);
}

.contact-socials__links svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-form-panel {
    padding: clamp(32px, 4vw, 52px);
    border: 1px solid rgba(17, 17, 17, .10);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 17, 17, .085);
}

.contact-form-panel__head {
    margin-bottom: 30px;
}

.contact-form-panel__eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #6d6d65;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.contact-form-panel__head h2 {
    margin: 0 0 10px;
    font-size: clamp(34px, 3vw, 48px);
}

.contact-form-panel__head p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
}

.contact-field {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field > span:first-child {
    padding-left: 2px;
    color: #64645e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(17, 17, 17, .13);
    border-radius: 13px;
    outline: 0;
    color: var(--ink);
    background: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-field input,
.contact-field select {
    height: 54px;
    padding: 0 15px;
}

.contact-field textarea {
    min-height: 148px;
    padding: 15px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #96968f;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(17, 17, 17, .64);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .055);
}

.contact-field__select {
    position: relative;
    display: block;
}

.contact-field__select select {
    appearance: none;
    padding-right: 48px;
    cursor: pointer;
}

.contact-field__select > svg {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #676760;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
    transform: translateY(-50%);
}

.contact-consent {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    margin: 21px 0 26px;
    color: #6b6b64;
    font-size: 12px;
    line-height: 1.55;
    cursor: pointer;
}

.contact-consent input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.contact-consent__box {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, .22);
    border-radius: 7px;
    color: var(--ink);
    background: #fff;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.contact-consent__box svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .18s ease, transform .2s var(--ease);
}

.contact-consent input:checked + .contact-consent__box {
    border-color: var(--brand);
    background: var(--brand);
}

.contact-consent input:checked + .contact-consent__box svg {
    opacity: 1;
    transform: scale(1);
}

.contact-consent input:focus-visible + .contact-consent__box {
    box-shadow: 0 0 0 3px rgba(226, 210, 30, .28);
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.contact-form__submit {
    flex: 0 0 auto;
}

.contact-form__submit:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

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

@media (max-width: 1080px) {
    .contact-layout {
        grid-template-columns: minmax(0, .86fr) minmax(440px, 1.14fr);
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .contact-info {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
        gap: 0 50px;
        align-items: start;
    }

    .contact-info > .section-kicker,
    .contact-info > h2,
    .contact-info > .contact-info__intro {
        grid-column: 1;
    }

    .contact-list {
        grid-column: 2;
        grid-row: 1 / span 5;
        margin: 0;
    }

    .contact-socials {
        grid-column: 1;
    }
}

@media (max-width: 700px) {
    .contact-hero {
        min-height: 350px;
        padding: 154px 0 56px;
    }

    .contact-hero h1 {
        font-size: clamp(46px, 15vw, 66px);
    }

    .contact-section {
        padding: 72px 0 86px;
    }

    .contact-info {
        display: block;
    }

    .contact-info h2 {
        font-size: 42px;
    }

    .contact-list {
        margin-bottom: 28px;
    }

    .contact-form-panel {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-field--full {
        grid-column: auto;
    }

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__submit {
        width: 100%;
    }
}

@media (max-width: 430px) {
    .contact-breadcrumb {
        margin-bottom: 16px;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .contact-list__item {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        gap: 12px;
        min-height: 84px;
    }

    .contact-list__icon {
        width: 42px;
        height: 42px;
    }

    .contact-list__item strong {
        font-size: 15px;
    }

    .contact-socials {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
