:root {
  --forest: #1a3c34;
  --sage: #e8efe9;
  --gold: #b8860b;
  --white: #fff;
  --text: #2d3d38;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Work Sans', sans-serif;
  background: var(--sage);
  color: var(--text);
  line-height: 1.6;
}
h1, h2, h3, .dash-brand { font-family: 'Fraunces', serif; }
a { color: inherit; text-decoration: none; }

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px clamp(20px, 4vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
}
.dash-brand { font-size: 1.3rem; color: var(--forest); }
.dash-brand span { font-weight: 400; opacity: 0.7; }
.dash-cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 20px;
  border: 2px solid var(--forest);
  border-radius: 6px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px) 64px;
}
.cell {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(26,60,52,0.08);
}
.cell-hero {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--forest);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cell-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.cell-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.15; margin-bottom: 12px; }
.cell-hero > p { opacity: 0.85; margin-bottom: 24px; max-width: 400px; font-size: 0.95rem; }
.btn-forest {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  width: fit-content;
}

.cell-metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.metric-val {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--forest);
  font-weight: 700;
}
.metric-desc { font-size: 0.8rem; margin-top: 4px; opacity: 0.7; }

.cell-chart {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--forest), #2d5a4e);
  color: var(--white);
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  margin-bottom: 12px;
}
.chart-bars span {
  flex: 1;
  height: var(--h);
  background: rgba(255,255,255,0.35);
  border-radius: 4px 4px 0 0;
}
.cell-chart p { font-size: 0.75rem; opacity: 0.7; }

.cell-services { grid-column: span 3; }
.cell-services h2 { font-size: 1.3rem; margin-bottom: 20px; color: var(--forest); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar-grid h3 { font-size: 1rem; margin-bottom: 6px; color: var(--forest); }
.pillar-grid p { font-size: 0.85rem; opacity: 0.8; }

.cell-trust {
  grid-column: span 1;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.cell-lead { grid-column: span 4; }
.cell-lead h2 { margin-bottom: 16px; font-size: 1.2rem; }
.cell-lead form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
}
.cell-lead input {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font: inherit;
}
.cell-lead button {
  padding: 12px 24px;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .cell-hero, .cell-chart, .cell-services, .cell-trust, .cell-lead { grid-column: span 1; }
  .pillar-grid { grid-template-columns: 1fr; }
  .cell-lead form { grid-template-columns: 1fr; }
}
