@font-face {
    font-family: "Estedad";
    src: url("/fonts/ttf/Estedad-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Estedad";
    src: url("/fonts/ttf/Estedad-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Estedad";
    src: url("/fonts/ttf/Estedad-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Estedad";
    src: url("/fonts/ttf/Estedad-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #ededed;
    --text: #191919;
    --line: rgba(25, 25, 25, 0.28);
    --muted: rgba(25, 25, 25, 0.7);
    --success: #1f7a42;
    --error: #b42318;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Estedad", Arial, Helvetica, sans-serif;
}

body.is-submitting {
    cursor: progress;
}

.page {
    min-height: 100vh;
    display: flex;
}

.hero {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 1fr);
    gap: 96px;
    padding: 48px 56px;
    align-items: center;
}

.hero__left,
.hero__right {
    min-width: 0;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 52px;
}

.title {
    margin: 0;
    font-size: clamp(54px, 7vw, 84px);
    line-height: 0.96;
    font-weight: 400;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    max-width: 640px;
}

.contacts {
    margin-top: 54px;
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    position: relative;
    display: inline-block;
    width: fit-content;
    color: var(--text);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.25;
}

.contact-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.contact-link:hover::after,
.contact-link:focus-visible::after {
    transform: scaleX(1);
}

.contact-form {
    width: 100%;
    max-width: 720px;
    padding-top: 34px;
}

.field {
    display: block;
    margin-bottom: 34px;
}

.field--message {
    margin-bottom: 40px;
}

.field__label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.2;
    color: var(--text);
    text-transform: uppercase;
}

.field__input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 18px;
    line-height: 1.35;
    padding: 0 0 12px;
    border-radius: 0;
    outline: none;
    transition: border-color 0.2s ease;
}

.field__input:focus {
    border-bottom-color: var(--text);
}

.field__textarea {
    resize: vertical;
    min-height: 220px;
    max-height: 520px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.form-status {
    min-height: 24px;
    font-size: 15px;
    line-height: 1.4;
    color: var(--muted);
}

.form-status.is-success {
    color: var(--success);
}

.form-status.is-error {
    color: var(--error);
}

.submit-button {
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    padding: 0;
    cursor: pointer;
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.honeypot {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}

.title {
    margin: 0;
    font-size: clamp(54px, 7vw, 84px);
    line-height: 0.96;
    font-weight: 400;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    max-width: 640px;
}

.field__label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.2;
    color: var(--text);
    text-transform: uppercase;
    font-weight: 500;
}

.contact-link {
    position: relative;
    display: inline-block;
    width: fit-content;
    color: var(--text);
    text-decoration: none;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
}

.submit-button {
    border: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    padding: 0;
    cursor: pointer;
}
@media (min-width:1024px) {
    .hero__left {
        margin-top: -145px;
    }
}
@media (max-width: 1080px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 36px 28px 44px;
    }

    .contact-form {
        max-width: none;
        padding-top: 0;
    }

    .title {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .eyebrow {
        margin-bottom: 28px;
        font-size: 12px;
    }

    .hero {
        gap: 34px;
        padding: 24px 20px 32px;
    }

    .title {
        font-size: clamp(42px, 15vw, 64px);
        line-height: 0.98;
    }

    .contacts {
        margin-top: 34px;
    }

    .contact-link {
        font-size: 17px;
    }

    .field {
        margin-bottom: 28px;
    }

    .field__label {
        font-size: 15px;
    }

    .field__input {
        font-size: 17px;
        padding-bottom: 10px;
    }

    .field__textarea {
        min-height: 160px;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .submit-button {
        font-size: 22px;
    }
}
