/* ============================================
   LAYOUT — containers, grids, sections
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: clamp(4rem, 9vw, 8rem);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--dur-med) var(--ease-out),
              backdrop-filter var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(250, 246, 238, 0.72);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: rgba(59, 47, 47, 0.08);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--white);
  transition: color var(--dur-med) var(--ease-out);
}
.nav.is-scrolled .nav__brand { color: var(--charcoal); }

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--green-deep);
  display: inline-flex;
  align-items: baseline;
  gap: .28rem;
}
.nav.is-transparent .nav__wordmark { color: var(--white); }
.nav__wordmark .feeds {
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.nav__link {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding-block: .35rem;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--dur-med) var(--ease-out);
}
.nav.is-scrolled .nav__link { color: var(--espresso); }

.nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--dur-med) var(--ease-out);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: translateX(-50%) scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__lang {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: .5rem .85rem;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.28);
  color: inherit;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.nav.is-scrolled .nav__lang { border-color: rgba(59,47,47,0.2); }
.nav__lang:hover { background: rgba(200,146,42,0.14); border-color: var(--gold); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.nav__burger span {
  width: 22px; height: 1.5px; background: currentColor;
  position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 1.5px; background: currentColor;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top:  6px; }

@media (max-width: 860px) {
  .nav__links,
  .nav__actions .btn { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero__bg {
  position: absolute; inset: 0;
  z-index: -3;
  background-image:
    /* Center vignette keeps text area dark, edges even darker */
    radial-gradient(ellipse at 50% 40%, rgba(8,20,36,0.55) 0%, rgba(8,20,36,0.78) 55%, rgba(5,12,22,0.92) 100%),
    /* Top-to-bottom brand-tinted wash for premium depth */
    linear-gradient(180deg, rgba(10,37,64,0.6) 0%, rgba(10,24,42,0.65) 50%, rgba(6,16,28,0.85) 100%),
    url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=2400&q=85');
  background-size: cover;
  background-position: center;
  background-blend-mode: normal, multiply, normal;
  will-change: transform;
  animation: kenburns 24s var(--ease-in-out) infinite alternate;
}

/* Subtle gold rim light at bottom — signals the premium brand colour */
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232,184,75,0.35) 20%,
    rgba(232,184,75,0.55) 50%,
    rgba(232,184,75,0.35) 80%,
    transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.hero__grain {
  position: absolute; inset: -4%;
  z-index: -2;
  pointer-events: none;
  opacity: .12;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero__spotlight {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    520px circle at var(--mx, 50%) var(--my, 40%),
    rgba(232, 184, 75, 0.18),
    transparent 65%
  );
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.hero:hover .hero__spotlight { opacity: 1; }

.hero__particles {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) var(--container-pad) 4rem;
  max-width: 1100px;
  will-change: transform;
}

/* Soft focal halo behind the headline — keeps text legible while feeling cinematic */
.hero__content::before {
  content: '';
  position: absolute;
  inset: -10% -8% -20% -8%;
  z-index: -1;
  background: radial-gradient(
    ellipse at center,
    rgba(5,15,28,0.55) 0%,
    rgba(5,15,28,0.35) 40%,
    rgba(5,15,28,0) 75%
  );
  filter: blur(10px);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-block;
  color: #FFE28C;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .2s forwards;
}

.hero__h1 {
  margin-bottom: 1.75rem;
  text-shadow:
    0 2px 30px rgba(0,0,0,0.55),
    0 1px 3px rgba(0,0,0,0.45);
}

.hero__h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px) rotateX(20deg);
  transform-origin: bottom center;
  animation: wordReveal .9s var(--ease-out) forwards;
  animation-delay: calc(0.4s + var(--i) * 0.08s);
}

.hero__lede {
  margin: 0 auto 2.5rem;
  color: #F4EADA;
  text-shadow: 0 1px 18px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1.2s forwards;
  max-width: 720px;
}

.hero__cta {
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1.4s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .75rem;
  letter-spacing: var(--tracking-xwide);
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.8s forwards;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.4s var(--ease-in-out) infinite;
}

/* ============================================
   TRADE ROUTE MAP
   ============================================ */
