:root {
  --ink: #191817;
  --muted-ink: #5d5a55;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #ded9d0;
  --teal: #1f766f;
  --teal-dark: #14524d;
  --amber: #c9822a;
  --clay: #8b5144;
  --shadow: 0 18px 60px rgba(38, 35, 31, 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;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 750;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 650;
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
  place-items: center start;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 38%, rgba(0, 0, 0, 0.12) 78%),
    linear-gradient(0deg, rgba(25, 24, 23, 0.72), rgba(25, 24, 23, 0.08) 44%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 88px);
  padding-top: 72px;
}

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

.hero .eyebrow {
  color: #f2bd78;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

p {
  color: var(--muted-ink);
  font-size: 17px;
  line-height: 1.6;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 760;
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

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

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.button.dark {
  background: var(--ink);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.proof-strip div {
  min-height: 124px;
  padding: 28px clamp(20px, 4vw, 48px);
  background: var(--panel);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-strip span {
  color: var(--muted-ink);
  line-height: 1.5;
}

.section {
  padding: clamp(72px, 9vw, 120px) clamp(20px, 6vw, 88px);
}

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

.section-heading h2 {
  margin-bottom: 0;
}

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

.feature-grid article,
.offer-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.feature-grid p,
.offer-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.muted {
  background: #f1eee8;
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  min-height: 190px;
}

.offer-card.featured {
  border-color: rgba(31, 118, 111, 0.38);
  box-shadow: var(--shadow);
}

.scope-note {
  max-width: 840px;
  margin: 24px 0 0;
  color: var(--ink);
  font-weight: 650;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: center;
}

.split p {
  max-width: 760px;
}

.fit-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  background: var(--panel);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  font-weight: 700;
}

.process {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.steps li {
  padding-top: 4px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--clay);
  border-radius: 8px;
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
}

.contact-band {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  padding: clamp(54px, 8vw, 88px) clamp(20px, 6vw, 88px);
  color: #fff;
  background: var(--teal);
}

.contact-band .eyebrow,
.contact-band p,
.contact-band h2 {
  color: #fff;
}

.contact-band h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted-ink);
  font-size: 14px;
}

.footer span {
  color: var(--ink);
  font-weight: 800;
}

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

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.42)),
      linear-gradient(0deg, rgba(25, 24, 23, 0.78), rgba(25, 24, 23, 0.18));
  }

  .proof-strip,
  .feature-grid,
  .offer-grid,
  .split,
  .steps,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    display: grid;
  }

  .contact-band {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 84px;
  }

  h1 {
    font-size: 43px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer {
    display: grid;
  }
}
