
.hh-contact {
    width: calc(100% - 32px);
    margin: 24px auto 70px;
    box-sizing: border-box;
    background: #fffcf7;
}

.hh-contact__hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    overflow: hidden;
    border: 1px solid #eee8de;
    border-radius: 12px;
    background: #fffcf7;
}

.hh-contact__hero-copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: clamp(44px, 7vw, 92px);
}

.hh-contact__eyebrow {
    margin-bottom: 15px;
    color: #6f7f55;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hh-contact h1 {
    max-width: 650px;
    margin: 0 0 24px;
    color: #292922;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.5vw, 78px);
    font-weight: 400;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.hh-contact h2 {
    margin: 0;
    color: #292922;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.6vw, 50px);
    font-weight: 400;
    line-height: 1.15;
}

.hh-contact__hero-copy p {
    max-width: 620px;
    margin: 0;
    color: #666158;
    font-size: clamp(18px, 1.45vw, 22px);
    line-height: 1.65;
}

.hh-contact__image {
    position: relative;
    overflow: hidden;
    background: #eee8de;
}

.hh-contact__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hh-contact__main {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 5vw, 70px);
    margin-top: 70px;
}

.hh-contact__details {
    padding: 12px 0;
}

.hh-contact__detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.hh-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 21px;
    border: 1px solid #ebe4d9;
    border-radius: 9px;
    background: #f4efe6;
    color: #292922;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

a.hh-contact__detail:hover {
    color: #292922;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(45, 42, 35, .07);
}

.hh-contact__detail--wide {
    grid-column: 1 / -1;
}

.hh-contact__detail-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    color: #6f7f55;
    font-size: 20px;
}

.hh-contact__detail strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.hh-contact__detail-value {
    display: block;
    color: #666158;
    font-size: 14px;
    line-height: 1.55;
}

.hh-contact__socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.hh-contact__socials a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dcd5c8;
    border-radius: 50%;
    color: #6f7f55;
    text-decoration: none;
}

.hh-contact__form-card {
    padding: clamp(28px, 4vw, 50px);
    border-radius: 12px;
    background: #f4efe6;
}

.hh-contact__form-card > p {
    margin: 16px 0 28px;
    color: #666158;
    font-size: 17px;
    line-height: 1.6;
}

.hh-contact__form label {
    display: block;
    margin-bottom: 8px;
    color: #3f3f38;
    font-size: 14px;
    font-weight: 600;
}

.hh-contact__form input[type="text"],
.hh-contact__form input[type="email"],
.hh-contact__form input[type="tel"],
.hh-contact__form input[type="url"],
.hh-contact__form select,
.hh-contact__form textarea {
    width: 100%;
    min-height: 48px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid #ddd5c9;
    border-radius: 6px;
    background: #fffdf9;
    color: #333;
    box-sizing: border-box;
}

.hh-contact__form textarea {
    min-height: 150px;
    resize: vertical;
}

.hh-contact__form input[type="submit"],
.hh-contact__form button[type="submit"] {
    min-height: 49px;
    padding: 0 26px;
    border: 1px solid #6f7f55;
    border-radius: 6px;
    background: #6f7f55;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.hh-contact__placeholder {
    padding: 26px;
    border: 1px dashed #cfc6b8;
    border-radius: 7px;
    background: rgba(255,255,255,.45);
    color: #777066;
    text-align: center;
}

@media (max-width: 900px) {
    .hh-contact__hero,
    .hh-contact__main {
        grid-template-columns: 1fr;
    }

    .hh-contact__image {
        min-height: 390px !important;
    }
}

@media (max-width: 620px) {
    .hh-contact {
        width: calc(100% - 20px);
        margin-top: 10px;
    }

    .hh-contact__hero-copy {
        padding: 40px 25px;
    }

    .hh-contact__image {
        min-height: 300px !important;
    }

    .hh-contact__detail-grid {
        grid-template-columns: 1fr;
    }

    .hh-contact__detail--wide {
        grid-column: auto;
    }

    .hh-contact__form-card {
        padding: 30px 22px;
    }
}


/* v1.1 compact Contact Form 7 layout */
.hh-contact-form {
    display: block;
}

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

.hh-contact-form__field {
    margin: 0 0 12px;
}

.hh-contact-form__field label {
    margin-bottom: 5px;
}

.hh-contact-form__field .wpcf7-form-control-wrap {
    display: block;
}

.hh-contact__form .hh-contact-form input[type="text"],
.hh-contact__form .hh-contact-form input[type="email"],
.hh-contact__form .hh-contact-form input[type="tel"],
.hh-contact__form .hh-contact-form input[type="url"],
.hh-contact__form .hh-contact-form select {
    min-height: 42px;
    height: 42px;
    margin-bottom: 0;
    padding: 8px 11px;
}

.hh-contact__form .hh-contact-form textarea {
    min-height: 105px;
    height: 105px;
    margin-bottom: 0;
    padding: 10px 11px;
}

.hh-contact-form__consent {
    margin: 8px 0 14px;
    font-size: 12px;
    line-height: 1.45;
}

.hh-contact-form__consent .wpcf7-list-item {
    margin: 0;
}

.hh-contact-form__submit {
    margin-top: 0;
}

.hh-contact-form__submit p {
    margin: 0;
}

.hh-contact__form .wpcf7-response-output {
    margin: 10px 0 0 !important;
    padding: 8px 10px !important;
    font-size: 12px;
}

.hh-contact__form .wpcf7-spinner {
    margin: 0 0 0 8px;
}

@media (max-width: 620px) {
    .hh-contact-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
