/* ==========================================================================
   Amazon Commodities Design System
   Palette: deep navy / warm cream / brushed steel / rich forest green
   Type: Inter (headings, UI) + Lora (body, editorial)
   ========================================================================== */

:root {
  --navy: #14431c;
  --navy-2: #1e5c26;
  --navy-3: #103817;
  --cream: #f4f1ea;
  --cream-2: #ece7db;
  --cream-3: #e4ddcc;
  --steel: #9fa89b;
  --steel-dark: #5f5b52;
  --forest: #2e7d32;
  --forest-2: #3e9143;
  --ink: #2b2926;
  --white: #ffffff;
  --gold: #eabf52;
  --error: #a3322b;
  --gold-deep: #c99a2e;
  --green-light: #4ca451;
  --scrim: #0b1e33;
  --line: rgba(11, 30, 33, 0.14);
  --line-on-navy: rgba(247, 243, 234, 0.2);
  --container: 1280px;
  --gutter: clamp(24px, 5vw, 64px);
  --section-pad: clamp(96px, 13vw, 200px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Lora", Georgia, serif;
  font-size: 1.1875rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.005em;
}

p {
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: "Inter", sans-serif;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  position: relative;
}

/* ---------- Type utilities ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.eyebrow.on-dark {
  color: var(--cream-2);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}

h1 {
  font-size: clamp(2.9rem, 5.2vw, 5.2rem);
}

h2 {
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
}

h2.display {
  font-size: clamp(2.4rem, 4.2vw, 3.7rem);
}

h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
}

.lede {
  font-size: clamp(1.2rem, 1.7vw, 1.45rem);
  line-height: 1.7;
  color: var(--steel-dark);
  max-width: 46ch;
}

.on-dark {
  color: var(--cream);
}

.on-dark .lede,
.on-dark p {
  color: rgba(247, 243, 234, 0.78);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--cream);
}

.btn-on-dark {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-on-navy);
}

.btn-on-dark:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}

.btn-forest {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.btn-forest:hover {
  background: var(--navy);
  border-color: var(--navy);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(26, 20, 14, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: background-color 0.35s ease, background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled {
  background: rgba(247, 243, 234, 0.96);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  backdrop-filter: saturate(140%) blur(6px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--cream);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: border-color 0.35s ease, color 0.35s ease;
}

.is-scrolled .brand-mark {
  border-color: var(--navy);
  color: var(--navy);
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  transition: color 0.35s ease;
  line-height: 1.2;
}

.is-scrolled .brand-name {
  color: var(--navy);
}

.brand-sub {
  display: block;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--steel);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
}

.main-nav a {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color 0.35s ease;
}

.is-scrolled .main-nav a {
  color: var(--navy-2);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav a[aria-current="page"] {
  font-weight: 600;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header .btn {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 12px 22px;
  border-color: rgba(247, 243, 234, 0.55);
}

.site-header.is-scrolled .btn-on-dark {
  color: var(--navy);
  border-color: var(--navy);
}

.site-header.is-scrolled .btn-on-dark:hover {
  background: var(--navy);
  color: var(--cream);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}

.nav-toggle span {
  height: 1.5px;
  width: 100%;
  background: var(--cream);
  transition: background-color 0.35s ease, transform 0.3s ease, opacity 0.3s ease;
}

.is-scrolled .nav-toggle span {
  background: var(--navy);
}

.nav-open .nav-toggle span {
  background: var(--cream) !important;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-inner {
  min-height: 64vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--scrim);
  opacity: 0.32;
}

/* for heroes whose photo is pale enough to weaken the headline */
.hero.scrim-strong::before {
  opacity: 0.5;
}

/* long commodity titles that must hold a single line.
   sized off the container, not the viewport, so it stays inside the
   column once .container hits its max-width. wraps again on phones. */
.commodity-hero .hero-content {
  container-type: inline-size;
}

@media (min-width: 701px) {
  .commodity-hero.title-one-line h1 {
    font-size: min(4.8rem, 6.5cqi);
    white-space: nowrap;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 30, 51, 0.75) 0%, rgba(11, 30, 51, 0.12) 46%, rgba(11, 30, 51, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 220px;
  padding-bottom: 84px;
  width: 100%;
}

.hero-content .eyebrow {
  color: var(--cream-2);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: none;
  margin-bottom: 26px;
}

.hero-content .lede {
  color: rgba(247, 243, 234, 0.85);
  max-width: 52ch;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 40px);
  border-top: 1px solid var(--line-on-navy);
  padding-top: 32px;
}

.hero-stats .stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hero-stats .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--steel);
  margin-top: 6px;
}

