/* ============================================================
   Al Saif Trading — Site styles
   Builds on design/colors_and_type.css tokens
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--paper); color: var(--ink); }

/* Skin variants */
body[data-skin="paper"]   { --page-bg: var(--paper); }
body[data-skin="bone"]    { --page-bg: var(--bone); }
body { background: var(--page-bg, var(--paper)); }

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

/* ===== Layout helpers ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-deep { background: var(--green-950); color: var(--paper); }
.section-bone { background: var(--bone); }
.section-edge { border-top: 1px solid var(--linen); }

body[data-density="compact"] .section { padding: 64px 0; }
body[data-density="compact"] .container { padding: 0 32px; }

/* ===== Header ===== */
.as-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 241, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--dur) var(--ease-out),
              backdrop-filter var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.as-header.scrolled {
  background: rgba(251, 248, 241, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--linen);
  box-shadow: 0 1px 0 rgba(20, 48, 31, 0.04), 0 8px 24px rgba(20, 48, 31, 0.05);
}

.as-header-inner {
  max-width: 1280px; margin: 0 auto; padding: 8px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.as-header-inner .as-logo { justify-self: start; }
.as-header-inner .as-header-actions { justify-self: end; }
.as-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--ink);
}
/* Paper plate that carries the full-color logo so the dark sword + green leaves
   always read crisply, regardless of what's beneath the header. */
.as-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: none;
}
.as-logo-img { height: 56px; width: auto; display: block; }
.as-wordmark { display: flex; flex-direction: column; line-height: 1; }
.as-wordmark-name { font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--green-950); }
.as-wordmark-sub { font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone-500); margin-top: 4px; }

.as-nav { display: flex; gap: 36px; justify-content: center; }
.as-nav a {
  font-size: 16px; color: var(--fg-2); text-decoration: none; font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--dur) var(--ease-out);
  position: relative; padding: 4px 0;
}
.as-nav a:hover { color: var(--green-800); }
.as-nav a.active { color: var(--green-800); font-weight: 700; }
.as-nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--green-700);
}

.as-header-actions { display: flex; align-items: center; gap: 16px; }
.as-link-quiet { font-size: 12px; color: var(--fg-3); text-decoration: none; letter-spacing: 0.04em; }

/* Mobile menu toggle (hamburger) */
.as-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.as-menu-icon {
  position: relative;
  width: 22px; height: 14px;
  display: inline-block;
}
.as-menu-icon span {
  position: absolute;
  left: 0; right: 0;
  height: 1.6px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out), top 0.3s var(--ease-out);
}
.as-menu-icon span:nth-child(1) { top: 0; }
.as-menu-icon span:nth-child(2) { top: 6px; }
.as-menu-icon span:nth-child(3) { top: 12px; }
.as-menu-icon.open span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.as-menu-icon.open span:nth-child(2) { opacity: 0; }
.as-menu-icon.open span:nth-child(3) { top: 6px; transform: rotate(-45deg); }
.as-header.on-dark .as-menu-icon span { background: var(--paper); }

/* Mobile menu panel — overlay */
.as-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #fbf8f1;
  background: var(--paper, #fbf8f1);
  padding: 96px 32px 32px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  z-index: 200;
  visibility: hidden;
  overflow-y: auto;
}
.as-mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.as-header.on-dark .as-mobile-menu { background-color: #0e2418; background: var(--green-950, #0e2418); }
.as-header.menu-open { z-index: 201; }

.as-mobile-menu {
  text-align: center;
  align-items: center;
}
.as-mobile-nav {
  display: flex; flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: 480px;
  margin: auto auto;
}
.as-mobile-nav a {
  position: relative;
  display: block;
  text-align: center;
  padding: 16px 0;
  text-decoration: none;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  border-bottom: 1px solid var(--linen);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s;
}
.as-mobile-nav-num {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.as-mobile-menu.open .as-mobile-nav a {
  opacity: 1;
  transform: translateY(0);
}
.as-mobile-nav a.active { color: var(--green-700); }
.as-mobile-nav-num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-3);
  font-weight: 600;
  min-width: 28px;
}
.as-mobile-nav a.active .as-mobile-nav-num { color: var(--green-700); }
.as-header.on-dark .as-mobile-nav a { color: var(--paper); border-bottom-color: rgba(255,255,255,0.1); }
.as-header.on-dark .as-mobile-nav a.active { color: var(--green-300); }

.as-mobile-foot {
  padding-top: 24px;
  text-align: center;
  width: 100%;
}
.as-mobile-mail {
  display: block;
  font-size: 14px;
  color: var(--green-700);
  text-decoration: none;
  margin-bottom: 12px;
  font-weight: 500;
}
.as-header.on-dark .as-mobile-mail { color: var(--green-300); }
.as-mobile-addr {
  font-size: 11px;
  line-height: 1.6;
  color: var(--fg-3);
  letter-spacing: 0.02em;
}
.as-header.on-dark .as-mobile-addr { color: rgba(255,255,255,0.55); }

/* ===== Buttons ===== */
.btn {
  font-family: var(--font-sans); font-weight: 600; font-size: 13px;
  padding: 12px 22px; border-radius: 4px; border: 1px solid transparent;
  cursor: pointer; letter-spacing: 0.02em;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--green-700); color: var(--paper); }
