.gc-contact-wrap {
    width: 100%;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 64px) 0;
    box-sizing: border-box;
}

.gc-contact-card {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(199, 164, 117, 0.18), transparent 32%),
        linear-gradient(145deg, #fffdf9 0%, #f7f1e9 100%);
    border: 1px solid rgba(122, 95, 64, 0.18);
    box-shadow: 0 28px 70px rgba(42, 35, 27, 0.13);
    color: #2c2722;
    box-sizing: border-box;
}

.gc-contact-heading {
    margin-bottom: 28px;
}

.gc-contact-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: #9a7449;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gc-contact-heading h2 {
    margin: 0;
    color: #221d19;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.gc-contact-heading p {
    max-width: 560px;
    margin: 12px 0 0;
    color: #725f4d;
    font-size: 16px;
    line-height: 1.65;
}

.gc-contact-form {
    display: grid;
    gap: 18px;
}

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

.gc-field {
    display: grid;
    gap: 8px;
}

.gc-field label,
.gc-consent {
    color: #41362c;
    font-size: 14px;
    font-weight: 700;
}

.gc-field label span,
.gc-consent strong {
    color: #9a7449;
}

.gc-field input,
.gc-field select,
.gc-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(122, 95, 64, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    color: #221d19;
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

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

.gc-field input:focus,
.gc-field select:focus,
.gc-field textarea:focus {
    border-color: rgba(154, 116, 73, 0.72);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(154, 116, 73, 0.12);
}

.gc-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
    font-weight: 600;
    color: #5f4f40;
}

.gc-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #9a7449;
    flex: 0 0 auto;
}

.gc-recaptcha {
    min-height: 78px;
}

.gc-submit-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 54px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    background: #2c2722;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 14px 30px rgba(44, 39, 34, 0.22);
}

.gc-submit-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.gc-submit-btn:hover,
.gc-submit-btn:focus-visible {
    background: #9a7449;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(154, 116, 73, 0.28);
}

.gc-submit-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.gc-contact-alert {
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.gc-contact-alert--success {
    background: #edf7ef;
    color: #245c31;
    border: 1px solid #cce9d2;
}

.gc-contact-alert--error {
    background: #fff2f0;
    color: #9a2b20;
    border: 1px solid #f4ccc7;
}

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

@media (max-width: 720px) {
    .gc-field-grid {
        grid-template-columns: 1fr;
    }

    .gc-submit-btn {
        width: 100%;
    }
}
