/* ═══════════════════════════════════════════════════════════
   AA MINERALS — MAIN STYLESHEET  (mobile-first)
   ═══════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Mono:wght@300;400&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:       #C8A84B;
  --gold-light: #E8C96D;
  --gold-pale:  rgba(200,168,75,0.12);
  --black:      #070707;
  --deep:       #0D0D0D;
  --surface:    #111111;
  --surface2:   #161616;
  --border:     rgba(200,168,75,0.15);
  --border-dim: rgba(255,255,255,0.06);
  --text:       #E8E4DC;
  --muted:      #6B6660;
  --green:      #5CB88A;
  --red:        #E05C5C;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Helvetica Neue', Arial, sans-serif;
  --mono:  'DM Mono', 'Courier New', monospace;

  /* spacing scale */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;

  /* section padding - mobile */
  --section-pad: 72px var(--px);
  --px: 20px;
}

/* ─── BASE ───────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* desktop cursor */
@media (pointer: fine) {
  body { cursor: none; }
  .cursor, .cursor-ring { display: block; }
}
@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* ─── NOISE OVERLAY ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
  z-index: 1000;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s;
  mix-blend-mode: difference;
  display: none;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(200,168,75,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .4s, height .4s, border-color .3s;
  display: none;
}
.cursor.hovered { width: 14px; height: 14px; }
.cursor-ring.hovered { width: 54px; height: 54px; border-color: rgba(200,168,75,.8); }

/* ─── SCROLL PROGRESS BAR ───────────────────────────────── */
#scroll-bar {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 10001;
  transition: width .05s linear;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px var(--px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding .4s, background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  padding: 14px var(--px);
  background: rgba(7,7,7,.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

/* ===== ENLARGED LOGO STYLES ===== */
.nav-logo {
  display: flex; 
  align-items: center; 
  gap: 12px;
}

.nav-logo .mark { 
  width: 100px; 
  height: 80px; 
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 168, 75, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.nav-logo:hover .mark {
  background: rgba(200, 168, 75, 0.15);
}

.nav-logo .mark img { 
  width: 100px; 
  height: 80px; 
  
}

.nav-logo .wordmark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.nav-logo .wordmark span { 
  color: var(--gold);
  font-weight: 600;
}

/* desktop links */
.nav-links {
  display: none;
  list-style: none;
  gap: 40px;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  display: none;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 10px 22px; background: transparent;
  cursor: none; transition: background .3s, color .3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* hamburger */
.nav-burger {
  display: flex; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 1px;
  background: var(--text); transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.nav-mobile {
  position: fixed; inset: 0; top: 0;
  background: rgba(7,7,7,.98);
  backdrop-filter: blur(24px);
  z-index: 490;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--serif);
  font-size: 38px; font-weight: 300;
  letter-spacing: .02em;
  color: var(--muted);
  transition: color .3s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); }
.nav-mobile .mob-cta {
  margin-top: 20px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 14px 36px; border: none;
}

/* ─── PRICE TICKER STRIP ────────────────────────────────── */
.ticker-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  background: var(--deep);
}
.ticker-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .07em; flex-shrink: 0;
}
.t-sym { color: var(--gold); }
.t-price { color: var(--text); }
.t-chg { color: var(--green); }
.t-chg.dn { color: var(--red); }
.t-sep { width: 1px; height: 10px; background: var(--border); }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: slow-zoom 24s ease-in-out infinite alternate;
  filter: brightness(.32) saturate(.65);
}
@keyframes slow-zoom { to { transform: scale(1); } }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--black) 0%, rgba(7,7,7,.7) 35%, transparent 65%),
    linear-gradient(to right, rgba(7,7,7,.6) 0%, transparent 60%);
}
.hero-leak {
  position: absolute; top: -10%; right: -10%;
  width: 55vw; height: 55vw; max-width: 500px;
  background: radial-gradient(circle, rgba(200,168,75,.09) 0%, transparent 65%);
  z-index: 1; pointer-events: none;
  animation: leak-pulse 6s ease-in-out infinite alternate;
}
@keyframes leak-pulse { to { opacity: .7; transform: scale(1.12); } }
.hero-ghost-word {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -54%);
  font-family: var(--serif);
  font-size: clamp(80px, 20vw, 280px);
  font-weight: 300; letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,168,75,.06);
  white-space: nowrap; user-select: none;
  z-index: 1; pointer-events: none;
}
.hero-body {
  position: relative; z-index: 2;
  padding: 0 var(--px);
  display: flex; flex-direction: column; gap: 0;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: fade-up .7s ease .4s forwards;
}
.eyebrow-dot {
  width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .2; } }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(52px, 13vw, 136px);
  font-weight: 300; line-height: .92;
  letter-spacing: -.02em;
  opacity: 0; animation: fade-up .9s ease .55s forwards;
}
.hero-h1 em { font-style: italic; color: var(--gold); display: block; }
.hero-h1 .ghost {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232,228,220,.3);
}
.hero-sub {
  margin-top: 24px; max-width: 400px;
  font-size: 13px; line-height: 1.85; color: var(--muted);
  opacity: 0; animation: fade-up .8s ease .75s forwards;
}
.hero-btns {
  margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px;
  opacity: 0; animation: fade-up .8s ease .9s forwards;
}
.hero-panel {
  display: none; /* shown on desktop */
}