.btn-primary:hover { background: var(--green-800); }
.btn-secondary { background: transparent; color: var(--green-800); border-color: var(--green-700); }
.btn-secondary:hover { background: var(--green-100); }
.btn-ghost { background: transparent; color: var(--fg-1); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-on-dark { background: var(--paper); color: var(--ink); }
.btn-on-dark:hover { background: var(--green-100); }
.btn-on-dark-ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.3); }
.btn-on-dark-ghost:hover { border-color: var(--paper); }
.btn-sm { font-size: 12px; padding: 9px 16px; }
.btn-lg { font-size: 14px; padding: 14px 28px; }
.btn .arrow { transition: transform var(--dur) var(--ease-out); display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== Eyebrow ===== */
.eyebrow {
  font-family: var(--font-sans); font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.6;
}
.eyebrow-on-dark { color: var(--green-300); }

/* ===== HOME — Hero variants ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex; align-items: center;
  padding: 80px 0 120px;
  overflow: hidden;
}

/* Hero — Full-bleed image (default) */
.hero-full {
  position: relative;
  width: 100%;
  /* Hero sits BELOW the header now (no negative pull-up) so the cream header
     and the in-color logo remain crisp; the image lives in its own canvas. */
  margin-top: 0;
  min-height: calc(100vh - 96px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--paper);
  overflow: hidden;
  background: var(--green-950);
}
.hero-full-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-full-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-full-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(6,18,28,0.62) 0%, rgba(6,18,28,0.38) 55%, rgba(6,18,28,0.18) 100%),
    linear-gradient(180deg, rgba(6,18,28,0.55) 0%, rgba(6,18,28,0.25) 28%, rgba(6,18,28,0.30) 60%, rgba(6,18,28,0.70) 100%);
}
.hero-full-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  padding: 96px 32px 120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-full .eyebrow-on-dark {
  color: var(--paper);
  margin-bottom: 28px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}
.hero-full .eyebrow::before { display: none; }
.hero-full-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 24ch;
  text-shadow: 0 1px 2px rgba(0,0,0,0.55), 0 2px 30px rgba(0,0,0,0.55);
}
.hero-full-headline .em {
  font-style: normal;
  font-weight: 600;
  color: var(--paper);
}
.hero-full-lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--paper);
  font-weight: 400;
  max-width: 60ch;
  margin: 0 0 36px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6), 0 2px 18px rgba(0,0,0,0.55);
}
.hero-full-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Pill CTA — round, paper-on-deep-green, like a serene primary on imagery */
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-950, #0e2418);
  font-family: var(--font-sans, inherit);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.0);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.btn-pill:hover {
  background: var(--green-700, #2a5d3a);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}
.btn-pill::after {
  content: "→";
  font-size: 16px;
  transition: transform 180ms ease;
}
.btn-pill:hover::after { transform: translateX(3px); }

.hero-full-scroll {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(251,248,241,0.75);
  text-decoration: none;
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-full-scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(251,248,241,0.0) 0%, rgba(251,248,241,0.7) 100%);
  animation: hero-scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-scroll-pulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.7; }
  50% { transform: scaleY(0.5); transform-origin: top; opacity: 0.35; }
}

@media (max-width: 640px) {
  .hero-full-inner { padding-left: 20px; padding-right: 20px; }
  .hero-full-headline { font-size: 38px; }
  .hero-full-scroll { bottom: 20px; }
}