.trade-map {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  background:
    radial-gradient(1400px 700px at 85% 15%, rgba(232,184,75,0.10), transparent 55%),
    radial-gradient(1200px 600px at 15% 85%, rgba(232,184,75,0.06), transparent 60%),
    linear-gradient(160deg, #061324 0%, #0A2744 35%, #0E2F50 65%, #061223 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

/* Top + bottom gold hairlines framing the trade-map section */
.trade-map::before,
.trade-map::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(232,184,75,0.35) 30%,
    rgba(232,184,75,0.55) 50%,
    rgba(232,184,75,0.35) 70%,
    transparent);
  z-index: 2;
  pointer-events: none;
}
.trade-map::before { top: 0; }
.trade-map::after  { bottom: 0; }

/* Slow drifting aurora behind the map */
.trade-map__aurora {
  position: absolute; inset: -10%;
  z-index: 0;
  background:
    radial-gradient(600px 300px at 30% 40%, rgba(232,184,75,0.10), transparent 70%),
    radial-gradient(500px 280px at 80% 60%, rgba(122,140,94,0.12), transparent 70%);
  filter: blur(30px);
  animation: auroraDrift 18s var(--ease-in-out) infinite alternate;
  pointer-events: none;
}

.trade-map__grain {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .85 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.trade-map .container { position: relative; z-index: 2; }

.trade-map__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 4rem);
}
.trade-map__eyebrow {
  color: var(--gold-light);
  letter-spacing: 0.3em;
  display: inline-block;
  margin-bottom: 1rem;
}
.trade-map__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 1rem;
}
.trade-map__title em {
  font-style: italic;
  color: var(--gold-light);
}
.trade-map__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 58ch;
  margin-inline: auto;
}

/* ============================================
   EARTH AT NIGHT — world map trade-route stage
   ============================================ */
.trade-map__stage {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  aspect-ratio: 2 / 1;
  background:
    radial-gradient(1200px 600px at 50% 40%, rgba(18,42,70,0.55), transparent 70%),
    linear-gradient(180deg, #020814 0%, #050F1F 50%, #020810 100%);
  border: 1px solid rgba(232,184,75,0.12);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.02) inset;
}

