/* ========== PRINCIPLES PAGE ========== */
.principles-page {
    width: 85%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

/* Left Photo */
.principles-photo {
    flex: 0 0 47%;
    position: relative;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 50px 0;
}

.principles-photo-wrapper {
    position: relative;
    width: 80%;
    height: 82%;
    overflow: hidden;
}

.principles-photo-wrapper img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principles-photo-logo {
    position: absolute;
    bottom: 30px;
    left: 30px;
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    z-index: 2;
}

/* Right Content */
.principles-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    background: var(--color-white);
    padding: 60px 50px;
}

.principles-text-wrapper {
    max-width: 580px;
}

.principles-heading {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.principles-intro {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Grid */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
}

.principle-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.principle-card svg {
    flex-shrink: 0;
}

.principle-card p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 300;
    color: #333;
    line-height: 1.75;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .principles-content {
        padding: 50px 30px;
    }

    .principles-heading {
        font-size: 1.8rem;
    }

    .principles-grid {
        gap: 24px 30px;
    }
}

@media (max-width: 768px) {
    .principles-page {
        width: 100%;
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .principles-photo {
        flex: none;
        height: 40vh;
    }

    .principles-content {
        flex: none;
        padding: 40px 30px 80px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }
}