/* Hero V1 — Editorial / circle motif (the chosen hero option) */
.hero-v1 { background: var(--paper); }
.hero-v1 .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-v1 .hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.hero-v1 .hero-headline .em {
  font-style: normal;
  font-weight: 400;
  color: var(--green-700);
}
.hero-v1 .hero-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 56ch;
  margin: 0 0 28px;
  font-weight: 400;
}
.hero-v1 .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-v1 .hero-meta { display: flex; gap: 32px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--linen); }
.hero-v1 .hero-meta-item { font-size: 12px; line-height: 1.5; }
.hero-v1 .hero-meta-k { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.hero-v1 .hero-meta-v { color: var(--ink); font-weight: 500; }

.hero-circle {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-circle svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-circle .ring { fill: none; stroke: var(--green-700); stroke-width: 1; }
.hero-circle .ring-2 { stroke: var(--green-300); }
.hero-circle .ring-3 { stroke: var(--linen); }
.hero-circle .arc-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; fill: var(--fg-3); text-transform: uppercase; }

.hero-circle-photo {
  position: relative;
  width: 70%; aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 30px 80px rgba(20, 48, 31, 0.2);
}
.hero-circle-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-circle-tags {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-circle-tag {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-800);
  background: var(--paper);
  border: 1px solid var(--linen);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.hero-circle-tag.t1 { top: 8%; right: 4%; }
.hero-circle-tag.t2 { bottom: 18%; left: -4%; }
.hero-circle-tag.t3 { bottom: 4%; right: 14%; }

/* Hero V2 — Deep green editorial split */
.hero-v2 { background: var(--green-950); color: var(--paper); padding: 96px 0 96px; }
.hero-v2 .hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-v2 .eyebrow { color: var(--green-300); }
.hero-v2 .hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 20px 0 22px;
  color: var(--paper);
  text-wrap: balance;
}
.hero-v2 .hero-headline .em { font-style: normal; font-weight: 400; color: var(--green-300); }
.hero-v2 .hero-lead { color: rgba(251,248,241,0.78); font-size: 15px; line-height: 1.6; max-width: 56ch; margin: 0 0 28px; font-weight: 400; }
.hero-v2 .hero-photo { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-v2 .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-v2 .hero-meta { display: flex; gap: 32px; margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero-v2 .hero-meta-k { font-family: var(--font-mono); font-size: 11px; color: var(--green-300); letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.hero-v2 .hero-meta-v { color: var(--paper); font-weight: 500; font-size: 13px; }

/* ===== Photo placeholder ===== */
.photo-ph {
  background: linear-gradient(135deg, var(--soil-700), var(--soil-500));
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  overflow: hidden;
}
.photo-ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.18), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.25), transparent 60%);
}
.photo-ph[data-tone="grain"] { background: linear-gradient(135deg, #c39a4a, #8a6a2e); }
.photo-ph[data-tone="port"] { background: linear-gradient(135deg, #2d5e3e, #14301f); }
.photo-ph[data-tone="phosphate"] { background: linear-gradient(135deg, #8a8473, #4a4639); }
.photo-ph[data-tone="field"] { background: linear-gradient(135deg, #86bc97, #2d5e3e); }
.photo-ph[data-tone="silo"] { background: linear-gradient(135deg, #c4a87f, #5a4530); }
.photo-ph .ph-label {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.photo-ph .ph-corner {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* ===== Two pillars block (Agriculturals / Phosphate) ===== */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--linen);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.pillar:hover { box-shadow: var(--shadow-md); border-color: var(--stone-300); }
.pillar .pillar-photo { height: 320px; flex-shrink: 0; background: var(--bone); overflow: hidden; }
.pillar .pillar-photo > * { width: 100%; height: 100%; }
.pillar .pillar-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
.pillar .pillar-num { font-family: var(--font-mono); font-size: 11px; color: var(--green-700); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px; }
.pillar h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.pillar p { font-size: 14px; line-height: 1.6; color: var(--fg-2); margin: 0 0 20px; }
.pillar .pillar-list {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; padding: 0;
  list-style: none;
}
.pillar .pillar-list li {
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid var(--linen);
  border-radius: 999px;
  font-weight: 500;
  color: var(--green-800);
  background: var(--green-50);
}
.pillar .pillar-link {
  margin-top: auto;
  font-size: 13px; font-weight: 600;
  color: var(--green-800); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.pillar .pillar-link:hover { color: var(--green-950); }
.pillar .pillar-link .arrow { transition: transform var(--dur) var(--ease-out); }
.pillar .pillar-link:hover .arrow { transform: translateX(4px); }

/* ===== Section heads ===== */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head .section-eyebrow-col .eyebrow { display: inline-flex; }
.section-head-stacked {
  display: block;
  grid-template-columns: none;
  margin-bottom: 48px;
}
.section-head-stacked .eyebrow { display: inline-flex; margin-bottom: 18px; }
.section-head-stacked h2 { margin: 0 0 14px; }
.section-head-stacked p { margin: 0; max-width: 58ch; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 12px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.section-deep .section-head h2 { color: var(--paper); }
.section-head p { font-size: 15px; line-height: 1.6; color: var(--fg-2); margin: 0; max-width: 60ch; font-weight: 400; }
.section-deep .section-head p { color: rgba(251,248,241,0.78); }

/* ===== Values grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-cell {
  padding: 28px 24px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color var(--dur) var(--ease-out), background var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.value-cell:hover { border-color: var(--green-500); background: rgba(255,255,255,0.04); }
.value-cell .value-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-300);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
}
.value-cell .value-num::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.15);
}
.value-cell h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
  color: var(--paper);
}
.value-cell p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(251,248,241,0.68);
  margin: 0;
}

/* Light-surface variant (when used outside section-deep) */
.section:not(.section-deep) .values-grid .value-cell {
  background: var(--paper);
  border-color: var(--linen);
}
.section:not(.section-deep) .value-cell .value-num { color: var(--green-700); }
.section:not(.section-deep) .value-cell .value-num::after { background: var(--linen); }
.section:not(.section-deep) .value-cell h4 { color: var(--ink); }
.section:not(.section-deep) .value-cell p { color: var(--fg-2); }
.section:not(.section-deep) .value-cell:hover { border-color: var(--green-500); background: var(--paper); }

/* ===== Values list (manifesto layout for odd counts) ===== */
.values-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.value-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 1.1fr) 2fr;
  gap: 32px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background var(--dur) var(--ease-out), padding-left var(--dur) var(--ease-out);
}
.value-row:hover {
  background: rgba(255,255,255,0.025);
  padding-left: 12px;
}
.value-row-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--green-300, var(--green-500));
  opacity: 0.7;
}
.value-row-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--paper);
}
.value-row-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 56ch;
}

/* Light variant */
.section:not(.section-deep) .values-list { border-top-color: var(--linen); }
.section:not(.section-deep) .value-row { border-bottom-color: var(--linen); }
.section:not(.section-deep) .value-row:hover { background: var(--paper); }
.section:not(.section-deep) .value-row-num { color: var(--green-700); }
.section:not(.section-deep) .value-row-title { color: var(--ink); }
.section:not(.section-deep) .value-row-desc { color: var(--fg-2); }

@media (max-width: 760px) {
  .value-row {
    grid-template-columns: 56px 1fr;
    gap: 4px 16px;
    padding: 22px 0;
  }
  .value-row-num { grid-row: 1; grid-column: 1; }
  .value-row-title { grid-row: 1; grid-column: 2; font-size: 18px; }
  .value-row-desc { grid-row: 2; grid-column: 2; }
  .value-row:hover { padding-left: 0; }
}

/* ===== About lede ===== */
.about-head {
  display: block !important;
  margin-bottom: 32px;
}
.about-head .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.about-head h2 {
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.about-lede-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 8px 0 8px;
}
.about-lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  text-wrap: balance;
  margin: 0;
}
.about-lede .em { color: var(--green-700); font-style: normal; font-weight: 600; }
.about-facts {
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--linen);
}
.about-facts > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 14px 0;
  border-bottom: 1px solid var(--linen);
}
.about-facts > div:nth-child(2n) { padding-left: 16px; border-left: 1px solid var(--linen); padding-right: 0; }
.about-facts dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.about-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
}

/* ===== About strip (legacy) ===== */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-strip .about-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.about-strip .about-display .em { color: var(--green-700); font-style: normal; font-weight: 400; }
.about-strip p { font-size: 14px; line-height: 1.65; color: var(--fg-2); margin: 0 0 14px; }

/* ===== About feature (clean editorial banner) ===== */
.about-feature {
  position: relative;
  margin: 48px 0 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--soil-900);
  max-width: 720px;
}
.about-feature-photo {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.about-feature-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.94);
}
.about-feature-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.about-feature-cap {
  position: absolute;
  left: 28px; right: 28px; bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 24px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.about-feature-cap .m {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  white-space: nowrap;
}
.about-feature-cap > span:last-child {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  text-wrap: balance;
  max-width: 720px;
}

/* ===== About — split (text left, image right) ===== */
.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  column-gap: 64px;
  align-items: center;
}
.about-split-text { max-width: 46ch; }
.about-split-text .eyebrow { margin-bottom: 22px; }
.about-split-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.about-split-headline .em { font-style: normal; font-weight: inherit; color: var(--green-700); }
.about-split .about-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 32px;
  max-width: 44ch;
}
.about-split-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px 40px;
  padding-top: 24px;
  border-top: 1px solid var(--linen);
}
.about-split-meta > div { display: flex; flex-direction: column; gap: 4px; }
.about-split-meta .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.about-split-meta .v {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.about-split-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
  background: var(--bone);
}
.about-split-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94);
}
.about-feature-affil-standalone {
  margin: 56px auto 0;
  max-width: 680px;
  border: 1px solid var(--linen);
  border-radius: 3px;
}
@media (min-width: 720px) {
  .about-feature-affil-standalone .about-feature-affil {
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    padding: 28px;
  }
  .about-feature-affil-standalone .affil-row-eyebrow {
    grid-column: 1 / -1;
    margin: 0 0 14px;
  }
}
@media (max-width: 880px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-split-photo { aspect-ratio: 4 / 3; }
  .about-split-text { max-width: none; }
}

