:root {
    --forest: #1a3a32;
    --gold: #b59461;
    --cream: #f9f7f2;
    --white: #ffffff;
}
.contact-details span.label {
    color: #e68e22;
}

.contact-wrapper {
    width: 1300px;
    /* margin: 100px auto; */
    /* padding: 0 20px; */
    position: relative;
}

/* The "Layered" Map */
.map-frame {
    width: 64%;
    height: 600px;
    margin-left: auto;
    /* Pushes map to the right */
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 30px 30px 0px var(--white);
    /* Unique "Shadow" block */
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: sepia(20%) contrast(1.1);
}

/* The Floating Information Card */
.info-card {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 450px;
    background: var(--forest);
    color: var(--white);
    padding: 60px;
    z-index: 2;
    box-sizing: border-box;
}

/* Decorative "N" Watermark */
.info-card::before {
    content: 'N';
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 15rem;
    opacity: 0.1;
    line-height: 1;
}

.info-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 0 0 10px 0;
    line-height: 1;
}

.gold-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 30px 0;
}

.contact-details div {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.label {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Call to Action Buttons */
.cta-row {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btn-main {
    padding: 15px 25px;
    border: 1px solid #ebad69;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.4s;
    background: #ebad68;
    display: inline-block;
}

.btn-main:hover {
    background: var(--gold);
    color: var(--forest);
}

/* Responsive - Collapse to stack */
@media (max-width: 992px) {
    .map-frame {
        width: 100%;
        height: 400px;
        margin-bottom: -50px;
    }

    .info-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        padding: 40px;
    }

    .contact-wrapper {
        margin: 40px auto;
        width: 100%;
    }

    .cta-row {
        flex-direction: column;
        text-align: center;
    }
}