/* =========================================================
   CONTACT / ADDRESS SECTION
   ========================================================= */

.contact-section {
    background: var(--color-bg);
    padding: 140px 0 160px;
}

.contact-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}


/* ---------- LEFT CONTENT ---------- */

.contact-section__content {
    display: flex;
    flex-direction: column;
    max-width: 520px;
}


/* ---------- EYEBROW ---------- */

.contact-section__eyebrow {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 32px;
}


/* ---------- TITLE ---------- */

.contact-section__title {
    font-family: "Roslindale", serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin: 0 0 48px;
}


/* ---------- ADDRESS ---------- */

.contact-section__address {
    font-family: "Roslindale", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    font-style: normal;
    color: var(--color-text);
    margin-bottom: 56px;
}

.contact-section__address p {
    margin: 0;
}


/* ---------- BUTTON ---------- */

.contact-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 64px;
    padding: 0 52px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.contact-section__btn:hover {
    background: var(--color-accent);
    color: #ffffff;
    transform: translateY(-2px);
}


/* ---------- MAP ---------- */

.contact-section__map {
    width: 100%;
    height: 560px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.contact-section__map iframe {
    display: block;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .contact-section__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-section__content {
        max-width: 100%;
    }

    .contact-section__map {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0 100px;
    }

    .contact-section__title {
        font-size: 48px;
    }

    .contact-section__address {
        font-size: 18px;
    }

    .contact-section__map {
        height: 380px;
    }
}


/* =========================================================
   CONTACT INFO CARDS
   ========================================================= */

.contact-info {
    background: var(--color-bg);
    padding: 120px 0 160px;
}

.contact-info__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* ---------- CONTACT CARD ---------- */

.contact-card {
    border: 1px solid var(--color-line);
    background: var(--color-bg);
    overflow: hidden;
}

.contact-card + .contact-card {
    border-top: none;
}

.contact-card--link {
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact-card--link:hover {
    background: rgba(184, 91, 62, 0.04);
}

.contact-card--link .contact-card__toggle {
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-card--link:hover .contact-card__toggle {
    background: rgba(184, 91, 62, 0.08);
}


/* ---------- HEADER ---------- */

.contact-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px 56px;
}

.contact-card__header-text {
    flex: 1;
}

.contact-card__title {
    font-family: "Roslindale", serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--color-text);
    margin: 0 0 12px;
}

.contact-card__subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
}


/* ---------- TOGGLE BUTTON ---------- */

.contact-card__toggle {
    width: 84px;
    height: 56px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: transparent;
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-card__toggle:hover {
    background: rgba(184, 91, 62, 0.08);
}

.contact-card__toggle svg {
    transition: transform 0.3s ease;
}

.contact-card.is-collapsed .contact-card__toggle svg {
    transform: rotate(180deg);
}


/* ---------- DIVIDER ---------- */

.contact-card__divider {
    height: 1px;
    background: var(--color-line);
    margin: 0 56px;
}


/* ---------- CONTENT ---------- */

.contact-card__content {
    padding: 0 56px 56px;
}


/* ---------- INFO ROWS ---------- */

.contact-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 24px;
}

.contact-info-row:first-child {
    margin-top: 32px;
}

.contact-info-row__label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: "Roslindale", serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-text);
}

.contact-info-row__label svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-info-row__value {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-text);
}

.contact-info-row__value a {
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-color: var(--color-accent);
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

.contact-info-row__value a:hover {
    color: var(--color-accent);
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .contact-card__header {
        padding: 36px 40px;
    }

    .contact-card__title {
        font-size: 30px;
    }

    .contact-card__divider {
        margin: 0 40px;
    }

    .contact-card__content {
        padding: 0 40px 40px;
    }

    .contact-info-row {
        padding: 24px 32px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 0 0 80px;
    }

    .contact-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 28px 24px;
    }

    .contact-card__title {
        font-size: 26px;
    }

    .contact-card__subtitle {
        font-size: 13px;
    }

    .contact-card__toggle {
        align-self: flex-end;
        width: 72px;
        height: 48px;
    }

    .contact-card__divider {
        margin: 0 24px;
    }

    .contact-card__content {
        padding: 0 24px 32px;
    }

    .contact-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 24px;
    }

    .contact-info-row__label {
        font-size: 18px;
    }

    .contact-info-row__value {
        font-size: 15px;
        padding-left: 36px;
    }
}


/* =========================================================
   CONTACT FORM SECTION
   ========================================================= */

.contact-form-section {
    background: var(--color-bg);
    padding: 140px 0 180px;
}

.contact-form-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}


/* ---------- HEADER ---------- */

.contact-form-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-form-title {
    font-family: "Roslindale", serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0 0 20px;
}

.contact-form-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-muted);
    margin: 0;
}


/* ---------- WRAPPER ---------- */

.contact-form-wrapper {
    background: #ffffff;
    padding: 80px 90px;
    max-width: 900px;
    margin: 0 auto;
}


/* ---------- FORM ---------- */

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-group label {
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 12px;
}

.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 18px 0;
    border: none;
    border-bottom: 1px solid rgba(184, 91, 62, 0.3);
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--color-text);
    transition: border-color 0.3s ease;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: var(--color-accent);
    opacity: 0.6;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 100px;
}


/* ---------- FOOTER ---------- */

.contact-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
}

.contact-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    line-height: 1.6;
    color: var(--color-text);
    max-width: 420px;
    cursor: pointer;
}

.contact-form-consent input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: var(--color-accent);
    cursor: pointer;
    flex-shrink: 0;
}

.contact-form-submit {
    height: 64px;
    padding: 0 72px;
    border: none;
    border-radius: 999px;
    background: var(--color-accent);
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form-submit:hover {
    background: #a04d35;
    transform: translateY(-2px);
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
    .contact-form-wrapper {
        padding: 60px 70px;
    }

    .contact-form-title {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0 100px;
    }

    .contact-form-wrapper {
        padding: 40px 32px;
    }

    .contact-form-header {
        margin-bottom: 40px;
    }

    .contact-form-title {
        font-size: 32px;
    }

    .contact-form-subtitle {
        font-size: 12px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .contact-form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .contact-form-consent {
        max-width: 100%;
    }

    .contact-form-submit {
        width: 100%;
        padding: 0 48px;
    }
}


/* =========================================================
   FORM ERROR MESSAGE
   ========================================================= */

.contact-form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 32px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #dc2626;
    text-align: center;
}