/* ===== About feature + merged affiliations ===== */
.about-feature-merged { display: flex; flex-direction: column; }
.about-feature-merged .about-feature-photo { aspect-ratio: 16 / 8; }
.about-feature-affil {
  background: var(--bone);
  border: 1px solid var(--linen);
  border-top: 0;
  padding: 24px 28px 22px;
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) 1fr 1fr;
  column-gap: 48px;
  align-items: center;
}
.about-feature-affil .affil-row-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.about-feature-affil .affil-row-items { display: contents; }
@media (max-width: 720px) {
  .about-feature-affil { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
}

/* ===== Affiliations row (balanced editorial ledger) ===== */
.affil-row {
  margin-top: 64px;
  padding: 28px 0 24px;
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) 1fr 1fr;
  column-gap: 48px;
  align-items: start;
}
.affil-row-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 6px 0 0;
  padding-top: 4px;
}
.affil-row-items {
  display: contents;
}
.affil-row-item {
  position: relative;
  display: block;
}
.affil-row-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.affil-row-item strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--fg-1);
  line-height: 1.2;
}
.affil-row-item span {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.5;
}
.affil-row-note {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--linen);
  font-size: 12px;
  color: var(--fg-3);
  font-style: normal;
  text-align: center;
}

/* ===== Markets ===== */
.markets-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.market-card {
  background: var(--surface);
  border: 1px solid var(--linen);
  padding: 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--dur) var(--ease-out);
}
.market-card:hover, .market-card.active {
  border-color: var(--green-700);
  background: var(--green-50);
}
.market-card .market-id { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); letter-spacing: 0.1em; }
.market-card h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 10px 0 6px; letter-spacing: -0.005em; }
.market-card p { font-size: 13px; color: var(--fg-2); margin: 0; line-height: 1.55; }

/* ===== Markets map ===== */
.map-toolbar {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 16px;
  gap: 24px; flex-wrap: wrap;
}
.map-toolbar-left { display: flex; flex-direction: column; gap: 8px; }
.map-tool-eyebrow {
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600;
}
.map-tool-toggle {
  display: inline-flex;
  background: var(--bone);
  border: 1px solid var(--linen);
  border-radius: 6px;
  padding: 3px;
  gap: 2px;
}
.map-tool-toggle button {
  background: transparent;
  border: 0;
  padding: 7px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  cursor: pointer;
  border-radius: 4px;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.map-tool-toggle button.on {
  background: var(--green-700);
  color: var(--paper);
}
.map-toolbar-right { display: flex; gap: 24px; }
.map-stat { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; }
.map-stat .k {
  font-family: var(--font-sans); font-size: 9.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3); font-weight: 600;
}
.map-stat .v {
  font-family: var(--font-display); font-size: 16px;
  font-weight: 600; color: var(--green-900);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}