/* ---------- Page (inner) hero, shorter ---------- */

.page-hero {
  min-height: 62vh;
  align-items: flex-end;
}

.page-hero .hero-content {
  padding-top: 200px;
  padding-bottom: 56px;
}

.breadcrumb {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: var(--steel);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb a:hover {
  color: var(--cream);
}

/* ---------- Sections ---------- */

.section {
  padding: var(--section-pad) 0;
}

.section-navy {
  background: var(--navy);
  color: var(--cream);
}

.section-forest {
  background: var(--forest);
  color: var(--cream);
}

.section-cream2 {
  background: var(--cream-2);
}

.section-tight {
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(40px, 6vw, 76px);
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head .lede {
  margin-top: 20px;
}

.section-head.center .lede {
  max-width: 60ch;
}

/* ---------- Grid / layout helpers ---------- */

.grid {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-media .frame-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--cream);
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  font-weight: 600;
}

.split-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--steel-dark);
  margin-bottom: 18px;
}

.split-body p + p {
  margin-top: 18px;
}

.split-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: var(--navy-2);
}

.split-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--forest);
}

.split-actions {
  margin-top: 40px;
}

/* ---------- Cards: commodities / services ---------- */

.card {
  border: 1px solid var(--line);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.card:hover {
  border-color: var(--navy);
}

.card-media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.card:hover .card-media img {
  transform: scale(1.045);
}

.card-body {
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-index {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--steel);
  margin-bottom: 14px;
}

.card-body h3 {
  margin-bottom: 12px;
}

.card-body p {
  color: var(--steel-dark);
  font-size: 1.05rem;
  flex: 1;
}

.card-link {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}

.card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.card:hover .card-link svg {
  transform: translateX(4px);
}

/* Numbered services list (on navy) */

.service-row {
  display: grid;
  grid-template-columns: 90px 1.4fr 1.6fr 140px;
  gap: 32px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line-on-navy);
}

.service-list .service-row:last-child {
  border-bottom: 1px solid var(--line-on-navy);
}

.service-row .num {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: var(--steel);
  font-weight: 600;
}

.service-row h3 {
  color: var(--cream);
}

.service-row p {
  color: rgba(247, 243, 234, 0.72);
  font-size: 1.05rem;
}

.service-row .arrow {
  justify-self: end;
  width: 20px;
  height: 20px;
  color: var(--cream);
  transition: transform 0.3s ease;
}

.service-row:hover .arrow {
  transform: translateX(6px);
}

/* ---------- Stats band ---------- */

.stats-band {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  background-size: cover;
  background-position: center;
}

.stats-band .overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 51, 0.88);
}

.stats-band .container {
  position: relative;
  z-index: 1;
}

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

.stats-grid .stat {
  border-left: 1px solid var(--line-on-navy);
  padding-left: 24px;
}

.stats-grid .stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  display: block;
  margin-bottom: 10px;
}

.stats-grid .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--steel);
  letter-spacing: 0.02em;
}

/* ---------- Pillars / values ---------- */

.pillar {
  padding: 40px 0 0;
  border-top: 1px solid var(--line);
}

.pillar .pillar-num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--steel);
  font-size: 0.92rem;
  margin-bottom: 20px;
  display: block;
}

.pillar h3 {
  margin-bottom: 14px;
}

