:root{
    --primary:#AE9963;
    --dark:#585A5B;
    --text:#666;
    --bg:#faf9f6;
    --white:#fff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:var(--dark);
    overflow-x:hidden;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

section{
    padding:200px 0;
}


.btn-primary {
    background: #AE9963 !important;
    border-color: #AE9963 !important;
    color: #fff;
}
.hero-btns .btn-primary:active,.hero-btns  .btn-primary:focus,.hero-btns .btn-primary:hover{
    background: #AE9963 !important;
    border-color: transparent !important;
}


.btn.btn-outline{
    background:transparent !important;
    border-color: #AE9963 !important;
}


/* HERO */

.hero{
    background:#F8F5EE;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(174,153,99,0.08);
    border-radius:50%;
    top:-200px;
    right:-150px;
    filter:blur(60px);
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    align-items:center;
    gap:70px;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    background:rgba(174,153,99,0.12);
    color:var(--primary);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
    letter-spacing:.5px;
}

.hero-main-img video{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
    border-radius:28px;
}



.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:24px;
    font-weight:800;
    color:var(--dark);
}

.hero h1 span{
    color:var(--primary);
}

.hero p{
    font-size:18px;
    color:var(--text);
    line-height:1.9;
    margin-bottom:35px;
    max-width:600px;
}

.hero-btns{
    display:flex;
    gap:18px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    border-radius:14px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s ease;
    font-size:15px;
}

.btn-primary{
    background:var(--dark);
    color:#fff;
    border: none;
}

.btn-primary:hover{
    transform:translateY(-3px);
    background:#404243 !important;
}

.btn-outline{
    border:1.5px solid #d9d9d9;
    color:var(--dark) !important;
    background:#fff;
}

.btn-outline:hover{
    border-color:var(--primary) !important;
    color:var(--primary) !important;
}

.hero-images{
    position:relative;
}

.hero-main-img{
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.hero-main-img img{
    width:100%;
    height:520px;
    object-fit:cover;
    display:block;
}

.float-card{
    position:absolute;
    background:#fff;
    padding:15px 20px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    font-weight:600;
    color:var(--dark);
    font-size:14px;
}

.float-1{
    top:-20px;
    left:-25px;
    z-index:10;
}

.float-2{
    bottom:30px;
    right:-20px;
    z-index:10;
}

.float-3{
    bottom:-20px;
    left:60px;
    z-index:10;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:16px;
    color:var(--dark);
}

.section-title h2 span{
    color:var(--primary);
}

.section-title p{
    max-width:720px;
    margin:auto;
    color:var(--text);
    line-height:1.8;
}

/* CULTURE */

.culture-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.culture-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    transition:0.3s ease;
}

.culture-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.culture-icon{
    width:74px;
    height:74px;
    background:#f6f2e8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 24px;
    font-size:30px;
}

.culture-card h3{
    margin-bottom:14px;
    font-size:22px;
    color:var(--dark);
}

.culture-card p{
    color:var(--text);
}

/* GALLERY */

/* ========================================
   SINGLE COLLAGE GALLERY
======================================== */

.bvl-gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.bvl-gallery-item{
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    background:#fff;
}

.bvl-gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.3s ease;
    display:block;
}

.bvl-gallery-item:hover img{
    transform:scale(1.05);
}

/* RESPONSIVE */

@media(max-width:768px){

.gallery-overlay{
    padding:20px;
}

.gallery-overlay h4{
    font-size:22px;
}

}



.big{
    grid-column:span 2;
    grid-row:span 2;
}

.tall{
    grid-row:span 2;
}

.wide{
    grid-column:span 2;
}

/* BENEFITS */

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.benefit-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:24px;
    padding:35px;
    transition:0.3s ease;
}

.benefit-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.benefit-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#f6f2e8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:24px;
}

.benefit-card h3{
    margin-bottom:14px;
    font-size:24px;
    color:var(--dark);
}

.benefit-card p{
    color:var(--text);
}

/* CTA */

.cta{
    padding-bottom:120px;
}

.cta-box{
    background:linear-gradient(135deg,#585A5B,#404243);
    border-radius:32px;
    padding:70px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(174,153,99,0.12);
    border-radius:50%;
    top:-140px;
    right:-80px;
}

.cta-content{
    position:relative;
    z-index:2;
}

.cta-content h2{
    font-size:48px;
    color:#fff;
    margin-bottom:18px;
}

.cta-content p{
    color:rgba(255,255,255,0.8);
    max-width:650px;
    line-height:1.8;
}

.cta-btn{
    position:relative;
    z-index:2;
}

.cta-btn a{
    background:var(--primary);
    color:#fff;
    border:none;
}

.cta-btn a:hover{
    background:#978451;
}



.hero-main-img{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 390px;
}

.hero-main-img iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* RESPONSIVE */

@media(max-width:1100px){

.hero-wrapper{
    grid-template-columns:1fr;
}

.culture-grid{
    grid-template-columns:repeat(2,1fr);
}

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.benefits-grid{
    grid-template-columns:repeat(2,1fr);
}

.cta-box{
    flex-direction:column;
    align-items:flex-start;
}

.hero h1{
    font-size:54px;
}

}




@media(max-width:768px){

section{
    padding:70px 0;
}

.hero h1{
    font-size:42px;
}

.section-title h2{
    font-size:36px;
}

.hero-btns{
    flex-direction:column;
}

.culture-grid,
.gallery-grid,
.benefits-grid{
    grid-template-columns:1fr;
}

.gallery-grid{
    grid-auto-rows:250px;
}

.big,
.tall,
.wide{
    grid-column:span 1;
    grid-row:span 1;
}

.cta-box{
    padding:45px 30px;
}

.cta-content h2{
    font-size:34px;
}

.float-card{
    display:none;
}

.hero-main-img img{
    height:400px;
}


.bvl-gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
}

}