
:root{--dark:#111827;--blue:#0b4f6c;--gold:#c89b3c;--light:#f5f7fa;--text:#1f2937}*{box-sizing:border-box}body{margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--text);line-height:1.6;background:white;font-weight:600}a{color:inherit}.topbar{background:#0b1720;color:white;padding:8px 5%;font-size:14px;display:flex;gap:20px;justify-content:center;flex-wrap:wrap}.navbar{position:sticky;top:0;z-index:10;background:white;box-shadow:0 2px 12px #0002;display:flex;align-items:center;justify-content:space-between;padding:16px 5%}.brand{font-weight:900;color:var(--dark);font-size:22px}.brand span{display:block;font-size:13px;color:var(--blue);letter-spacing:.08em}.nav{display:flex;gap:18px;flex-wrap:wrap}.nav a{text-decoration:none;font-weight:800;color:#243244}.nav a:hover{color:var(--gold)}.hero{min-height:560px;background:linear-gradient(90deg,#000c,#0005),url('../images/hero-commercial-remodel.jpg') center/cover;display:flex;align-items:center;color:white;padding:70px 5%}.hero-content{max-width:760px}.eyebrow{color:#ffd36b;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.hero h1{font-size:52px;line-height:1.05;margin:12px 0}.hero p{font-size:20px;max-width:680px}.btn{display:inline-block;background:var(--gold);color:#111;text-decoration:none;padding:14px 22px;border-radius:4px;font-weight:900;margin:8px 8px 0 0}.btn.secondary{background:white;color:var(--dark)}section{padding:70px 5%}.section-title{text-align:center;max-width:850px;margin:0 auto 40px}.section-title h2{font-size:38px;margin:0 0 12px;color:var(--dark)}.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:24px}.card{background:white;border-radius:10px;overflow:hidden;box-shadow:0 8px 24px #0001;border:1px solid #e5e7eb}.card img{width:100%;height:230px;object-fit:cover;display:block}.card-body{padding:24px}.card h3{margin-top:0;color:var(--dark);font-size:24px}.light{background:var(--light)}.dark{background:var(--dark);color:white}.dark h2,.dark h3{color:white}.split{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:center}.split img{width:100%;border-radius:12px;box-shadow:0 10px 30px #0003}.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:18px}.gallery-item{cursor:pointer;border:0;background:white;text-align:left;padding:0;border-radius:10px;overflow:hidden;box-shadow:0 6px 18px #0002}.gallery-item img{width:100%;height:220px;object-fit:cover;display:block}.gallery-item strong{display:block;padding:14px;color:var(--dark)}.cta{text-align:center;background:linear-gradient(90deg,#0b1720,#0b4f6c);color:white}.cta h2{font-size:36px;margin-top:0;color:white}.footer{background:#08111a;color:white;padding:45px 5% 20px}.footer-grid{display:grid;grid-template-columns:2fr 1fr 1.5fr;gap:30px}.footer a{color:white;text-decoration:none}.footer ul{list-style:none;padding:0;margin:0}.copy{text-align:center;border-top:1px solid #ffffff22;margin-top:30px;padding-top:18px;color:#d1d5db}.page-hero{background:linear-gradient(90deg,#000c,#0006),url('../images/office-buildout.jpg') center/cover;color:white;padding:110px 5%;text-align:center}.page-hero h1{font-size:46px;margin:0}.modal{display:none;position:fixed;z-index:99;inset:0;background:#000b;padding:30px;overflow:auto}.modal.show{display:flex;align-items:center;justify-content:center}.modal-content{background:white;max-width:1050px;width:100%;display:grid;grid-template-columns:1.4fr 1fr;border-radius:12px;overflow:hidden;position:relative}.modal img{width:100%;height:100%;max-height:720px;object-fit:cover}.modal-text{padding:28px}.modal-text h3{font-size:28px;margin-top:0;color:var(--dark)}.close{position:absolute;right:14px;top:8px;background:#111;color:white;border:0;border-radius:50%;font-size:24px;width:40px;height:40px;cursor:pointer}form{display:grid;gap:14px;max-width:720px;margin:auto}input,textarea{padding:14px;border:1px solid #cbd5e1;border-radius:6px;font:inherit;font-weight:700}textarea{min-height:150px}button{border:0;cursor:pointer}.note{background:#fff8e1;padding:18px;border-left:5px solid var(--gold);border-radius:8px}@media(max-width:800px){.hero h1{font-size:36px}.split,.modal-content,.footer-grid{grid-template-columns:1fr}.nav{font-size:14px}.hero{min-height:480px}.modal img{height:330px}.page-hero h1{font-size:34px}}

/* V3 fixed gallery alignment: 8 photos show as 4 above and 4 below on desktop */
.gallery {
    grid-template-columns: repeat(4, 1fr) !important;
    align-items: stretch;
}
.gallery-item {
    height: 100%;
}
.gallery-item img {
    height: 220px;
}
@media (max-width: 1000px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 560px) {
    .gallery {
        grid-template-columns: 1fr !important;
    }
}

/* V4 larger photo area in project popup / lightbox */
.modal {
    padding: 18px !important;
}
.modal-content {
    max-width: 1500px !important;
    width: 96vw !important;
    min-height: 82vh;
    grid-template-columns: minmax(0, 2.8fr) minmax(320px, 0.9fr) !important;
}
.modal img {
    width: 100% !important;
    height: 82vh !important;
    max-height: 86vh !important;
    object-fit: contain !important;
    background: #050505;
}
.modal-text {
    overflow-y: auto;
    max-height: 82vh;
}
@media (max-width: 900px) {
    .modal-content {
        grid-template-columns: 1fr !important;
        width: 96vw !important;
        min-height: auto;
    }
    .modal img {
        height: 62vh !important;
        max-height: 62vh !important;
    }
    .modal-text {
        max-height: none;
    }
}