.map-wrap {
  position: relative;
  background: var(--bone);
  border: 1px solid var(--linen);
  border-radius: 8px;
  padding: 32px;
  overflow: hidden;
}
.map-svg { width: 100%; height: auto; display: block; }
.map-graticule line {
  stroke: rgba(94,77,52,0.06);
  stroke-width: 1;
  stroke-dasharray: 2 6;
}
.map-land {
  fill: #d9d2bc;
  stroke: #c8bfa3;
  stroke-width: 0.4;
  pointer-events: none;
}
.map-region-hit {
  fill: transparent;
  stroke: transparent;
  cursor: pointer;
  transition: fill var(--dur) var(--ease-out);
}
.map-region-hit:hover { fill: rgba(45, 94, 62, 0.12); }
.region-active-layer { pointer-events: none; }
.map-trade-lines path {
  fill: none;
  stroke: var(--green-700);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  opacity: 0.5;
  transition: opacity var(--dur) var(--ease-out), stroke-width var(--dur) var(--ease-out);
}
.map-trade-lines path.active { opacity: 0.95; stroke-width: 1.5; stroke-dasharray: 4 3; }
.map-flow-dots circle { pointer-events: none; }

.map-origin-ring {
  fill: none;
  stroke: var(--clay-500);
  stroke-width: 1;
  opacity: 0.5;
  animation: originPulse 2.4s ease-in-out infinite;
}
@keyframes originPulse {
  0%, 100% { r: 7; opacity: 0.6; }
  50% { r: 14; opacity: 0; }
}
.map-pin {
  fill: var(--green-700);
  stroke: var(--paper);
  stroke-width: 1.6;
  transition: r var(--dur) var(--ease-out);
}
.map-pin-pulse {
  fill: var(--green-500);
  opacity: 0.4;
  animation: pulse 2.4s var(--ease-out) infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes pulse {
  0% { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.map-active-chip {
  position: absolute;
  top: 48px; right: 48px;
  background: var(--paper);
  border: 1px solid var(--linen);
  border-radius: 6px;
  padding: 12px 16px 14px;
  width: 240px;
  max-width: calc(100% - 96px);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}
.map-chip-name { white-space: normal; word-wrap: break-word; }
.map-chip-eyebrow {
  font-family: var(--font-sans); font-size: 9.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-700); font-weight: 600;
  margin-bottom: 4px;
}
.map-chip-name {
  font-family: var(--font-display); font-size: 16px;
  font-weight: 600; color: var(--green-950);
  line-height: 1.2; letter-spacing: -0.01em;
}
.map-chip-flow {
  font-family: var(--font-sans); font-size: 11px;
  color: var(--fg-3); margin-top: 6px;
  letter-spacing: 0.04em;
}

.market-card-foot {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  font-family: var(--font-sans); font-size: 11px;
  color: var(--fg-3); letter-spacing: 0.08em;
  text-transform: uppercase;
}
.market-card-foot .market-flow {
  background: var(--green-100, #dceadf);
  color: var(--green-700);
  padding: 4px 8px; border-radius: 3px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
}

@media (prefers-reduced-motion: reduce) {
  .map-pin-pulse, .map-origin-ring { animation: none; }
  .map-flow-dots animateMotion, .map-flow-dots animate { display: none; }
}

/* Mobile map */
@media (max-width: 760px) {
  .map-wrap { padding: 14px; margin-left: -16px; margin-right: -16px; border-radius: 0; }
  .map-active-chip {
    position: static;
    margin-top: 12px;
    box-shadow: none;
    border-color: var(--linen);
    background: var(--bone);
  }
  .map-toolbar { flex-direction: column; align-items: stretch; gap: 12px; }
  .map-toolbar-right { justify-content: space-between; }
  .map-tool-toggle button { padding: 9px 12px; font-size: 11px; }
}

/* ===== Affiliations ===== */
.affil-band {
  background: var(--bone);
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
  padding: 48px 0;
}
.affil-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.affil-grid .affil-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-3); }
.affil-card {
  display: flex; gap: 16px; align-items: center;
  padding: 16px 24px;
  background: var(--paper);
  border: 1px solid var(--linen);
  border-radius: 8px;
}
.affil-mark {
  width: 56px; height: 56px;
  border-radius: 4px;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--green-800);
  flex-shrink: 0;
}
.affil-card .affil-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.affil-card .affil-desc { font-size: 12px; color: var(--fg-3); margin-top: 2px; line-height: 1.4; }

/* ===== Commodities (full-page) ===== */
.commodity-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--linen);
  align-items: start;
}
.commodity-row:last-child { border-bottom: 1px solid var(--linen); }
.commodity-row .c-num { font-family: var(--font-mono); font-size: 12px; color: var(--fg-3); letter-spacing: 0.1em; padding-top: 6px; }
.commodity-row .c-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.commodity-row .c-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-700); }
.commodity-row .c-desc { font-size: 15px; line-height: 1.7; color: var(--fg-2); margin: 0 0 16px; }
.commodity-row dl { margin: 0; padding: 12px 0 0; border-top: 1px dashed var(--linen); display: grid; grid-template-columns: 140px 1fr; gap: 8px 16px; }
.commodity-row dt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-3); margin: 0; padding-top: 2px; }
.commodity-row dd { margin: 0; font-size: 13px; color: var(--ink); font-family: var(--font-mono); }

