:root {
  --ink: #17201b;
  --muted: #5f6f66;
  --line: #d7ded8;
  --paper: #f6f4ee;
  --white: #ffffff;
  --green: #1f5a43;
  --green-dark: #123629;
  --clay: #a35235;
  --blue: #254f78;
  --gold: #b68a43;
  --shadow: 0 18px 45px rgba(18, 54, 41, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(246, 244, 238, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  text-decoration: none;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 10px;
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--green-dark);
  background: #e7eee7;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 31, 25, 0.92), rgba(15, 31, 25, 0.62) 43%, rgba(15, 31, 25, 0.22)),
    linear-gradient(0deg, rgba(15, 31, 25, 0.68), rgba(15, 31, 25, 0.04) 55%);
}

.hero-content {
  position: relative;
  max-width: 820px;
  padding: 120px clamp(18px, 6vw, 76px) 72px;
  color: var(--white);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 5vw, 4.9rem);
}

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

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.primary:hover {
  background: #88432b;
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

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

.intro-section {
  background: var(--white);
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 34px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
  font-weight: 800;
}

.service-card p,
.copy-stack p,
.two-column-detail p,
.contact-panel p,
.page-hero p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 16px;
  font-size: 1.05rem;
}

.copy-stack p {
  margin: 0;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof-item {
  display: grid;
  gap: 8px;
  min-height: 160px;
  padding: 30px;
  background: var(--green-dark);
  color: var(--white);
}

.proof-item span {
  color: rgba(255, 255, 255, 0.78);
}

.cta-section {
  justify-content: space-between;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-section > div {
  max-width: 820px;
}

.page-hero {
  padding: 92px clamp(18px, 5vw, 72px) 70px;
  background: var(--green-dark);
  color: var(--white);
}

.page-hero p {
  max-width: 780px;
  font-size: 1.12rem;
}

.page-hero .eyebrow {
  color: var(--gold);
}

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

.check-item {
  display: flex;
  gap: 10px;
  min-height: 96px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.check-item span {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  margin-top: 6px;
  background: var(--clay);
  border-radius: 3px;
}

.two-column-detail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
}

.two-column-detail article {
  padding: 28px;
  border-left: 4px solid var(--green);
  background: #f7faf7;
  border-radius: 0 8px 8px 0;
}

.process-section {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  min-height: 190px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 8px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  background: var(--white);
}

.contact-panel {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-panel h2 {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.contact-panel a {
  color: var(--green-dark);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: #101815;
}

.site-footer div,
.site-footer span {
  display: block;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .three-column,
  .proof-band,
  .check-grid,
  .steps,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .two-column-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    flex: 1 1 44%;
    text-align: center;
    background: #edf1ec;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(15, 31, 25, 0.9), rgba(15, 31, 25, 0.45)),
      linear-gradient(90deg, rgba(15, 31, 25, 0.78), rgba(15, 31, 25, 0.2));
  }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 44px;
  }

  .hero-actions,
  .cta-section {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .page-hero {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .three-column,
  .proof-band,
  .check-grid,
  .steps,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 128px;
  }

  .service-card,
  .steps li,
  .contact-panel {
    min-height: auto;
  }

  .card-icon,
  .steps li::before {
    margin-bottom: 22px;
  }
}
