.bayarea-category-single-page,
.bayarea-project-single { width:100%; }

.bayarea-container { width:min(1320px, calc(100% - 40px)); margin:auto; }
.bayarea-content-container { width:min(850px, calc(100% - 40px)); margin:auto; }

.bayarea-category-hero,
.bayarea-project-hero {
    min-height:600px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-size:cover;
    background-position:center;
    background-color:#222;
}
.bayarea-category-hero-content,
.bayarea-project-hero-content { text-align:center; padding:120px 0; color:#fff; }

.bayarea-page-label,
.bayarea-section-label {
    display:block; color:#c89b5b; font-size:12px; font-weight:700;
    letter-spacing:2px; text-transform:uppercase; margin-bottom:20px;
}
.bayarea-category-hero h1,
.bayarea-project-hero h1 {
    color:#fff !important; font-size:clamp(45px,7vw,90px); line-height:1.1; margin:0;
}
.bayarea-category-description-section,
.bayarea-project-content-section { padding:110px 0; /* 	background:#fff;*/}
.bayarea-category-description-content,
.bayarea-project-content { color:#555; font-size:18px; line-height:1.9; }

.bayarea-category-projects-section { padding:100px 0 120px; /*background:#f7f7f5;*/ }
.bayarea-section-heading { margin-bottom:45px; }
.bayarea-section-heading h2 { font-size:clamp(34px,4vw,58px); margin:0; }

.bayarea-project-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:25px;
}
.bayarea-project-card {
/*     background:#fff; */
	border-radius:24px; overflow:hidden; border:1px solid #e4e4e4;
    box-shadow:0 8px 25px rgba(0,0,0,.06); transition:.35s ease;
}
.bayarea-project-card:hover { transform:translateY(-8px); }
.bayarea-project-card-link { display:block; text-decoration:none !important; }
.bayarea-project-image { height:320px; overflow:hidden; background:#e8e8e8; }
.bayarea-project-image img { width:100%; height:100%; object-fit:cover; display:block; transition:.6s ease; }
.bayarea-project-card:hover .bayarea-project-image img { transform:scale(1.07); }
.bayarea-project-bottom {
    min-height:95px; padding:0 30px; display:flex; align-items:center;
    justify-content:space-between; gap:20px;
}
.bayarea-project-bottom h3 { color:#2d3439 !important; font-size:20px; margin:0; }
.bayarea-project-arrow {
    width:46px; height:46px; flex:0 0 46px; border:1px solid #ddd; border-radius:50%;
    display:flex; align-items:center; justify-content:center; color:#b68b4a; font-size:21px;
}

.bayarea-project-gallery { padding:0 0 110px; background:#fff; }
.bayarea-gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.bayarea-gallery-grid img { width:100%; height:320px; object-fit:cover; border-radius:16px; display:block; }

@media(max-width:1024px){
    .bayarea-project-grid,.bayarea-gallery-grid { grid-template-columns:repeat(2,1fr); }
    .bayarea-category-hero,.bayarea-project-hero { min-height:500px; }
}
@media(max-width:767px){
    .bayarea-project-grid,.bayarea-gallery-grid { grid-template-columns:1fr; }
    .bayarea-category-hero,.bayarea-project-hero { min-height:420px; }
    .bayarea-category-description-section,.bayarea-category-projects-section,.bayarea-project-content-section { padding:70px 0; }
    .bayarea-project-image { height:280px; }
}

/* ------------------------------ */

.bayarea-client-categories-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
}

.bayarea-client-category-card{
    display:block;
    text-decoration:none !important;
}

.bayarea-client-category-image{
    position:relative;
    min-height:420px;
    background:#222;
    background-size:cover;
    background-position:center;
    overflow:hidden;
    border-radius:20px;
    transition:.4s ease;
}

.bayarea-client-category-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.05) 20%,
        rgba(0,0,0,.80) 100%
    );
}

.bayarea-client-category-content{
    position:absolute;
    left:30px;
    right:30px;
    bottom:30px;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.bayarea-client-category-content h3{
    margin:0;
    color:#fff !important;
    font-size:28px;
}

.bayarea-client-category-arrow{
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.5);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.3s ease;
}

.bayarea-client-category-card:hover .bayarea-client-category-image{
    transform:translateY(-5px);
}

.bayarea-client-category-card:hover .bayarea-client-category-arrow{
    background:#fff;
    color:#000;
}

@media(max-width:1024px){
    .bayarea-client-categories-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:767px){
    .bayarea-client-categories-grid{
        grid-template-columns:1fr;
    }
}