/* ===== Tabs (Commodities page) ===== */
.tabs {
  display: inline-flex;
  background: var(--bone);
  padding: 4px;
  border-radius: 6px;
  margin-bottom: 32px;
  border: 1px solid var(--linen);
}
.tab {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--fg-2);
  transition: all var(--dur) var(--ease-out);
}
.tab.active { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-xs); }
.tab:hover:not(.active) { color: var(--ink); }

/* ===== About page hero ===== */
.page-hero {
  padding: 120px 0 64px;
  border-bottom: 1px solid var(--linen);
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 22ch;
}
.page-hero h1 .em { font-style: normal; font-weight: 400; color: var(--green-700); }
.page-hero .lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
  font-weight: 400;
  max-width: 64ch;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
}
.field input, .field textarea, .field select {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--linen);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px var(--green-100);
}
.field.error input, .field.error textarea, .field.error select { border-color: var(--clay-500); }
.field .err-msg { font-size: 12px; color: var(--clay-500); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-meta {
  background: var(--surface);
  border: 1px solid var(--linen);
  border-radius: 8px;
  padding: 32px;
}
.contact-meta h4 { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin: 0 0 4px; letter-spacing: -0.01em; }
.contact-meta .row { padding: 16px 0; border-top: 1px solid var(--linen); }
.contact-meta .row:first-of-type { border-top: 1px solid var(--linen); margin-top: 24px; padding-top: 24px; }
.contact-meta .k { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-3); margin-bottom: 6px; }
.contact-meta .v { font-size: 14px; color: var(--ink); line-height: 1.55; }
.contact-meta a { color: var(--green-800); text-decoration: none; }
.contact-meta a:hover { color: var(--green-950); text-decoration: underline; }

/* Submit success */
.form-success {
  padding: 32px;
  border: 1px solid var(--green-300);
  background: var(--green-50);
  border-radius: 8px;
  display: flex; gap: 16px; align-items: flex-start;
}
.form-success .check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.form-success h4 { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 0 0 8px; }
.form-success p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; }

/* ===== CTA band ===== */
.cta-band { background: var(--green-950); color: var(--paper); padding: 96px 0; }
.cta-band .cta-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: end; }
.cta-band h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2.6vw, 36px); line-height: 1.15; letter-spacing: -0.015em; margin: 0; color: var(--paper); text-wrap: balance; }
.cta-band h2 .em { font-style: normal; color: var(--green-300); font-weight: 400; }
.cta-band .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Footer ===== */
.as-footer { background: var(--green-950); color: var(--paper); border-top: 1px solid rgba(255,255,255,0.06); }
.as-footer-top { padding: 80px 0 96px; }
.as-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
.as-footer-brand { display: flex; gap: 18px; align-items: flex-start; max-width: 360px; }
.as-footer-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  flex-shrink: 0;
}
.as-footer-logo {
  height: 96px;
  width: auto;
  display: block;
  filter: none;
  opacity: 1;
}
.as-footer-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--paper); }
.as-footer-tag { font-size: 12px; color: rgba(251, 248, 241, 0.65); margin-top: 4px; line-height: 1.5; }
.as-footer h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--green-300); margin: 0 0 16px; font-weight: 600; }
.as-footer .col-links { display: flex; flex-direction: column; gap: 6px; }
.as-footer .col-links a {
  color: var(--paper); text-decoration: none; font-size: 14px;
  opacity: 0.82; transition: opacity var(--dur) var(--ease-out);
  cursor: pointer;
}
.as-footer .col-links a:hover { opacity: 1; }
.as-footer-base {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(251, 248, 241, 0.55);
  flex-wrap: wrap; gap: 16px;
  margin-top: 0;
}