.pillar p {
  color: var(--steel-dark);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(56px, 8vw, 100px) 0;
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--cream);
  max-width: 18ch;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding-top: clamp(64px, 8vw, 100px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-on-navy);
}

.footer-brand .brand {
  margin-bottom: 20px;
}

.footer-brand .brand-mark {
  border-color: var(--cream);
  color: var(--cream);
}

.footer-brand p {
  color: var(--steel);
  max-width: 34ch;
  font-size: 1.02rem;
}

.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 22px;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col a {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(247, 243, 234, 0.85);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-col address {
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(247, 243, 234, 0.85);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p,
.footer-bottom a {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: var(--steel);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: var(--cream);
}

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Pill tags (commodities page) ---------- */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 9px 18px;
  border: 1px solid var(--line);
  color: var(--navy-2);
}

.on-dark .tag {
  border-color: var(--line-on-navy);
  color: var(--cream);
}

/* ---------- Commodity category block ---------- */

.commodity-block {
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.commodity-block:first-of-type {
  border-top: none;
}

.commodity-index {
  font-family: "Inter", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--cream-3);
  line-height: 1;
  position: absolute;
  top: -0.3em;
  right: 0;
  z-index: 0;
  user-select: none;
}

/* ---------- Process / timeline (services page) ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.process-step {
  border-top: 2px solid var(--navy);
  padding-top: 22px;
}

.process-step .num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--forest);
  display: block;
  margin-bottom: 14px;
}

.process-step h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 1rem;
  color: var(--steel-dark);
}

/* ---------- Leadership monogram cards (about page) ---------- */

.leader-card {
  border: 1px solid var(--line);
  padding: 34px 28px;
  text-align: left;
}

.leader-avatar {
  width: 58px;
  height: 58px;
  border: 1px solid var(--navy);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.leader-card h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.leader-role {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: var(--forest);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  display: block;
}

.leader-card p {
  font-size: 1rem;
  color: var(--steel-dark);
}

/* ---------- Offices grid ---------- */

.office-card {
  padding: 30px 0;
  border-top: 1px solid var(--line-on-navy);
}

.office-card h4 {
  font-family: "Inter", sans-serif;
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.office-tag {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-2);
  background: rgba(247, 243, 234, 0.9);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 700;
}

.office-card address,
.office-card p {
  font-style: normal;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(247, 243, 234, 0.75);
  line-height: 1.8;
}

/* ---------- Contact page ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
}

.contact-info-item {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.contact-info-item:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-info-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-info-item p,
.contact-info-item a {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  color: var(--navy-2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-2);
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 2px;
  font-size: 1.05rem;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.25s ease;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235B6570' stroke-width='1.4' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: "Lora", serif;
}

.form-note {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--steel-dark);
  margin-top: 22px;
}

.form-success {
  display: none;
  border: 1px solid var(--forest);
  background: rgba(30, 61, 50, 0.06);
  padding: 24px 26px;
  margin-top: 28px;
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  color: var(--forest);
}

.form-success.is-visible {
  display: block;
}

/* Honeypot: moved off-screen rather than display:none, because many bots skip
   fields that are explicitly hidden but still fill positioned ones. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* inline validation + submit outcome */

.field-error {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: var(--error);
  margin: 0;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-bottom-color: var(--error);
}

.form-status {
  display: none;
  padding: 20px 24px;
  margin-top: 24px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  border: 1px solid;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: var(--error);
  border-color: var(--error);
  background: rgba(163, 50, 43, 0.05);
}

.form-status.is-notice,
.form-status.is-success {
  color: var(--forest);
  border-color: var(--forest);
  background: rgba(30, 61, 50, 0.06);
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-send[disabled] {
  opacity: 0.6;
  cursor: progress;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-col:last-child {
    grid-column: 1 / -1;
  }
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }
  .process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 36px;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .split-media {
    aspect-ratio: 16 / 10;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .service-row {
    grid-template-columns: 50px 1fr;
    row-gap: 12px;
  }
  .service-row p {
    grid-column: 2 / 3;
  }
  .service-row .arrow {
    display: none;
  }
}

@media (max-width: 1080px) {
  .main-nav,
  .header-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    gap: 0;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    background: var(--navy);
    padding: 0 var(--gutter);
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
    z-index: 105;
    overflow-y: auto;
  }

  .nav-open .main-nav {
    display: flex;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: 1.6rem;
    color: var(--cream) !important;
  }

  .nav-open .nav-cta {
    display: inline-flex;
    margin-top: 10px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col:last-child {
    grid-column: auto;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .process {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .process {
    grid-template-columns: 1fr;
  }
  .commodity-index {
    display: none;
  }
}

/* ==========================================================================
   Commodity sub-pages (Crude Oil, Palm Oil, etc.)
   ========================================================================== */

.commodity-hero {
  min-height: clamp(400px, 56vh, 600px);
}

.commodity-hero .hero-content {
  padding-top: clamp(120px, 13vw, 158px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.commodity-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  max-width: none;
  line-height: 1.05;
}

.hero-kicker {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-2);
  margin-bottom: 26px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

/* Operational snapshot: high-contrast stat row with thin dividers */
.snapshot {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.snapshot .snap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.snap-item {
  padding: clamp(40px, 5vw, 68px) clamp(22px, 2.6vw, 46px);
  border-left: 1px solid var(--line);
}

.snap-item:first-child {
  border-left: none;
  padding-left: 0;
}

.snap-num {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
}

.snap-label {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--steel-dark);
  margin-top: 16px;
  line-height: 1.45;
}

/* Editorial lead statement */
.lead-statement .inner {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}

.lead-statement .big {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.32;
  color: var(--navy);
  letter-spacing: -0.005em;
}

.lead-statement .support {
  margin-top: 4px;
}

.lead-statement .support p + p {
  margin-top: 18px;
}

.section-lead {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 20px;
  display: block;
}

.split-content h2.xl {
  font-size: clamp(2.2rem, 3.7vw, 3.3rem);
  margin-bottom: 22px;
}

/* Full-width cinematic showcase band */
.showcase {
  position: relative;
  height: clamp(440px, 74vh, 860px);
  background-size: cover;
  background-position: center;
}

.showcase.fixed {
  background-attachment: fixed;
}

.showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 30, 51, 0.18) 0%, rgba(11, 30, 51, 0) 38%, rgba(11, 30, 51, 0.6) 100%);
}

.showcase-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding-bottom: clamp(30px, 4vw, 52px);
}

.showcase-caption .cap {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.85);
}

.showcase-caption .cap-title {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 600;
  margin-top: 10px;
  max-width: 24ch;
}

/* Masonry image pair */
.masonry-band {
  padding: clamp(56px, 7vw, 104px) 0;
}

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2.6vw, 36px);
  align-items: start;
}