/* Star field — absolutely-positioned dots drawn by JS */
.trade-map__stars-layer {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.star {
  position: absolute;
  width: 1px; height: 1px;
  border-radius: 50%;
  background: #B6CBE0;
  box-shadow: 0 0 2px rgba(200,220,255,0.55);
  opacity: 0.7;
  animation: starTwinkle 4s var(--ease-in-out) infinite;
}
.star--s2 { width: 2px; height: 2px; opacity: 0.55; }
.star--dim { opacity: 0.35; }
@keyframes starTwinkle {
  0%, 100% { opacity: var(--o, 0.7); }
  50%      { opacity: calc(var(--o, 0.7) * 0.35); }
}

/* The SVG itself sits above the stars */
.trade-map__svg {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

/* Countries */
.country {
  fill: #0F1E2E;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 0.4;
  transition: fill .4s var(--ease-out);
  cursor: default;
}
.country.is-active {
  fill: url(#activeCountry);
  filter: url(#countryGlow);
  transform-box: fill-box;
  transform-origin: center;
  animation: countryBreath 4.5s var(--ease-in-out) infinite;
  cursor: pointer;
}
.country.is-active[data-iso="USA"] { animation-delay: 0s; }
.country.is-active[data-iso="ESP"] { animation-delay: 1s; }
.country.is-active[data-iso="ARE"] { animation-delay: 2s; }
.country.is-active[data-iso="SAU"] { animation-delay: 3s; }
.country.is-hover,
.country.is-selected {
  filter: url(#countryGlow) brightness(1.25);
}
@keyframes countryBreath {
  0%, 100% { opacity: 0.92; }
  50%      { opacity: 1; }
}

/* City lights (active countries) */
.city-light {
  fill: #FFE6A0;
  filter: drop-shadow(0 0 3px rgba(255,214,120,0.85))
          drop-shadow(0 0 6px rgba(255,200,90,0.55));
  animation: cityPulse 3.2s var(--ease-in-out) infinite;
}
@keyframes cityPulse {
  0%, 100% { opacity: 0.95; }
  50%      { opacity: 0.55; }
}

/* Ambient world cities */
.city-ambient {
  fill: #8FA0B8;
  opacity: 0.3;
}

/* Trade routes */
.route-glow {
  fill: none;
  stroke: #E8B84B;
  stroke-width: 3.5;
  stroke-linecap: round;
  opacity: 0.28;
  filter: url(#routeBlur);
}
.route-flow {
  fill: none;
  stroke: #FFD97A;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-dasharray: 2 7;
  opacity: 0.9;
  animation: routeFlowDash 3.5s linear infinite;
}
@keyframes routeFlowDash {
  to { stroke-dashoffset: -90; }
}

/* Pulse beads travelling the great-circle routes */
.pulse-bead {
  fill: #FFF0B8;
  filter: drop-shadow(0 0 6px rgba(255,210,120,0.9));
}

/* Country markers + monospace labels */
.marker-ring {
  fill: none;
  stroke: rgba(232,184,75,0.7);
  stroke-width: 1.1;
}
.marker-dot {
  fill: #FFD97A;
  filter: drop-shadow(0 0 4px rgba(255,214,120,0.9));
}
.marker-stem {
  stroke: rgba(232,184,75,0.55);
  stroke-width: 0.7;
  stroke-dasharray: 1 2;
  fill: none;
}
.marker-label {
  font-family: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  fill: rgba(232,184,75,0.95);
  text-transform: uppercase;
  paint-order: stroke;
  stroke: rgba(2, 8, 20, 0.85);
  stroke-width: 3px;
  stroke-linejoin: round;
}
.marker-label--dest {
  fill: rgba(255,255,255,0.92);
}

/* Corner data readouts (HUD) */
.map-hud {
  position: absolute;
  z-index: 3;
  font-family: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: .66rem;
  letter-spacing: 0.18em;
  color: rgba(232,184,75,0.75);
  text-transform: uppercase;
  pointer-events: none;
  line-height: 1.55;
}
.map-hud--tl { top: 14px;    left: 16px; }
.map-hud--tr { top: 14px;    right: 16px; text-align: right; }
.map-hud--bl { bottom: 14px; left: 16px; }
.map-hud--br { bottom: 14px; right: 16px; text-align: right; }
.map-hud strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.map-hud .dot-live {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6FDE9E;
  box-shadow: 0 0 8px rgba(111,222,158,0.9);
  margin-right: .45em;
  animation: liveBlink 1.6s var(--ease-in-out) infinite;
  vertical-align: middle;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* Scale indicator */
.map-scale {
  position: absolute;
  z-index: 3;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: .62rem;
  letter-spacing: 0.2em;
  color: rgba(232,184,75,0.55);
  text-transform: uppercase;
  pointer-events: none;
}
.map-scale__bar {
  display: inline-block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(232,184,75,0.7), transparent);
}

/* Glassmorphism info card */
.info-card {
  position: absolute;
  z-index: 10;
  width: min(300px, 80vw);
  padding: 1.1rem 1.25rem 1.2rem 1.35rem;
  background: rgba(7, 18, 34, 0.78);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid var(--gold-light);
  border-radius: 10px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.03) inset;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .3s var(--ease-out), transform .35s var(--ease-out);
}
.info-card.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.info-card__kicker {
  font-family: 'IBM Plex Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: .62rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.info-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .15rem;
}
.info-card__region {
  font-size: .85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: .85rem;
}
.info-card__specs {
  display: grid; gap: .4rem;
  border-top: 1px solid rgba(232,184,75,0.2);
  padding-top: .75rem;
}
.info-card__specs li {
  display: flex; justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,0.72);
}
.info-card__specs strong {
  color: var(--white);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ── STATS ── */
.trade-map__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(232,184,75,0.18);
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--gold-light);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: .5rem;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ============================================
   JOURNEY FLOW — auto-scrolling supply-chain ticker
   Sits inside the trade-map section, below the stats.
   ============================================ */
.journey-flow {
  position: relative;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  max-width: 1400px;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0 clamp(1.25rem, 2vw, 2rem);
  border-top: 1px solid rgba(232,184,75,0.18);
}
.journey-flow__head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.journey-flow__head .eyebrow {
  display: inline-block;
  color: var(--gold-light);
  letter-spacing: 0.3em;
  margin-bottom: .6rem;
}
.journey-flow__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0;
}

.journey-flow__track-wrap {
  position: relative;
  overflow: hidden;
  /* Soft fade at both ends for a cinematic ticker feel */
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg,
    transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.journey-flow__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: jfMarquee 38s linear infinite;
  will-change: transform;
}

.journey-flow__list {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
}

/* Each step — compact glass card with gold hairline connector */
.jf-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: .85rem;
  row-gap: .15rem;
  align-items: center;
  padding: 1rem 2.5rem 1rem 1.25rem;
  min-width: 260px;
  color: var(--white);
}
.jf-step + .jf-step::before {
  /* Connector line + subtle travelling dot */
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1px; height: 40px;
  transform: translateY(-50%);
  background: linear-gradient(180deg,
    transparent, rgba(232,184,75,0.45), transparent);
}
.jf-step + .jf-step::after {
  content: '→';
  position: absolute;
  left: -8px; top: 50%;
  transform: translateY(-50%);
  font-size: .85rem;
  color: rgba(232,184,75,0.75);
  letter-spacing: 0;
}
.jf-step__icon {
  grid-row: 1 / 3;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(232,184,75,0.10);
  border: 1px solid rgba(232,184,75,0.35);
  color: var(--gold-light);
  box-shadow: 0 0 24px rgba(232,184,75,0.10) inset;
}
.jf-step__icon svg { width: 22px; height: 22px; display: block; }
.jf-step__kicker {
  font-size: .62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,184,75,0.85);
  font-variant-numeric: tabular-nums;
}
.jf-step__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.005em;
  grid-column: 2;
}
.jf-step__sub {
  grid-column: 2;
  font-size: .72rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  margin-top: .25rem;
}

