/* Overrides for about page gallery to exactly match side-by-side layout */
body,html{
    margin:0;
    padding:0;
}

.about-gallery{
    display:flex;
    width:100%;
    height:100vh;
    max-height:700px;
}

.about-gallery .gallery-item{
    flex:1 0 50%;
}

.about-gallery .gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.quote-section{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
    background:#fff;
}

.quote-text{
    font-family:'Urbanist',sans-serif;
    font-weight:300;
    font-size:28px;
    letter-spacing:1px;
    text-align:center;
    color:#000;
    line-height:1.4;
    text-transform:uppercase;
}

.art-scent-section{
    display:flex;
    gap:60px;
    padding:120px 80px;
    align-items:flex-start;
}

.art-text{
    flex:1 0 40%;
    max-width:500px;
}

.art-label{
    font-family:'Urbanist',sans-serif;
    font-weight:400;
    font-size:14px;
    letter-spacing:1.2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.art-heading{
    font-family:'Italiana',sans-serif;
    font-weight:400;
    font-size:40px;
    letter-spacing:1.2px;
    margin-bottom:32px;
}

.art-paragraph{
    font-family:'Urbanist',sans-serif;
    font-weight:300;
    font-size:16px;
    line-height:1.8;
    margin-bottom:32px;
}

.art-images{
    flex:1 0 50%;
    display:flex;
    gap:24px;
    height:550px;
}

.art-slice{
    flex:1;
    object-fit:cover;
    width:0;
}

/* Philosophy Section */
.philosophy-section{
    display:flex;
    gap:60px;
    padding:120px 80px;
    align-items:flex-start;
}

.philosophy-image{
    flex:1 0 50%;
}
.philosophy-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
}

.philosophy-text{
    flex:1 0 40%;
    max-width:520px;
}

.philosophy-heading{
    font-family:'Italiana',sans-serif;
    font-weight:400;
    font-size:32px;
    letter-spacing:1px;
    margin-bottom:32px;
}

.philosophy-paragraph{
    font-family:'Urbanist',sans-serif;
    font-weight:300;
    font-size:16px;
    line-height:1.8;
    margin-bottom:24px;
}

/* Discover Section - Exact match to screenshot */
.discover-section{
    display:flex;
    gap:0;
    padding:0;
    align-items:stretch;
    justify-content:center;
    width:100%;
}

.discover-side{
    flex:0 0 22%;
    max-width:22%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f2ed;
}
.discover-side img{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
}

.discover-center{
    flex:0 0 56%;
    max-width:56%;
    height:550px;
    background:url("includes/assets/images/hero-vector.png") center/cover no-repeat;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:0 80px;
    text-align:center;
    color:#fff;
    gap:24px;
}

.discover-heading{
    font-family:'Italiana',serif;
    font-size:42px;
    font-weight:400;
    letter-spacing:2px;
    line-height:1.2;
    text-transform:uppercase;
    margin:0;
}

.discover-text{
    font-family:'Urbanist',sans-serif;
    font-weight:300;
    font-size:15px;
    line-height:1.7;
    max-width:380px;
    color:#fff;
    margin:0;
}

.discover-btn{
    display:inline-block;
    padding:14px 40px;
    background:#fff;
    color:#000;
    font-family:'Urbanist',sans-serif;
    font-size:13px;
    letter-spacing:1.5px;
    text-transform:uppercase;
    text-decoration:none;
    transition:background .3s;
    margin-top:8px;
}
.discover-btn:hover{background:#e5e5e5;}

@media(max-width:767px){
    .about-gallery{
        flex-direction:column;
        height:auto;
    }
    .about-gallery .gallery-item{
        flex:1 0 auto;
    }
}
