@font-face {
  font-family: "Mona Sans";
  src: url("/assets/fonts/Mona-Sans.var.woff2") format("woff2");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111411;
  --ink-soft: #394038;
  --paper: #f7f4ee;
  --paper-strong: #fffdf8;
  --line: #d8d1c4;
  --moss: #244d3a;
  --moss-dark: #0f1712;
  --gold: #c29328;
  --coral: #b65a45;
  --white: #ffffff;
  --shadow: 0 24px 60px rgb(17 20 17 / 16%);
  --shell: min(1120px, calc(100% - 40px));
  --header-height: 76px;
  --safe-top: env(safe-area-inset-top, 0px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

p + p {
  margin-top: 18px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--moss-dark);
  clip: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding-top: var(--safe-top);
  color: var(--white);
  background: rgb(15 23 18 / 92%);
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--moss-dark);
  background: var(--gold);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 850;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand-text span {
  color: rgb(255 255 255 / 72%);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgb(255 255 255 / 78%);
  font-size: 15px;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 6px;
  color: var(--white);
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-toggle span:not(.sr-only) + span:not(.sr-only) {
  margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  min-height: 72svh;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--moss-dark);
}

.hero-media,
.contact-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade,
.contact-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(15 23 18 / 88%), rgb(15 23 18 / 58%) 48%, rgb(15 23 18 / 20%)),
    linear-gradient(0deg, rgb(15 23 18 / 36%), rgb(15 23 18 / 10%));
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding-block: 86px;
}

.eyebrow,
.meta-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: 72px;
  font-weight: 850;
  line-height: 0.98;
}

.hero-lede {
  max-width: 660px;
  margin-top: 24px;
  color: rgb(255 255 255 / 84%);
  font-size: 23px;
  line-height: 1.35;
}

.hero-actions,
.contact-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: 12px 18px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--moss-dark);
  background: var(--gold);
}

.button-secondary {
  color: var(--white);
  border-color: rgb(255 255 255 / 32%);
  background: rgb(255 255 255 / 8%);
}

.legal-strip {
  color: var(--white);
  background: var(--moss-dark);
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.legal-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.25fr auto;
  gap: 22px;
  align-items: center;
  padding-block: 22px;
}

.legal-grid strong {
  display: block;
  font-size: 15px;
}

.legal-link {
  justify-self: end;
  color: var(--white);
  border-bottom: 1px solid rgb(255 255 255 / 42%);
  font-size: 15px;
  font-weight: 700;
}

.section {
  padding-block: 96px;
}

.split,
.company-layout,
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 68px;
  align-items: center;
}

.section h2 {
  max-width: 760px;
  font-size: 46px;
  font-weight: 830;
  line-height: 1.05;
}

.section-body,
.product-copy,
.company-copy {
  color: var(--ink-soft);
  font-size: 19px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.service-band {
  background: var(--paper-strong);
  border-block: 1px solid var(--line);
}

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

.service-card,
.timeline-item {
  min-height: 250px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--coral);
  font-size: 15px;
  font-weight: 850;
}

.service-card h3,
.timeline-item h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
}

.service-card p,
.timeline-item p,
.company-record dd {
  color: var(--ink-soft);
  font-size: 15px;
}

.product-section {
  background: var(--moss-dark);
  color: var(--white);
}

.product-section .section-body,
.product-section .product-copy {
  color: rgb(255 255 255 / 76%);
}

.image-panel {
  overflow: hidden;
  min-height: 460px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
}

.product-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--white);
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 6px;
  font-size: 14px;
}

.inline-link {
  display: inline-flex;
  color: var(--gold);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

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

.timeline-item {
  min-height: 190px;
  background: var(--paper-strong);
}

.company-section {
  background: var(--paper-strong);
  border-block: 1px solid var(--line);
}

.company-record {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.company-record div {
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.company-record div:last-child {
  border-bottom: 0;
}

.company-record dt {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.company-record dd {
  margin: 0;
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--moss-dark);
}

.contact-section .section {
  padding-block: 0;
}

.contact-content {
  position: relative;
  max-width: 740px;
  padding-block: 112px;
}

.contact-content h2 {
  font-size: 56px;
}

.contact-content p {
  max-width: 620px;
  color: rgb(255 255 255 / 78%);
  font-size: 20px;
}

.site-footer {
  color: rgb(255 255 255 / 70%);
  background: #0b0f0c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  padding-block: 56px 36px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid p {
  max-width: 560px;
  margin-top: 20px;
  font-size: 15px;
}

.footer-nav {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: end;
  color: var(--white);
  font-size: 15px;
}

.footer-nav a {
  color: rgb(255 255 255 / 78%);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .legal-grid,
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-link {
    justify-self: start;
  }

  .split,
  .company-layout,
  .product-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-layout .image-panel {
    order: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1120px);
    --header-height: 68px;
  }

  body {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-text span {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .site-nav {
    position: fixed;
    z-index: 40;
    inset: calc(var(--header-height) + var(--safe-top)) 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 14px 18px;
    background: rgb(15 23 18 / 98%);
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      transform 180ms ease,
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 46px;
    padding: 12px 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-size: 17px;
  }

  .hero {
    min-height: 75svh;
  }

  .hero-shade,
  .contact-shade {
    background:
      linear-gradient(0deg, rgb(15 23 18 / 88%), rgb(15 23 18 / 58%)),
      linear-gradient(90deg, rgb(15 23 18 / 70%), rgb(15 23 18 / 26%));
  }

  .hero-content {
    padding-block: 70px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-lede {
    font-size: 19px;
  }

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

  .legal-grid {
    padding-block: 18px;
  }

  .section {
    padding-block: 68px;
  }

  .section h2,
  .contact-content h2 {
    font-size: 34px;
  }

  .section-body,
  .product-copy,
  .company-copy,
  .contact-content p {
    font-size: 17px;
  }

  .service-card {
    min-height: 210px;
  }

  .card-number {
    margin-bottom: 34px;
  }

  .image-panel,
  .image-panel img {
    min-height: 320px;
  }

  .company-record div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-content {
    padding-block: 78px;
  }

  .contact-actions,
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
    gap: 34px;
  }

  .footer-nav {
    justify-items: start;
  }

  .footer-bottom {
    display: grid;
  }
}
