:root {
  --ink: #121514;
  --muted: #53615d;
  --paper: #f6f8f6;
  --surface: #ffffff;
  --line: #d8dfdb;
  --green: #0b684f;
  --green-dark: #10231f;
  --amber: #d18b2d;
  --white: #ffffff;
  --page-gutter: clamp(1.5rem, 6vw, 5rem);
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

.site-header {
  align-items: center;
  color: var(--white);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  left: 0;
  padding: 1.25rem 2rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 0.7rem;
}

.brand-mark {
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 auto;
  height: 2.5rem;
  justify-content: center;
  overflow: hidden;
  padding: 0.16rem;
  width: 2.5rem;
}

.brand-mark img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  border-bottom: 1px solid transparent;
  padding: 0.15rem 0;
}

.site-nav a:focus-visible,
.site-nav a:hover {
  border-color: currentColor;
}

.hero {
  background-image:
    linear-gradient(90deg, rgba(7, 20, 17, 0.96), rgba(7, 20, 17, 0.76) 50%, rgba(7, 20, 17, 0.3)),
    url("/assets/link-field.svg");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: flex;
  min-height: 650px;
  padding: 8rem 2rem 5rem;
}

.hero-content {
  align-self: center;
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
}

.eyebrow {
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 800;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: 4.2rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  max-width: 780px;
}

h2 {
  font-size: 2.35rem;
  line-height: 1.08;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.18rem;
  margin-bottom: 0.55rem;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.76rem 1.05rem;
}

.button-primary {
  background: var(--amber);
  color: #1b1206;
}

.button:focus-visible,
.button:hover {
  outline: 3px solid rgba(209, 139, 45, 0.36);
  outline-offset: 3px;
}

.work-section,
.site-footer,
.not-found {
  margin: 0 auto;
  max-width: 1080px;
}

.work-section {
  padding: 6.5rem var(--page-gutter);
}

.section-heading {
  max-width: 650px;
}

.section-heading > p:last-child,
.service-item p,
.about-copy {
  color: var(--muted);
}

.section-heading > p:last-child {
  font-size: 1.08rem;
}

.service-list {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
}

.service-item {
  padding: 2.35rem 2rem 2.35rem 0;
}

.service-item + .service-item {
  border-left: 1px solid var(--line);
  padding-left: 2rem;
}

.service-item p {
  margin-bottom: 0;
}

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

.about-inner {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  margin: 0 auto;
  max-width: 1080px;
  padding: 6rem var(--page-gutter);
}

.about-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem var(--page-gutter);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-meta {
  align-items: center;
  display: flex;
  gap: 1.25rem;
}

.footer-meta a,
.policy-section a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.footer-meta a:focus-visible,
.footer-meta a:hover,
.policy-section a:focus-visible,
.policy-section a:hover {
  color: var(--green);
}

.policy-page {
  background: var(--surface);
}

.policy-header {
  background: var(--green-dark);
  color: var(--white);
}

.policy-header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1080px;
  padding: 1.25rem var(--page-gutter);
}

.policy-home-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.15rem 0;
}

.policy-home-link:focus-visible,
.policy-home-link:hover {
  border-color: var(--white);
}

.policy-main {
  margin: 0 auto;
  max-width: 820px;
  padding: 5.5rem var(--page-gutter) 6.5rem;
}

.policy-title {
  border-bottom: 1px solid var(--line);
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
}

.policy-title h1 {
  font-size: 3.4rem;
  margin-bottom: 1rem;
}

.policy-effective {
  color: var(--muted);
  font-weight: 750;
  margin-bottom: 0;
}

.policy-section + .policy-section {
  margin-top: 2.8rem;
}

.policy-section h2 {
  font-size: 1.45rem;
  margin-bottom: 0.9rem;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-section p:last-child,
.policy-section ul:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  padding-left: 1.35rem;
}

.policy-section li + li {
  margin-top: 0.55rem;
}

.policy-section a {
  color: var(--green);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.policy-footer {
  border-top: 1px solid var(--line);
}

.not-found-page {
  background:
    linear-gradient(90deg, rgba(7, 20, 17, 0.94), rgba(7, 20, 17, 0.72)),
    url("/assets/link-field.svg");
  background-position: center;
  background-size: cover;
  color: var(--white);
  min-height: 100vh;
}

.not-found {
  padding: 2rem;
}

.not-found-panel {
  margin-top: 7rem;
  max-width: 620px;
}

.not-found-panel h1 {
  font-size: 3.1rem;
}

.not-found-panel p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
  margin-bottom: 1.7rem;
}

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.1rem;
  }

  .site-nav {
    font-size: 0.88rem;
    gap: 1rem;
  }

  .hero {
    min-height: 620px;
    padding: 9.5rem 1.1rem 3.2rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .work-section {
    padding: 4rem var(--page-gutter);
  }

  .service-list {
    display: block;
    margin-top: 2.5rem;
  }

  .service-item {
    padding: 1.5rem 0;
  }

  .service-item + .service-item {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .about-inner {
    display: block;
    padding: 4rem var(--page-gutter);
  }

  .about-copy {
    margin-top: 2rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem var(--page-gutter);
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .policy-header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .policy-main {
    padding-bottom: 4.5rem;
    padding-top: 4rem;
  }

  .policy-title {
    margin-bottom: 2.8rem;
  }

  .policy-title h1 {
    font-size: 2.6rem;
  }
}