@keyframes jfMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Reduced motion — freeze the ticker and let it be a static timeline */
@media (prefers-reduced-motion: reduce) {
  .journey-flow__track {
    animation: none;
    transform: none;
  }
  .journey-flow__track-wrap {
    overflow-x: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .jf-step { min-width: 220px; padding: .85rem 2.25rem .85rem 1rem; }
  .jf-step__label { font-size: .95rem; }
  .journey-flow__track { animation-duration: 32s; }
}

/* ── EARTH-AT-NIGHT RESPONSIVE ── */
@media (max-width: 860px) {
  .trade-map__stage { aspect-ratio: 5 / 4; }
  .trade-map__stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .map-hud { font-size: .55rem; letter-spacing: 0.14em; }
  .map-hud strong { font-size: .68rem; }
  .marker-label { font-size: 8px; }
  .info-card {
    position: absolute;
    left: 50% !important;
    right: auto !important;
    bottom: 14px !important;
    top: auto !important;
    transform: translateX(-50%) translateY(8px);
    width: min(92%, 340px);
  }
  .info-card.is-open { transform: translateX(-50%) translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .country.is-active,
  .city-light,
  .route-flow,
  .pulse-bead,
  .star,
  .map-hud .dot-live {
    animation: none !important;
  }
}

/* ============================================
   SECTION HEADERS + DIVIDERS
   ============================================ */
.display-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  margin-block: .75rem .5rem;
}
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 5rem);
}
.section-head .eyebrow { display: inline-block; margin-bottom: .75rem; }
.section-head--dark .display-h2 { color: var(--white); }
.section-head--dark .eyebrow { color: var(--gold-light); letter-spacing: 0.3em; }
.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.66);
  margin: 1rem auto 0;
  max-width: 58ch;
}

/* Hairline gold divider — draws in on scroll */
.rule {
  display: flex;
  justify-content: center;
  padding-block: clamp(1.5rem, 3vw, 3rem);
  background: inherit;
}
.rule span {
  display: block;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  transition: width 1.2s var(--ease-out);
}
.rule.is-visible span { width: 80px; }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--cream); }
.about__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}
.about__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 2s var(--ease-out);
}
.about:hover .about__media img { transform: scale(1.05); }
.about__caption {
  position: absolute; left: 1rem; bottom: 1rem;
  padding: .45rem .75rem;
  background: rgba(26,26,26,0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: .75rem;
  letter-spacing: 0.1em;
  border-radius: var(--r-pill);
}
.about__body p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(59, 47, 47, 0.88);
  margin-top: 1.1rem;
  max-width: 58ch;
}
.about__body .display-h2 { margin-top: .5rem; margin-bottom: 1.25rem; }

/* Drop cap */
.about__lede.has-dropcap::first-letter {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  font-size: 3.6em;
  float: inline-start;
  line-height: 0.85;
  margin-inline-end: .55rem;
  margin-top: .15rem;
}

.mini-stats {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2rem;
  padding-block: 1.5rem;
  border-block: 1px solid rgba(59,47,47,0.12);
}
.mini-stats li {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.mini-stats strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
}
.mini-stats span {
  font-size: .72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(59,47,47,0.6);
}
.about__note {
  margin-top: 1.5rem;
  font-style: italic;
  font-size: .9rem;
  color: rgba(59,47,47,0.6);
}

/* ============================================
   WHY US
   ============================================ */
.why { background: var(--white); }
.pillars {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 780px)  { .pillars { grid-template-columns: repeat(3, 1fr); } }

