:root {
  color-scheme: light;
  --ink: #14201d;
  --ink-soft: #35453f;
  --paper: #fbfaf7;
  --mist: #edf2ee;
  --line: #d8dfd9;
  --forest: #102421;
  --teal: #0f766e;
  --copper: #b45736;
  --gold: #d1a348;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 36, 33, 0.18);
  --max: 1180px;
}

* {
  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 {
  max-width: 100%;
  display: block;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(216, 223, 217, 0.75);
  backdrop-filter: blur(16px);
}

.brand {
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--forest);
}

.nav-cta {
  padding: 9px 14px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 999px;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 28%, rgba(34, 90, 106, 0.48), transparent 30%),
    linear-gradient(115deg, #0b2929 0%, #0d3340 60%, #092a38 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  right: -34px;
  bottom: 0;
  max-width: none;
  width: min(43vw, 620px);
  height: 100%;
  object-fit: cover;
  object-position: 58% 39%;
  opacity: 0.9;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.78) 38%, #000 58%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.78) 38%, #000 58%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 36, 33, 0.98) 0%, rgba(16, 36, 33, 0.94) 46%, rgba(16, 36, 33, 0.48) 58%, rgba(16, 36, 33, 0.14) 70%, rgba(16, 36, 33, 0.03) 100%),
    linear-gradient(0deg, rgba(16, 36, 33, 0.8) 0%, rgba(16, 36, 33, 0.12) 48%, rgba(16, 36, 33, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 108px) 0 clamp(42px, 7vw, 86px);
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  margin-top: 14px;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--white);
}

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

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

.button.text {
  color: var(--forest);
  background: transparent;
  border: 1px solid var(--line);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 790px;
  margin: clamp(32px, 5vw, 58px) 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(16, 36, 33, 0.28);
}

.hero-facts dt {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--white);
  font-size: clamp(0.94rem, 1.05vw, 1.08rem);
  font-weight: 780;
}

.section,
.intro-band,
.split-band,
.process-band,
.cta-section {
  padding: clamp(64px, 8vw, 104px) 0;
}

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

.intro-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.seller-grid,
.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

h2 {
  max-width: 820px;
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro-grid > p,
.seller-copy,
.section-heading > p {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-heading > p {
  margin-top: 18px;
}

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

.criterion {
  display: flex;
  flex-direction: column;
  min-height: 275px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 36, 33, 0.06);
}

.criterion span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--copper);
  font-size: 1.06rem;
  font-weight: 850;
  line-height: 1;
}

.criterion h3,
.timeline h3,
.process-list h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.15;
}

.criterion p,
.timeline p,
.process-list p,
.seller-copy p,
.cta-inner p {
  color: var(--ink-soft);
}

.split-band {
  background: var(--mist);
}

.timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.timeline article {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--paper);
}

.timeline-logo {
  display: grid;
  place-items: center;
  width: 96px;
  min-height: 54px;
}

.timeline-logo img {
  width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.timeline-logo.mark img {
  width: 64px;
  max-height: 62px;
}

.timeline-logo.wordmark {
  width: 100px;
}

.timeline-logo.marsh-logo img {
  width: 88px;
  max-height: 54px;
}

.seller-section {
  background: var(--paper);
}

.seller-copy {
  display: grid;
  gap: 18px;
}

.process-band {
  color: var(--white);
  background: var(--forest);
}

.process-band .section-kicker {
  color: #79d7c6;
}

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

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--forest);
  font-weight: 850;
  background: #79d7c6;
  border-radius: 999px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.74);
}

.cta-section {
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.14), rgba(180, 87, 54, 0.12)),
    var(--white);
}

.cta-inner {
  max-width: 860px;
  text-align: center;
}

.cta-inner .section-kicker {
  color: var(--copper);
}

.cta-inner h2 {
  margin-right: auto;
  margin-left: auto;
}

.cta-phone {
  display: inline-flex;
  margin-top: 10px;
  color: var(--forest);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
}

.cta-inner p {
  max-width: 610px;
  margin: 18px auto 0;
  font-size: 1.12rem;
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  padding: 28px clamp(20px, 4vw, 56px);
  color: var(--ink-soft);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

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

  .hero {
    min-height: 84svh;
  }

  .hero-image {
    top: 0;
    right: -28vw;
    width: min(86vw, 660px);
    height: 100%;
    object-position: 50% 32%;
    opacity: 0.56;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(16, 36, 33, 0.98) 0%, rgba(16, 36, 33, 0.9) 42%, rgba(16, 36, 33, 0.2) 100%),
      linear-gradient(90deg, rgba(16, 36, 33, 0.92), rgba(16, 36, 33, 0.2));
  }

  .hero-content {
    padding-bottom: 32px;
  }

  .hero h1 {
    max-width: min(680px, 62vw);
  }

  .hero-copy {
    max-width: min(620px, 58vw);
  }

  .hero-facts,
  .criteria-grid,
  .process-list,
  .intro-grid,
  .seller-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .criteria-grid {
    gap: 12px;
  }

  .criterion {
    min-height: 0;
  }

  .criterion span {
    margin-bottom: 28px;
  }

  .timeline article {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 18px;
  }

  .timeline-logo {
    width: 76px;
    min-height: 54px;
  }

  .timeline-logo.mark img {
    width: 56px;
    max-height: 54px;
  }

  .timeline-logo.wordmark {
    width: 76px;
  }

  .timeline-logo.marsh-logo img {
    width: 70px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.92rem;
  }

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

  .hero {
    min-height: calc(100svh - 64px);
    align-items: end;
  }

  .hero-image {
    top: 0;
    right: -42vw;
    bottom: 0;
    width: 118vw;
    height: 100%;
    object-position: 54% 28%;
    opacity: 0.5;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 17%, rgba(0, 0, 0, 0.7) 46%, #000 70%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.04) 17%, rgba(0, 0, 0, 0.7) 46%, #000 70%);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(16, 36, 33, 0.98) 0%, rgba(16, 36, 33, 0.94) 48%, rgba(16, 36, 33, 0.62) 76%, rgba(16, 36, 33, 0.2) 100%),
      linear-gradient(0deg, rgba(16, 36, 33, 0.97) 0%, rgba(16, 36, 33, 0.82) 54%, rgba(16, 36, 33, 0.32) 100%);
  }

  .hero-content {
    padding-top: clamp(56px, 11svh, 86px);
    padding-bottom: 28px;
  }

  .hero h1,
  .hero-copy,
  .hero-facts {
    max-width: none;
  }

  .hero-content,
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero h1 {
    max-width: 11.5ch;
    font-size: clamp(2.05rem, 10.6vw, 2.72rem);
    line-height: 1;
  }

  .hero-copy {
    max-width: 31ch;
    margin-top: 18px;
    font-size: 0.96rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-facts div {
    padding: 14px;
  }

  .timeline article {
    grid-template-columns: 1fr;
  }

  .section,
  .intro-band,
  .split-band,
  .process-band,
  .cta-section {
    padding: 54px 0;
  }

  h2 {
    font-size: clamp(1.82rem, 10vw, 2.65rem);
  }

  .site-footer {
    display: grid;
    padding: 24px 16px;
  }
}
