:root {
  --green: #1b3722;
  --green-dark: #10241660;
  --green-deep: #0f2016;
  --gold: #b8935a;
  --gold-light: #d9bb8b;
  --navy: #23303f;
  --navy-dark: #161f29;
  --cream: #faf8f4;
  --paper: #ffffff;
  --ink: #1c1f1e;
  --ink-soft: #4a524d;
  --line: #e4ded2;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  margin: 0 0 0.5em;
  color: var(--green-deep);
  letter-spacing: 0.01em;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 64px 0; }
.section--dark {
  background: var(--navy-dark);
  color: #eef1f3;
}
.section--dark h2, .section--dark h3 { color: #f4efe6; }
.section--dark p { color: #b9c2cb; }
.section--forest {
  background: var(--navy-dark);
  color: #eef1f3;
}
.section--forest h2, .section--forest h3 { color: #f4efe6; }
.section--forest p { color: #b9c2cb; }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn--gold {
  background: var(--gold);
  color: #1a1a1a;
}
.btn--gold:hover { background: var(--gold-light); }
.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy-dark);
}
.btn--outline-dark:hover { background: var(--navy-dark); color: #fff; }
.btn--nav {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn--nav:hover { background: rgba(184, 147, 90, 0.12); color: var(--gold-light); }
.nav-cta .btn--nav {
  border-color: var(--gold);
  color: #8a6a35;
}
.nav-cta .btn--nav:hover { background: rgba(184, 147, 90, 0.1); color: #6f5429; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-dark);
}
.brand img { height: 34px; width: auto; }
.brand-text {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 19px;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.brand-text small {
  display: block;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; align-items: center; }
.nav-toggle { display: none; }

/* Hero */
.hero {
  background: linear-gradient(160deg, #16283b 0%, #1b3149 45%, var(--navy-dark) 100%);
  color: #fff;
  padding: 84px 0 0;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: 56px;
  row-gap: 8px;
  align-items: start;
}
.hero-intro { grid-column: 1; grid-row: 1; min-width: 0; }
.hero-visual { grid-column: 2; grid-row: 1; align-self: end; min-width: 0; }
.hero-extra { grid-column: 1; grid-row: 2; margin-top: 28px; min-width: 0; }
.hero-eyebrow {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero p.lead {
  font-size: 17px;
  color: #c9d1d3;
  max-width: 480px;
  margin-bottom: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 13px;
  color: #93a0a4;
}
.hero-visual {
  position: relative;
}
.hero-visual img { width: 100%; height: auto; display: block; }
.hero-tagline {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #c9d1d3;
  margin: 0 0 40px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.hero-tagline span { color: var(--gold-light); }

/* Photo marquee gallery */
.gallery {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-track {
  display: flex;
  align-items: stretch;
  gap: 14px;
  width: max-content;
  animation: gallery-scroll 28s linear infinite;
}
.gallery:hover .gallery-track { animation-play-state: paused; }
.gallery-track img {
  height: 280px;
  width: auto;
  border-radius: 8px;
  flex: none;
  display: block;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 940px) {
  .gallery-track img { height: 220px; }
}

/* Stats strip */
.stats-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 56px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 34px;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a9b2b6;
}

/* Differentiator quote */
.diff-quote {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 21px;
  line-height: 1.6;
  color: #f4efe6;
  max-width: 780px;
}
.diff-quote strong { color: var(--gold-light); font-weight: 700; }

/* Services grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f0ece1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
}
.card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--green-deep);
}
.card p { font-size: 14.5px; margin-bottom: 0; }

/* Procure categories */
.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tag {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-deep);
}

/* Why choose list */
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  color: #dbe2e0;
}
.why-list .check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 32px;
}
.pricing-card .price {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 40px;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.pricing-card .price span {
  font-size: 15px;
  color: #a9b2b6;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
}
.pricing-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.pricing-card ul li {
  font-size: 14px;
  color: #c9d1d3;
  padding-left: 20px;
  position: relative;
}
.pricing-card ul li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Industries */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* Sourcing network */
.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.network-card {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px;
}
.network-card h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}
.network-card p { font-size: 14.5px; margin-bottom: 0; color: var(--ink); }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
.contact-info-item {
  margin-bottom: 22px;
}
.contact-info-item .label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-info-item .value {
  font-size: 16px;
  color: #fff;
}
.contact-form {
  background: var(--paper);
  border-radius: 10px;
  padding: 32px;
  display: grid;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  background: #fbfaf7;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note { font-size: 12.5px; color: var(--ink-soft); margin: 0; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #aab3b8;
  padding: 48px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img { height: 30px; }
.footer-tagline {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 16px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #7c868c;
}

/* Byline */
.byline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a9b2b6;
  font-size: 13.5px;
  margin-bottom: 26px;
}
.byline .dot { color: var(--gold); }

/* Table of contents */
.toc-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.toc-section .container { padding-top: 40px; padding-bottom: 40px; }
.toc-list {
  columns: 2;
  column-gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.toc-list li { break-inside: avoid; margin-bottom: 10px; }
.toc-list a {
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--line);
  display: inline-block;
  padding-bottom: 1px;
}
.toc-list a:hover { color: var(--green); border-color: var(--gold); }
.toc-list .n {
  color: var(--gold);
  font-weight: 700;
  margin-right: 6px;
}

/* Generic content table */
.table-wrap { overflow-x: auto; border-radius: 8px; border: 1px solid var(--line); }
table.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  font-size: 14px;
  min-width: 640px;
}
table.compare th, table.compare td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--ink);
}
table.compare thead th {
  background: var(--navy-dark);
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
table.compare thead th.hl { color: var(--gold-light); }
table.compare tbody th {
  font-weight: 700;
  color: var(--green-deep);
  background: #f6f3ec;
  width: 190px;
}
table.compare td.hl { background: #fbf5e9; font-weight: 600; color: var(--green-deep); }
table.compare tr:last-child td, table.compare tr:last-child th { border-bottom: none; }

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 0;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 20px;
  color: var(--gold);
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps h4 {
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 17px;
  color: var(--green-deep);
  margin: 6px 0 4px;
}
.steps p { margin: 0; font-size: 14.5px; }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
}
.faq summary {
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16.5px;
  color: var(--green-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold);
  flex: none;
}
.faq details[open] summary::after { content: "\2212"; }
.faq p { margin: 12px 0 0; font-size: 14.5px; }

/* Category cards with status badge */
.cat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.cat-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.cat-badge.core { background: #e8f0ea; color: #1f5c37; }
.cat-badge.finish { background: #fbf1e0; color: #96702f; }
.cat-card h3 { font-size: 16px; margin-bottom: 6px; }
.cat-card p { font-size: 13.5px; margin-bottom: 0; }

.note-callout {
  background: #fbf5e9;
  border: 1px solid #ecdcb8;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 14px;
  color: #6b5530;
  margin: 24px 0 0;
}

/* Responsive */
@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-intro, .hero-visual, .hero-extra { grid-column: 1; }
  .hero-intro { grid-row: 1; }
  .hero-visual { grid-row: 2; align-self: start; margin-top: 32px; }
  .hero-extra { grid-row: 3; margin-top: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .toc-list { columns: 1; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .section { padding: 64px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