/* hero stats bar */
.hero-stats {
  position: relative; z-index: 2;
  margin-top: 56px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr;
  opacity: 0; animation: fade-up .8s ease 1.1s forwards;
}
.hstat {
  padding: 24px var(--px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hstat:nth-child(2n) { border-right: none; }
.hstat:nth-last-child(-n+2) { border-bottom: none; }
.hstat-n {
  font-family: var(--serif); font-size: 36px;
  font-weight: 300; color: var(--gold); line-height: 1;
}
.hstat-l {
  font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 4px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  padding: 14px 28px; border: none;
  font-family: var(--sans); font-weight: 500;
  transition: all .3s; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-text {
  background: none; border: none; padding: 14px 0;
  color: var(--muted); gap: 10px;
}
.btn-ghost-text::after { content: '→'; transition: transform .3s; }
.btn-ghost-text:hover { color: var(--gold); }
.btn-ghost-text:hover::after { transform: translateX(4px); }

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0; overflow: hidden; background: var(--deep);
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
}
.marquee-item {
  font-family: var(--serif); font-size: 18px; font-style: italic;
  color: var(--muted); opacity: .4; flex-shrink: 0;
  display: flex; align-items: center; gap: 24px;
}
.marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 1; }

/* ─── SECTION SHELLS ─────────────────────────────────────── */
.section { padding: var(--section-pad); }
.section-inner { max-width: 1320px; margin: 0 auto; }
.section-label {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center;
  gap: 12px; margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 7vw, 60px);
  font-weight: 300; line-height: 1.05;
}
.section-title em { font-style: italic; color: var(--gold); }

/* ─── COMMODITY CARDS ────────────────────────────────────── */
.commodity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.com-card {
  position: relative; overflow: hidden;
  background: var(--surface); aspect-ratio: 3/4;
}
.com-card:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.com-card img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .5; transition: opacity .6s, transform .8s;
}
.com-card:hover img { opacity: .68; transform: scale(1.04); }
.com-card-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,.95) 0%, rgba(7,7,7,.2) 60%, transparent 100%);
}
.com-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
}
.com-tag {
  font-family: var(--mono); font-size: 8px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border);
  background: var(--gold-pale); padding: 3px 8px;
  display: inline-block; margin-bottom: 8px;
}
.com-name {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
}
.com-card:first-child .com-name { font-size: 28px; }
.com-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border);
}
.com-price { font-family: var(--mono); font-size: 11px; color: var(--gold); }
.com-cert { font-size: 9px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.com-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
  opacity: 0; transform: translateY(-6px);
  transition: all .3s;
}
.com-card:hover .com-arrow { opacity: 1; transform: none; border-color: var(--gold); color: var(--gold); }

