.ccf-contact {
    --ccf-text: #262626;
    --ccf-muted: #696969;
    --ccf-line: #dedbd3;
    --ccf-soft: #f7f7f5;
    --ccf-accent: #8b7656;

    max-width: 880px;
    margin: 0 auto;
    color: var(--ccf-text);
    font-size: 17px;
    line-height: 1.7;
}

.ccf-contact * {
    box-sizing: border-box;
}

.ccf-contact-intro {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.ccf-contact-title {
    margin: 0 0 28px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.15;
    font-weight: 400;
    letter-spacing: .06em;
}

.ccf-contact-intro-lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ccf-text);
}

.ccf-contact-intro-text {
    max-width: 760px;
    margin: 34px auto 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--ccf-muted);
}

.ccf-contact-field {
    margin-bottom: 28px;
}

.ccf-contact-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--ccf-text);
}

.ccf-contact-field input,
.ccf-contact-field textarea {
    display: block;
    width: 100%;
    margin: 0;
    padding: 14px 16px;
    font: inherit;
    font-size: 16px;
    line-height: 1.5;
    color: var(--ccf-text);
    background: var(--ccf-soft);
    border: 1px solid transparent;
    border-radius: 0;
    outline: none;
    transition: background-color .2s ease, border-color .2s ease;
}

.ccf-contact-field input {
    min-height: 50px;
}

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

.ccf-contact-field input:focus,
.ccf-contact-field textarea:focus {
    background: #fff;
    border-color: var(--ccf-accent);
}

.ccf-required {
    color: var(--ccf-muted);
    font-size: 12px;
}

.ccf-contact-submit {
    margin-top: 30px;
}

.ccf-contact-submit button {
    display: inline-block;
    width: auto;
    min-width: 120px;
    padding: 15px 25px;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    background: #8f8f8f;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    transition: background-color .2s ease, opacity .2s ease;
}

.ccf-contact-submit button:hover {
    background: var(--ccf-accent);
}

.ccf-contact-submit button:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.ccf-contact-status {
    display: none;
    margin-bottom: 30px;
    padding: 18px 22px;
    background: var(--ccf-soft);
    border-left: 3px solid var(--ccf-accent);
}

.ccf-contact-status.is-visible {
    display: block;
}

.ccf-contact-status.is-error {
    border-left-color: #a64242;
}

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

.ccf-turnstile {
    margin-top: 8px;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .ccf-contact {
        font-size: 16px;
    }

    .ccf-contact-title {
        margin-bottom: 22px;
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: .04em;
    }

    .ccf-contact-intro {
        margin-bottom: 40px;
    }

    .ccf-contact-intro-lead {
        font-size: 13px;
        line-height: 1.55;
        letter-spacing: .11em;
    }

    .ccf-contact-intro-text {
        margin-top: 24px;
        font-size: 16px;
        line-height: 1.65;
    }

    .ccf-contact-field {
        margin-bottom: 22px;
    }

    .ccf-contact-field textarea {
        min-height: 160px;
    }

    .ccf-contact-submit button {
        width: 100%;
        min-width: 0;
        padding: 17px 20px;
    }
}
