:root{
  --green:#0b8f3e;
  --dark:#111;
  --light:#f7f7f7;
  --accent:#c61f1f;
  --card:#ffffff;
  --muted:#666;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--dark);
  background:var(--light);
}
a{color:var(--green); font-weight:700}
.header{
  background:#fff;
  border-bottom:4px solid var(--accent);
}
.container{
  max-width:1100px;
  margin:0 auto;
  padding:16px;
}
.brand{
  display:flex;
  gap:14px;
  align-items:center;
}
.brand img{width:56px;height:56px;object-fit:contain}
.brand h1{font-size:18px;margin:0}
.brand p{margin:2px 0 0 0;color:#555;font-size:13px}

.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.nav a{
  text-decoration:none;
  color:#fff;
  background:var(--green);
  padding:10px 12px;
  border-radius:10px;
  font-weight:800;
  font-size:13px;
}
.nav a.secondary{ background:#333; }

.hero{
  background:linear-gradient(135deg, #0b8f3e, #0b5f2c);
  color:#fff;
  border-radius:18px;
  padding:22px;
  margin:18px 0;
}
.hero h2{margin:0 0 8px 0}
.hero p{margin:0;line-height:1.6}

.grid{
  display:grid;
  gap:14px;
  grid-template-columns:repeat(12, 1fr);
}
.card{
  grid-column: span 6;
  background:var(--card);
  border-radius:18px;
  padding:16px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
}
.card.full{grid-column: span 12;}
.card h2{margin:0 0 8px 0;font-size:16px}
.card p{margin:0;color:#444;line-height:1.6}
.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#eee;
  font-size:12px;
  font-weight:800;
  margin-bottom:10px;
}

.section-title{
  margin:22px 0 10px;
  font-size:16px;
  font-weight:900;
}

.gallery{
  display:grid;
  gap:10px;
  grid-template-columns:repeat(4, 1fr);
}
.thumb{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  cursor:pointer;
}
.thumb img{width:100%; height:190px; object-fit:cover; display:block;}
.thumb .cap{padding:10px; font-size:12px; color:var(--muted); line-height:1.4}

.modal{
  position:fixed; inset:0;
  background:rgba(0,0,0,0.7);
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.modal.open{display:flex;}
.modal-inner{
  background:#fff;
  border-radius:18px;
  max-width:980px;
  width:100%;
  overflow:hidden;
}
.modal-img{width:100%; max-height:70vh; object-fit:contain; background:#111}
.modal-body{padding:14px}
.modal-body h3{margin:0 0 6px 0}
.modal-body p{margin:0; color:#444; line-height:1.6}
.modal-close{
  float:right;
  background:#111;
  color:#fff;
  border:none;
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
  font-weight:800;
}

.footer{
  margin-top:26px;
  padding:22px 0;
  color:#666;
  font-size:13px;
  text-align:center;
}

.form{
  display:grid;
  gap:10px;
}
input, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid #ddd;
  font-size:14px;
}
button.primary{
  background:var(--green);
  color:#fff;
  border:none;
  padding:12px 14px;
  border-radius:12px;
  cursor:pointer;
  font-weight:900;
}
small.note{color:var(--muted)}

@media (max-width:980px){
  .gallery{grid-template-columns:repeat(2, 1fr);}
}
@media (max-width:820px){
  .card{grid-column: span 12;}
}