/* ─── METRICS ────────────────────────────────────────────── */
.metrics-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metrics-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}
.met-card {
  padding: 40px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.met-card:nth-child(2n) { border-right: none; }
.met-card:nth-last-child(-n+2) { border-bottom: none; }
.met-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s;
}
.met-card:hover::after { transform: scaleX(1); }
.met-n {
  font-family: var(--serif); font-size: 52px;
  font-weight: 300; color: var(--gold); line-height: 1;
}
.met-l { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.met-s { font-size: 11px; color: var(--muted); margin-top: 4px; opacity: .6; }

/* ─── PROCESS STEPS ─────────────────────────────────────── */
.steps-list { margin-top: 40px; }
.step-item {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 16px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
  opacity: .5; transition: opacity .3s;
}
.step-item:first-child { border-top: 1px solid var(--border); }
.step-item:hover { opacity: 1; }
.step-n { font-family: var(--mono); font-size: 10px; color: var(--gold); padding-top: 3px; }
.step-t { font-family: var(--serif); font-size: 20px; font-weight: 300; margin-bottom: 8px; }
.step-d { font-size: 12px; line-height: 1.8; color: var(--muted); }

/* ─── COMPLIANCE CARDS ───────────────────────────────────── */
.cert-grid {
  display: grid; gap: 2px; margin-top: 40px;
}
.cert-card {
  background: var(--surface); padding: 36px 28px;
  border-bottom: 2px solid transparent;
  transition: border-color .3s; position: relative; overflow: hidden;
}
.cert-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.cert-card:hover { border-bottom-color: var(--gold); }
.cert-card:hover::before { opacity: 1; }
.cert-icon { font-size: 24px; margin-bottom: 20px; position: relative; }
.cert-name { font-family: var(--serif); font-size: 22px; font-weight: 300; margin-bottom: 12px; position: relative; }
.cert-desc { font-size: 12px; line-height: 1.8; color: var(--muted); position: relative; }

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-wrap {
  background: var(--surface);
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.contact-wrap::before {
  content: ''; position: absolute;
  top: -120px; right: -120px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,168,75,.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner { padding: 48px 24px; }
.form-grid { display: grid; gap: 14px; margin-top: 32px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-field { display: flex; flex-direction: column; gap: 6px; }
.f-field label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.f-field input, .f-field select, .f-field textarea {
  background: transparent; border: 1px solid var(--border);
  color: var(--text); padding: 12px 14px;
  font-family: var(--sans); font-size: 13px;
  outline: none; transition: border-color .3s; width: 100%;
  -webkit-appearance: none;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--gold); }
.f-field textarea { resize: none; height: 80px; }
.f-field select option { background: var(--surface2); }

/* ─── FOOTER ─────────────────────────────────────────────── */
site-footer, .site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 60px var(--px) 32px;
}
.footer-brand { margin-bottom: 48px; }
.footer-brand p { font-size: 12px; line-height: 1.8; color: var(--muted); margin-top: 16px; max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.f-col h4 { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.f-col li { list-style: none; font-size: 12px; color: var(--muted); margin-bottom: 10px; transition: color .3s; cursor: default; }
.f-col li:hover { color: var(--text); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.footer-copy { font-family: var(--mono); font-size: 10px; color: var(--muted); opacity: .5; }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
  position: relative; padding: 160px var(--px) 80px;
  overflow: hidden; border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.22) saturate(.5);
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(7,7,7,.5) 60%, transparent 100%);
}
.page-hero-body { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; }
.page-hero .section-label { margin-bottom: 20px; }
.page-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 10vw, 100px);
  font-weight: 300; line-height: .95;
  letter-spacing: -.02em;
}
.page-hero-h1 em { color: var(--gold); font-style: italic; }
.page-hero-sub {
  max-width: 500px; font-size: 14px;
  line-height: 1.8; color: var(--muted); margin-top: 24px;
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.in { opacity: 1; transform: none; }
.rev-d1 { transition-delay: .1s; }
.rev-d2 { transition-delay: .2s; }
.rev-d3 { transition-delay: .3s; }
.rev-d4 { transition-delay: .4s; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ─── TABLES ─────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.data-table th {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 400;
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 16px; font-size: 12px; color: var(--text);
  border-bottom: 1px solid var(--border-dim);
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(200,168,75,.03); }
.td-mono { font-family: var(--mono); }
.td-up { color: var(--green); }
.td-dn { color: var(--red); }
.td-badge {
  display: inline-block; padding: 3px 8px;
  font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold-pale); border: 1px solid var(--border);
  color: var(--gold);
}

/* ─── SUPPLY CHAIN DIAGRAM ───────────────────────────────── */
.chain-steps {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 40px;
}
.chain-node {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px; position: relative;
}
.chain-node:not(:last-child)::before {
  content: ''; position: absolute;
  left: 27px; top: 56px; bottom: -28px;
  width: 1px; background: var(--border);
}
.chain-icon-wrap {
  display: flex; flex-direction: column; align-items: center;
}
.chain-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold); flex-shrink: 0;
  background: var(--surface); position: relative; z-index: 1;
  transition: background .3s, border-color .3s;
}
.chain-node:hover .chain-icon { background: var(--gold-pale); border-color: var(--gold); }
.chain-body { padding: 14px 0 40px; }
.chain-num { font-family: var(--mono); font-size: 9px; letter-spacing: .2em; color: var(--gold); margin-bottom: 6px; }
.chain-title { font-family: var(--serif); font-size: 22px; font-weight: 300; margin-bottom: 10px; }
.chain-desc { font-size: 12px; line-height: 1.8; color: var(--muted); }

