:root {
    --forest: #2f5233;
    --light-green: #b1d8b7;
    --concrete: #f4f4f4;
    --dark: #333333;
    --white: #ffffff;
    
    --font-head: 'Jost', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.arch-header { padding: 25px 0; background-color: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 2px; font-weight: 600; color: var(--dark); }
.green { color: var(--forest); }
.icon { font-size: 1.5rem; margin-left: 5px; color: var(--forest); }

.arch-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.arch-nav a { font-size: 0.9rem; text-transform: uppercase; color: #555; font-weight: 500; }
.arch-nav a:hover, .arch-nav a.active { color: var(--forest); }

.btn-outline { border: 1px solid var(--forest); color: var(--forest) !important; padding: 8px 20px; border-radius: 2px; }
.btn-outline:hover { background-color: var(--forest); color: var(--white) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--dark); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--concrete); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 1px solid #ddd; }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; background: none; border: none; font-size: 1.5rem; margin-bottom: 20px; cursor: pointer; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid #ddd; font-weight: 600; }

/* Hero */
.hero-arch {
    height: 650px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    width: 100%; height: 100%; background: linear-gradient(90deg, rgba(47, 82, 51, 0.8) 0%, rgba(47, 82, 51, 0.2) 100%);
    display: flex; align-items: center;
}
.hero-content { padding-left: 10%; color: var(--white); max-width: 600px; }
.subtitle { letter-spacing: 3px; font-size: 0.9rem; display: block; margin-bottom: 15px; }
.hero-content h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }

.hero-btns a { margin-right: 20px; display: inline-block; padding: 12px 30px; }
.btn-solid { background-color: var(--white); color: var(--forest); font-weight: bold; border-radius: 2px; }
.btn-solid:hover { background-color: var(--light-green); }
.btn-text { color: var(--white); border-bottom: 1px solid var(--white); padding: 0 !important; }

/* Projects */
.section-padding { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--dark); margin-bottom: 10px; }
.green-dot { width: 10px; height: 10px; background-color: var(--forest); border-radius: 50%; margin: 0 auto; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.project-card { background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #eee; }
.project-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card-img { position: relative; height: 250px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.project-card:hover img { transform: scale(1.05); }
.status { position: absolute; top: 20px; left: 20px; background: var(--forest); color: var(--white); padding: 5px 10px; font-size: 0.7rem; font-weight: bold; letter-spacing: 1px; }
.status.warning { background: #e67e22; }

.card-body { padding: 30px; }
.card-body h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; }
.specs { list-style: none; margin: 20px 0; padding-top: 20px; border-top: 1px solid #eee; display: flex; gap: 20px; font-size: 0.9rem; color: #666; }
.link-arrow { font-weight: bold; color: var(--forest); font-size: 0.9rem; }

/* About */
.page-header { background-color: var(--concrete); padding: 60px 0; text-align: center; }
.page-header h1 { font-family: var(--font-head); font-size: 3rem; color: var(--forest); }

.about-layout { display: flex; gap: 60px; align-items: center; }
.text-col { flex: 1; }
.text-col h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; }
.line { width: 60px; height: 3px; background-color: var(--forest); margin-bottom: 30px; }
.values { list-style: none; margin-top: 30px; }
.values li { margin-bottom: 10px; font-weight: 600; }
.img-col { flex: 1; }
.img-col img { width: 100%; }

/* Testimonials */
.reviews-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background: var(--concrete); padding: 40px; position: relative; }
.quote-icon { font-size: 4rem; color: #ddd; position: absolute; top: 10px; right: 20px; font-family: serif; }
.review-box p { font-style: italic; color: #555; margin-bottom: 20px; position: relative; z-index: 1; }
.resident strong { display: block; color: var(--forest); }
.resident span { font-size: 0.8rem; color: #888; }

/* Contact */
.contact-wrapper { display: flex; background: var(--white); border: 1px solid #eee; }
.contact-info { flex: 1; background-color: var(--forest); color: var(--white); padding: 50px; }
.contact-info h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; }
.details p { margin-bottom: 10px; font-size: 1.1rem; }

.modern-form { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; margin-bottom: 5px; color: #888; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; background: var(--concrete); font-family: var(--font-body); }
.submit-btn { width: 100%; background-color: var(--dark); color: var(--white); border: none; padding: 15px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background-color: var(--forest); }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; }
.legal-text h1 { font-family: var(--font-head); color: var(--forest); margin-bottom: 20px; }
.legal-text h3 { margin-top: 30px; margin-bottom: 10px; font-family: var(--font-head); }

/* Footer */
.arch-footer { background-color: var(--dark); color: #aaa; padding: 60px 0 20px; text-align: center; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { color: var(--white); font-family: var(--font-head); font-size: 1.5rem; letter-spacing: 1px; }
.f-social a { margin-left: 20px; color: var(--white); }
.copyright { border-top: 1px solid #444; padding-top: 20px; font-size: 0.8rem; }

@media (max-width: 900px) {
    .arch-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    .project-grid, .about-layout, .reviews-masonry, .contact-wrapper, .footer-flex { grid-template-columns: 1fr; flex-direction: column; }
    .contact-info, .modern-form { padding: 30px; }
    .f-contact { margin: 20px 0; }
}