
/* ==================================================
   Farm Corner Styles - Unicorner
   ================================================== */

.farm-hero{
    background:url('../images/farm/farm-hero.jpg') center center/cover no-repeat;
    min-height:75vh;
    max-height:800px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-align:center;
}

.farm-hero .hero-overlay{
    background:rgba(0,0,0,.35);
    width:100%;
    min-height:75vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.farm-hero h1{
    font-size:4rem;
    font-weight:700;
    margin-bottom:.75rem;
    text-shadow:0 2px 12px rgba(0,0,0,.45);
}

.farm-hero p{
    font-size:1.25rem;
    line-height:1.8;
    max-width:760px;
    margin:0 auto 2rem;
}

.farm-welcome,
.resident-section,
.closing-section{
    padding:5rem 0;
}

.wrap{
    width:min(1200px,92%);
    margin:auto;
    padding:0 0 2rem;
}

.porch-divider,
.closing-divider{
    display:flex;
    align-items:center;
    gap:1rem;
    margin:3rem auto;
}

.porch-divider span,
.closing-divider span{
    flex:1;
    height:1px;
    background:#cdbb74;
}

.heart{
    flex:none !important;
    background:none !important;
    color:#b08a2b;
    font-size:1.3rem;
}

.resident-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:2rem;
    margin-top:3rem;
}

.resident-card{
    background:#fff;
    border:1px solid #e8e2d0;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 22px rgba(0,0,0,.08);
    transition:.3s;
}

.resident-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 36px rgba(0,0,0,.16);
}

.resident-card img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    display:block;
    padding:1.25rem;
    box-sizing:border-box;
}

.resident-content{
    padding:1.5rem;
}

.resident-content h3{
    margin:0 0 .35rem;
    color:#3b2c1d;
    font-size:1.45rem;
    font-weight:700;
}

.resident-content h4{
    margin:.4rem 0 1rem;
    color:#8b6a2d;
    font-weight:600;
    font-style:italic;
}

.resident-content p{
    line-height:1.7;
    margin-bottom:1rem;
}

.corner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:2rem;
    margin-top:3rem;
}

.corner-card{
    background:#fff;
    border:1px solid #e8e2d0;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.corner-card img{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
}

.corner-content{
    padding:1.5rem;
}

.button{
    display:inline-block;
    margin-top:1rem;
    padding:.85rem 1.7rem;
    font-weight:600;
    border-radius:999px;
    text-decoration:none;
}

@media (max-width:768px){

.farm-hero h1{
    font-size:2.5rem;
}

.farm-hero p{
    font-size:1.1rem;
}

.farm-welcome,
.resident-section,
.closing-section{
    padding:3rem 0;
}

}
/* ==========================================
   Signature Divider
========================================== */

.signature-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin:70px auto;
    max-width:700px;
}

.signature-divider .divider-line{
    flex:1;
    height:2px;
    background:linear-gradient(
        to right,
        transparent,
        #c89b2f,
        transparent
    );
}

.signature-divider .divider-heart{
    color:#c89b2f;
    font-size:1.6rem;
    line-height:1;
}

/* ==========================================
   Equal Height Resident Cards
========================================== */

.resident-card{
    display:flex;
    flex-direction:column;
}

.resident-content{
    display:flex;
    flex-direction:column;
    flex:1;
}

.resident-content .button{
    margin-top:auto;
    align-self:flex-start;
}