.fe-contact-page {
    --fe-ink: #0f0e0b;
    --fe-ivory: #fbf8f0;
    --fe-paper: #fffdf8;
    --fe-line: #ded8c9;
    --fe-muted: #716b5f;
    --fe-gold: #b9975b;
    --fe-soft: #f7efe2;
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
    color: var(--fe-ink);
    font-family: inherit;
}

.fe-contact-page *,
.fe-contact-page *::before,
.fe-contact-page *::after {
    box-sizing: border-box;
}

body:has(.fe-contact-page) .page-header,
body:has(.fe-contact-page) .entry-header,
body:has(.fe-contact-page) .elementor-widget-theme-page-title,
body:has(.fe-contact-page) .page-title,
body:has(.fe-contact-page) .page-title-bar,
body:has(.fe-contact-page) .breadcrumb-wrap {
    display: none !important;
}

.fe-contact-hero {
    padding: clamp(52px, 7vw, 92px) 0 clamp(28px, 5vw, 52px);
    text-align: center;
}

.fe-contact-kicker {
    margin: 0 0 12px;
    color: var(--fe-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.fe-contact-title {
    max-width: 760px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 7vw, 84px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: .96;
}

.fe-contact-subtitle {
    max-width: 680px;
    margin: 22px auto 0;
    color: var(--fe-muted);
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
}

.fe-contact-main {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 18px;
    margin-bottom: 18px;
}

.fe-contact-card {
    border: 1px solid var(--fe-line);
    border-radius: 8px;
    background: var(--fe-paper);
}

.fe-contact-form-card {
    padding: clamp(22px, 4vw, 42px);
}

.fe-contact-side {
    display: grid;
    gap: 14px;
}

.fe-contact-info-card {
    padding: 24px;
}

.fe-contact-section-title {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 400;
}

.fe-contact-copy {
    margin: 0 0 28px;
    color: var(--fe-muted);
    font-size: 15px;
    line-height: 1.75;
}

.fe-contact-notice {
    margin: 0 0 22px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.fe-contact-notice--success {
    border: 1px solid #1f4c3f;
    background: #edf7f2;
    color: #1f4c3f;
}

.fe-contact-notice--error {
    border: 1px solid #8b1f1f;
    background: #fff1f1;
    color: #8b1f1f;
}

.fe-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fe-contact-field {
    display: grid;
    gap: 8px;
}

.fe-contact-field--full {
    grid-column: 1 / -1;
}

.fe-contact-label {
    color: var(--fe-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fe-contact-input,
.fe-contact-select,
.fe-contact-textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--fe-line);
    border-radius: 6px;
    background: #fff;
    color: var(--fe-ink);
    font: inherit;
    padding: 12px 14px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.fe-contact-textarea {
    min-height: 150px;
    resize: vertical;
}

.fe-contact-input:focus,
.fe-contact-select:focus,
.fe-contact-textarea:focus {
    border-color: var(--fe-gold);
    box-shadow: 0 0 0 3px rgba(185, 151, 91, .16);
    outline: 0;
}

.fe-contact-button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.fe-contact-button,
.fe-contact-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border: 1px solid var(--fe-ink);
    border-radius: 6px;
    background: var(--fe-ink);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1;
    padding: 0 22px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.fe-contact-button:hover,
.fe-contact-link-button:hover {
    border-color: var(--fe-gold);
    background: var(--fe-gold);
    color: #17140e;
}

.fe-contact-link-button--ghost {
    background: transparent;
    color: var(--fe-ink);
}

.fe-contact-note {
    margin: 0;
    color: var(--fe-muted);
    font-size: 13px;
    line-height: 1.6;
}

.fe-contact-detail-list {
    display: grid;
    gap: 14px;
    margin: 20px 0 0;
}

.fe-contact-detail {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.fe-contact-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    background: var(--fe-soft);
    color: var(--fe-gold);
    font-size: 14px;
    font-weight: 800;
}

.fe-contact-detail strong {
    display: block;
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fe-contact-detail span,
.fe-contact-detail a {
    color: var(--fe-muted);
    font-size: 14px;
    line-height: 1.55;
    text-decoration: none;
}

.fe-contact-detail a:hover {
    color: var(--fe-ink);
}

.fe-contact-service-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.fe-contact-chip {
    border: 1px solid var(--fe-line);
    border-radius: 999px;
    background: #fff;
    color: var(--fe-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 8px 12px;
    text-transform: uppercase;
}

.fe-contact-map-card {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 0;
    margin-bottom: clamp(50px, 8vw, 92px);
    overflow: hidden;
}

.fe-contact-map-copy {
    padding: clamp(24px, 4vw, 42px);
    background: var(--fe-soft);
}

.fe-contact-map-frame {
    min-height: 420px;
    border: 0;
    filter: grayscale(1) contrast(.92);
}

.fe-contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

@media (max-width: 900px) {
    .fe-contact-page {
        width: min(100% - 24px, 620px);
    }

    .fe-contact-hero {
        padding: 28px 0 20px;
    }

    .fe-contact-kicker {
        margin-bottom: 8px;
        font-size: 10px;
        letter-spacing: .12em;
    }

    .fe-contact-title {
        max-width: 100%;
        font-size: clamp(32px, 10vw, 44px);
        line-height: 1;
    }

    .fe-contact-subtitle {
        margin-top: 12px;
        font-size: 14px;
        line-height: 1.55;
    }

    .fe-contact-main,
    .fe-contact-map-card {
        grid-template-columns: 1fr;
    }

    .fe-contact-form {
        grid-template-columns: 1fr;
    }

    .fe-contact-map-frame,
    .fe-contact-map-frame iframe {
        min-height: 340px;
    }
}