.masonry figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.masonry img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.masonry figure:hover img {
  transform: scale(1.04);
}

.masonry .m-a img {
  aspect-ratio: 4 / 5;
}

.masonry .m-b img {
  aspect-ratio: 3 / 4;
}

.masonry .m-b {
  margin-top: clamp(36px, 8vw, 96px);
}

.masonry figcaption {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-dark);
  margin-top: 14px;
}

/* Related commodities strip */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}

.related-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.related-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 30, 51, 0) 30%, rgba(11, 30, 51, 0.82) 100%);
}

.related-card:hover img {
  transform: scale(1.05);
}

.related-card .rc-body {
  position: relative;
  z-index: 1;
  padding: 28px 26px;
}

.related-card .rc-kicker {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.82);
}

.related-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .snapshot .snap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .snap-item {
    padding: clamp(32px, 4vw, 52px) clamp(22px, 3vw, 40px);
    border-left: 1px solid var(--line);
    border-top: none;
  }
  .snap-item:first-child {
    padding-left: clamp(22px, 3vw, 40px);
  }
  .snap-item:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
  .snap-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
  .lead-statement .inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .related-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .showcase.fixed {
    background-attachment: scroll;
  }
}

@media (max-width: 560px) {
  .snapshot .snap-grid {
    grid-template-columns: 1fr;
  }
  .snap-item,
  .snap-item:first-child {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .snap-item:first-child {
    border-top: none;
  }
  .masonry .m-b {
    margin-top: 16px;
  }
}

/* ==========================================================================
   Commodities overview page
   ========================================================================== */

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}

