:root {
  --forest-900: #1b2d1f;
  --forest-800: #243e2a;
  --forest-700: #2f5135;
  --forest-500: #4a7a52;
  --moss-300:   #9cb79e;
  --bark-800:   #2a1d13;
  --bark-700:   #3a2a1f;
  --bark-500:   #6b4c35;
  --cream-100:  #efe7d3;
  --cream-50:   #f6f1e6;
  --ink-900:    #171613;
  --ink-600:    #4b4740;
  --sun-600:    #b8742a;
  --sun-500:    #d48b3a;
  --sun-400:    #e3a255;
  --rule:       #dcd1b6;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--forest-700); }
a:hover { color: var(--forest-500); }

h1, h2, h3 {
  font-family: "Rockwell", "Roboto Slab", Georgia, "Times New Roman", serif;
  color: var(--forest-900);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 .5em;
  font-weight: 900;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: .6em; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--forest-700);
  color: #fff;
  padding: 10px 14px;
  z-index: 1000;
}
.skip:focus { left: 10px; top: 10px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream-50);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand img { width: 56px; height: 56px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: "Rockwell", "Roboto Slab", Georgia, serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--forest-900);
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: .8rem;
  color: var(--bark-500);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.header-call .icon { width: 18px; height: 18px; }
@media (max-width: 520px) {
  .header-call span { display: none; }
  .header-call { padding: 10px 12px; }
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--forest-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform .05s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--forest-800); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 3px solid var(--sun-400);
  outline-offset: 2px;
}

.btn-primary {
  --btn-bg: var(--sun-500);
  --btn-fg: #1b1207;
  box-shadow: 0 2px 0 var(--sun-600);
}
.btn-primary:hover { background: var(--sun-400); color: #1b1207; }

.btn-call {
  --btn-bg: var(--forest-700);
  --btn-fg: #fff;
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--cream-50);
  border-color: var(--cream-50);
}
.btn-ghost:hover {
  background: var(--cream-50);
  color: var(--forest-900);
}

.btn-lg { padding: 14px 22px; font-size: 1.05rem; }
.btn-xl { padding: 18px 28px; font-size: 1.2rem; }

.icon { width: 20px; height: 20px; fill: currentColor; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  color: var(--cream-50);
  background:
    linear-gradient(180deg, rgba(27,45,31,.72), rgba(27,45,31,.92)),
    repeating-linear-gradient(135deg, var(--bark-800) 0 8px, var(--bark-700) 8px 16px);
  border-bottom: 4px solid var(--forest-900);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 400px at 20% 20%, rgba(156,183,158,.18), transparent 60%),
    radial-gradient(900px 300px at 80% 80%, rgba(212,139,58,.12), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 72px 20px 80px;
  text-align: left;
  max-width: 900px;
}
.hero h1 {
  color: var(--cream-50);
  text-shadow: 0 2px 0 rgba(0,0,0,.25);
}
.hero .lede {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--cream-100);
  max-width: 52ch;
  margin-bottom: 1.5em;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.5em;
}
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--cream-100);
  font-size: .95rem;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-badges li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--sun-500);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- services ---------- */
.services {
  padding: 64px 0;
  background: var(--cream-50);
}
.services h2 { margin-bottom: 28px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--forest-700);
  border-radius: 8px;
  padding: 24px 22px;
  color: var(--ink-900);
}
.card h3 { color: var(--forest-800); }
.card p { color: var(--ink-600); margin-bottom: 0; }
.card-icon {
  width: 64px;
  height: 64px;
  color: var(--forest-700);
  margin-bottom: 12px;
}

/* ---------- why ---------- */
.why {
  padding: 64px 0;
  background: var(--forest-900);
  color: var(--cream-50);
}
.why h2 { color: var(--cream-50); }
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 800px) {
  .why-list { grid-template-columns: 1fr; }
}
.why-list li {
  padding: 20px 22px;
  background: rgba(246,241,230,.05);
  border-left: 3px solid var(--sun-500);
  border-radius: 4px;
}
.why-list strong {
  display: block;
  font-family: "Rockwell", "Roboto Slab", Georgia, serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 6px;
}
.why-list span { color: var(--cream-100); }

/* ---------- service area ---------- */
.area {
  padding: 64px 0;
  background: var(--cream-100);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.area-lede {
  color: var(--bark-700);
  margin-bottom: 20px;
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px 16px;
}
.area-list li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--rule);
  color: var(--ink-900);
  font-weight: 600;
}

/* ---------- final cta ---------- */
.final-cta {
  padding: 64px 0;
  background: var(--bark-700);
  color: var(--cream-50);
  text-align: center;
}
.final-cta h2 { color: var(--cream-50); margin-bottom: 24px; }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--forest-900);
  color: var(--cream-100);
  padding: 28px 0;
  font-size: .95rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Rockwell", "Roboto Slab", Georgia, serif;
  font-weight: 900;
  color: #fff;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}
.footer-meta a {
  color: #fff;
  font-weight: 700;
}
@media (max-width: 560px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
