:root {
  --green: #113f0e;
  --gold: #e3ae00;
  --gold-light: #e8c84a;
  --gold-dark: #b68700;
  --brown: #301f08;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-mid: #444444;
  --border: #ddd;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background: var(--white);
  color: var(--text-dark);
}

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 3px solid var(--green);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.logo img {
  height: 100px;
  width: auto;
  display: block;
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 14px;
  float: left;
}
.logo-tagline {
  font-family: 'Arial Black', 'Franklin Gothic Heavy', 'Franklin Gothic Medium', Impact, 'Haettenschweiler', sans-serif;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
  padding: 0px 40px;
  line-height: 1.2;
}
nav {
  display: left;
  align-items: center;
  gap: 10px;
}
nav a {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a.active {
  background: var(--green);
  color: var(--white);
}
nav a.cta {
  background: var(--gold);
  color: var(--white);
  border-radius: 3px;
}
nav a.cta:hover {
  background: var(--green);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO / BANNER ===== */
.hero {
  width: 100%;
  height: 480px;
  background: linear-gradient(
    rgba(17,63,14,0.55),
    rgba(17,63,14,0.55)
  ), url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1600&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.hero h1 {
  font-family: 'Arial Black', 'Franklin Gothic Heavy', 'Franklin Gothic Medium', Impact, 'Haettenschweiler', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--gold-light); }
.hero p {
  font-size: clamp(14px, 2vw, 18px);
  max-width: 640px;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); color: var(--text-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green); }

/* ===== MAIN CONTENT ===== */
main { max-width: 1100px; margin: 0 auto; padding: 60px 24px 80px; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--green);
  color: var(--white);
  padding: 40px 24px;
  text-align: center;
}
.about-strip .inner { max-width: 900px; margin: 0 auto; }
.about-strip h2 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--gold-light);
}
.about-strip p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.92;
}

/* ===== SERVICES PREVIEW ===== */
.section-title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.section-heading {
  font-family: 'Arial Black', 'Franklin Gothic Heavy', 'Franklin Gothic Medium', Impact, 'Haettenschweiler', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: var(--green);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 20px;
}
.service-card {
  background: #f7f7f7;
  border-top: 4px solid var(--green);
  padding: 28px 24px;
  border-radius: 3px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(17,63,14,0.13);
}
.service-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.service-card h3 {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-strip {
  background: #f3f9f2;
  border-left: 6px solid var(--gold);
  padding: 48px 40px;
  margin: 60px 0;
  border-radius: 0 3px 3px 0;
}
.why-strip h2 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.why-strip h3 {
  font-size: 26px;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.why-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== CTA BANNER ===== */
.cta-band {
  background: var(--brown);
  padding: 48px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 150px;
}
.cta-band h3 {
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-band p { font-size: 18px; color: rgba(255,255,255,0.85); margin-top: 6px; }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #0c2e0a; }

/* ===== LICENSED BANNER ===== */
.licensed-band {
  background: var(--gold);
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1.5px solid var(--gold-dark);
}
.licensed-band h3 {
  font-size: clamp(14px, 3vw, 28px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.licensed-medal {
  font-size: 42px;
}
.licensed-band p { font-size: 16px; color: rgba(255,255,255,0.85); margin-top: 6px; }

/* ===== FOOTER ===== */
footer {
  background: var(--green);
  color: rgba(255,255,255,0.75);
  padding: 48px 40px 24px;
}
.footer-call-us, .footer-call-us a {
  font-weight: bold;
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 12px;
  text-decoration: none;
  text-align: center;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  header { padding: 12px 20px; }
  nav { display: none; flex-direction: column; position: absolute; top: 85px; left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--green); padding: 16px 20px; gap: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  nav.open { display: flex; }
  nav a { width: 100%; }
  .hamburger { display: flex; }
  .hero { height: 380px; }
  .why-strip { padding: 32px 20px; }
  .cta-band { flex-direction: column; text-align: center; }
  footer { padding: 40px 20px 20px; }
}