:root {
    --brand: #A47864; /* tweak to your brand brown */
    --ink: #3a3a3a;
    --muted: #7a828a;
    --bg: #f6f6f6;
}
body {
    color: var(--ink);
    background: #fff;
    font-family: "Sora", sans-serif;
}
header {
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
}
header .logo-homes-by-edo{max-width:100px;margin: 20px 0px;}
header .col-md-10{border-bottom:1px solid var(--brand);}
.edo-wrap {min-height: 100vh;padding-top: 90px;display: flex;align-items: center;}
@media (min-width: 992px) {
    .edo-wrap {
    }
}
/* Left column */
.logo-edo {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--brand);
    line-height: 1;
}
p {
    font-size: 14px;
    line-height: 1.45;
    max-width: 480px
}
/* make every tile keep its image contained and rounded */
.collage .tile {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg);
}
.collage .tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Right column */
.eyebrow {
    color: var(--brand);
    font-weight: 600;
    letter-spacing: .02em;
}
.lede {
    color: var(--brand);
    font-weight: 500;
    line-height: 1.1;
    font-size: clamp(24px, 2.5vw, 36px);
    margin-bottom: 30px;
    margin-top: 30px;
}
.lede + .lede {
    margin-top: .15em;
}
.section-label {
    color: var(--brand);
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: .02em;
    min-width: 200px;
}
.divider {
    height: 1px;
    background: #e9ecef;
    margin: 1.25rem 0;
}
/* mobile tweaks: stack collage more simply */
@media (max-width: 768px) {
    img.img-fluid.mb-5 {
        max-width: 100px;
    }
    .edo-wrap {
        padding: 110px 15px 30px 15px;
    }
    .collage {
        grid-auto-rows: 54px;
        gap: 10px;
    }
    .d-flex.gap-4 {
        gap: 10px !important;
        display: flex;
        flex-direction: column;
    }
    .d-flex.gap-4 p br {
        display: none;
    }
    p.mb-5 {
        margin-bottom: 0px !important;
    }
}
/* optional page border like reference */
.page-border {
    margin-top: 2rem;
    padding-top: 1rem;
}