:root{--green:#2aa34a;--dark:#0b3b17;--muted:#666}
*{box-sizing:border-box}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
body{font-family:Segoe UI,Roboto,Arial,sans-serif;margin:0;color:#222;background:#fbfdfb}
.container{max-width:1100px;margin:0 auto;padding:1rem}
.site-header{background:#fff;border-bottom:1px solid #eee}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.brand{display:flex;align-items:center;gap:.6rem;text-decoration:none;color:var(--dark)}
.brand svg{width:56px;height:56px}
.brand-name{font-weight:700;font-size:1.1rem}
.brand-logo-img{width:56px;height:56px;object-fit:contain}
.main-nav a{margin-left:1rem;text-decoration:none;color:var(--muted)}
.main-nav a.active{color:var(--green);font-weight:600}
.hero{display:flex;gap:2rem;align-items:center;padding:2rem 0}
.hero-content h1{font-size:1.9rem;color:var(--dark);margin:0 0 .5rem}
.lead{color:var(--muted);font-size:1.05rem;margin-top:0}
.hero-content p{margin:0 0 1rem}
.btn{background:var(--green);color:#fff;padding:.6rem 1rem;border-radius:8px;text-decoration:none;display:inline-block;border:none}
.btn.outline{background:transparent;color:var(--green);border:2px solid var(--green)}
.hero-image img{width:160px}
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;padding:1rem 0}
.features article{background:#fff;padding:1rem;border-radius:10px;border:1px solid #eee}
.services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.service-card{background:#fff;padding:1rem;border-radius:10px;border:1px solid #eee}
.service-image{width:100%;height:160px;overflow:hidden;border-radius:8px;margin-bottom:.8rem}
.service-image img{width:100%;height:100%;object-fit:cover;display:block}
.cta{margin-top:1rem;padding:1rem;text-align:center}
.site-footer{background:#f8f9f9;padding:1rem 0;margin-top:2rem}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.notice{padding:1rem;border-radius:6px;margin-bottom:1rem}
.notice.error{background:#fff0f0;border:1px solid #f3c4c4;color:#8a1f1f}
.notice.success{background:#f0fff6;border:1px solid #bfe7c8;color:#1f6f2f}
.contact-form{display:grid;gap:.6rem;max-width:560px}
input,textarea{padding:.6rem;border:1px solid #ddd;border-radius:8px}

.about-page .about-hero{display:flex;gap:2rem;align-items:center;padding:2rem;background:linear-gradient(180deg, #ffffff 0%, #f7fff7 100%);border-radius:12px;border:1px solid #eef6ee}
.about-hero-text{flex:1}
.about-hero-image{width:180px;display:flex;align-items:center;justify-content:center}
.about-hero-image img{width:140px}
.values{margin-top:1.4rem}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:.6rem}
.values-grid article{background:#fff;padding:1rem;border-radius:8px;border:1px solid #eef5ee}

.team{margin-top:1.4rem}
.team-grid{display:flex;gap:1rem;margin-top:.8rem}
.team-member{background:#fff;padding:1rem;border-radius:8px;border:1px solid #eef5ee;flex:1;text-align:center}
.avatar{width:56px;height:56px;border-radius:50%;background:var(--green);color:#fff;display:inline-flex;align-items:center;justify-content:center;font-weight:700;margin-bottom:.6rem}

.team-photo{width:120px;height:120px;object-fit:cover;border-radius:8px;margin:0 auto .6rem;display:block}
.single-team .team-member{max-width:320px;margin:0 auto}

.founder .team-member{background:linear-gradient(180deg,#ffffff,#f7fff7);padding:1.2rem}
.founder .bio{color:var(--muted);margin-top:.6rem}
.founder .role{font-weight:600;color:var(--green);margin-top:0}

.features.highlighted .features{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;padding:1rem 0}
.features.highlighted article{background:#fff;padding:1rem;border-radius:10px;border:1px solid #eef5ee}

@media (max-width:900px){
	.features.highlighted .features{grid-template-columns:1fr}
	.team-photo{width:100px;height:100px}
}

@media (max-width:900px){
	.header-inner{flex-direction:column;align-items:center;gap:.6rem}
	/* center brand and nav on small screens */
	.brand{justify-content:center}
	.main-nav{width:100%;display:flex;justify-content:center;gap:1rem}
	.main-nav a{margin-left:0}
	.hero, .about-hero{flex-direction:column;text-align:center}
	.about-hero-image{width:100%}
	.values-grid{grid-template-columns:1fr}
	.team-grid{flex-direction:column}
	.features{grid-template-columns:1fr}
	.services-grid{grid-template-columns:1fr}
}

.gallery-section{margin-top:1.6rem;padding:1rem 0}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0.6rem;margin-top:.6rem}
.gallery-item{background:#fff;border:1px solid #eee;border-radius:8px;overflow:hidden}
.gallery-item img{width:100%;height:auto;aspect-ratio:4/3;object-fit:cover;display:block;transition:transform .18s ease}
.gallery-item img:hover{transform:scale(1.03)}

/* responsive gallery: 4 columns → 2 columns → 1 column on very small screens */
@media (max-width:900px){
	.gallery-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:480px){
	.gallery-grid{grid-template-columns:1fr}
	.brand svg, .brand-logo-img{width:44px;height:44px}
	.brand-name{font-size:.95rem}
	.hero-content h1{font-size:1.4rem}
	.hero-image img{max-width:140px;width:40%}
	.gallery-item img{aspect-ratio:3/2;height:auto}
	.header-inner{padding:.6rem 0}
}
