:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #53605a;
  --paper: #f5f6f3;
  --white: #ffffff;
  --green: #174c3c;
  --saffron: #d67a27;
  --line: #d8ddd9;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  height: 36px;
  justify-content: center;
  position: relative;
  width: 36px;
}

.brand-mark::after {
  background: var(--saffron);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.status {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-size: 13px;
  gap: 8px;
}

.status i {
  background: #2e845f;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.hero {
  align-items: center;
  background-color: #dad7d0;
  background-image: url("/assets/legal-workspace.webp");
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: calc(100svh - 132px);
  padding: 64px clamp(24px, 8vw, 132px);
  position: relative;
}

.hero::before {
  background: rgba(245, 246, 243, 0.42);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  max-width: 670px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 750;
  margin: 0 0 20px;
  text-transform: uppercase;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
}

.lead {
  color: #29332f;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  margin: 30px 0 0;
  max-width: 610px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
}

.primary-action {
  align-items: center;
  background: var(--green);
  color: var(--white);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 24px;
  min-height: 50px;
  padding: 0 20px;
  text-decoration: none;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: #103d30;
}

.launch-note {
  color: #35413c;
  font-size: 14px;
  font-weight: 650;
}

.image-credit {
  bottom: 24px;
  color: #3e4944;
  font-size: 12px;
  margin: 0;
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  z-index: 1;
}

.capabilities {
  background: var(--paper);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  padding: 52px clamp(24px, 8vw, 132px);
}

.capabilities > div {
  border-left: 1px solid var(--line);
  padding: 0 36px;
}

.capabilities > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.capabilities span {
  color: var(--saffron);
  font-size: 12px;
  font-weight: 800;
}

.capabilities h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
  margin: 12px 0 8px;
}

.capabilities p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

footer {
  align-items: center;
  background: #14221d;
  color: #dce4df;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  min-height: 76px;
  padding: 20px clamp(24px, 8vw, 132px);
}

footer a {
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
  }

  .status {
    font-size: 0;
  }

  .hero {
    background-position: 64% center;
    min-height: calc(100svh - 110px);
    padding-bottom: 56px;
    padding-top: 72px;
  }

  .hero::before {
    background: rgba(245, 246, 243, 0.72);
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .image-credit {
    display: none;
  }

  .capabilities {
    grid-template-columns: 1fr;
    padding-bottom: 24px;
    padding-top: 24px;
  }

  .capabilities > div,
  .capabilities > div:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0;
  }

  .capabilities > div:first-child {
    border-top: 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .primary-action {
    transition: background-color 160ms ease;
  }
}
