@font-face {
  font-family: "Big Shoulders";
  src: url("/fonts/big-shoulders-variable-latin.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #112f40;
  --blue: #315d77;
  --copper: #b45c3c;
  --mineral: #eef2f1;
  --white: #ffffff;
  --ink: #1c2b30;
  --muted: #5c6b70;
  --line: #c4cecd;
  --primary-font: "Big Shoulders", sans-serif;
  --body-font: "IBM Plex Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-wrap: anywhere;
  background: var(--mineral);
  color: var(--ink);
  font-family: var(--primary-font);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.site-shell {
  width: min(100%, 1180px);
  margin: 24px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 28px 80px rgb(17 47 64 / 14%);
}

.site-header {
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  min-height: 86px;
  padding: 0 30px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  width: fit-content;
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.wordmark span {
  display: block;
  margin-top: 3px;
  color: var(--blue);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a,
.header-action,
.button,
.text-link {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--navy);
}

.header-action {
  padding: 12px 14px;
  border: 1px solid var(--navy);
  color: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: 1.55fr 0.65fr;
  min-height: 495px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 46px;
  background: var(--navy);
  color: var(--white);
}

.eyebrow,
.section-label,
.section-index {
  margin: 0;
  color: var(--navy);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 24px;
  color: #d0dce0;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 4.75rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero-copy > p:last-of-type {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d0dce0;
  font: 0.85rem/1.65 var(--body-font);
}

.actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.button {
  display: inline-block;
  width: fit-content;
  padding: 14px 17px;
  background: var(--copper);
  color: var(--white);
  text-align: center;
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid currentcolor;
}

.buyer-profile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 30px;
  border-left: 1px solid var(--line);
  background: var(--mineral);
}

.buyer-profile h2 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.1;
}

.buyer-profile ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.buyer-profile li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font: 0.75rem/1.45 var(--body-font);
}

.profile-code {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-top: 20px;
  border-top: 4px solid var(--blue);
  color: var(--navy);
}

.profile-code strong {
  font-size: 2.1rem;
  font-weight: 500;
}

.profile-code span {
  font: 0.65rem/1.35 "Courier New", monospace;
  text-align: right;
  text-transform: uppercase;
}

.proof {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item small,
.company-facts dt {
  display: block;
  margin-bottom: 6px;
  color: var(--copper);
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-item strong {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 500;
}

.proof-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font: 0.65rem/1.4 var(--body-font);
}

.content-section {
  padding: 70px 42px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  margin-bottom: 36px;
}

.section-heading h2,
.supplier-intro h2,
.company-copy h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-heading p:not(.section-index),
.supplier-intro > p:last-child,
.company-copy > p:last-child,
.contact p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  font: 0.8rem/1.55 var(--body-font);
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.interest {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.interest:last-child {
  border-right: 0;
}

.interest b {
  color: var(--copper);
  font: 700 1.75rem/1 "Courier New", monospace;
}

.interest h3 {
  margin: 46px 0 12px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.15;
}

.interest p,
.process-step p {
  margin: 0;
  color: var(--muted);
  font: 0.72rem/1.55 var(--body-font);
}

.supplier {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-bottom: 1px solid var(--line);
  background: var(--mineral);
}

.supplier-intro {
  padding: 58px 42px;
  border-right: 1px solid var(--line);
}

.supplier-intro h2 {
  margin-top: 17px;
  font-size: 2.1rem;
}

.supplier-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 38px 42px;
  list-style: none;
}

.supplier-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  font: 0.7rem/1.35 var(--body-font);
}

.supplier-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.supplier-list b {
  color: var(--navy);
  font: 700 0.85rem/1 "Courier New", monospace;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.process-step {
  padding-top: 22px;
  border-top: 4px solid var(--blue);
}

.process-step b {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font: 700 0.7rem/1 "Courier New", monospace;
}

.process-step h3 {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 500;
}

.company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: var(--white);
}

.company-copy {
  padding: 60px 42px;
  border-right: 1px solid #496577;
}

.company-copy h2 {
  margin-top: 19px;
  color: var(--white);
}

.company-copy .section-index,
.company-facts dt {
  color: #d0dce0;
}

.company-copy > p:last-child {
  color: #c8d5da;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 34px 42px;
}

.company-facts div {
  padding: 20px 0;
  border-bottom: 1px solid #496577;
}

.company-facts div:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid #496577;
}

.company-facts div:nth-child(even) {
  padding-left: 24px;
}

.company-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.company-facts dd {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.45;
}

.company-facts a,
.site-footer a:not(.wordmark) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 58px 42px;
}

.contact h2 {
  font-size: 2.5rem;
}

.simple-page {
  padding: 70px 42px;
}

.simple-page-heading,
.simple-page-copy {
  max-width: 760px;
}

.simple-page-heading h1 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: clamp(2.7rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.simple-page-heading > p:last-of-type,
.simple-page-copy p {
  color: var(--muted);
  font: 0.8rem/1.65 var(--body-font);
}

.simple-page-heading .button {
  margin-top: 20px;
}

.simple-page-copy {
  margin-top: 48px;
}

.simple-page-copy section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.simple-page-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 500;
}

.simple-page-copy p {
  margin: 10px 0 0;
}

.simple-page-copy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.simple-page-not-found {
  min-height: 480px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 28px;
  padding: 25px 30px;
  background: #0c2532;
  color: #d5e0e4;
  font: 0.65rem/1.6 var(--body-font);
}

.site-footer .wordmark {
  color: var(--white);
  font-family: var(--primary-font);
  font-size: 1.3rem;
}

.site-footer .wordmark span {
  color: #a9bcc4;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-shell {
    margin: 0 auto;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 17px 22px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
  }

  .header-action {
    grid-column: 2;
    grid-row: 1;
  }

  .hero,
  .supplier,
  .company {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 52px 24px;
  }

  .buyer-profile {
    min-height: 330px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .content-section {
    padding: 50px 24px;
  }

  .section-heading,
  .interest-grid,
  .process-grid,
  .company-facts,
  .supplier-list,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 12px;
  }

  .interest {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .interest:last-child {
    border-bottom: 0;
  }

  .interest h3 {
    margin-top: 24px;
  }

  .supplier-intro,
  .company-copy {
    padding: 46px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .supplier-list,
  .company-facts {
    padding: 28px 24px;
  }

  .supplier-list li:nth-last-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .company-facts div:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }

  .company-facts div:nth-child(even) {
    padding-left: 0;
  }

  .company-facts div:nth-last-child(2) {
    border-bottom: 1px solid #496577;
  }

  .contact {
    padding: 48px 24px;
  }

  .simple-page {
    padding: 50px 24px;
  }

  .site-footer {
    padding: 25px 24px;
  }
}

@media (max-width: 480px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-action {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 3.25rem);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact h2 {
    font-size: 2.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
