:root{
  --bg:#ffffff;
  --text:#111827;
  --muted:#6b7280;
  --brand:#0b5d1e;
  --brand2:#f2b705;
  --card:#f9fafb;
  --border:#e5e7eb;
  --shadow: 0 10px 25px rgba(0,0,0,.06);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:1150px; margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; gap:10px; align-items:center;
}
.logo{
  width:42px; height:42px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--brand) 0%, #0f7a28 70%);
  display:flex; align-items:center; justify-content:center;
  color:white; font-weight:900;
  box-shadow: var(--shadow);
}
.brand .title{line-height:1.1}
.brand .title b{display:block}
.brand .title span{font-size:12px; color:var(--muted)}

.menu{
  display:flex; gap:16px; align-items:center;
}
.menu a{
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  color:#111827;
}
.menu a:hover{background:#f3f4f6}
.menu a.active{background:#eef6f0; color:var(--brand); font-weight:700}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:white;
  cursor:pointer;
  font-weight:700;
  font-size:14px;
}
.btn.primary{
  background:var(--brand);
  color:white;
  border-color:transparent;
}
.btn.primary:hover{filter:brightness(.95)}
.btn.ghost:hover{background:#f3f4f6}

.hero{
  padding:44px 0 10px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 900px){
  .heroGrid{grid-template-columns:1fr}
}

.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background:#eef6f0;
  border:1px solid #d6eadb;
  color:var(--brand);
  font-weight:800;
  font-size:13px;
}
h1{
  margin:12px 0 10px;
  font-size:40px;
  letter-spacing:-.02em;
}
@media (max-width: 500px){
  h1{font-size:32px}
}
.sub{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width: 60ch;
}
.motto{
  margin-top:10px;
  padding-left:14px;
  border-left:4px solid var(--brand2);
  font-weight:800;
}
.heroActions{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}

.quick{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width: 420px){
  .quick{grid-template-columns:1fr}
}
.quick .item{
  background:white;
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px;
}
.quick .item b{display:block}
.quick .item span{color:var(--muted); font-size:13px}

.section{padding:28px 0}
.section h2{
  font-size:22px;
  margin:0 0 10px;
}
.section p.lead{margin:0 0 16px; color:var(--muted); line-height:1.6}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){
  .grid3{grid-template-columns:1fr}
}

.feature{
  padding:16px;
}
.feature h3{margin:0 0 8px; font-size:16px}
.feature ul{margin:0; padding-left:18px; color:#111827}
.feature li{margin:6px 0; color:#111827}
.feature .muted{color:var(--muted); font-size:13px}

.accordion{
  display:grid;
  gap:10px;
}
.accItem{
  background:white;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
}
.accBtn{
  width:100%;
  text-align:left;
  padding:14px 14px;
  border:0;
  background:white;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-weight:900;
}
.accBtn span{color:var(--muted); font-weight:700; font-size:13px}
.accBody{
  display:none;
  padding:0 14px 14px;
  color:#111827;
}
.accBody ul{margin:8px 0 0; padding-left:18px}
.accBody li{margin:6px 0}
.accItem.open .accBody{display:block}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 900px){.split{grid-template-columns:1fr}}

.formRow{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width: 600px){.formRow{grid-template-columns:1fr}}
label{font-size:13px; font-weight:800}
input, select, textarea{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:white;
  outline:none;
}
textarea{min-height:90px; resize:vertical}
small{color:var(--muted)}

.footer{
  margin-top:20px;
  padding:18px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 12px;
  border:1px dashed #d1d5db;
  border-radius:999px;
  color:#374151;
  background:white;
  font-weight:800;
  font-size:13px;
}
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 900px){.galleryGrid{grid-template-columns:1fr}}
.ph{
  height:190px;
  border-radius:16px;
  border:1px solid var(--border);
  background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 60%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#6b7280;
  font-weight:900;
}