/* ===== Responsive (basic) ===== */
@media (max-width: 980px) {
  .hero-v1 .hero-grid, .hero-v2 .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  /* On mobile, lead with the visual then the copy */
  .hero-v1 .hero-circle, .hero-v2 .hero-photo { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .pillars { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .as-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .as-footer-top { padding: 56px 0 40px; }
  .as-footer-brand { max-width: none; flex-direction: row; align-items: center; gap: 16px; }
  .as-footer-logo { height: 64px; }
  .as-footer-name { font-size: 18px; }
  .as-footer-tag { font-size: 12px; line-height: 1.5; margin-top: 2px; }
  .as-footer .col-links { gap: 4px; }
  .as-footer h5 { margin-bottom: 10px; }
  .as-footer-base { padding: 24px 0; }
  .markets-list { grid-template-columns: 1fr; }
  .commodity-row { grid-template-columns: 1fr; gap: 16px; }
  .commodity-row .c-num { padding-top: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-meta { padding: 24px 20px; }
  .contact-meta h4 { font-size: 18px; text-wrap: balance; }
  .field-row { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; gap: 32px; }
  .about-lede-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-feature-photo { aspect-ratio: 4 / 3; }
  .about-feature-cap { flex-direction: column; gap: 8px; left: 18px; right: 18px; bottom: 16px; }
  .affil-row { grid-template-columns: 1fr; }
  .affil-row-items { grid-template-columns: 1fr; gap: 18px; }
  .affil-row-note { grid-column: 1; }
  .as-nav { display: none; }
  .as-header-inner {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
  }
  .as-header-actions { margin-left: auto; }
  .as-header-actions .as-link-quiet { display: none; }
  .as-cta-desktop { display: none; }
  .as-menu-toggle { display: inline-flex; }
  /* Mobile: section padding tighter */
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }
  /* About split stacks */
  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-split-photo { aspect-ratio: 4 / 3; }
  .about-split-meta { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
  /* Affiliations stack */
  .about-feature-affil { grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  /* Hero text scales */
  .hero-full-headline { font-size: clamp(38px, 9vw, 64px) !important; }
  .hero-full-lead { font-size: 16px !important; padding: 0 8px; }
  /* Pillar photos shorter */
  .pillar .pillar-photo { height: 220px; }
  .pillar .pillar-body { padding: 24px; }
  /* Tweaks panel doesn't block the menu */
  .tweaks-panel { z-index: 80 !important; }
  .cta-band .cta-grid { grid-template-columns: 1fr; }
  .affil-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== Phosphate origin — diptych gallery (section separator) ===== */
.phosphate-origin-gallery { background: var(--bone); padding: 72px 0; }
.phosphate-origin-gallery .po-gallery-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--linen);
}
.phosphate-origin-gallery .po-gallery-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.phosphate-origin-gallery .po-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.phosphate-origin-gallery .po-gfig {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phosphate-origin-gallery .po-gfig-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 3px;
  background: var(--linen);
}
.phosphate-origin-gallery .po-gfig-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.94);
  transition: transform 600ms var(--ease-out);
}
.phosphate-origin-gallery .po-gfig:hover .po-gfig-media img { transform: scale(1.03); }
.phosphate-origin-gallery .po-gfig figcaption {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.phosphate-origin-gallery .po-gfig figcaption .n {
  color: var(--green-700);
  font-weight: 600;
}
.phosphate-origin-gallery .po-gfig figcaption .t { color: var(--fg-2); }
@media (max-width: 720px) {
  .phosphate-origin-gallery .po-gallery { grid-template-columns: 1fr; gap: 20px; }
  .phosphate-origin-gallery .po-gallery-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ===== Phosphate origin band (contained editorial) ===== */
.phosphate-origin .po-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto;
  column-gap: 32px;
  row-gap: 24px;
  align-items: stretch;
}
.phosphate-origin .po-text {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  align-self: center;
  padding-right: 8px;
  max-width: 36ch;
}
.phosphate-origin .po-text .eyebrow { margin-bottom: 18px; }
.phosphate-origin .po-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.phosphate-origin .po-headline .em {
  font-style: normal;
  font-weight: 400;
  color: var(--green-700);
}
.phosphate-origin .po-lede {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 24px;
}
.phosphate-origin .po-facts {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px 32px;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--linen);
}
.phosphate-origin .po-facts > div { margin: 0; }
.phosphate-origin .po-facts dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 4px;
}
.phosphate-origin .po-facts dd {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.phosphate-origin .po-fig {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bone);
}
.phosphate-origin .po-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94);
}
.phosphate-origin .po-fig::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.phosphate-origin .po-fig figcaption {
  position: absolute;
  left: 20px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  z-index: 1;
}
.phosphate-origin .po-fig-main {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
}
.phosphate-origin .po-fig-aux {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
  aspect-ratio: 4 / 5;
  align-self: end;
}
.phosphate-origin .po-fig-aux + .po-spacer,
.phosphate-origin .po-grid > .po-fig-aux {
  /* spacer cell above the aux figure keeps it lower than the main */
}

@media (max-width: 980px) {
  .phosphate-origin .po-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 20px;
  }
  .phosphate-origin .po-text {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    padding-right: 0;
    max-width: none;
  }
  .phosphate-origin .po-fig-main {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    aspect-ratio: 4 / 5;
  }
  .phosphate-origin .po-fig-aux {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    aspect-ratio: 4 / 5;
    align-self: stretch;
  }
}
@media (max-width: 560px) {
  .phosphate-origin .po-grid { grid-template-columns: 1fr; }
  .phosphate-origin .po-fig-main, .phosphate-origin .po-fig-aux {
    grid-column: 1 / 2; aspect-ratio: 16 / 11;
  }
  .phosphate-origin .po-fig-aux { grid-row: 3 / 4; }
}

/* fade-in for page changes */
.page-fade { animation: pageFade 380ms var(--ease-out); }
@keyframes pageFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* No italics anywhere — covers <em>, <i>, <cite>, <address> defaults */
em, i, cite, address, .em { font-style: normal; }

/* ============== Accessibility ============== */

/* Skip-to-content link — hidden until keyboard-focused */
.skip-to-content {
  position: fixed;
  top: 12px;
  left: 12px;
  background: var(--green-950);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  z-index: 300;
  transform: translateY(-200%);
  transition: transform 0.18s var(--ease-out);
}
.skip-to-content:focus {
  transform: translateY(0);
  outline: 2px solid var(--green-300);
  outline-offset: 2px;
}

/* Consistent, visible focus indicators for all keyboard users.
   Mouse users still get the default :hover treatment. */
:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 2px;
  border-radius: 2px;
}
.btn:focus-visible,
.btn-pill:focus-visible,
.values-pills li:focus-visible {
  outline-offset: 3px;
}
.as-nav a:focus-visible,
.as-mobile-nav a:focus-visible {
  outline-offset: 4px;
}

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

