
:root {
  --green: #254b35;
  --green-dark: #15251b;
  --green-light: #e6eee8;
  --tan: #c5a36a;
  --cream: #f6f2e9;
  --white: #ffffff;
  --text: #1f2923;
  --muted: #67726b;
  --border: #dfe4e0;
  --shadow: 0 18px 50px rgba(18, 37, 27, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20,45,30,.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Oswald", sans-serif;
  letter-spacing: .055em;
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  margin-top: 5px;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .93rem;
  font-weight: 600;
}

.nav a { transition: .2s; }
.nav a:hover { color: var(--green); }

.nav-phone {
  padding: 12px 17px;
  border-radius: 10px;
  color: white !important;
  background: var(--green);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-btn span {
  width: 25px;
  height: 2px;
  display: block;
  background: var(--green-dark);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17,32,23,.96) 0%, rgba(17,32,23,.86) 48%, rgba(17,32,23,.48) 100%),
    url("https://images.unsplash.com/photo-1621955964441-c173e01c135b?auto=format&fit=crop&w=2000&q=85") center/cover;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, transparent 0%, rgba(0,0,0,.08) 55%, rgba(0,0,0,.23) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .72fr;
  gap: 64px;
  align-items: center;
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d5c195;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.eyebrow.dark { color: var(--green); }

.hero h1,
.section h2,
.cta-band h2 {
  font-family: "Oswald", sans-serif;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -.02em;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
}

.hero h1 span { color: #d4b47a; }

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 28px rgba(18,60,38,.22);
}

.hero .btn-primary { background: #bd985c; color: #172019; }
.btn-secondary { border: 1px solid rgba(255,255,255,.35); color: white; background: rgba(255,255,255,.08); }
.btn-light { color: var(--green-dark); background: #fff; }
.full { width: 100%; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 27px;
  color: rgba(255,255,255,.74);
  font-size: .86rem;
}

.hero-card {
  padding: 31px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
}

.hero-card h2 {
  margin: 2px 0 10px;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
}

.hero-card p { color: rgba(255,255,255,.76); }
.card-kicker {
  margin: 0 !important;
  color: #dbc490 !important;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.mini-form {
  display: grid;
  gap: 11px;
  margin-top: 20px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  padding: 14px 14px;
  color: var(--text);
  background: #fff;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37,75,53,.1);
}

.quick-strip {
  background: var(--cream);
  border-bottom: 1px solid #e8e0d2;
}

.quick-grid {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-right: 1px solid #e0d7c7;
}

.quick-grid > div:last-child { border-right: 0; }
.quick-grid strong { font-family: "Oswald", sans-serif; letter-spacing: .09em; color: var(--green-dark); }
.quick-grid span { margin-top: 2px; color: var(--muted); font-size: .85rem; }

.section { padding: 95px 0; }

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading h2,
.area-grid h2,
.quote-grid h2,
.dark-section h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 270px;
  padding: 27px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  transition: .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-icon { font-size: 2rem; }
.service-card h3 { margin: 20px 0 9px; font-size: 1.14rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .93rem; }

.highlight-card {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}

.highlight-card p { color: rgba(255,255,255,.73); }
.highlight-card a {
  display: inline-block;
  margin-top: 20px;
  color: #ddc490;
  font-weight: 800;
  font-size: .9rem;
}

.dark-section {
  color: white;
  background: var(--green-dark);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.large-copy {
  max-width: 660px;
  font-size: 1.08rem;
  color: rgba(255,255,255,.72);
  margin: 22px 0 28px;
}

.benefit-list { border-top: 1px solid rgba(255,255,255,.14); }

.benefit {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.benefit > span {
  color: #d7be8b;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
}

.benefit h3 { margin: 0 0 6px; }
.benefit p { margin: 0; color: rgba(255,255,255,.63); font-size: .92rem; }

.process-section { background: #fbfcfb; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  padding-top: 26px;
  border-top: 3px solid var(--green);
}

.step > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 18px;
  background: var(--green-light);
  color: var(--green);
  font-weight: 900;
}

.step h3 { margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); font-size: .93rem; }

.area-section { background: var(--cream); }

.area-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
}

.area-grid > div > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 650px;
}

.county-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.county-grid div {
  padding: 17px;
  border-radius: 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid #e5dccd;
}

.county-grid strong { display: block; color: var(--green-dark); }
.county-grid span { display: block; color: var(--muted); font-size: .84rem; margin-top: 3px; }

.service-map {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.map-inner {
  position: relative;
  width: min(390px, 90%);
  aspect-ratio: 1;
  border-radius: 48% 52% 42% 58% / 57% 41% 59% 43%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(135deg, #d3dccf, #acbba8);
  box-shadow: inset 0 0 0 1px rgba(21,37,27,.08), 0 25px 50px rgba(36,55,42,.12);
}

.map-inner::before,
.map-inner::after {
  content: "";
  position: absolute;
  inset: 14% 12%;
  border-radius: inherit;
  border: 1px dashed rgba(37,75,53,.25);
  transform: rotate(12deg);
}

.map-inner::after {
  inset: 24% 17%;
  transform: rotate(-15deg);
}

.map-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
  z-index: 3;
}

.d1 { top: 23%; left: 53%; }
.d2 { top: 44%; left: 35%; }
.d3 { top: 57%; left: 63%; }
.d4 { top: 70%; left: 43%; }

.map-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%,-50%);
  text-align: center;
  color: var(--green-dark);
  font-size: .78rem;
  letter-spacing: .12em;
}