.overview-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.overview-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.overview-grid.two .overview-card {
  aspect-ratio: 16 / 9;
}

.overview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.overview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 30, 51, 0.05) 30%, rgba(11, 30, 51, 0.85) 100%);
}

.overview-card:hover img {
  transform: scale(1.05);
}

.overview-card .oc-body {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 2.6vw, 40px);
}

.overview-card .oc-kicker {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.82);
}

.overview-card h3 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-top: 8px;
}

.overview-card .oc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--cream);
}

.overview-card .oc-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.overview-card:hover .oc-link svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .overview-grid,
  .overview-grid.two {
    grid-template-columns: 1fr;
  }
  .overview-card,
  .overview-grid.two .overview-card {
    aspect-ratio: 16 / 10;
  }
}

/* ==========================================================================
   Why Choose Us: 4-quadrant grid
   ========================================================================== */

.quad-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--cream);
}

.quad-cell {
  padding: clamp(36px, 4.5vw, 64px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quad-cell:nth-child(2n) {
  border-right: none;
}

.quad-cell:nth-last-child(-n + 2) {
  border-bottom: none;
}

.quad-icon {
  width: 44px;
  height: 44px;
  color: var(--forest);
  margin-bottom: 26px;
}

.quad-icon svg {
  width: 100%;
  height: 100%;
}

.quad-cell h3 {
  margin-bottom: 14px;
}

.quad-cell p {
  color: var(--steel-dark);
  max-width: 44ch;
}

@media (max-width: 760px) {
  .quad-grid {
    grid-template-columns: 1fr;
  }
  .quad-cell {
    border-right: none;
  }
  .quad-cell:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .quad-cell:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   Featured press / media feed
   ========================================================================== */

.press-list {
  border-top: 1px solid var(--line);
}

.press-item {
  display: grid;
  grid-template-columns: 0.26fr 1fr auto;
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}

.press-date {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
}

.press-source {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--steel-dark);
  margin-top: 8px;
}

.press-item h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  max-width: 30ch;
}

.press-item h3 a {
  transition: color 0.25s ease;
}

.press-item h3 a:hover {
  color: var(--forest);
}

.press-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--navy);
  white-space: nowrap;
}

.press-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.press-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 820px) {
  .press-item {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
}

/* ==========================================================================
   Product portfolio wheel
   ========================================================================== */

.wheel-wrap {
  max-width: 980px;
  margin: clamp(24px, 4vw, 56px) auto 0;
}

.wheel-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

.wheel-label {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 31px;
  fill: var(--ink);
}

.wheel-mark {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.05em;
  fill: var(--navy);
}

.wheel-wordmark {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.14em;
  fill: var(--forest);
}

.wheel-legend {
  display: none;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
}

.wheel-legend li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
}

.wheel-legend .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .wheel-callout {
    display: none;
  }
  .wheel-legend {
    display: grid;
  }
}

.wheel-wrap svg path {
  transition: stroke-width 0.25s ease;
}

.wheel-seg {
  cursor: pointer;
}

.wheel-seg:hover path {
  stroke-width: 33;
}

.wheel-label {
  transition: fill 0.25s ease;
}

.wheel-seg:hover .wheel-label {
  fill: var(--forest);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.wheel-legend a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wheel-legend a:hover {
  color: var(--forest);
}

/* ==========================================================================
   Who We Are (home)
   ========================================================================== */

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}

.who-copy {
  align-self: center;
}

.who-copy h2 {
  margin: 18px 0 26px;
}

.who-copy p {
  color: var(--steel-dark);
  max-width: 54ch;
}

.who-copy p + p {
  margin-top: 18px;
}

