:root {
  --lime: #8CC63F;
  --lime-dark: #74AA2E;
  --green: #00644F;
  --deep-green: #1D6B2F;
  --black: #111111;
  --charcoal: #181818;
  --soft-white: #F5F6F2;
  --white: #FFFFFF;
  --gray: #E6E6E6;
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--soft-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 84px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  border-bottom: 1px solid rgba(140, 198, 63, .35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-icon {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.header-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-wordmark .wm-top {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.7rem;
  letter-spacing: .03em;
}

.header-wordmark .wm-bottom {
  font-family: var(--font-body);
  color: var(--lime);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding-bottom: 4px;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--lime);
  transition: right .25s ease;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--lime);
}

.main-nav a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  background: var(--lime);
  color: var(--black) !important;
  padding: 13px 24px;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(140, 198, 63, .35);
}

.nav-toggle {
  display: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav-burger span {
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 6vw;
  min-height: 640px;
  align-items: center;
  padding: 7vw 6vw 5vw;
  background:
    radial-gradient(circle at 86% 12%, rgba(140, 198, 63, .22), transparent 26%),
    linear-gradient(90deg, var(--soft-white), var(--white));
}

.hero-copy,
.hero-logo {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--deep-green);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: .9;
  letter-spacing: .01em;
}

h1 {
  font-size: clamp(4.2rem, 9vw, 8rem);
}

h2 {
  font-size: clamp(3rem, 6vw, 5.3rem);
}

h3 {
  font-size: 1.7rem;
  letter-spacing: .02em;
}

.lead {
  max-width: 680px;
  margin: 30px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: #333;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .03em;
  font-size: .95rem;
}

.button.primary {
  background: var(--lime);
  color: var(--black);
}

.button.primary:hover {
  background: var(--lime-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(140, 198, 63, .38);
}

.button.dark {
  background: var(--black);
  color: var(--white);
}

.button.dark:hover {
  background: var(--deep-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo img {
  width: min(640px, 100%);
  filter: drop-shadow(0 16px 32px rgba(0,0,0,.16));
}

/* ---------- Wave divider (signature element) ---------- */

.wave-divider {
  line-height: 0;
  background: var(--soft-white);
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 42px;
}

.wave-divider path {
  fill: var(--black);
}

.wave-divider.flip {
  background: var(--white);
  transform: scaleX(-1);
}

/* ---------- Trust strip ---------- */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
  border-bottom: 1px solid #303030;
}

.trust-strip span {
  padding: 18px 12px;
  color: var(--white);
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .02em;
  border-right: 1px solid #303030;
}

/* ---------- Services ---------- */

.services {
  padding: 7vw 6vw;
  background: var(--green);
  color: var(--white);
}

.services .eyebrow {
  color: var(--lime);
}

.services .eyebrow::before {
  background: var(--white);
}

.services h2 {
  color: var(--lime);
  max-width: 1120px;
}

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

.service-card {
  position: relative;
  min-height: 184px;
  min-width: 0;
  background: var(--white);
  color: var(--black);
  padding: 30px 28px 28px;
  border: 1px solid rgba(255,255,255,.35);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--lime), var(--deep-green));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.service-card h3 {
  margin-bottom: 16px;
  letter-spacing: .01em;
}

.service-card p {
  margin: 0;
  line-height: 1.55;
  font-size: .98rem;
}

/* ---------- Why us ---------- */

.why {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 7vw;
  align-items: center;
  padding: 7vw 6vw;
  background: var(--white);
}

.why-image,
.why-copy {
  min-width: 0;
}

.why-image img {
  margin-top: 24px;
  width: 100%;
  max-width: 520px;
  display: block;
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(17,17,17,.14);
}

.why-copy {
  position: relative;
  padding: 0;
  background: transparent;
}

.why-copy p {
  margin: 0 0 22px;
  line-height: 1.65;
  font-size: 1.05rem;
}

.why-copy ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  font-weight: 700;
  line-height: 1.8;
}

.why-copy ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.why-copy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 16px;
  height: 16px;
  background: var(--lime);
  border-radius: 4px;
  transform: rotate(45deg);
}

/* ---------- Areas ---------- */

.areas {
  padding: 7vw 6vw;
  background: var(--black);
  color: var(--white);
}

.areas .eyebrow {
  color: var(--lime);
}

.areas .eyebrow::before {
  background: var(--lime);
}

.areas h2 {
  max-width: 980px;
}

.areas p:last-child {
  max-width: 1180px;
  margin-top: 28px;
  line-height: 1.7;
  font-size: 1.05rem;
  color: #d8d8d8;
}

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 7vw;
  align-items: center;
  padding: 7vw 6vw;
  background: var(--soft-white);
}

.contact-copy,
.text-card {
  min-width: 0;
}

.contact h2 {
  max-width: 640px;
}

.contact-copy p:last-of-type {
  max-width: 600px;
  line-height: 1.65;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.text-card {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 22px 60px rgba(17,17,17,.08);
}

.text-card h3 {
  color: var(--green);
  margin-bottom: 12px;
}

.phone {
  margin: 0 0 22px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: .01em;
}

.text-card ol {
  margin: 0 0 26px;
  padding-left: 22px;
  line-height: 1.85;
  font-weight: 700;
  font-size: .96rem;
}

.instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

.instagram:hover {
  color: var(--lime-dark);
}

/* ---------- Footer ---------- */

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 6vw;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem;
}

footer strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .02em;
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .hero,
  .why,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: unset;
  }

  .hero-logo {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .site-header {
    height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-burger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--black);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    border-bottom: 1px solid rgba(140, 198, 63, .35);
  }

  .main-nav a {
    width: 100%;
    padding: 16px 6vw;
    border-top: 1px solid #262626;
  }

  .main-nav a.nav-cta {
    margin: 14px 6vw;
    width: calc(100% - 12vw);
    text-align: center;
  }

  .nav-toggle:checked ~ .main-nav {
    max-height: 400px;
  }

  .nav-toggle:checked ~ .nav-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-burger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-icon {
    width: 44px;
    height: 44px;
  }

  .header-wordmark .wm-top {
    font-size: 1.4rem;
  }

  .hero,
  .services,
  .why,
  .areas,
  .contact {
    padding: 56px 24px;
  }

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

  .service-card {
    min-height: unset;
  }

  footer {
    flex-direction: column;
  }

  .wave-divider svg {
    height: 26px;
  }
}

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