.map-label strong {
  display: block;
  margin-top: 5px;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
}

.cta-band {
  padding: 58px 0;
  background: var(--green);
  color: white;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.quote-section { background: #fff; }

.quote-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.light-text { color: var(--muted); }

.contact-box {
  display: grid;
  gap: 11px;
  margin-top: 28px;
  padding: 23px;
  border-radius: 14px;
  background: var(--cream);
}

.contact-box a, .contact-box span { font-size: .92rem; }

.quote-form {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.quote-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 800;
}

.quote-form label input,
.quote-form label textarea,
.quote-form label select { margin-top: 7px; font-weight: 400; }

.checkbox {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
}

.checkbox input {
  width: 17px;
  height: 17px;
  margin-top: 3px !important;
}

.checkbox span { color: var(--muted); font-weight: 500; }
.form-note { display: block; text-align: center; margin-top: 10px; color: var(--muted); }

footer {
  padding: 65px 0 28px;
  background: #101b14;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
}

.footer-brand { margin-bottom: 17px; }
.footer-brand .brand-mark { background: #d1b072; color: #15251b; }
.footer-brand .brand-text small { color: rgba(255,255,255,.55); }

.footer-grid p {
  max-width: 440px;
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid > div:not(:first-child) strong {
  margin-bottom: 5px;
  font-size: .88rem;
  color: #dcc28e;
}

.footer-grid > div:not(:first-child) a {
  color: rgba(255,255,255,.66);
  font-size: .88rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.42);
  font-size: .76rem;
}

.mobile-call { display: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .nav.open {
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    display: grid;
    padding: 20px;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .menu-btn { display: block; }
  .hero-grid, .split, .area-grid, .quote-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .hero-card { max-width: 600px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  body { padding-bottom: 64px; }
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 72px; }
  .nav.open { top: 71px; }

  .hero {
    min-height: auto;
    background:
      linear-gradient(rgba(15,31,21,.88), rgba(15,31,21,.93)),
      url("https://images.unsplash.com/photo-1621955964441-c173e01c135b?auto=format&fit=crop&w=1200&q=80") center/cover;
  }

  .hero-grid { padding: 68px 0; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.4rem); }
  .hero-actions .btn { width: 100%; }
  .trust-row { display: grid; gap: 7px; }

  .quick-grid { grid-template-columns: 1fr 1fr; }
  .quick-grid > div:nth-child(2) { border-right: 0; }
  .quick-grid > div:nth-child(-n+2) { border-bottom: 1px solid #e0d7c7; }

  .section { padding: 72px 0; }
  .service-grid, .steps, .county-grid, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .split, .area-grid, .quote-grid { gap: 45px; }

  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .cta-band .btn { width: 100%; }

  .quote-form { padding: 21px; }
  .footer-grid { gap: 34px; }
  .footer-bottom { flex-direction: column; }

  .mobile-call {
    position: fixed;
    z-index: 1200;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    text-align: center;
    background: #c39d61;
    color: #15251b;
    font-weight: 900;
    box-shadow: 0 -7px 18px rgba(0,0,0,.12);
  }
}


.brand-logo {
  display: block;
  width: 190px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}
.footer-logo {
  width: 210px;
  max-height: 86px;
  background: #fff;
  padding: 8px 10px;
  border-radius: 10px;
}
@media (max-width: 700px) {
  .brand-logo { width: 155px; max-height: 50px; }
  .footer-logo { width: 185px; max-height: 78px; }
}
