:root {
  color-scheme: light;
  --ink: #18231c;
  --muted: #5a6b60;
  --line: #dbe5dc;
  --paper: #fbfcf8;
  --soft: #eef5ea;
  --field: #ffffff;
  --green: #277242;
  --green-dark: #12452a;
  --gold: #d7a237;
  --sky: #dbeef1;
  --shadow: 0 18px 55px rgba(22, 44, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 52px);
  background: rgba(251, 252, 248, 0.92);
  border-bottom: 1px solid rgba(219, 229, 220, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: white;
  background: var(--green-dark);
  font-weight: 900;
  letter-spacing: 0;
}

.brand strong,
.footer strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 32px);
  color: #2e4234;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a,
.text-link,
.footer-links a {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.header-call {
  padding: 0 16px;
  color: white;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(39, 114, 66, 0.22);
}

.button {
  border: 0;
  padding: 0 18px;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  color: white;
  background: var(--green);
}

.button.secondary {
  color: var(--ink);
  background: white;
}

.button.outline {
  color: var(--green-dark);
  background: transparent;
  border: 1px solid rgba(18, 69, 42, 0.28);
}

i[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2.25;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(18px, 5vw, 72px) 72px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 29, 17, 0.84) 0%, rgba(8, 29, 17, 0.58) 48%, rgba(8, 29, 17, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 29, 17, 0.52), transparent 44%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split-copy h2,
.quote-band h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.hero-phone {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  font-weight: 850;
}

.hero-phone a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: white;
}

.quick-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 78px;
  padding: 16px;
  color: #24382b;
  font-weight: 800;
  border-right: 1px solid var(--line);
  word-break: break-word;
}

.quick-contact a:last-child {
  border-right: 0;
}

.section,
.split-section,
.quote-band,
.footer {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.pain-points {
  display: grid;
  gap: 30px;
  background: white;
}

.section h2,
.split-copy h2,
.about-copy h2,
.quote-band h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
}

.work-slide {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe7dc;
}

.work-slide figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 8px;
  color: white;
  background: rgba(18, 40, 27, 0.88);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.pain-grid i {
  width: 31px;
  height: 31px;
  color: var(--green);
}

.pain-grid h3 {
  margin: 24px 0 10px;
  font-size: 1.25rem;
}

.pain-grid p {
  margin: 0;
  color: var(--muted);
}

.services {
  background: var(--soft);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 30px;
}

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

.service-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid #d3e2d1;
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 35px rgba(28, 63, 36, 0.08);
}

.service-card i {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.service-card h3 {
  margin: 28px 0 10px;
  font-size: 1.23rem;
}

.service-card p,
.quote-band p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: white;
}

.work-carousel {
  position: relative;
  min-height: 560px;
}

.carousel-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #e5ece4;
  box-shadow: var(--shadow);
}

.work-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.work-slide.active {
  opacity: 1;
  visibility: visible;
}

.work-slide img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

.work-slide figcaption {
  display: grid;
  gap: 1px;
  min-height: auto;
  padding: 10px 13px;
}

.work-slide figcaption span {
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.carousel-button {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--green-dark);
  background: white;
  box-shadow: 0 12px 30px rgba(18, 40, 27, 0.28);
  cursor: pointer;
}

.carousel-button.previous {
  left: 14px;
}

.carousel-button.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 16px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.carousel-dots button.active {
  background: white;
}

.split-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #304136;
  font-weight: 750;
}

.check-list i {
  color: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 900;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--soft);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 760px;
}

.about-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.07rem;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: var(--sky);
}

.quote-band a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #26362c;
  font-weight: 850;
}

.quote-form .full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid #bdcfc3;
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(39, 114, 66, 0.16);
}

.quote-form button {
  width: fit-content;
  min-width: 176px;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--green-dark);
  font-weight: 850;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  color: white;
  background: #13281b;
}

.footer p {
  max-width: 520px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-content: start;
  justify-content: flex-end;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .pain-points,
  .split-section,
  .about-section,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .split-copy {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .header-call span {
    display: none;
  }

  .header-call {
    width: 44px;
    padding: 0;
  }

  .hero {
    min-height: 86vh;
    padding: 126px 18px 48px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 16vw, 4.4rem);
  }

  .quick-contact {
    grid-template-columns: 1fr;
  }

  .quick-contact a {
    justify-content: flex-start;
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .pain-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 210px;
  }

  .work-carousel,
  .carousel-stage,
  .work-slide img {
    min-height: 340px;
  }

  .inline-actions .button {
    width: 100%;
  }

  .about-photo img {
    aspect-ratio: 16 / 10;
  }

  .quote-form button {
    width: 100%;
  }

  .footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
