:root {
  --ink: #18211f;
  --muted: #65706d;
  --paper: #faf9f5;
  --white: #ffffff;
  --soft: #f0f4f1;
  --line: #dfe5e1;
  --green: #1f655f;
  --green-dark: #143f3b;
  --accent: #b96a55;
  --max: 1120px;
}

* {
  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.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 48px);
  background: rgba(250, 249, 245, 0.94);
  border-bottom: 1px solid rgba(223, 229, 225, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--green-dark);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.brand-text {
  font-size: 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a,
.header-link,
.site-footer a {
  text-decoration: none;
}

.nav a:hover,
.header-link:hover,
.site-footer a:hover {
  color: var(--green);
}

.header-link {
  color: var(--green-dark);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 56px);
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(250, 249, 245, 0.98) 0%, rgba(250, 249, 245, 0.88) 42%, rgba(250, 249, 245, 0.35) 100%),
    linear-gradient(180deg, rgba(250, 249, 245, 0.1), rgba(250, 249, 245, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  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;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 6vw, 5.35rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #3c4744;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

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

.button-secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: var(--green);
}

.section {
  padding: clamp(58px, 9vw, 104px) clamp(20px, 5vw, 56px);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.split,
.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.split > p,
.approach-copy p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.support-section,
.fit-section {
  background: var(--white);
}

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

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

.service-card {
  min-height: 240px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.card-number {
  display: block;
  margin-bottom: 32px;
  color: var(--green);
  font-weight: 900;
}

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

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

.approach-section .section-kicker {
  color: #e7b2a4;
}

.approach-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.75);
}

.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step span {
  color: #e7b2a4;
  font-weight: 900;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.fit-grid p {
  min-height: 150px;
  margin: 0;
  padding: 24px;
  display: flex;
  align-items: flex-end;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #303a38;
  font-weight: 750;
}

.contact-section {
  padding: clamp(58px, 9vw, 104px) clamp(20px, 5vw, 56px);
  background: var(--soft);
}

.contact-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-panel p {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel .button {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 56px);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

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

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(250, 249, 245, 0.98), rgba(250, 249, 245, 0.78)),
      linear-gradient(180deg, rgba(250, 249, 245, 0.2), rgba(250, 249, 245, 0.96));
  }

  .split,
  .approach-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    padding-inline: 16px;
  }

  .brand-text {
    display: none;
  }

  .header-link {
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding: 72px 18px 62px;
  }

  .hero-image {
    opacity: 0.28;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .service-card,
  .fit-grid p {
    min-height: auto;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    flex-direction: column;
  }
}
