:root {
  --green-950: #102019;
  --green-900: #182c23;
  --green-800: #1f3a2e;
  --green-700: #2f5a45;
  --green-100: #e9f1eb;
  --tan-100: #f8f3ea;
  --tan-200: #efe3d0;
  --tan-300: #dfc9a8;
  --text: #1a1d1b;
  --muted: #5f665f;
  --white: #ffffff;
  --line: rgba(31, 58, 46, 0.14);
  --shadow: 0 24px 70px rgba(16, 32, 25, 0.16);
  --radius: 22px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--tan-100);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 234, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img,
.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--white);
  padding: 4px;
  border: 1px solid var(--line);
}

.brand span {
  font-size: 1rem;
  color: var(--green-950);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav a {
  opacity: 0.86;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
  color: var(--green-700);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 58, 46, 0.16);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(47, 90, 69, 0.22), transparent 32rem),
    linear-gradient(135deg, var(--tan-100), #fffaf2 48%, var(--green-100));
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -220px 48%;
  height: 460px;
  border-radius: 50%;
  background: rgba(223, 201, 168, 0.42);
  filter: blur(8px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.75rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
}

.hero-text {
  margin-top: 24px;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 720px;
}

.hero-actions,
.cta-grid {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(31, 58, 46, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--green-700);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  border: 1px solid var(--line);
}

.btn-light {
  background: var(--white);
  color: var(--green-900);
}

.quick-points {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-points span {
  padding: 9px 12px;
  border: 1px solid rgba(47, 90, 69, 0.18);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  font-size: 0.9rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 58, 46, 0.12);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-panel {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(31, 58, 46, 0.94), rgba(47, 90, 69, 0.9)),
    var(--green-800);
}

.logo-panel img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 32px;
  background: var(--white);
  padding: 12px;
}

.hero-card-body {
  padding: 28px;
}

.hero-card-body p {
  margin-top: 12px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-700);
  font-weight: 900;
}

.trust-strip {
  background: var(--green-950);
  color: var(--white);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-grid div {
  padding: 8px 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 1.08rem;
}

.trust-grid span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

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

.section-heading p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.service-card,
.areas-card,
.placeholder-card,
.contact-form,
.contact-methods a {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(16, 32, 25, 0.06);
}

.service-card {
  padding: 26px;
}

.icon-badge {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 900;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.split-section {
  background: linear-gradient(135deg, #fffaf2, var(--green-100));
}

.split-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.split-grid p,
.about-copy p,
.contact-info p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.split-grid .btn {
  margin-top: 26px;
}

.areas-card,
.placeholder-card,
.contact-form {
  padding: 30px;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.area-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
  color: var(--green-900);
}

.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-700);
}

.small-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.placeholder-art {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 2px dashed rgba(47, 90, 69, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(31, 58, 46, 0.08), rgba(223, 201, 168, 0.18)),
    #fffaf2;
}

.placeholder-art span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 900;
  border: 1px solid var(--line);
}

.placeholder-card p {
  margin-top: 18px;
  color: var(--muted);
}

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

.cta-grid {
  justify-content: space-between;
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-methods {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.contact-methods a {
  display: block;
  padding: 18px;
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods strong {
  color: var(--green-950);
}

.contact-methods span {
  margin-top: 2px;
  color: var(--green-700);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--green-950);
  font-weight: 900;
  font-size: 0.94rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(31, 58, 46, 0.18);
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(47, 90, 69, 0.12);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-button {
  width: 100%;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--green-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 34px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px;
  }

  .hero-grid,
  .split-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section-pad {
    padding: 62px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    max-width: 190px;
    font-size: 0.94rem;
    line-height: 1.1;
  }

  .hero-actions,
  .cta-grid {
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-grid .btn {
    width: 100%;
  }

  .services-grid,
  .trust-grid,
  .footer-grid,
  .two-col,
  .area-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .areas-card,
  .placeholder-card,
  .contact-form,
  .service-card {
    padding: 22px;
  }

  .logo-panel img {
    width: 180px;
    height: 180px;
  }
}