/* ============== Consistent fade-in for first-paint sections ============== */
.section-fade {
  animation: pageFade 480ms var(--ease-out) both;
}

/* Scroll-triggered reveal — added by app on mount; respects prefers-reduced-motion */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============== Statement band — visual breather between dense sections ============== */
.statement-band {
  background: var(--paper);
  padding: 80px 0;
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
  text-align: center;
}
.statement-band .container { max-width: 880px; }
.statement-band .statement-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 28px;
}
.statement-band p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.statement-band p .em {
  color: var(--green-700);
  font-weight: 600;
}
@media (max-width: 720px) {
  .statement-band { padding: 64px 0; }
}

/* Blog — preview grid on homepage */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--linen);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 48, 31, 0.18);
  box-shadow: 0 12px 30px rgba(20, 48, 31, 0.08);
}
.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bone);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.94);
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-media img { transform: scale(1.03); }
.blog-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.blog-card-category { color: var(--green-700); font-weight: 600; }
.blog-card-sep { opacity: 0.6; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-wrap: balance;
}
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0;
}
.blog-card-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-card-link .arrow { transition: transform var(--dur) var(--ease-out); }
.blog-card:hover .blog-card-link .arrow { transform: translateX(4px); }

.blog-preview-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.btn-pill-ink {
  background: var(--green-950);
  color: var(--paper);
  border-color: var(--green-950);
}
.btn-pill-ink:hover { background: var(--green-800); border-color: var(--green-800); }
.btn-pill-back::after { content: ''; }
.btn-pill-back::before {
  content: '←';
  font-size: 1.05em;
  line-height: 1;
  transition: transform var(--dur) var(--ease-out);
}
.btn-pill-back:hover::before { transform: translateX(-3px); }

/* Blog — index page */
.blog-index-hero {
  background: var(--green-950);
  color: var(--paper);
  padding: 96px 0 80px;
}
.blog-index-hero .eyebrow-on-dark { margin-bottom: 24px; }
.blog-index-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--paper);
  text-wrap: balance;
}
.blog-index-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(251, 248, 241, 0.78);
  max-width: 56ch;
  margin: 0;
}
.blog-index-list {
  list-style: none;
  margin: 0;
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

/* Blog — single post */
.blog-post-hero { padding: 96px 0 32px; }
.blog-post-hero-inner { max-width: 760px; }
.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-800);
  text-decoration: none;
  margin-bottom: 32px;
}
.blog-post-back:hover { color: var(--green-950); }
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 22px;
}
.blog-post-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.blog-post-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
  max-width: 60ch;
}
.blog-post-figure { margin: 56px 0 56px; }
.blog-post-figure-media {
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bone);
}
.blog-post-figure-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-post-body {
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg-1);
}
.blog-post-body p { margin: 0 0 22px; }
.blog-post-body p:last-child { margin-bottom: 0; }
.blog-post-foot {
  max-width: 680px;
  margin: 56px auto 80px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 980px) {
  .blog-preview-grid { grid-template-columns: 1fr; }
  .blog-index-list { grid-template-columns: 1fr; }
}

/* Values — compact pill grid (no descriptions) */
.values-section { padding: 96px 0; }
.values-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.values-pills li {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--paper);
  padding: 14px 22px;
  border: 1px solid rgba(179, 214, 189, 0.28);
  border-radius: 999px;
  background: transparent;
  transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.values-pills li:hover {
  background: rgba(179, 214, 189, 0.08);
  border-color: rgba(179, 214, 189, 0.5);
}

/* Markets — two flow blocks, no map */
.markets-flows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.markets-flow {
  border: 1px solid var(--linen);
  border-radius: 4px;
  padding: 32px 32px 36px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.markets-flow-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.markets-flow-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 600;
  text-wrap: balance;
}
.markets-flow-regions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.markets-flow-regions li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  padding: 14px 18px;
  border: 1px solid var(--linen);
  border-radius: 3px;
  background: var(--bone);
}
.markets-flow-regions li.is-primary {
  background: var(--green-950);
  border-color: var(--green-950);
  color: var(--paper);
}
.markets-flow-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-300);
  padding: 4px 10px;
  border: 1px solid rgba(179, 214, 189, 0.35);
  border-radius: 999px;
}
@media (max-width: 880px) {
  .markets-flows { grid-template-columns: 1fr; }
}

/* About — simple centered article */
.about-simple {
  max-width: 680px;
  margin: 0 auto;
}
.about-simple .eyebrow { margin-bottom: 22px; }
.about-simple .about-split-headline {
  margin: 0 0 28px;
  max-width: none;
}
.about-simple .about-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0 0 20px;
  max-width: none;
}
.about-simple .about-lede:last-of-type { margin-bottom: 36px; }
.about-simple-meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--linen);
}
.about-simple-meta > div { margin: 0; display: flex; flex-direction: column; gap: 4px; }
.about-simple-meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0;
}
.about-simple-meta dd {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

/* Affiliated-with: logo cards */
.affil-row-item-logo .affil-row-item-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 64px;
  max-width: 220px;
  margin-bottom: 14px;
  overflow: hidden;
}
.affil-row-item-logo .affil-row-item-logo-wrap picture {
  display: block;
  max-width: 100%;
  max-height: 100%;
  line-height: 0;
}
.affil-row-item-logo .affil-row-item-logo-wrap img {
  max-height: 64px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
