/* Who We Are Section */
.who-we-are-section {
    min-height: 100vh;
    /* Fit the screen */
    display: flex;
    align-items: center;
    /* Center content vertically */
    padding: 4rem 0;
    /* Reduced padding since flex handles spacing, but kept for safeguards */
    overflow: hidden;
    background-color: #fff;
    scroll-margin-top: 0px;
    /* Ensure snap aligns perfectly */
}

.who-we-are-content {
    padding-right: 4rem;
}


.section-eyebrow {
    color: #c5a47e;
    /* Gold/Brown tone */
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.who-we-are-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px);
}

.who-we-are-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s ease;
}

.who-we-are-image-wrapper:hover .who-we-are-image {
    transform: scale(1.05);
}

/* Button override for this section if needed, or use generic */
.btn-who-we-are {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--primary-color, #0f172a);
    color: #fff;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.3);
}

.btn-who-we-are:hover {
    background-color: var(--btn-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(15, 23, 42, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-who-we-are:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .who-we-are-section {
        padding: 4rem 0;
    }

    .who-we-are-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: left;
    }

    .section-title {
        font-size: 2.5rem;
    }
}