/* ============================================
   SOURCING
   ============================================ */
.sourcing { background: var(--cream-dark); }
.origins {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .origins { grid-template-columns: 1fr 1fr; } }

/* ============================================
   PRODUCTS (dark)
   ============================================ */
.products {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.products__grain {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .85 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.products .container { position: relative; z-index: 1; }
.products__note {
  margin: 2.5rem auto 0;
  text-align: center;
  font-style: italic;
  color: var(--gold-light);
  font-size: .95rem;
  max-width: 64ch;
}

/* Tabs */
.tabs {
  position: relative;
  display: inline-flex;
  gap: 2rem;
  margin: 0 auto 3rem;
  padding-bottom: .75rem;
  left: 50%;
  transform: translateX(-50%);
}
.tab {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: .5rem 0;
  cursor: pointer;
  transition: color .35s var(--ease-out);
}
.tab.is-active { color: var(--white); }
.tab:hover { color: var(--white); }
.tabs__indicator {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(200,146,42,0.6);
  transition: transform .5s var(--ease-spring), width .5s var(--ease-spring);
  border-radius: 1px;
}

.panel { display: none; }
.panel.is-active {
  display: block;
  animation: panelFade .5s var(--ease-out);
}
@keyframes panelFade {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.spec-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin-inline: auto;
}
@media (min-width: 780px) { .spec-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================
   GCC (gradient)
   ============================================ */
.gcc {
  position: relative;
  background: linear-gradient(135deg, #2D4A2D 0%, #3B2F2F 100%);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.gcc__orbs {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.gcc__orb {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.gcc__orb--1 { top: -10%; left: -8%;  background: rgba(122, 140, 94, 0.6); }
.gcc__orb--2 { bottom: -15%; right: -10%; background: rgba(200, 146, 42, 0.35); }
.gcc .container { position: relative; z-index: 1; }

.dests {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
  margin-bottom: 4rem;
}
@media (min-width: 780px) { .dests { grid-template-columns: 1fr 1fr; } }

.trust-stats {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 640px) { .trust-stats { grid-template-columns: 1fr; } }

/* ============================================
   LOGISTICS
   ============================================ */
.logistics { background: var(--cream); }
.logistics__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) { .logistics__grid { grid-template-columns: 1.1fr 1fr; } }
.logistics__note {
  text-align: center;
  margin-top: 3rem;
  color: rgba(59,47,47,0.7);
  font-size: .95rem;
}

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--cream); }
.contact__sub {
  color: rgba(59,47,47,0.72);
}
.contact__grid {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin-inline: auto;
}
@media (min-width: 880px) {
  .contact__grid { grid-template-columns: 1fr 1fr; }
}
.contact__divider {
  display: none;
  position: absolute;
  top: 10%; bottom: 10%; left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.45;
}
@media (min-width: 880px) { .contact__divider { display: block; } }

.contact__direct {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59,47,47,0.1);
  list-style: none;
}
.contact__direct a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  color: var(--espresso);
  transition: color .25s var(--ease-out);
}
.contact__direct a:hover { color: var(--gold); }
.contact__direct span { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(250, 246, 238, 0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250,246,238,0.08);
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
}
.footer__wordmark .feeds { color: var(--gold); font-weight: 400; font-style: italic; }
.footer__tag {
  font-size: .95rem;
  color: rgba(250,246,238,0.55);
  max-width: 36ch;
}
.footer__cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-block: 2.5rem;
}
@media (min-width: 720px) { .footer__cols { grid-template-columns: repeat(3, 1fr); } }
.footer__cols h5 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer__cols ul { list-style: none; display: grid; gap: .55rem; }
.footer__cols a {
  color: rgba(250,246,238,0.72);
  font-size: .92rem;
  transition: color .25s var(--ease-out);
}
.footer__cols a:hover { color: var(--gold); }
.footer__cols li { font-size: .92rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250,246,238,0.08);
  font-size: .8rem;
  color: rgba(250,246,238,0.5);
}
.footer__lang {
  background: transparent;
  border: 1px solid rgba(250,246,238,0.15);
  color: rgba(250,246,238,0.75);
  padding: .4rem .9rem;
  border-radius: var(--r-pill);
  font-size: .75rem;
  letter-spacing: 0.15em;
  transition: border-color .25s var(--ease-out), color .25s var(--ease-out);
}
.footer__lang:hover { border-color: var(--gold); color: var(--gold-light); }
