body { font-family: system-ui, Arial, sans-serif; margin: 0; }
:root{
  --brand: #4b7f52;          /* deep green */
  --brand-2: #2e5c34;        /* darker accent */
  --accent: #c9a26b;         /* warm wood tone */
  --ink: #1e293b;            /* slate text */
  --muted: #6b7280;          /* secondary text */
  --bg: #f8fafc;             /* near-white */
}

body { color: var(--ink); background: var(--bg); }

a { color: var(--brand); }
a:hover { color: var(--brand-2); }

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-brand:hover { background: var(--brand-2); border-color: var(--brand-2); }

.section { padding: 3rem 0; }
.section-tight { padding: 1.5rem 0; }
.container-narrow { max-width: 880px; }

.card-hover { transition: transform .15s ease, box-shadow .15s ease; }
.card-hover:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }

/* navbar tweak so active link stands out */
.nav-link.active { color: var(--brand-2) !important; font-weight: 600; }

.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(75,127,82,.12); /* brand-tinted bubble */
  font-size: 26px;
}

.testimonial {
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.kicker {
  letter-spacing: .06em; text-transform: uppercase; font-size: .85rem; color: var(--muted);
}
#price { line-height: 1.1; }
#summary { min-height: 2.2rem; }
.card-price { font-weight: 600; }
#customizer .form-check + .form-check { margin-top: .25rem; }
#premadeGrid .card-img-top { object-fit: cover; height: 220px; }
/* Ensure card images crop nicely on varying aspect ratios */
.card-img-top {
  object-fit: cover;
}

/* Optional fixed height for grid images (tweak to your images) */
#premadeGrid .card-img-top {
  height: 220px;
}

/* Consistent vertical rhythm for sections and a narrower content width when desired */
.section { margin-top: 2rem; margin-bottom: 2rem; }
.container-narrow { max-width: 720px; }
