/* ===== Design tokens ===== */
:root {
  --green-900: #1c3a23;
  --green-800: #244d2e;
  --green-700: #2f6b3c;
  --green-600: #3a8049;
  --green-500: #4a9d5b;
  --gold: #f2b50d;
  --gold-dark: #d99e00;
  --ink: #1a1f1c;
  --body: #36413a;
  --muted: #6b7770;
  --line: #dfe6e0;
  --bg: #ffffff;
  --bg-alt: #f3f6f3;
  --bg-dark: #1c3a23;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(28, 58, 35, 0.08);
  --shadow-lg: 0 20px 50px rgba(28, 58, 35, 0.16);
  --maxw: 1120px;
  --font-head: "Oswald", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-head); color: var(--ink); line-height: 1.1; margin: 0 0 .5em; letter-spacing: .2px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--green-900); box-shadow: 0 8px 20px rgba(242, 181, 13, .35); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; color: var(--green-800); }
.brand:hover { text-decoration: none; }
.brand-logo { height: 64px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { font-family: var(--font-head); font-weight: 500; color: var(--ink); letter-spacing: .3px; }
.main-nav a:hover { color: var(--green-700); text-decoration: none; }
.nav-cta { background: var(--green-700); color: #fff !important; padding: 9px 20px; border-radius: 999px; }
.nav-cta:hover { background: var(--green-800); }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(28,58,35,.94), rgba(47,107,60,.86)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 59h60M30 0v60' stroke='%23ffffff' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E");
  background-size: cover, 60px 60px;
  padding: 96px 0 88px;
}
.hero-inner { display: flex; align-items: center; gap: 56px; }
.hero-content { flex: 1 1 560px; max-width: 660px; }
.hero-badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.hero-badge img {
  width: 360px;
  max-width: 36vw;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 14px;
}
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
.hero .lede { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 600px; }
.hero .lede strong { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 24px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; padding: 0; margin: 0; }
.hero-points li { position: relative; padding-left: 26px; font-weight: 600; color: rgba(255,255,255,.95); }
.hero-points li::before {
  content: "✓";
  position: absolute; left: 0; top: -1px;
  color: var(--green-900);
  background: var(--gold);
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: .7rem; font-weight: 700;
}

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-500); }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { font-size: 1.2rem; }
.card p { color: var(--muted); margin: 0; }

/* ===== Brands ===== */
.brand-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.brand-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 16px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--green-800);
  letter-spacing: .3px;
}

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.about-grid h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.about-grid p { font-size: 1.05rem; margin-bottom: 1em; }
.about-grid .btn { margin-top: 10px; }
.about-highlights { display: grid; gap: 16px; }
.stat {
  background: var(--green-700);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}
.stat strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold); line-height: 1; }
.stat span { color: rgba(255,255,255,.9); }

/* ===== Contact ===== */
.section-contact { background: var(--bg-dark); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.contact-info > p { color: rgba(255,255,255,.85); font-size: 1.08rem; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 18px; }
.contact-list li { display: grid; gap: 2px; }
.ci-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px; font-size: .72rem; color: var(--gold); }
.contact-list a, .contact-list span:not(.ci-label) { color: #fff; font-size: 1.05rem; }
.contact-list a:hover { color: var(--gold); }

/* ===== Form ===== */
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  color: var(--body);
}
.field { margin-bottom: 18px; display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--ink); letter-spacing: .3px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdfb;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(58, 128, 73, .15);
}
.field textarea { resize: vertical; }
.checkbox-field { margin-bottom: 22px; }
.checkbox { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); cursor: pointer; }
.checkbox input { width: auto; }
.form-note { text-align: center; color: var(--muted); font-size: .85rem; margin: 14px 0 0; }
.hidden-field { display: none; }

/* ===== Map ===== */
.map-card {
  margin-top: 48px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-card iframe { display: block; width: 100%; }
.map-directions {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 16px;
  color: var(--green-800);
  background: var(--gold);
}
.map-directions:hover { background: var(--gold-dark); text-decoration: none; }

/* ===== Footer ===== */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.8); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-inner p { margin: 0; font-size: .92rem; }
.footer-tag { font-family: var(--font-head); letter-spacing: .5px; color: var(--gold); }

/* ===== Thank-you page ===== */
.thanks-wrap { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 24px; }
.thanks-card { max-width: 520px; }
.thanks-check {
  width: 80px; height: 80px; margin: 0 auto 24px;
  background: var(--green-700); color: var(--gold);
  border-radius: 50%; display: grid; place-items: center; font-size: 2.4rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-inner { flex-direction: column-reverse; gap: 28px; }
  .hero-content { flex-basis: auto; max-width: 100%; }
  .hero-badge img { width: 240px; max-width: 62vw; }
}
@media (max-width: 600px) {
  .header-inner { height: 68px; }
  .brand-logo { height: 48px; }
  .main-nav { gap: 16px; }
  .main-nav a:not(.nav-cta) { display: none; }
  .cards, .brand-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