.who-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 46vw, 640px);
  display: flex;
  align-items: flex-end;
}

.who-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 30, 51, 0.05) 35%, rgba(11, 30, 51, 0.78) 100%);
}

.who-overlay {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 3vw, 44px);
}

.who-cap {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.85);
  margin-bottom: 12px;
}

.who-cap-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.25;
  color: var(--white);
  max-width: 20ch;
}

@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-media {
    min-height: 420px;
  }
}

/* ==========================================================================
   Who We Are banner (full-bleed ship)
   ========================================================================== */

.who-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: var(--section-pad) 0;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.who-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 30, 51, 0.88) 0%, rgba(11, 30, 51, 0.84) 40%, rgba(11, 30, 51, 0.76) 70%, rgba(11, 30, 51, 0.38) 88%, rgba(11, 30, 51, 0.10) 100%);
}

.who-banner-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.who-banner-copy .eyebrow {
  margin-bottom: 30px;
}

.who-banner-copy h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  margin-bottom: 30px;
  max-width: 21ch;
}

.who-banner-copy p:not(.eyebrow) {
  color: rgba(247, 243, 234, 0.88);
  line-height: 1.7;
  max-width: 68ch;
}

.who-banner-copy p:not(.eyebrow) + p {
  margin-top: 22px;
}

.who-banner-tag {
  margin-top: clamp(48px, 7vw, 96px);
  border-left: 2px solid rgba(247, 243, 234, 0.5);
  padding-left: 22px;
}

.who-banner-tag .who-cap {
  margin-bottom: 8px;
}

.who-banner-tag .who-cap-title {
  max-width: 26ch;
}

/* ---------- Showcase with merged copy (tall variant) ---------- */

.showcase.tall {
  height: auto;
  min-height: clamp(620px, 88vh, 960px);
  display: flex;
  align-items: flex-end;
}

.showcase.tall .showcase-caption {
  position: static;
  padding-top: clamp(120px, 14vw, 200px);
  padding-bottom: clamp(56px, 6vw, 96px);
}

.showcase.tall::after {
  background: linear-gradient(180deg, rgba(11, 30, 51, 0.3) 0%, rgba(11, 30, 51, 0.52) 40%, rgba(11, 30, 51, 0.88) 100%);
}

.showcase-body {
  margin-top: 18px;
  max-width: 64ch;
}

.showcase-body p {
  color: rgba(247, 243, 234, 0.88);
  line-height: 1.75;
}

.showcase-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin-top: 26px;
}

.showcase-roles span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-2);
  border-left: 2px solid rgba(247, 243, 234, 0.55);
  padding-left: 12px;
}

/* ---------- Showcase roles: 3-column variant ---------- */

.showcase-roles.cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
  margin-top: clamp(36px, 4vw, 56px);
}

.showcase-roles.cols .role {
  border-left: 2px solid rgba(247, 243, 234, 0.55);
  padding-left: 18px;
}