/* ─── INVESTOR SECTIONS ───────────────────────────────────── */
.inv-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 40px; }
.inv-kpi {
  background: var(--surface); padding: 28px 20px;
  border-bottom: 2px solid transparent; transition: border-color .3s;
}
.inv-kpi:hover { border-bottom-color: var(--gold); }
.inv-kpi-n { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--gold); }
.inv-kpi-l { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.doc-list { margin-top: 32px; display: flex; flex-direction: column; gap: 2px; }
.doc-row {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); padding: 18px 20px;
  border-left: 2px solid transparent; transition: border-color .3s;
}
.doc-row:hover { border-left-color: var(--gold); }
.doc-name { font-size: 13px; }
.doc-meta { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.doc-dl {
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--border);
  padding: 6px 14px; transition: background .3s, color .3s;
}
.doc-dl:hover { background: var(--gold); color: var(--black); }

/* ===== ENLARGED LOGO FOR DESKTOP ===== */
@media (min-width: 768px) {
  .nav-logo .mark { 
    width: 85px; 
    height: 70px; 
  }
  
  .nav-logo .wordmark {
    font-size: 22px;
    letter-spacing: .3em;
  }
  
  .nav-logo {
    gap: 16px;
  }
}

/* ===== EVEN LARGER FOR LARGE DESKTOP ===== */
@media (min-width: 1200px) {
  .nav-logo .mark { 
    width: 100px; 
    height: 80px; 
  }
  
  .nav-logo .wordmark {
    font-size: 26px;
  }
  
  .nav-logo {
    gap: 20px;
  }
}

/* ─── DESKTOP (≥ 768px) ──────────────────────────────────── */
@media (min-width: 768px) {
  :root {
    --section-pad: 100px var(--px);
    --px: 40px;
  }

  .nav-links { display: flex; }
  .nav-cta   { display: block; }
  .nav-burger { display: none; }

  .hero-body { flex-direction: row; align-items: flex-end; gap: 40px; }
  .hero-left { flex: 1; }
  .hero-panel {
    display: block;
    background: rgba(10,10,10,.78);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border);
    border-bottom: none; padding: 28px 24px;
    width: 260px; flex-shrink: 0;
    position: relative; animation: slide-in-r .9s ease 1.1s both;
  }
  .hero-panel::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }
  @keyframes slide-in-r {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: none; }
  }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hstat:nth-child(2n) { border-right: 1px solid var(--border); }
  .hstat:nth-child(4n) { border-right: none; }
  .hstat:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .hstat:last-child { border-bottom: none; }

  .commodity-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; }
  .com-card:first-child { grid-column: auto; grid-row: 1 / 3; aspect-ratio: auto; }
  .com-card { aspect-ratio: auto; min-height: 260px; }
  .com-card:first-child { min-height: 520px; }

  .metrics-grid { grid-template-columns: repeat(4, 1fr); }
  .met-card:nth-child(2n) { border-right: 1px solid var(--border); }
  .met-card:nth-child(4n) { border-right: none; }
  .met-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .met-card:last-child { border-bottom: none; }

  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }

  .contact-inner { padding: 64px 56px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }

  .chain-steps { flex-direction: row; gap: 0; }
  .chain-node { display: flex; flex-direction: column; flex: 1; grid-template-columns: none; }
  .chain-node:not(:last-child)::before {
    left: auto; top: 27px; bottom: auto;
    right: 0; width: 100%; height: 1px;
  }
  .chain-icon-wrap { align-items: flex-start; }
  .chain-body { padding: 16px 32px 0 0; }

  .inv-kpi-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .page-hero { padding: 180px var(--px) 100px; }
}

/* ─── LARGE DESKTOP (≥ 1200px) ───────────────────────────── */
@media (min-width: 1200px) {
  :root { --px: 60px; }
  .site-nav { padding: 28px var(--px); }
  .site-nav.scrolled { padding: 18px var(--px); }
}