:root {
  --bg: #f4efe4;
  --panel: rgba(255, 252, 246, 0.88);
  --ink: #162018;
  --muted: #596458;
  --brand: #245c35;
  --brand-2: #97bc62;
  --line: rgba(22, 32, 24, 0.1);
  --shadow: 0 20px 40px rgba(28, 35, 27, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(151, 188, 98, 0.35), transparent 24%),
    radial-gradient(circle at right center, rgba(214, 138, 60, 0.16), transparent 24%),
    linear-gradient(180deg, #f9f5ed, var(--bg));
}
a { color: inherit; }
.site-shell { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.topbar { padding: 18px 0 10px; color: var(--muted); font-size: 14px; }
.topbar-inner, .contact-line, .hero-actions, .nav-links, .grid { display: flex; gap: 12px; flex-wrap: wrap; }
.topbar-inner { justify-content: space-between; }
.nav-wrap { position: sticky; top: 0; z-index: 30; backdrop-filter: blur(12px); }
.nav {
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(145deg, var(--brand), #183d24);
  color: #f6f1e7; display: grid; place-items: center; font-weight: 700;
}
.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: block;
  flex: 0 0 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(15, 30, 18, 0.18));
}
.brand-text strong, .brand-text span { display: block; }
.brand-text span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 700; color: var(--muted); }
.nav-links a.current, .nav-links a:hover { color: var(--brand); }
.cta {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px;
  text-decoration: none; font-weight: 700; padding: 13px 18px;
}
.cta-primary { background: var(--brand); color: #f6f1e7; }
.cta-secondary { background: rgba(255, 250, 241, 0.8); color: var(--ink); border: 1px solid var(--line); }
.hero { padding: 42px 0 24px; }
.hero-card {
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(18, 29, 21, 0.98), rgba(36, 92, 53, 0.88));
  color: #f8f3e8; padding: 44px; box-shadow: var(--shadow);
}
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; color: #dce8c9; }
h1, h2, h3 { margin: 0; line-height: 1; }
h1 { font-size: clamp(40px, 7vw, 76px); max-width: 10ch; }
.hero-copy { font-size: 19px; line-height: 1.65; max-width: 720px; margin-top: 18px; color: #edf3eb; }
.section { padding: 18px 0 8px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.panel, .service-card, .quote-box, .stat {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px;
}
.service-card a { text-decoration: none; font-weight: 700; color: var(--brand); }
.quote-box { background: linear-gradient(180deg, #fffaf1, rgba(232, 221, 199, 0.7)); }
.panel h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.panel h3, .service-card h3, .quote-box h3 { font-size: 22px; margin-bottom: 10px; }
.panel p, .panel li, .service-card p, .quote-box p, .stat span { color: var(--muted); font-size: 17px; line-height: 1.7; }
.panel ul, .panel ol { margin: 0; padding-left: 20px; }
.stat strong { display: block; font-size: 38px; color: var(--brand); margin-bottom: 8px; }
.footer { padding: 26px 0 50px; color: var(--muted); }
.footer-card { border-radius: 28px; background: #152119; color: #ecf2ea; padding: 28px; box-shadow: var(--shadow); }
.footer-card p, .footer-card a { color: #d7e0d4; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-card {
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,252,246,0.18), rgba(255,252,246,0.84)),
    linear-gradient(135deg, rgba(151,188,98,0.34), rgba(36,92,53,0.14));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.gallery-card strong { display: block; margin-bottom: 8px; font-size: 24px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,252,246,0.82);
  box-shadow: var(--shadow);
}
.review-card strong { display: block; margin-bottom: 10px; color: var(--brand); }
.faq-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 0;
  padding-top: 4px;
}
.faq-item h3 {
  margin-bottom: 10px;
}
.list-tight {
  margin: 0;
  padding-left: 20px;
}
.list-tight li {
  margin-bottom: 8px;
}
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mini-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.quote-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,252,246,0.95);
  color: var(--ink);
  font: inherit;
}
.quote-form textarea {
  min-height: 130px;
  resize: vertical;
}
.quote-form .full {
  grid-column: 1 / -1;
}
.notice {
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(151, 188, 98, 0.2);
  border: 1px solid rgba(36, 92, 53, 0.18);
  color: var(--ink);
}
.publish-list a { color: var(--brand); }
@media (max-width: 920px) {
  .grid-2, .grid-3, .gallery-grid, .review-grid, .form-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 32px 24px; }
}
@media (max-width: 640px) {
  .site-shell { width: min(100% - 20px, 1160px); }
  .topbar-inner, .nav { flex-direction: column; align-items: flex-start; }
}
