/* =============================================
   CONTACT SECTION — Premium Card Grid
   ============================================= */
.contact-section {
    background: #111111;
    padding: 6rem 0;
}
.contact-luxury-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-lux-left {
    position: sticky;
    top: 120px;
}
.contact-lux-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #B89A6E;
    margin-bottom: 1rem;
}
.contact-lux-heading {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.contact-lux-rule {
    width: 40px;
    height: 1px;
    background: #B89A6E;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}
.contact-lux-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}
.contact-lux-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #1a1a1a;
    border: 1px solid rgba(215, 188, 150, 0.15);
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}
a.contact-card:hover {
    background: #1e1e1e;
    border-color: #B89A6E;
    transform: translateY(-2px);
}
.contact-card--static {
    cursor: default;
}
.contact-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    max-height: 44px;
    border-radius: 50%;
    background: rgba(215, 188, 150, 0.1);
    border: 1px solid rgba(215, 188, 150, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.contact-card svg,
.contact-card i,
.contact-info-icon,
.contact-icon {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    display: block !important;
    stroke: #B89A6E !important;
    color: #B89A6E !important;
    fill: none !important;
}
.contact-text-wrap {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.contact-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #B89A6E;
    margin-bottom: 0.25rem;
}
.contact-value {
    font-size: 0.88rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 400;
    word-break: break-word;
}
.contact-maplink {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B89A6E;
    opacity: 0;
    transition: opacity 0.2s ease;
}
a.contact-card:hover .contact-maplink {
    opacity: 1;
}
@media (max-width: 900px) {
    .contact-luxury-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-lux-left {
        position: relative;
        top: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .contact-lux-heading {
        font-size: 2.25rem;
    }
}
@media (max-width: 600px) {
    .contact-lux-grid {
        grid-template-columns: 1fr;
    }
}