.showcase-roles.cols .role h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.showcase-roles.cols .role p {
  color: rgba(247, 243, 234, 0.82);
  font-size: 1.12rem;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .showcase-roles.cols {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* ==========================================================================
   Desk brief: compact white text block (commodity pages)
   ========================================================================== */

.desk-brief {
  background: var(--white);
  padding: clamp(48px, 5vw, 76px) 0;
}

.desk-brief h2 {
  font-size: clamp(1.3rem, 2.8vw, 2.6rem);
  max-width: none;
  margin-bottom: 22px;
  text-wrap: balance;
}

.desk-brief .brief-text {
  max-width: 74ch;
  color: var(--steel-dark);
  line-height: 1.7;
}

.desk-brief .showcase-roles.cols {
  margin-top: clamp(30px, 3.4vw, 44px);
}

.desk-brief .showcase-roles.cols .role {
  border-left-color: rgba(11, 30, 51, 0.22);
}

.desk-brief .showcase-roles.cols .role h3 {
  color: var(--navy);
  margin-bottom: 10px;
}

.desk-brief .showcase-roles.cols .role p {
  color: var(--steel-dark);
  font-size: 1.12rem;
  line-height: 1.65;
}

/* ==========================================================================
   Brand lockup (logo)
   ========================================================================== */

.brand-logo {
  width: clamp(34px, 3vw, 42px);
  height: auto;
  flex-shrink: 0;
  display: block;
}

.brand-logo-dark {
  display: none;
}

.is-scrolled .brand-logo-light {
  display: none;
}

.is-scrolled .brand-logo-dark {
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-header .brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.site-header .brand-sub {
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(247, 243, 234, 0.82);
  margin-top: 3px;
}

.is-scrolled .brand-sub {
  color: var(--forest);
}

.footer-brand .brand-logo {
  width: 46px;
}

.footer-brand .brand-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.footer-brand .brand-sub {
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(247, 243, 234, 0.8);
  margin-top: 3px;
}

.brand-reg {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: rgba(247, 243, 234, 0.6);
  margin-top: 6px;
}

/* ==========================================================================
   Contact band (home): info column + form card
   ========================================================================== */

.contact-band {
  background: var(--cream-2);
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.contact-info-col h2 {
  margin: 16px 0 36px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
}

.contact-row-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
}

.contact-row-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}

.contact-row-text a,
.contact-row-value {
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--steel-dark);
  transition: color 0.25s ease;
}

.contact-row-text a:hover {
  color: var(--forest);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(28px, 3.4vw, 46px);
}

.card-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.card-form-grid .field.full {
  grid-column: 1 / -1;
}

.contact-card .field label {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-card .req {
  color: var(--forest);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 15px 16px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-card textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #9c9a92;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--forest);
}

.contact-send {
  margin-top: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.contact-send svg {
  width: 17px;
  height: 17px;
}

.contact-send:hover svg {
  transform: translateX(3px) translateY(-2px);
}

@media (max-width: 1040px) {
  .card-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Hero motion: text reveal
   ========================================================================== */

.hero .hero-kicker,
.hero h1 {
  animation: hero-rise 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero .hero-kicker {
  animation-delay: 0.15s;
}

.hero h1 {
  animation-delay: 0.3s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ==========================================================================
   Justified body prose (flush left and right edges)
   ========================================================================== */

.brief-text,
.who-banner-copy p:not(.eyebrow),
.split-body p,
.lead-statement .support p,
.showcase-body p {
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  text-align: justify;
  /* No automatic hyphenation: it was splitting whole words across lines
     ("busi-nesses"). Words now only break where a real hyphen is typed. */
  hyphens: manual;
  -webkit-hyphens: manual;
  /* Without hyphenation, justified lines can open up. These let the browser
     look ahead and pick better break points instead of greedily filling. */
  text-wrap: pretty;
  overflow-wrap: break-word;
}

/* Who We Are is the lead statement on the home page, so its label and body sit
   a step above the desk pages. Declared after the shared rule above so it wins
   on font-size without needing extra specificity. */
.who-banner-copy .eyebrow {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.who-banner-copy .eyebrow::before {
  width: 40px;
  height: 2px;
}

/* Left-aligned, not justified. At this size a justified line with few words has
   to stretch the spaces to reach the right edge, which opened visible gaps
   ("agri-products    and    renewable"). Hyphenation would normally absorb
   that, but it is off by design, so ragged-right is the honest fix. */
.who-banner-copy p:not(.eyebrow) {
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  text-align: left;
}

/* keep the last line from stretching, and avoid justify on narrow columns */
@media (max-width: 700px) {
  .brief-text,
  .who-banner-copy p:not(.eyebrow),
  .split-body p,
  .lead-statement .support p,
  .showcase-body p {
    text-align: left;
    hyphens: manual;
    -webkit-hyphens: manual;
  }
}

/* select + note inside the contact card */

.contact-card select {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 15px 16px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%232e7d32' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-card select:focus {
  outline: none;
  border-color: var(--forest);
}

.contact-card .form-note {
  margin-top: 18px;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--steel-dark);
}
