/* ============================================================
   ALLEZ — Main Stylesheet
   style.css
   ============================================================ */

/* ── Google Fonts ── */

/* ── CSS Variables ── */
:root {
  --coral:       #E8442A;
  --coral-lt:    #F07060;
  --coral-pale:  #FDF0EE;
  --gold:        #F5A800;
  --gold-lt:     #F8C040;
  --gold-pale:   #FEF8EC;
  --white:       #F4F4F4;
  --warm-white:  #FAF9F7;
  --warm-gray1:  #F4F1ED;
  --warm-gray2:  #E8E3DC;
  --warm-gray3:  #C8BFB3;
  --text-pri:    #1E1A16;
  --text-sec:    #6B635A;
  --mid-gray:    #8A8078;
  --deep-navy:   #0F1923;
  --deep-navy2:  #1A2535;
  --nav-h:       72px;
  --utility-h:   36px;
  --max-w:       1280px;
  --pad-x:       clamp(16px, 4vw, 48px);
  --section-py:  80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-sec);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5, h6 { font-weight: 400; }

/* ── Focus Styles ── */
:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; border-radius: 3px; }

/* ── Utility ── */
/* --max-w reverted 2026-09-04 to its original 1280px (see :root above) — was
   raised to 1920px earlier to make nav/content match the hero photo's full
   edge-to-edge width, but the user later provided a reference screenshot
   showing the site's real intended grid is the narrower ~1225px column (nav
   logo/menu sitting well in from the viewport edge, not flush with it), and
   asked to restart from that layout. Hero backgrounds (.page-hero) have no
   max-width of their own and stay full-bleed regardless of this value — only
   nav, .container, and every page's text content narrow back down. */
.container {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section-pad { padding: var(--section-py) 0; }
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-pri);
  display: block;
  margin-bottom: 14px;
}
.section-h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--text-pri);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-body {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-sec);
  max-width: 600px;
}
.accent { color: var(--gold); }
.coral-link {
  color: #b8280f;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.coral-link:hover { gap: 10px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
/* .btn-primary is now used only for solid form-submit buttons (Submit
   Application, Send Enquiry, Request Access) — always on white form
   cards, so one dark-navy solid style covers every use. Link-style CTAs
   (hero buttons, "Contact Our Desk", "View Section") were moved off this
   class onto .btn-arrow below. */
.btn-primary {
  background: var(--deep-navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--deep-navy2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,25,35,0.25);
}

/* ── Arrow-link CTA (replaces the old red .btn-primary link buttons) ──
   Reusable component: an outlined pill (border hugs the text/icon, does
   not stretch to fill its container) containing text + a 40x40 icon with
   an arrow and a separate ~300°-open circular path. Rest: only the arrow
   shows inside the outline, the circle path is fully hidden via
   stroke-dashoffset. Hover/focus: the pill fills solid, the arrow nudges
   2px right, and the circle path draws in from hidden to fully drawn
   (the full open-arc shape — it is not a closed ring, that incompleteness
   is baked into the path geometry itself, not a partial draw). Spec and
   path data taken directly from glencore.com's live source; the outlined
   pill treatment (2026-09-02, prominence pass) is our own addition on
   top of it. Default colors (white outline/text) are for dark backgrounds
   (hero, tile overlays, .cta-strip) — add .btn-arrow--on-light for a
   dark-navy variant on a white background. */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  padding: 10px 10px 10px 22px;
  transition: gap 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-arrow:hover,
.btn-arrow:focus,
.btn-arrow:focus-visible {
  gap: 14px;
  background: var(--white);
  color: var(--deep-navy);
}
.btn-arrow--on-light { color: var(--deep-navy); }
.btn-arrow--on-light:hover,
.btn-arrow--on-light:focus,
.btn-arrow--on-light:focus-visible {
  background: #988976;
  color: var(--white);
}

.btn-arrow-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.btn-arrow-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-arrow:hover .btn-arrow-arrow,
.btn-arrow:focus .btn-arrow-arrow,
.btn-arrow:focus-visible .btn-arrow-arrow {
  transform: translateX(2px);
}
.btn-arrow-ringpath {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-dasharray: 120px;
  stroke-dashoffset: 120px;
  transition: stroke-dashoffset 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-arrow:hover .btn-arrow-ringpath,
.btn-arrow:focus .btn-arrow-ringpath,
.btn-arrow:focus-visible .btn-arrow-ringpath {
  stroke-dashoffset: 0;
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-coral {
  border: 2px solid var(--coral);
  color: var(--coral);
}
.btn-outline-coral:hover {
  background: var(--coral-pale);
  transform: translateY(-2px);
}

/* ── Tags / Chips ── */
.chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: var(--warm-gray2);
  color: var(--text-sec);
}
.chip-gold {
  background: var(--gold-pale);
  color: #8a6200;
  border: 1px solid rgba(245,168,0,0.3);
}
.chip-coral {
  background: var(--coral-pale);
  color: var(--coral);
  border: 1px solid rgba(232,68,42,0.25);
}
/* Used on light card backgrounds (region/service cards) everywhere it
   appears site-wide, so it needs a dark-on-light scheme like the other
   chip variants, not the light-on-dark one it originally shipped with. */
.chip-navy {
  background: rgba(15,25,35,0.08);
  color: var(--deep-navy2);
  border: 1px solid rgba(15,25,35,0.14);
}
/* Chips that are actual links (e.g. the sustainability sub-topic tags on the
   homepage) get a hover state; plain decorative chips elsewhere don't. */
.chip-link { transition: background 0.2s, color 0.2s; cursor: pointer; }
.chip-link:hover { background: #988976; color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: var(--utility-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
#nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  text-decoration: none;
  user-select: none;
  transform: scale(1.3);
  transform-origin: left center;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.35));
}
#nav.scrolled .nav-logo { filter: none; }

/* Nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  border-radius: 5px;
  transition: color 0.2s, text-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  /* Nav sits transparent over the hero photo until scrolled — this keeps
     the white label legible against bright/busy photos underneath. */
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
}
#nav.scrolled .nav-link { color: var(--text-pri); text-shadow: none; }
.nav-link:hover,
.nav-link.active { color: var(--coral) !important; }
.nav-link .chevron {
  width: 14px; height: 14px;
  transition: transform 0.2s;
  opacity: 0.7;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}
#nav.scrolled .nav-link .chevron { filter: none; }
.nav-item.open .chevron { transform: rotate(180deg); }

/* Contact button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--coral);
  color: var(--white) !important;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 12px;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #c43820; transform: translateY(-1px); }

/* ── Mega Menu (Full-Width Panel) ── */
.mega {
  position: fixed;
  top: calc(var(--utility-h) + var(--nav-h));
  left: 0;
  right: 0;
  background: rgba(15,25,35,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 3px solid var(--coral);
  padding: 36px 0 32px;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  pointer-events: none;
}
.mega.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 0;
  align-items: center;
}
/* Left column */
.mega-panel-left {
  padding-right: 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.mega-panel-left h3 {
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mega-panel-left p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}
.mega-view-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
}
.mega-view-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.5);
}
/* Right links grid */
.mega-links-grid {
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-content: start;
}
.mega-link-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.mega-link-box:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
/* Close button */
.mega-close-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 0 40px;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  background: none;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: color 0.18s;
  align-self: stretch;
}
.mega-close-btn:hover { color: var(--white); }
.mega-close-icon {
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: border-color 0.18s;
  flex-shrink: 0;
}
.mega-close-btn:hover .mega-close-icon { border-color: rgba(255,255,255,0.6); }

/* 3-column mega variant */
.mega-3col { grid-template-columns: 240px 220px 1fr auto; }
.mega-mid-list {
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: stretch;
  justify-content: center;
}
.mega-mid-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
}
.mega-mid-item:hover,
.mega-mid-item.active {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.mega-panel-right {
  padding: 0 24px;
  align-self: stretch;
  display: flex;
  align-items: center;
  pointer-events: none;   /* the reserved column must not catch hover; only
                             the visible sub-panel (below) re-enables it */
}
/* Hidden by default; the space stays reserved so the menu doesn't reflow.
   Revealed (smoothly, like the mega itself) only while .active is set by
   JS on hover/focus of the Commodities item or this panel. */
.mega-sub-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.mega-sub-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega-sub-title {
  font-size: 10px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.mega-sub-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  margin-top: 4px;
}

/* ── Who We Are mega ──────────────────────────────────────────────
   Reuses the What We Do 3-col + sub-panel mechanism (.mega-3col,
   .mega-mid-list, .mega-mid-item[data-sub], .mega-sub-panel). The one
   difference: it has THREE expandable parents (Overview / Our Beliefs /
   Our Reach) whose sub-panels share ONE reserved right column. We stack
   all three in the same grid cell so they overlap — only the .active one
   is visible, the column sizes to the tallest panel (Overview, 6 items),
   and switching parents causes no reflow.

   Everything is TOP-aligned and grows DOWNWARD — the menu height is driven
   by the tallest sub-panel extending down, never by centering with blank
   space above/below. The base .mega-mid-list centres its items
   (justify-content:center) which, against the tall Who We Are row, left a
   band of empty space above Overview — so we top-align it here. */
.mega-inner.mega-wwa { align-items: start; }            /* top-align all columns */
.mega-wwa .mega-mid-list { justify-content: flex-start; } /* parents flush to the top, not centred */
.mega-wwa .mega-panel-right {
  display: grid;
  grid-template-areas: "stack";
  align-content: start;       /* the stacked sub-panels sit at the top of the column */
}
.mega-wwa .mega-sub-panel { grid-area: stack; align-self: start; } /* open from top, fill downward */

/* Utility Bar */
.utility-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--utility-h);
  background: #0a1118;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
}
.utility-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.utility-social { display: flex; align-items: center; gap: 14px; }
.utility-social-link { display: flex; align-items: center; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.utility-social-link:hover { color: var(--white); }
.utility-social-link svg { width: 14px; height: 14px; }
.utility-right { display: flex; align-items: center; gap: 20px; }
.utility-lang { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; cursor: pointer; transition: color 0.2s; }
.utility-lang:hover { color: var(--white); }
.utility-lang svg { width: 13px; height: 13px; opacity: 0.7; }
.utility-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.utility-contact { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.7); letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
.utility-contact:hover { color: var(--white); }

/* Language Dropdown */
.utility-lang { position: relative; cursor: pointer; user-select: none; display: flex; align-items: center; gap: 5px; }
.lang-arrow { width: 11px; height: 11px; flex-shrink: 0; opacity: 0.7; transition: transform 0.2s; }
#lang-dropdown.open ~ * { pointer-events: none; }
.utility-lang:has(#lang-dropdown.open) .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 168px;
  background: #111e2b; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 6px; box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  display: none; z-index: 3000;
}
.lang-dropdown.open { display: block; }
.lang-opt {
  display: flex; align-items: center; gap: 10px; padding: 9px 14px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65);
  text-decoration: none; border-radius: 6px; white-space: nowrap; transition: background 0.15s, color 0.15s;
}
.lang-opt:hover { background: rgba(255,255,255,0.08); color: #fff; }
.lang-opt.active { color: var(--gold); }
.lang-opt .lang-flag { font-size: 16px; }

/* RTL / Arabic Support */
[dir="rtl"] { font-family: 'Tajawal', 'Montserrat', sans-serif; }
[dir="rtl"] .nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-list { flex-direction: row-reverse; }
/* In RTL the logo sits at the right end; scale(1.3) must grow inward
   (leftward) from the right edge, or it spills past the viewport and
   the bar looks oversized. */
[dir="rtl"] .nav-logo { margin-right: auto; margin-left: 0; transform-origin: right center; }
[dir="rtl"] .utility-inner { flex-direction: row-reverse; }
[dir="rtl"] .utility-social { flex-direction: row-reverse; }
[dir="rtl"] .utility-right { flex-direction: row-reverse; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .lang-arrow { margin-left: 0; margin-right: 4px; }
[dir="rtl"] .mega { left: 0; right: 0; }
[dir="rtl"] .mega-inner { direction: rtl; text-align: right; }
[dir="rtl"] .mega-mid-list { text-align: right; }
[dir="rtl"] .mega-mid-item { text-align: right; }
[dir="rtl"] .mega-mid-item span { margin-left: 0; margin-right: auto; transform: scaleX(-1); }
[dir="rtl"] .mega-panel-right { text-align: right; }
[dir="rtl"] .mega-sub-panel { text-align: right; }
[dir="rtl"] .mega-link-box { text-align: right; flex-direction: row-reverse; }
[dir="rtl"] .mega-link-box span { transform: scaleX(-1); }   /* flip the › chevron in RTL */
[dir="rtl"] .mega-close-btn { margin-right: auto; margin-left: 0; }
[dir="rtl"] .mobile-overlay-header { flex-direction: row-reverse; }
[dir="rtl"] .mobile-nav-list { text-align: right; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-brand { text-align: right; }
[dir="rtl"] .footer-col { text-align: right; }
[dir="rtl"] .footer-col ul { padding-right: 0; }
[dir="rtl"] .footer-trading-inner { direction: rtl; text-align: right; }
[dir="rtl"] .trading-chips { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom-inner { flex-direction: row-reverse; }
[dir="rtl"] .footer-legal { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .page-hero .container { text-align: right; }
[dir="rtl"] .two-col { direction: rtl; }
[dir="rtl"] .chip-row { flex-direction: row-reverse; }
[dir="rtl"] .callout-gold, [dir="rtl"] .callout-coral { text-align: right; }
[dir="rtl"] .eyebrow { text-align: inherit; }

/* ── RTL: Section text ── */
[dir="rtl"] .section-h2,
[dir="rtl"] .section-body { text-align: right; }

/* ── RTL: Two-col children ── */
[dir="rtl"] .two-col > * { direction: rtl; text-align: right; }

/* ── RTL: Check items ── */
[dir="rtl"] .check-item { flex-direction: row-reverse; text-align: right; }

/* ── RTL: Border-left accents → border-right ── */
[dir="rtl"] .spec-card {
  border-left: none;
  border-right: 4px solid var(--gold);
  border-radius: 8px 0 0 8px;
}
[dir="rtl"] .outlook-box {
  border-left: none;
  border-right: 4px solid var(--gold);
  border-radius: 10px 0 0 10px;
}
[dir="rtl"] .callout-coral {
  border-left: none;
  border-right: 4px solid var(--mid-gray);
  border-radius: 10px 0 0 10px;
}
[dir="rtl"] .callout-gold {
  border-left: none;
  border-right: 4px solid var(--mid-gray);
  border-radius: 10px 0 0 10px;
}

/* ── RTL: Forms ── */
[dir="rtl"] .access-form { text-align: right; }
[dir="rtl"] .form-field label { text-align: right; }
[dir="rtl"] .form-field input,
[dir="rtl"] .form-field select,
[dir="rtl"] .form-field textarea { text-align: right; direction: rtl; }

/* ── RTL: Contact ── */
[dir="rtl"] .contact-grid { direction: rtl; }
[dir="rtl"] .contact-form-wrap h2,
[dir="rtl"] .contact-info h3 { text-align: right; }
[dir="rtl"] .contact-detail { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .enquiry-type-band h3,
[dir="rtl"] .enquiry-form-band h3 { text-align: right; }
[dir="rtl"] .step-label { flex-direction: row-reverse; }
[dir="rtl"] .enquiry-type-card { text-align: right; }
[dir="rtl"] .enquiry-type-card .type-check { right: auto; left: 12px; }
[dir="rtl"] .form-consent { flex-direction: row-reverse; text-align: right; }

/* ── RTL: Intel header ── */
[dir="rtl"] .intel-header { flex-direction: row-reverse; }

/* ── RTL: News body ── */
[dir="rtl"] .news-body { text-align: right; }

/* ── RTL: Filter tabs ── */
[dir="rtl"] .filter-tabs { flex-direction: row-reverse; }

/* ── RTL: PDF cards ── */
[dir="rtl"] .pdf-card { flex-direction: row-reverse; text-align: right; }

/* ── RTL: Accordion ── */
[dir="rtl"] .accordion-header { flex-direction: row-reverse; }
[dir="rtl"] .accordion-body-inner { text-align: right; }

/* ── RTL: Product subnav ── */
[dir="rtl"] .product-subnav-inner { flex-direction: row-reverse; }
[dir="rtl"] .product-tab { flex-direction: row-reverse; }

/* ── RTL: Cards text ── */
[dir="rtl"] .service-card,
[dir="rtl"] .region-card,
[dir="rtl"] .value-card,
[dir="rtl"] .why-card,
[dir="rtl"] .tile-content { text-align: right; }

/* ── RTL: About grid ── */
[dir="rtl"] .about-grid { direction: rtl; }
[dir="rtl"] .about-grid > * { direction: rtl; text-align: right; }

/* ── RTL: Intel col (Intelligence page) ── */
[dir="rtl"] .intel-col { text-align: right; }

/* ── RTL: Why header ── */
[dir="rtl"] .why-header { text-align: right; }

/* ── RTL: Team grid ── */
[dir="rtl"] .team-grid { direction: rtl; }
[dir="rtl"] .team-card { text-align: right; }
[dir="rtl"] .team-avatar { margin: 0 0 18px auto; }

/* ── RTL: Spec grid ── */
[dir="rtl"] .spec-grid { direction: rtl; }
[dir="rtl"] .spec-card { text-align: right; }

/* ── RTL: Services & Region grids ── */
[dir="rtl"] .services-grid { direction: rtl; }
[dir="rtl"] .region-grid { direction: rtl; }

/* ── RTL: Callout boxes text ── */
[dir="rtl"] .outlook-box { text-align: right; }

/* ── RTL: Legal page body ── */
[dir="rtl"] .legal-wrap { text-align: right; direction: rtl; }
[dir="rtl"] .legal-wrap h2,
[dir="rtl"] .legal-wrap h3,
[dir="rtl"] .legal-wrap p,
[dir="rtl"] .legal-wrap li { text-align: right; }
[dir="rtl"] .legal-wrap ul,
[dir="rtl"] .legal-wrap ol { padding-right: 20px; padding-left: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
#nav.scrolled .nav-hamburger span { background: var(--text-pri); }
/* When the drawer is open, hide the hamburger so it never overlaps the
   drawer's close X (they are mutually exclusive: ☰ closed, ✕ open). */
body.menu-open .nav-hamburger { opacity: 0; visibility: hidden; pointer-events: none; }

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--deep-navy);
  /* Above #nav (z-index 1000) so the opaque drawer fully covers the
     nav bar when open — otherwise the nav logo + hamburger show through
     and overlap the drawer's own logo + close X. */
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 24px var(--pad-x);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-close:hover { background: rgba(255,255,255,0.1); }
.mobile-nav-list { flex: 1; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;               /* ≥44px tap target */
  padding: 16px 0;
  font-size: 22px;
  font-weight: 600;
  text-align: start;              /* logical — right-aligns under dir="rtl" */
  color: rgba(255,255,255,0.85);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
  cursor: pointer;
}
.mobile-nav-link:hover { color: var(--coral); }
.mobile-nav-cta {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 28px;
  background: #c8311d;
  color: var(--white);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
}

/* ── Mobile drill-down panels ──────────────────────────────────
   Levels slide horizontally (transform only). main.js toggles
   .is-active (current level) and .is-stacked (a level you drilled
   out of, parked to the left). Panels not in the stack sit off to
   the right at translateX(100%). */
.mobile-panels {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;               /* clips the off-screen panels — no horizontal scroll */
}
.mobile-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  visibility: hidden;
  /* keep an outgoing panel visible through its slide, then hide it */
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0s linear 0.35s;
}
.mobile-panel.is-active {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}
.mobile-panel.is-stacked {
  transform: translateX(-100%);
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s;
}
/* Used while resetting to Level 1 on open so it snaps with no slide. */
.mobile-panels.no-anim .mobile-panel { transition: none !important; }

/* Back row: ‹ Section name — taps slide back one level */
.mobile-panel-back {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 12px 0;
  margin-bottom: 6px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-panel-back:hover { color: var(--white); }
.mob-back-chev { font-size: 24px; font-weight: 300; line-height: 1; }

/* › chevron on parent (drill-down) rows */
.mob-chev {
  flex-shrink: 0;
  margin-inline-start: 12px;      /* logical — flips to the correct side in RTL */
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.4);
}

/* ── RTL: mirror the drill-down slide ──────────────────────────
   transform: translateX() is physical (unaffected by dir), so the
   off-screen sides must be swapped under [dir="rtl"]. The active
   panel stays at 0 (always on-screen) — only the waiting/stacked
   sides flip, so drilling slides in from the left and back reverses
   correctly. Transition + visibility are inherited from the base
   rules, so the reduced-motion guard still applies. */
[dir="rtl"] .mobile-panel            { transform: translateX(-100%); }
[dir="rtl"] .mobile-panel.is-active  { transform: translateX(0); }
[dir="rtl"] .mobile-panel.is-stacked { transform: translateX(100%); }

/* Chevrons follow the reading direction in RTL: › → ‹ and ‹ → › */
[dir="rtl"] .mob-chev,
[dir="rtl"] .mob-back-chev { transform: scaleX(-1); }

/* ── Mobile language switcher (root panel only) ────────────────
   margin-top:auto pins it to the bottom of the Level-1 panel,
   just above the Contact CTA. Active language = gold, others
   muted. Transitions are covered by the global reduced-motion
   guard. */
.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-lang-opt {
  flex: 1 1 0;
  min-height: 44px;               /* tap target */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.mobile-lang-opt:hover { color: var(--white); }
.mobile-lang-opt.active {
  color: var(--gold);
  border-color: rgba(245,168,0,0.5);
  background-color: rgba(245,168,0,0.08);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  /* iPad/mobile Safari fix: 100vh is measured against the LARGEST possible
     viewport (toolbars collapsed), so on load — with the address/tab bar
     still showing — the real visible area is shorter than 100vh. That
     pushed the progress bar (anchored to the hero's bottom edge) below
     the fold, requiring a scroll to see it. 100dvh tracks the actual
     visible viewport and resizes live as the browser chrome shows/hides.
     Kept as a second declaration (not a replacement) so browsers without
     dvh support keep the 100vh behavior instead of getting no height at all. */
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: var(--deep-navy);
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 10px rgba(0,0,0,0.35);
}
.hero-h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 400;
  letter-spacing: -1.5px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  max-width: 460px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.65), 0 2px 10px rgba(0,0,0,0.45);
}

/* ============================================================
   HERO — FULLY-ROTATING FACET CAROUSEL (Sucden-style)
   Each slide is a complete, standalone message that entirely
   replaces the previous one — no permanent/fixed headline.
   Slides are absolutely stacked; the active one is on screen and
   the others are parked off-screen (clipped). Only transform +
   opacity animate. RTL flips the parked sides the same way the
   mobile drawer does (see the [dir="rtl"] block below), so the
   loop runs forward forever (4 → 1) with no rewind.
   ============================================================ */

/* Carousel viewport — fills the hero, clips the off-screen slides. */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
/* Track: a positioning context for the stacked slides. Carries
   .no-anim (used while re-parking) and aria-live="off". */
.hero-track {
  position: absolute;
  inset: 0;
}
/* Each slide is full-bleed and absolutely stacked. The default state
   parks it on the next/forward side (hidden); .is-active brings it to
   centre; .is-stacked parks it on the prev/back side. A transition
   only runs on the incoming + outgoing slide, so 4 → 1 is a clean
   forward move, never a rewind. */
.hero-slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.6s var(--ease-premium), visibility 0s linear 0.6s;
}
.hero-slide.is-active {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.6s var(--ease-premium), visibility 0s;
}
.hero-slide.is-stacked {
  transform: translateX(-100%);
  visibility: visible;
  transition: transform 0.6s var(--ease-premium), visibility 0s;
}
/* Used while re-parking a slide so it snaps with no slide. */
.hero-track.no-anim .hero-slide { transition: none !important; }

/* Placeholder background — distinct dark gradient per facet. CLIENT swaps
   in the real photo via the slide's data-image filename. The ::before
   scrim keeps the overlaid text legible now and over future photography. */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Full-bleed dark scrim removed per client direction — photos should read
     at full brightness/vividness. A soft, localized halo stays only behind
     the text zone (left-center, where the heading/subhead sit) so the photo
     itself is unaffected everywhere else. Paired with text-shadow on
     .hero-eyebrow / .hero-h1 / .hero-sub below for extra contrast. */
  background: radial-gradient(ellipse 620px 460px at 18% 52%, rgba(4,8,14,0.50) 0%, rgba(4,8,14,0.26) 45%, rgba(4,8,14,0) 78%);
}
/* Slide 1 (About) uses the real photo; the ::before scrim keeps the
   overlaid text legible. image-set() serves the WebP, with the
   JPEG as a fallback for browsers without WebP/image-set support.
   Swapped to a bright daylight shot (was a night port scene) per
   client direction to keep the site's overall feel light and bright. */
.hero-slide-bg--about {
  background-image: url('../images/hero-bg-v2.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/hero-bg-v2.webp?v=20260831e') type('image/webp'),
    url('../images/hero-bg-v2.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-bg-v2.webp?v=20260831e') type('image/webp'),
    url('../images/hero-bg-v2.jpg?v=20260831e')  type('image/jpeg')
  );
  background-position: center 40%;
}
/* Sustainability slide — swapped for a brighter, sunlit shot (was a
   warmer/darker golden-hour photo). */
.hero-slide-bg--markets {
  background-image: url('../images/hero-slide-sustainability-v2.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/hero-slide-sustainability-v2.webp?v=20260831e') type('image/webp'),
    url('../images/hero-slide-sustainability-v2.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-slide-sustainability-v2.webp?v=20260831e') type('image/webp'),
    url('../images/hero-slide-sustainability-v2.jpg?v=20260831e')  type('image/jpeg')
  );
}
/* Careers slide — swapped for a brighter outdoor team photo (was a
   factory interior). */
.hero-slide-bg--operate {
  background-image: url('../images/hero-slide-careers-v2.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/hero-slide-careers-v2.webp?v=20260831e') type('image/webp'),
    url('../images/hero-slide-careers-v2.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-slide-careers-v2.webp?v=20260831e') type('image/webp'),
    url('../images/hero-slide-careers-v2.jpg?v=20260831e')  type('image/jpeg')
  );
  background-position: center 12%;
}
/* What We Do slide — swapped for a bright daylight harbor shot (was a
   dusk/night port scene). */
.hero-slide-bg--standards {
  background-image: url('../images/hero-slide-products-v2.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-slide-products-v2.webp') type('image/webp'),
    url('../images/hero-slide-products-v2.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-slide-products-v2.webp') type('image/webp'),
    url('../images/hero-slide-products-v2.jpg')  type('image/jpeg')
  );
}

/* Centered "[Slide n image — Facet]" marker — same quiet convention used
   for the other image placeholders on the site. */
/* Placeholder marker sits in the lower zone (above the dots) so it never
   collides with the vertically-centred slide text. */
.hero-slide-mark {
  position: absolute;
  inset-inline: 0;
  inset-block-end: clamp(84px, 11vh, 110px);
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
}

/* Per-slide content block — the WHOLE message (eyebrow, heading, line,
   button) lives on the slide and moves/reveals with it. VERTICALLY
   CENTERED in the hero; its left edge lines up with the nav logo because
   it shares the site container (max-width var(--max-w) + padding-inline
   var(--pad-x), centred). text-align:start mirrors to the right in RTL. */
.hero-slide-content {
  position: absolute;
  z-index: 2;
  inset-block-start: 50%;
  transform: translateY(-50%);
  inset-inline: 0;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  text-align: start;
}

/* Staggered text reveal — driven by .show-text on the active slide so it
   RE-TRIGGERS every time the slide becomes active (including each loop
   back to slide 1). GPU-only (opacity + translateY). The reduced-motion
   guard below makes the text appear instantly.
   Premium pacing: a slow 0.75s ease-out per element, a deliberate ~130ms
   stagger, and a ~0.2s base beat so the cascade begins just as the slide
   settles (the slide itself takes 0.6s). The last element lands ≈1.34s in,
   comfortably inside the 4s slide window. */
.hero-slide-content > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease-premium), transform 0.75s var(--ease-premium);
}
/* The CTA is an <a class="btn">, and .btn (in animations.css, loaded after
   this file) sets its own `transition` WITHOUT opacity — which wins at equal
   specificity and makes the button pop in instantly instead of fading. Pin
   the hidden state + reveal transition on the button with a higher-specificity
   selector so it joins the staggered fade+rise like the rest. */
.hero-slide-content > .hslide-btn {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease-premium), transform 0.75s var(--ease-premium);
}
.hero-slide.show-text .hero-slide-content > :nth-child(1) { opacity: 1; transform: none; transition-delay: 0.20s; }
.hero-slide.show-text .hero-slide-content > :nth-child(2) { opacity: 1; transform: none; transition-delay: 0.33s; }
.hero-slide.show-text .hero-slide-content > :nth-child(3) { opacity: 1; transform: none; transition-delay: 0.46s; }
.hero-slide.show-text .hero-slide-content > :nth-child(4) { opacity: 1; transform: none; transition-delay: 0.59s; }

/* Heading reuses .hero-h1 sizing; .hslide-h only adds the slim rule accent
   + slide layout (no font-size, so .hero-h1's clamp wins). */
.hslide-h {
  position: relative;
  max-width: 600px;
  margin-bottom: 16px;
  padding-top: 20px;
}
.hslide-h::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 44px;
  height: 2px;
  background: var(--mid-gray);
}
/* Description line reuses .hero-sub; ~520px keeps the text block ~600px. */
.hslide-line {
  max-width: 520px;
  margin-bottom: 26px;
}
/* CTA — the site's primary button (.btn .btn-primary in the markup);
   .hslide-btn only guarantees the ≥44px tap target on the hero. No arrow:
   it now reads clearly as a button. */
.hslide-btn {
  min-height: 44px;
}

/* ── Carousel controls ──
   Prev/next arrows sit ON the slide image, vertically centred at the
   left/right edges (Sucden-style). Dots are overlaid on the image
   bottom-centre. inset-inline auto-mirrors the sides in RTL. */
.hero-arrow {
  position: absolute;
  z-index: 4;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.72);
  background: rgba(10,18,26,0.30);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.hero-arrow:hover { background: rgba(10,18,26,0.62); color: var(--white); border-color: rgba(255,255,255,0.34); }
.hero-arrow--prev { inset-inline-start: clamp(12px, 2.5vw, 36px); }
.hero-arrow--next { inset-inline-end: clamp(12px, 2.5vw, 36px); }
/* Chevrons follow the reading direction in RTL */
[dir="rtl"] .hero-arrow svg { transform: scaleX(-1); }

/* ── Progress-bar indicators — one per slide, overlaid bottom-centre.
   The ACTIVE bar's fill animates scaleX 0→1 over the 4s slide duration
   (linear). Its completion is what advances the slide — hero-carousel.js
   listens for the fill's `animationend` — so the bars and the rotation
   share ONE clock and can never drift. ── */
.hero-dots {
  position: absolute;
  z-index: 4;
  inset-block-end: clamp(20px, 4vh, 38px);
  inset-inline: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-prog {
  position: relative;
  width: clamp(44px, 7vw, 60px);   /* visible bar */
  height: 44px;                    /* ≥44px tap target — larger than the bar */
  display: inline-flex;
  align-items: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
/* Dim track */
.hero-prog::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  inset-block-start: 50%;
  height: 3px;
  margin-block-start: -1.5px;
  border-radius: 2px;
  background: rgba(255,255,255,0.30);
}
.hero-prog:hover::before { background: rgba(255,255,255,0.5); }
/* Gold fill — collapsed by default; the active bar animates it 0 → 100%.
   transform-origin is the inline-start so it fills left→right (LTR) and
   right→left (RTL). */
.hero-prog-fill {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 50%;
  height: 3px;
  margin-block-start: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}
[dir="rtl"] .hero-prog-fill { transform-origin: right center; }
.hero-prog.is-active .hero-prog-fill {
  animation: hero-prog-fill 4s linear forwards;
}
@keyframes hero-prog-fill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
/* Pause (hover / focus / tab-hidden) freezes the fill — and therefore the
   advance, since the advance is the fill's completion. */
.hero.is-paused .hero-prog.is-active .hero-prog-fill { animation-play-state: paused; }

/* ── Scroll-down button — bottom-right of the hero, in the same corner
   #back-to-top sits in (matching size and glass styling); fades out once
   the visitor has scrolled past the hero (toggled in main.js). ── */
.hero-scroll-down {
  position: absolute;
  z-index: 4;
  inset-inline-end: 28px;
  inset-block-end: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10,18,26,0.30);
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease, background 0.2s, color 0.2s, border-color 0.2s;
  animation: hero-scroll-bounce 2.2s ease-in-out infinite;
}
.hero-scroll-down:hover { background: rgba(10,18,26,0.62); color: var(--white); border-color: rgba(255,255,255,0.34); }
.hero-scroll-down.is-hidden { opacity: 0; pointer-events: none; }
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-down { animation: none; }
}

/* ── RTL: mirror the slide direction (mobile-drawer pattern).
   translateX is physical, so flip the parked sides under [dir="rtl"];
   the active slide stays at 0. Forward then enters from the left and
   exits right, mirroring LTR. Transition is inherited, so the reduced-
   motion guard still applies. ── */
[dir="rtl"] .hero-slide            { transform: translateX(-100%); }
[dir="rtl"] .hero-slide.is-active  { transform: translateX(0); }
[dir="rtl"] .hero-slide.is-stacked { transform: translateX(100%); }
/* Legibility scrim biases to the right where RTL text sits */
[dir="rtl"] .hero-slide-bg::before {
  background: radial-gradient(ellipse 620px 460px at 82% 52%, rgba(4,8,14,0.50) 0%, rgba(4,8,14,0.26) 45%, rgba(4,8,14,0) 78%);
}
[dir="rtl"] .hero-slide-content { text-align: right; }

.chip-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }

/* ============================================================
   WHY ALLEZ  (Section 3) — Sucden-style photo tiles.
   Each tile is a full-bleed background (real photo later; a dark-gradient
   placeholder for now, same convention as .hero-slide-bg) with a scrim for
   legibility, a title + description, and a button linking to the relevant
   page. CLIENT: swap each .tile-bg's background-image for the real photo
   named in that tile's data-image attribute.
   ============================================================ */
.why-allez { background: var(--white); }
.why-header {
  text-align: center;
  margin-bottom: 52px;
}
.why-header .section-body { margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* .why-card / .why-card-icon are the plain icon-card style still used by
   careers.html, sustainability.html, and sustainability-community.html.
   Kept here for those pages even though the homepage now uses the photo
   tiles (.tile-card) below instead. */
.why-card {
  background: var(--white);
  border: 1px solid var(--warm-gray2);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
}
.why-card-icon {
  font-size: 28px;
  margin-bottom: 18px;
  display: block;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-pri);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-card p {
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
}
.tile-card {
  position: relative;
  min-height: 440px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.tile-card:hover .tile-bg { transform: scale(1.04); }
.tile-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,12,18,0.92) 0%, rgba(8,12,18,0.55) 45%, rgba(8,12,18,0.15) 100%);
}
.tile-bg--origination {
  background-image: url('../images/tile-origination-trade.jpg');
  background-image: -webkit-image-set(
    url('../images/tile-origination-trade.webp') type('image/webp'),
    url('../images/tile-origination-trade.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/tile-origination-trade.webp') type('image/webp'),
    url('../images/tile-origination-trade.jpg')  type('image/jpeg')
  );
}
.tile-bg--logistics {
  background-image: url('../images/tile-logistics-shipping.jpg');
  background-image: -webkit-image-set(
    url('../images/tile-logistics-shipping.webp') type('image/webp'),
    url('../images/tile-logistics-shipping.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/tile-logistics-shipping.webp') type('image/webp'),
    url('../images/tile-logistics-shipping.jpg')  type('image/jpeg')
  );
}
/* Swapped for a brighter finance/trading scene with daylight through the
   windows (was a dim, low-key trading-floor photo). */
.tile-bg--finance {
  background-image: url('../images/tile-trade-finance-v2.jpg');
  background-image: -webkit-image-set(
    url('../images/tile-trade-finance-v2.webp') type('image/webp'),
    url('../images/tile-trade-finance-v2.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/tile-trade-finance-v2.webp') type('image/webp'),
    url('../images/tile-trade-finance-v2.jpg')  type('image/jpeg')
  );
}
.tile-mark {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 28px;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.tile-content {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  color: var(--white);
}
.tile-h {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.tile-p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}
.tile-btn { min-height: 44px; }

/* ============================================================
   ABOUT TEASER  (Section 5)
   ============================================================ */
.about-teaser { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-placeholder {
  height: 360px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--deep-navy2) 60%, #0d2818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.06);
}
.about-img-placeholder .img-icon { font-size: 36px; opacity: 0.4; }

/* ============================================================
   MARKET INTELLIGENCE  (Section 6)
   ============================================================ */
.intel-section { background: var(--white); }
.intel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.intel-header h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: var(--text-pri);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--warm-gray2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.news-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  font-weight: 500;
}
.news-img.navy-bg  { background: linear-gradient(135deg, #0F1923, #1A2535); }
.news-img.green-bg { background: linear-gradient(135deg, #0e2414, #1a3a22); }
.news-img.indigo-bg{ background: linear-gradient(135deg, #12162e, #1e2448); }
.news-img-icon { font-size: 28px; opacity: 0.5; }
.news-body { padding: 22px 22px 26px; }
.news-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-body h4 {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-pri);
  line-height: 1.45;
  margin-bottom: 12px;
}
.news-date {
  font-size: 12px;
  color: var(--mid-gray);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--deep-navy); }
.footer-top {
  padding: 60px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral);
  font-size: 16px;
  transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 3px solid rgba(255,255,255,0.4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col li a:hover { color: rgba(255,255,255,0.9); }

/* Sub-group headings inside a footer column (e.g. "Our Beliefs" / "Our Reach"
   nested under the "Who We Are" column) — same weight/size/color as the
   column's main .footer-col h5 title (per user request, 2026-08-31: treat
   these exactly like "Who We Are" itself, not a lighter label) with extra
   top margin since they're not the first heading in the column. Mirrors
   the grouping already used in the header's Who We Are mega-menu and
   mobile drill-down. */
.footer-col h5.footer-subhead {
  margin-top: 28px;
}
.footer-locations-line { margin-top: 2px; }

/* Trading desk strip */
.footer-trading {
  background: var(--deep-navy2);
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-trading-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-trading h4 {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  flex-shrink: 0;
}
.trading-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.trading-chip {
  padding: 6px 14px;
  border: 1px solid rgba(232,68,42,0.4);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--coral-lt);
  display: flex; align-items: center; gap: 6px;
}
.footer-trading-note {
  margin-left: auto;
  font-size: 12px;
  color: #9aa3ab;
  font-style: italic;
}

/* Footer bottom */
.footer-bottom {
  padding: 24px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-logo { display: block; flex-shrink: 0; }
.footer-copyright {
  font-size: 13px;
  color: #9aa3ab;
  margin-inline-start: auto;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: calc(var(--utility-h) + 140px) 0 80px;
  background: linear-gradient(135deg, #0F1923 0%, #1A2535 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,168,0,0.12) 0%, transparent 60%);
}
/* Photo variant — for a page-hero with a real background photo instead of
   just the flat navy gradient. Same left-heavy scrim convention as the
   homepage hero (.hero-slide-bg::before) so white text stays legible over
   a busy image while the photo still shows through on the right.
   Usage: add class="page-hero page-hero--photo" and a background-image
   (inline style or a page-specific class) to the <section>. */
.page-hero--photo::before {
  background:
    linear-gradient(to right, rgba(8,12,18,0.90) 0%, rgba(8,12,18,0.55) 45%, rgba(8,12,18,0.35) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(245,168,0,0.10) 0%, transparent 60%);
}
.page-hero--photo {
  background-size: cover;
  background-position: center;
  /* Sized to match the near-full-viewport photo hero pattern used by
     competitor sites (e.g. Sucden) instead of the original compact
     560px banner — user-requested 2026-08-31. 80vh with a 640px floor
     so short/laptop windows never collapse below the old size. Plain
     photos, no side padding/extension trick (blurred or solid-color
     filler were both rejected) — per-photo `background-position`
     below is tuned to keep each photo's subject in the visible slice.
     Some crop at very wide browser widths is still possible with a
     full-bleed photo of this shape; see the 2026-08-31 hero photo
     cropping note in the project doc for the full history. */
  min-height: max(640px, 80vh);
  padding-top: calc(var(--utility-h) + 120px);
  padding-bottom: 100px;
  display: flex;
  align-items: center;
}
/* Keep heading/eyebrow text on the dark (left) side of the scrim, and add a
   soft shadow as a safety net for any bright spot in a photo (e.g. a pale
   product like refined sugar) that the gradient alone might not cover. */
.page-hero--photo .page-hero-eyebrow,
.page-hero--photo h1,
.page-hero--photo p {
  text-shadow: 0 2px 14px rgba(0,0,0,0.65);
}
.page-hero--photo h1 {
  max-width: 640px;
}
/* Transportation page hero photo — container ship at sea (real photo, not a
   placeholder). WebP with a JPEG fallback, same pattern as the homepage
   hero's .hero-slide-bg--about. */
.page-hero--transportation {
  background-image: url('../images/transportation-hero.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/transportation-hero.webp?v=20260831e') type('image/webp'),
    url('../images/transportation-hero.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/transportation-hero.webp?v=20260831e') type('image/webp'),
    url('../images/transportation-hero.jpg?v=20260831e')  type('image/jpeg')
  );
}
/* Sugar page hero photo — raw cane, brown sugar, and white refined sugar
   (real photo). Same WebP/JPEG fallback pattern. */
.page-hero--sugar {
  background-image: url('../images/sugar-hero.jpg');
  background-image: -webkit-image-set(
    url('../images/sugar-hero.webp') type('image/webp'),
    url('../images/sugar-hero.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/sugar-hero.webp') type('image/webp'),
    url('../images/sugar-hero.jpg')  type('image/jpeg')
  );
}
/* Rice/Grains page hero photo — rice grains, burlap sack, and wooden scoop
   (real photo). Same WebP/JPEG fallback pattern. */
.page-hero--rice {
  background-image: url('../images/rice-hero.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/rice-hero.webp?v=20260831e') type('image/webp'),
    url('../images/rice-hero.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/rice-hero.webp?v=20260831e') type('image/webp'),
    url('../images/rice-hero.jpg?v=20260831e')  type('image/jpeg')
  );
}
/* Edible Oils page hero photo — oil pouring from a glass bottle into a
   ceramic bowl (real photo). Same WebP/JPEG fallback pattern. The pour
   (bottle top-right down to the bowl at bottom-center) runs the full
   height of the frame, so this needs the taller .page-hero--photo box
   plus a centered position to avoid clipping the bottle or the bowl. */
.page-hero--palm {
  background-image: url('../images/palm-hero-wide.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/palm-hero-wide.webp?v=20260831e') type('image/webp'),
    url('../images/palm-hero-wide.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/palm-hero-wide.webp?v=20260831e') type('image/webp'),
    url('../images/palm-hero-wide.jpg?v=20260831e')  type('image/jpeg')
  );
  background-position: center center;
}
.page-hero--palm::before {
  background:
    linear-gradient(to right, rgba(8,12,18,0.90) 0%, rgba(8,12,18,0.60) 45%, rgba(8,12,18,0.32) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(245,168,0,0.08) 0%, transparent 60%);
}
/* ============================================================
   INNER PAGE HERO PHOTOS — bright real photography added to every
   inner page that was previously a flat/gradient placeholder.
   Same WebP/JPEG fallback + scrim convention as the existing
   .page-hero--sugar/--rice/--palm/--transportation photo heroes.
   background-position uses a slight top bias (center 15%) as a
   safe default since several source photos have people standing
   near the top of frame — verified per-page in screenshots. */
.page-hero--about {
  background-image: url('../images/hero-about.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-about.webp') type('image/webp'),
    url('../images/hero-about.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-about.webp') type('image/webp'),
    url('../images/hero-about.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--about-heritage {
  background-image: url('../images/hero-about-heritage.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-about-heritage.webp') type('image/webp'),
    url('../images/hero-about-heritage.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-about-heritage.webp') type('image/webp'),
    url('../images/hero-about-heritage.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--about-team {
  background-image: url('../images/hero-about-team.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-about-team.webp') type('image/webp'),
    url('../images/hero-about-team.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-about-team.webp') type('image/webp'),
    url('../images/hero-about-team.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--about-network {
  background-image: url('../images/hero-about-network.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-about-network.webp') type('image/webp'),
    url('../images/hero-about-network.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-about-network.webp') type('image/webp'),
    url('../images/hero-about-network.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--about-values {
  background-image: url('../images/hero-about-values.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-about-values.webp') type('image/webp'),
    url('../images/hero-about-values.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-about-values.webp') type('image/webp'),
    url('../images/hero-about-values.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--business-lines {
  background-image: url('../images/hero-business-lines.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-business-lines.webp') type('image/webp'),
    url('../images/hero-business-lines.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-business-lines.webp') type('image/webp'),
    url('../images/hero-business-lines.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--business-practice {
  background-image: url('../images/hero-business-practice.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-business-practice.webp') type('image/webp'),
    url('../images/hero-business-practice.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-business-practice.webp') type('image/webp'),
    url('../images/hero-business-practice.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--careers {
  background-image: url('../images/hero-careers.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-careers.webp') type('image/webp'),
    url('../images/hero-careers.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-careers.webp') type('image/webp'),
    url('../images/hero-careers.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--compliance {
  background-image: url('../images/hero-compliance.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-compliance.webp') type('image/webp'),
    url('../images/hero-compliance.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-compliance.webp') type('image/webp'),
    url('../images/hero-compliance.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--contact {
  background-image: url('../images/hero-contact.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-contact.webp') type('image/webp'),
    url('../images/hero-contact.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-contact.webp') type('image/webp'),
    url('../images/hero-contact.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--cookie-policy {
  background-image: url('../images/hero-cookie-policy.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-cookie-policy.webp') type('image/webp'),
    url('../images/hero-cookie-policy.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-cookie-policy.webp') type('image/webp'),
    url('../images/hero-cookie-policy.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--intelligence {
  background-image: url('../images/hero-intelligence.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-intelligence.webp') type('image/webp'),
    url('../images/hero-intelligence.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-intelligence.webp') type('image/webp'),
    url('../images/hero-intelligence.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--markets {
  background-image: url('../images/hero-markets.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/hero-markets.webp?v=20260831e') type('image/webp'),
    url('../images/hero-markets.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-markets.webp?v=20260831e') type('image/webp'),
    url('../images/hero-markets.jpg?v=20260831e')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--news {
  background-image: url('../images/hero-news.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-news.webp') type('image/webp'),
    url('../images/hero-news.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-news.webp') type('image/webp'),
    url('../images/hero-news.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--policies {
  background-image: url('../images/hero-policies.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-policies.webp') type('image/webp'),
    url('../images/hero-policies.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-policies.webp') type('image/webp'),
    url('../images/hero-policies.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--privacy-policy {
  background-image: url('../images/hero-privacy-policy.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-privacy-policy.webp') type('image/webp'),
    url('../images/hero-privacy-policy.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-privacy-policy.webp') type('image/webp'),
    url('../images/hero-privacy-policy.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--products {
  background-image: url('../images/hero-products.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-products.webp') type('image/webp'),
    url('../images/hero-products.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-products.webp') type('image/webp'),
    url('../images/hero-products.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--products-finance {
  background-image: url('../images/hero-products-finance.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-products-finance.webp') type('image/webp'),
    url('../images/hero-products-finance.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-products-finance.webp') type('image/webp'),
    url('../images/hero-products-finance.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--products-storage {
  background-image: url('../images/hero-products-storage.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/hero-products-storage.webp?v=20260831e') type('image/webp'),
    url('../images/hero-products-storage.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-products-storage.webp?v=20260831e') type('image/webp'),
    url('../images/hero-products-storage.jpg?v=20260831e')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--purpose {
  background-image: url('../images/hero-purpose.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-purpose.webp') type('image/webp'),
    url('../images/hero-purpose.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-purpose.webp') type('image/webp'),
    url('../images/hero-purpose.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--strategy {
  background-image: url('../images/hero-strategy.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-strategy.webp') type('image/webp'),
    url('../images/hero-strategy.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-strategy.webp') type('image/webp'),
    url('../images/hero-strategy.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--terms-of-use {
  background-image: url('../images/hero-terms-of-use.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-terms-of-use.webp') type('image/webp'),
    url('../images/hero-terms-of-use.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-terms-of-use.webp') type('image/webp'),
    url('../images/hero-terms-of-use.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--transparency {
  background-image: url('../images/hero-transparency.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-transparency.webp') type('image/webp'),
    url('../images/hero-transparency.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-transparency.webp') type('image/webp'),
    url('../images/hero-transparency.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--value-chain {
  background-image: url('../images/hero-value-chain.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-value-chain.webp') type('image/webp'),
    url('../images/hero-value-chain.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-value-chain.webp') type('image/webp'),
    url('../images/hero-value-chain.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--promoting-people {
  background-image: url('../images/hero-promoting-people.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-promoting-people.webp') type('image/webp'),
    url('../images/hero-promoting-people.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-promoting-people.webp') type('image/webp'),
    url('../images/hero-promoting-people.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--sustainability {
  background-image: url('../images/hero-sustainability.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/hero-sustainability.webp?v=20260831e') type('image/webp'),
    url('../images/hero-sustainability.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-sustainability.webp?v=20260831e') type('image/webp'),
    url('../images/hero-sustainability.jpg?v=20260831e')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--sustainability-community {
  background-image: url('../images/hero-sustainability-community.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-sustainability-community.webp') type('image/webp'),
    url('../images/hero-sustainability-community.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-sustainability-community.webp') type('image/webp'),
    url('../images/hero-sustainability-community.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--sustainability-environment {
  background-image: url('../images/hero-sustainability-environment.jpg');
  background-image: -webkit-image-set(
    url('../images/hero-sustainability-environment.webp') type('image/webp'),
    url('../images/hero-sustainability-environment.jpg')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-sustainability-environment.webp') type('image/webp'),
    url('../images/hero-sustainability-environment.jpg')  type('image/jpeg')
  );
  background-position: center 15%;
}
.page-hero--sustainability-sourcing {
  background-image: url('../images/hero-sustainability-sourcing.jpg?v=20260831e');
  background-image: -webkit-image-set(
    url('../images/hero-sustainability-sourcing.webp?v=20260831e') type('image/webp'),
    url('../images/hero-sustainability-sourcing.jpg?v=20260831e')  type('image/jpeg')
  );
  background-image: image-set(
    url('../images/hero-sustainability-sourcing.webp?v=20260831e') type('image/webp'),
    url('../images/hero-sustainability-sourcing.jpg?v=20260831e')  type('image/jpeg')
  );
  background-position: center 15%;
}

.page-hero .container { position: relative; }
.page-hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Alternating Section Backgrounds ── */
.bg-white     { background: var(--white); }
.bg-warm      { background: var(--warm-white); }
.bg-gray1     { background: var(--white); } /* was var(--warm-gray1) — flattened site-wide per client request so alternating section bands no longer show a visible seam */
.bg-navy      { background: var(--deep-navy); }
.bg-navy2     { background: var(--deep-navy2); }

/* ── Two Column Layouts ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Values — flowing paragraph list (About) ──
   Deliberately not cards: no boxes, borders-as-frames, or shadows.
   Each value reads as its own short passage, separated by a hairline. */
.values-grid {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
}
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--warm-gray2);
}
.value-card:last-child { border-bottom: none; }
.value-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
}
.value-card h3 {
  font-size: 19px; font-weight: 500; color: var(--text-pri); margin-bottom: 8px;
}
.value-card p { font-size: 16px; color: var(--text-sec); line-height: 1.7; }

/* ── Team Cards (About) ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--warm-gray2);
  border-radius: 12px;
}
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--warm-gray1);
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--warm-gray2);
  font-size: 28px;
  color: var(--mid-gray);
}
.team-card h4 { font-size: 16px; font-weight: 400; color: var(--text-pri); margin-bottom: 4px; }
.team-card p  { font-size: 13px; color: var(--mid-gray); }

/* ── Product Sub-nav ── */
.product-subnav {
  background: var(--white);
  border-bottom: 1px solid var(--warm-gray2);
  position: sticky;
  top: calc(var(--utility-h) + var(--nav-h));
  z-index: 100;
}
.product-subnav-inner {
  display: flex;
  gap: 0;
}
.product-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-sec);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.product-tab:hover { color: var(--coral); }
.product-tab.active { color: var(--coral); border-bottom-color: var(--coral); }

/* ── Product Panels ── */
.product-panel { display: none; }
.product-panel.active { display: block; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.spec-card {
  padding: 18px 20px;
  border: 1px solid var(--warm-gray2);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: var(--white);
}
.spec-card strong { font-size: 13px; font-weight: 700; color: var(--text-pri); display: block; margin-bottom: 4px; }
.spec-card span   { font-size: 13px; color: var(--text-sec); }

/* Outlook box */
.outlook-box {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
}
.outlook-box h4 { font-size: 15px; font-weight: 400; color: var(--text-pri); margin-bottom: 8px; }
.outlook-box p  { font-size: 16px; color: var(--text-sec); line-height: 1.6; margin-bottom: 14px; }

/* ── Services Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--warm-gray2);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.service-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.service-card h3 { font-size: 17px; font-weight: 400; color: var(--text-pri); margin-bottom: 10px; }
.service-card p  { font-size: 16px; color: var(--text-sec); line-height: 1.65; margin-bottom: 14px; }

/* ── Region Cards ── */
.region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.region-card {
  background: var(--warm-white);
  border: 1px solid var(--warm-gray2);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.region-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.region-card.primary { border-color: var(--gold); border-width: 2px; }
.region-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.region-card h3 { font-size: 18px; font-weight: 400; color: var(--text-pri); margin-bottom: 10px; }
.region-card p  { font-size: 16px; color: var(--text-sec); line-height: 1.65; }
.primary-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold-pale);
  color: #8a6200;
  border: 1px solid rgba(245,168,0,0.4);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── CTA Strip ── */
.cta-strip { background: var(--deep-navy2); padding: 60px 0; text-align: center; }
.cta-strip h2 { font-size: 28px; font-weight: 400; color: var(--white); margin-bottom: 20px; }

/* ── Compliance checklist ── */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-sec);
}
.check-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--coral-pale);
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Callout Box ── */
.callout-coral {
  background: var(--coral-pale);
  border-left: 4px solid var(--mid-gray);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
  margin-top: 28px;
}
.callout-coral p { font-size: 16px; color: var(--text-sec); line-height: 1.6; margin-bottom: 14px; }

.callout-gold {
  background: var(--gold-pale);
  border-left: 4px solid var(--mid-gray);
  border-radius: 0 10px 10px 0;
  padding: 24px 28px;
}
.callout-gold h4 { font-size: 15px; font-weight: 400; color: var(--text-pri); margin-bottom: 6px; }
.callout-gold p  { font-size: 16px; color: var(--text-sec); line-height: 1.6; }

/* ── Intelligence Page ── */
.intel-col h3 { font-size: clamp(1.1rem, 1.8vw, 1.6rem); font-weight: 400; color: var(--text-pri); margin-bottom: 12px; }
.intel-col p  { font-size: 16px; color: var(--text-sec); line-height: 1.65; margin-bottom: 14px; }

.locked-box {
  background: var(--warm-gray1);
  border: 1px solid var(--warm-gray2);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
}
.lock-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.locked-box h4 { font-size: 16px; font-weight: 400; color: var(--text-pri); margin-bottom: 8px; }
.locked-box p  { font-size: 16px; color: var(--mid-gray); margin-bottom: 20px; }
.access-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--text-sec); text-transform: uppercase; letter-spacing: 0.5px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--warm-gray2);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-pri);
  background: var(--white);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--coral); outline: none; }
.form-field.error input,
.form-field.error select,
.form-field.error textarea { border-color: var(--coral); }
.form-error-msg { font-size: 12px; color: var(--coral); font-weight: 500; display: none; }
.form-field.error .form-error-msg { display: block; }

/* ── Contact Form: Success & Server Error States ── */
.form-success { text-align: center; padding: 52px 20px; }
.form-success-icon { font-size: 52px; display: block; margin-bottom: 18px; }
.form-success h3 { font-size: 22px; font-weight: 400; margin: 0 0 10px; }
.form-success p { font-size: 15px; color: var(--mid-gray); margin: 0; }
.form-submit-error {
    background: rgba(232, 68, 42, 0.08);
    border: 1px solid rgba(232, 68, 42, 0.35);
    color: #ff8a72;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 12px;
}

/* ── Contact form panel — two-step enquiry (dark type picker + light details) ── */
.contact-form-panel {
  background: var(--white);
  border: 1px solid var(--warm-gray2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(20, 20, 15, 0.04);
}
.enquiry-type-band {
  background: linear-gradient(165deg, var(--deep-navy) 0%, #1C2C3D 100%);
  padding: 32px 32px 34px;
}
.step-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(244, 244, 244, 0.55);
  margin-bottom: 6px;
}
.step-num {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}
.enquiry-type-band h3 { color: var(--white); font-size: 18px; font-weight: 500; margin: 0 0 20px; }
.enquiry-type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.enquiry-type-card {
  position: relative;
  background: rgba(244, 244, 244, 0.04);
  border: 1px solid rgba(244, 244, 244, 0.14);
  border-radius: 10px;
  padding: 16px 14px 15px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.enquiry-type-card:hover { background: rgba(244, 244, 244, 0.08); border-color: rgba(244, 244, 244, 0.28); }
.enquiry-type-card .svg-icon { width: 20px; height: 20px; stroke: rgba(244, 244, 244, 0.7); fill: none; }
.enquiry-type-card span { color: rgba(244, 244, 244, 0.88); font-size: 13.5px; font-weight: 500; line-height: 1.3; }
.enquiry-type-card .type-check {
  position: absolute; top: 12px; right: 12px;
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid rgba(244, 244, 244, 0.35);
  transition: border-color 0.18s ease;
}
.enquiry-type-card .type-check::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%;
  background: var(--coral); transform: scale(0); transition: transform 0.15s ease;
}
.enquiry-type-card.is-selected { background: rgba(232, 68, 42, 0.14); border-color: var(--coral); }
.enquiry-type-card.is-selected .svg-icon { stroke: var(--coral-lt); }
.enquiry-type-card.is-selected .type-check { border-color: var(--coral); }
.enquiry-type-card.is-selected .type-check::after { transform: scale(1); }
.enquiry-type-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.enquiry-form-band { padding: 34px 32px 36px; }
.enquiry-form-band .step-label { color: var(--mid-gray); }
.enquiry-form-band .step-num { background: var(--deep-navy); }
.enquiry-form-band h3 { font-size: 18px; font-weight: 500; margin: 0 0 22px; color: var(--text-pri); }

.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-sec); line-height: 1.5;
  margin: 6px 0 22px; cursor: pointer;
}
.form-consent input { margin-top: 3px; accent-color: var(--coral); flex-shrink: 0; }
.form-consent a { color: var(--coral); }
.form-consent.error { color: var(--coral); }
.form-consent.error input { outline: 2px solid var(--coral); outline-offset: 2px; }

@media (max-width: 640px) {
  .enquiry-type-grid { grid-template-columns: repeat(2, 1fr); }
  .enquiry-type-band, .enquiry-form-band { padding: 24px 20px 28px; }
}

/* ── News Filter Tabs ── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-tab {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--warm-gray2);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sec);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--coral); color: var(--coral); }
.filter-tab.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

/* ── PDF Download Cards ── */
.pdf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pdf-card {
  background: var(--white);
  border: 1px solid var(--warm-gray2);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pdf-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.pdf-icon { font-size: 32px; flex-shrink: 0; }
.pdf-info h4 { font-size: 14px; font-weight: 400; color: var(--text-pri); margin-bottom: 4px; }
.pdf-info p  { font-size: 12px; color: var(--mid-gray); margin-bottom: 10px; }

/* ── Events Row ── */
.events-row { display: flex; gap: 20px; flex-wrap: wrap; }
.event-item {
  padding: 16px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  text-align: center;
}
.event-item h4 { font-size: 14px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.event-item p  { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── Accordion (Careers) ── */
.accordion-item {
  border: 1px solid var(--warm-gray2);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.18s;
}
.accordion-header:hover { background: var(--warm-gray1); }
.accordion-header h4 { font-size: 16px; font-weight: 400; color: var(--text-pri); }
.accordion-chevron { font-size: 18px; color: var(--mid-gray); transition: transform 0.25s; }
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-body-inner {
  padding: 0 24px 24px;
  font-size: 16px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.contact-form-wrap h2 { font-size: 28px; font-weight: 400; color: var(--text-pri); margin-bottom: 28px; }
.contact-info h3 { font-size: clamp(1.1rem, 1.8vw, 1.6rem); font-weight: 400; color: var(--text-pri); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--warm-gray2);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--warm-gray1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 13px; font-weight: 600; color: var(--text-pri); }
.contact-detail span  { font-size: 14px; color: var(--text-sec); }


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet (640-1024px) ── */
@media (max-width: 1024px) {
  :root { --pad-x: 24px; --section-py: 64px; }
  .nav-list { gap: 0; }
  .nav-link  { padding: 8px 9px; font-size: 13px; }
  .mega-inner { grid-template-columns: 220px 1fr auto; }
  .mega-panel-left { padding-right: 24px; }
  .mega-links-grid { padding: 0 24px; }
  .mega-close-btn  { padding-left: 24px; }
  .section-h2 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .pdf-grid  { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-col { gap: 40px; }
}

/* ── Tablet / small desktop hero (≤768px) ── */
@media (max-width: 768px) {
  .hero-content { max-width: 100%; }
  .hero-h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); letter-spacing: -0.5px; }

  .footer-nav a,
  .footer-links a,
  footer a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 10px 0;
  }

  .utility-bar,
  .footer-trading-note,
  .footer-copyright,
  .news-tag,
  .stat-unit {
    font-size: 14px !important;
  }
}

/* ── Mobile (<640px) ── */
@media (max-width: 640px) {
  :root { --pad-x: 18px; --section-py: 52px; --utility-h: 0px; }
  .utility-bar { display: none; }
  .nav-list    { display: none; }
  .nav-cta     { display: none; }
  .nav-hamburger { display: flex; }

  .hero-sub { font-size: 15px; }
  .hero-content { max-width: 100%; }

  .why-grid          { grid-template-columns: 1fr; }
  .news-grid         { grid-template-columns: 1fr; }
  .about-grid        { grid-template-columns: 1fr; gap: 32px; }
  .two-col           { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse   { direction: ltr; }
  .team-grid         { grid-template-columns: 1fr; }
  .region-grid       { grid-template-columns: 1fr; }
  .services-grid     { grid-template-columns: 1fr; }
  .spec-grid         { grid-template-columns: 1fr; }
  .pdf-grid          { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .footer-trading-inner { flex-direction: column; align-items: flex-start; }
  .footer-trading-note  { margin-left: 0; }
  .footer-bottom-inner  { flex-direction: column; text-align: center; }
  .section-h2        { font-size: 26px; }
  .page-hero h1      { font-size: 34px; }
  .product-subnav-inner { flex-wrap: wrap; }
  .contact-grid      { grid-template-columns: 1fr; }
  .intel-header      { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ══════════════════════════════════════════════════════════════════
   Cookie Consent Banner
   ══════════════════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 15, 26, 0.97);
  border-top: 1px solid rgba(245, 168, 0, 0.35);
  z-index: 9999;
  padding: 18px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Start off-screen; slide up after a short delay */
  transform: translateY(100%);
  animation: cookieSlideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

@keyframes cookieSlideUp {
  to { transform: translateY(0); }
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.cookie-policy-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.cookie-policy-link:hover { color: #fff; }

.cookie-banner-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: #0a111a;
  border: none;
  padding: 10px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.cookie-banner-btn:hover  { background: #ffc233; }
.cookie-banner-btn:active { transform: scale(0.97); }

/* RTL layout */
[dir="rtl"] .cookie-banner-inner {
  flex-direction: row-reverse;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  [dir="rtl"] .cookie-banner-inner {
    align-items: flex-end;
  }
  .cookie-banner-btn { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════════
   Back-to-Top Button
   ══════════════════════════════════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10,18,26,0.30);
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover  { background: rgba(10,18,26,0.62); color: var(--white); border-color: rgba(255,255,255,0.34); transform: translateY(-2px); }
#back-to-top:active { transform: scale(0.94); }
/* Shift above cookie banner when it is present */
#cookie-banner ~ #back-to-top { bottom: 88px; }

/* ══════════════════════════════════════════════════════════════════
   News Card — Stretch Link (whole card clickable)
   ══════════════════════════════════════════════════════════════════ */
.news-card { position: relative; }
.news-card-stretch {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

/* ══════════════════════════════════════════════════════════════════
   Active Page Navigation State
   ══════════════════════════════════════════════════════════════════ */
/* Desktop nav — .nav-link.active already defined above; this adds a
   gold underline bar for the current-page indicator */
.nav-link.page-active {
  color: var(--gold) !important;
}
.nav-link.page-active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
/* Mobile nav active */
.mobile-nav-link.page-active {
  color: var(--gold);
  font-weight: 700;
}

/* ── Mobile Nav Commodities Expandable ── */
.mobile-nav-section { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 16px 24px; background: none; border: none;
    color: var(--text-pri); font-family: inherit; font-size: 16px;
    font-weight: 600; letter-spacing: 0.2px; cursor: pointer; text-align: left;
}
.mobile-toggle-icon { width: 18px; height: 18px; transition: transform 0.25s ease; flex-shrink: 0; color: var(--mid-gray); }
.mobile-nav-toggle[aria-expanded="true"] .mobile-toggle-icon { transform: rotate(180deg); }
.mobile-nav-sub { display: none; padding: 0 24px 12px 36px; flex-direction: column; gap: 4px; }
.mobile-nav-toggle[aria-expanded="true"] + .mobile-nav-sub { display: flex; }
.mobile-nav-sub-link { display: block; padding: 10px 0; color: var(--muted, #94a3b8); font-size: 15px; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-nav-sub-link:last-child { border-bottom: none; }
.mobile-nav-sub-link:hover { color: var(--gold); }

/* ── Breadcrumb bar ──
   NOTE: this bar sits BELOW .page-hero, on the plain white page body (not
   overlaid on the dark hero image/gradient) — confirmed by checking the
   markup on every interior page. It previously used a faint black tint
   with low-opacity white text, which was designed for a dark backdrop and
   was nearly unreadable here (pale text on a barely-there gray bar). Fixed
   to use dark text on a light bar, sized up for legibility. */
.breadcrumb-bar { padding: 12px 0; background: var(--white); border-bottom: 1px solid var(--warm-gray2); }
.bc-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; flex-wrap: wrap; font-size: 13px; }
.bc-list li + li::before { content: '›'; color: var(--mid-gray); margin: 0 8px; font-size: 13px; }
.bc-link { color: var(--text-sec); text-decoration: none; transition: color 0.15s; }
.bc-link:hover { color: var(--coral); }
.bc-current { color: var(--text-pri); font-weight: 600; }

/* ── Related pages strip ── */
.related-strip { background: #0d1420; border-top: 1px solid rgba(255,255,255,0.06); }
.related-inner { max-width: 1200px; margin: 0 auto; padding: 15px 32px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.related-label { color: #F5A800; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.related-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.related-links a { color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 500; text-decoration: none; transition: color 0.15s; }
.related-links a:hover { color: #E8442A; }
.rel-dot { color: rgba(255,255,255,0.2); font-size: 12px; }

/* ── i18n blank-flash shimmer ──────────────────────────────────────────────
   Shown on empty data-i18n elements while JS fills them after DOMContentLoaded.
   Removed automatically once applyLang() sets text content. */
[data-i18n]:empty {
  min-height: 1em;
  background: rgba(255,255,255,0.03);
  border-radius: 3px;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0%   { opacity: 0.4; }
  50%  { opacity: 0.7; }
  100% { opacity: 0.4; }
}

/* ════════════════════════════════════════════════════════════════
   ── RESPONSIVE OVERRIDES ──
   Consolidated breakpoints (base design target = 1280px laptop):
     ≥1440px  large desktop
     ≤1280px  laptop — nav fit
     ≤1024px  tablet  — hamburger, single-col layouts, 2-col cards
     ≤768px   mobile  — tighter section padding
     ≤640px   single-column card grids
     ≤480px   small mobile
   These rules load LAST so they win over the earlier RESPONSIVE block.
   ════════════════════════════════════════════════════════════════ */

/* ── Large desktop (≥1440px) ── */
@media (min-width: 1440px) {
  :root { --section-py: 100px; }   /* extra breathing room on wide screens */
}

/* ── Laptop nav fit (≤1280px) ── */
@media (max-width: 1280px) {
  .nav-list  { gap: 2px; }
  .nav-link  { font-size: 13px; padding: 8px 12px; }  /* keep all 5 items on one line */
}

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  /* Nav → hamburger */
  .nav-list      { display: none; }
  .nav-cta       { display: none; }
  .nav-hamburger { display: flex; }

  /* Section padding */
  .section-pad { padding: 60px 0; }

  /* Two-column → single column */
  .two-col { grid-template-columns: 1fr; gap: 32px; }

  /* Card grids → 2 columns */
  .services-grid,
  .why-grid,
  .team-grid,
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  .section-pad     { padding: 40px 0; }
  .page-hero       { padding: calc(var(--utility-h) + 96px) 0 56px; }
  .cta-strip h2    { font-size: clamp(1.3rem, 5vw, 1.8rem); }
}

/* ── Card grids → single column (≤640px) ── */
@media (max-width: 640px) {
  .services-grid,
  .why-grid,
  .team-grid,
  .news-grid { grid-template-columns: 1fr; }
  .value-card { padding: 26px 0; gap: 16px; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  :root          { --pad-x: 16px; }

  /* Force a readable 28px headline (clamp floor is too tall here) */
  .hero-h1       { font-size: 1.75rem !important; line-height: 1.2; }

  .page-hero     { padding: calc(var(--utility-h) + 88px) 0 48px; }
}

/* ── Hero facet carousel — responsive ── */
/* Arrows now show from 641px up (iPads and laptops), not just ≥1366px —
   below 1366px there's no swipe gesture on this carousel, so touch/tablet
   users previously had only the small progress dots to change slides.
   Below 1366px the container padding (var(--pad-x): 24px at ≤1024px,
   18px at ≤640px) sits too close to the viewport edge to clear a 48px
   arrow on its own — the arrow would land on top of the first ~80px of
   the slide text. So in the 641–1365px band (where arrows show but the
   container isn't yet centred with the wide margins ≥1366px gives it
   naturally) the slide text gets extra inline padding sized to the
   arrow's own footprint (48px + its clamp(12px,2.5vw,36px) inset + a
   16px gap ≈ 100px), keeping text and arrow apart at every width in
   that band. Below 641px arrows are hidden entirely — full-width dots
   are the only control there. */
@media (max-width: 640px) {
  .hero-arrow { display: none; }
}
@media (min-width: 641px) and (max-width: 1365px) {
  .hero-slide-content { padding-inline: max(var(--pad-x), 100px); }
}
@media (max-width: 1023px) {
  .hslide-h, .hslide-line { max-width: 100%; }
}
@media (max-width: 480px) {
  .hslide-h { padding-top: 14px; margin-bottom: 10px; }
  .hslide-line { margin-bottom: 16px; }
}

/* ── Accessibility: skip link + reduced motion ─────────────── */
/* Hidden via the clip "sr-only" pattern, NOT left:-9999px. The old
   off-screen-left value created ~10000px of horizontal overflow under
   dir="rtl" (in RTL the left is the END side, so the browser made it
   scrollable), which inflated the containing block of every
   position:fixed element and broke the mobile drawer. A 1px clipped
   box never overflows in either direction. */
.skip-link{
  position:absolute;top:0;left:0;z-index:100000;
  width:1px;height:1px;padding:0;border:0;overflow:hidden;
  clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;
  background:var(--coral,#E8442A);color:#fff;
  border-radius:0 0 8px 0;
  font-weight:700;font-size:14px;text-decoration:none;
}
.skip-link:focus{
  width:auto;height:auto;padding:10px 18px;overflow:visible;
  clip:auto;clip-path:none;white-space:normal;
  outline:2px solid #fff;outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
  .fi,.fi-left,.fi-right{opacity:1 !important;transform:none !important;}
  /* Mobile drawer panels appear instantly — no horizontal slide */
  .mobile-panel{transition:none !important;}
  /* Hero carousel under reduced motion: the slide switch + text reveal
     are INSTANT, but the carousel STILL auto-advances — the progress-bar
     fill keeps its 4s duration (it drives the rotation), so the hero never
     looks frozen. Only the sliding/reveal MOTION is removed. */
  .hero-slide{transition:none !important;}
  .hero-slide-content > *{opacity:1 !important;transform:none !important;}
  .hero-prog.is-active .hero-prog-fill{animation-duration:4s !important;}
}
/* ── SVG icons (replacing emoji) ───────────────────────────── */
.svg-icon{
  width:1em;height:1em;display:inline-block;vertical-align:middle;flex-shrink:0;
}
/* Brand-tint the decorative card icons (containers already set font-size) */
.why-card-icon,.value-icon,.service-icon,.region-icon,
.pdf-icon,.lock-icon{ color:var(--coral); }
/* Contact + team boxes don't set font-size, so size the icon explicitly */
.contact-detail-icon{ color:var(--coral); }
.contact-detail-icon .svg-icon{ width:20px;height:20px; }
.team-avatar{ color:var(--mid-gray); }
.team-avatar .svg-icon{ width:42px;height:42px; }
.form-success-icon .svg-icon{ width:46px;height:46px;color:#16a34a; }

/* ── Content-area formatting pass: Leadership, Risk & Compliance,
   Transparency (2026-09-03) ── */

/* Simple inline accent link, lighter-weight than .btn-arrow — used inside
   dense card/list items (Leadership "Read more"/"View profile") where the
   full pill CTA would be too heavy. */
.text-link{
  color: var(--coral);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
}
.text-link:hover{ text-decoration: underline; }

/* Leadership — featured principal card */
.lead-featured{
  background: var(--warm-gray1);
  border-radius: 12px;
  padding: 32px;
  margin-top: 28px;
}
/* Keeps the beige band itself full-width (matching the hero/page width) while
   the actual photo+text pair sits centered at a comfortable content width,
   so a short placeholder bio doesn't leave a lopsided empty area on one side. */
.lead-featured-inner{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 640px;
  margin: 0 auto;
}
.lead-photo{
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  background: var(--warm-gray2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-photo img{ width:100%; height:100%; object-fit:cover; border-radius:8px; }
.lead-name{ font-size: 20px; font-weight: 700; color: var(--text-pri); }
.lead-title{ font-size: 13.5px; color: var(--text-sec); margin: 4px 0 14px; }
.lead-bio{ font-size: 14px; color: var(--text-sec); line-height: 1.7; margin-bottom: 16px; max-width: 56ch; }

/* Leadership — 4-column grid for the rest of the team */
.lead-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  margin-top: 48px;
}
.lead-grid-item{ text-align: center; }
.lead-photo-circle{
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--warm-gray2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  overflow: hidden;
}
.lead-photo-circle img{ width:100%; height:100%; object-fit:cover; }
.lead-grid-name{ font-size: 15px; font-weight: 600; color: var(--text-pri); }
.lead-grid-title{ font-size: 12.5px; color: var(--mid-gray); margin: 2px 0 10px; }
@media (max-width: 760px){
  .lead-featured-inner{ grid-template-columns: 1fr; }
  .lead-photo{ max-width: 200px; }
  .lead-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px){
  .lead-grid{ grid-template-columns: 1fr; }
}

/* Leadership — bio modal (populated from each card's data-name/data-title/data-bio) */
.lead-modal-overlay{
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,25,35,0.6);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.lead-modal-overlay.active{ opacity: 1; pointer-events: auto; }
.lead-modal{
  background: var(--warm-white);
  border-radius: 14px;
  max-width: 520px; width: 100%;
  max-height: 85vh; overflow-y: auto;
  padding: 36px;
  position: relative;
}
.lead-modal-close{
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 26px; line-height: 1;
  color: var(--mid-gray); cursor: pointer;
}
.lead-modal-photo{
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--warm-gray2);
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
}
.lead-modal h3{ font-size: 20px; color: var(--text-pri); margin-bottom: 4px; }
.lead-modal-title{ color: var(--text-sec); font-size: 13.5px; margin-bottom: 16px; }
.lead-modal-bio{ color: var(--text-sec); font-size: 14.5px; line-height: 1.7; }

/* Risk & Compliance — stacked topic blocks: heading / muted intro / bold
   sub-label / bulleted principles / divider */
/* scroll-margin-top matches the sticky utility-bar + nav header's combined
   height (36px + 72px) plus a 20px buffer, so a direct #topic-x hash link
   (bypassing the JS click handler's own header-aware calculation below)
   still lands the heading clear of the fixed header. */
.comp-topic{ padding: 32px 0; border-bottom: 1px solid var(--warm-gray2); scroll-margin-top: calc(var(--utility-h) + var(--nav-h) + 20px); }
.comp-topic:first-child{ padding-top: 0; }
.comp-topic:last-child{ border-bottom: none; }
.comp-topic h4{ font-size: 19px; font-weight: 600; color: var(--text-pri); margin-bottom: 10px; }
.comp-topic .t-intro{ margin-bottom: 16px; }
/* 2026-09-03: .section-body's sitewide 600px reading-width cap (line ~83) is a
   deliberate site-wide default, but was leaving a large dead margin on this
   page specifically. First tried removing the cap entirely (edge-to-edge),
   but the user asked for a wide, comfortably centered column instead — like
   LDC's own compliance page (some breathing room on both sides, not a full
   bleed). .comp-content (below) now owns that width; this override just lets
   the paragraph/list fill whatever width .comp-content gives them, instead of
   independently re-capping at 600/640px inside it. */
.comp-topic .section-body{ max-width: none; }
/* .content-col (a 1100px inner cap layered on top of .container) removed
   2026-09-04 — now that --max-w itself is back to the site's real 1225px-ish
   grid (see :root/.container above), a second inner cap would just re-create
   the same dead-margin problem one level down. Text on Compliance/Leadership/
   Transparency now fills the .container/.fi width directly. */
.comp-label{ font-size: 13px; font-weight: 700; color: var(--text-pri); margin-bottom: 8px; }
.comp-list{ margin: 0; padding-left: 20px; color: var(--text-sec); font-size: 15px; line-height: 1.75; }
.comp-list li{ margin-bottom: 6px; }
.comp-list li::marker{ color: var(--coral); }

/* Bulleted "Key Principles" lists — staggered fade/slide-up entrance on
   first scroll into view, plus a soft hover tint. Reveal state is toggled
   by js/main.js (adds .list-revealed to the <ul> and sets --i on each <li>
   for the stagger); CSS below owns the actual motion. Reusable beyond
   .comp-list — any future bulleted content list can opt in with the same
   two classes/attribute. */
.comp-list li{
  border-radius: 4px;
  padding: 2px 6px 2px 2px;
  margin-left: -2px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s cubic-bezier(.16,.7,.24,1),
              transform .5s cubic-bezier(.16,.7,.24,1),
              background-color .25s ease;
}
.comp-list.list-revealed li{
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 90ms), calc(var(--i, 0) * 90ms), 0s;
}
.comp-list li:hover{ background-color: var(--warm-gray1); }
@media (prefers-reduced-motion: reduce){
  .comp-list li{ opacity: 1; transform: none; transition: background-color .25s ease; }
}

/* Risk and Compliance — sticky section table-of-contents, added 2026-09-03.
   Fixed to the viewport, vertically centered; js/main.js toggles .is-visible
   once the hero has scrolled out of view and hides it again as the footer
   approaches, and toggles .is-active on the link matching whichever
   .comp-topic is currently in view. Deliberately minimal — small type, a
   thin left rule, no background/box — this is a navigation aid, not a
   visual centerpiece. Desktop-only (see the 1180px cutoff below); this
   page's real reading column doesn't leave a wide enough clear margin
   below that width for a fixed side element not to crowd the text. */
.comp-toc{
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease;
}
.comp-toc.is-visible{ opacity: 1; visibility: visible; pointer-events: auto; }
.comp-toc ul{ list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--warm-gray2); }
.comp-toc li{ margin: 0; }
.comp-toc a{
  display: block;
  padding: 6px 0 6px 14px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  font-size: 12px;
  line-height: 1.3;
  color: var(--text-sec);
  text-decoration: none;
  white-space: nowrap;
  /* Kept deliberately fast (was .25s): only one link ever carries .is-active
     in the DOM at a time, but a slow color fade let the outgoing and
     incoming link cross-fade through similar coral shades simultaneously,
     reading as two items highlighted at once. .08s avoids that overlap
     while still not feeling like a hard snap. */
  transition: color .08s ease, border-color .08s ease, font-weight .1s ease;
}
.comp-toc a:hover{ color: var(--text-pri); }
.comp-toc a.is-active{ color: var(--coral); border-left-color: var(--coral); font-weight: 600; }
@media (max-width: 1180px){
  .comp-toc{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  .comp-toc{ transition: none; }
}

/* Transparency — Corporate Disclosure/Counterparty Documentation/Commercial
   Terms/Tax scrollytelling section, added 2026-09-03. Own visual treatment
   (not a copy of any reference site): a sticky vertical stack of 4 numbered
   markers on the left, connected by a thin vertical line that fills in
   brand coral/gold as the matching text block stacks in on the right.
   Reveal/marker-activation state is driven by js/main.js (adds .is-revealed
   to each .trans-topic and .is-active to the matching .trans-marker, once,
   as each block scrolls into view) — CSS below owns the actual motion. */
.trans-scrolly{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px 48px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.trans-scrolly-anchor{
  position: sticky;
  top: 130px;
  align-self: start;
}
.trans-marker{ position: relative; display: flex; align-items: center; gap: 14px; padding: 20px 0; }
.trans-marker:not(:last-child)::after{
  content: '';
  position: absolute;
  left: 19px;
  top: 52px;
  width: 2px;
  height: 32px;
  background: var(--warm-gray2);
  transition: background-color .5s ease;
}
.trans-marker.is-active:not(:last-child)::after{ background: var(--gold); }
.trans-marker-num{
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--warm-gray3);
  color: var(--mid-gray);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  background: var(--warm-white);
  transition: background-color .4s ease, border-color .4s ease, color .4s ease, transform .4s cubic-bezier(.16,.7,.24,1);
}
.trans-marker.is-active .trans-marker-num{
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  transform: scale(1.08);
}
.trans-marker-label{ font-size: 13.5px; color: var(--text-sec); line-height: 1.35; transition: color .4s ease, font-weight .4s ease; }
.trans-marker.is-active .trans-marker-label{ color: var(--text-pri); font-weight: 600; }

.trans-scrolly-content{ display: flex; flex-direction: column; }
.trans-topic{
  padding: 8px 0 64px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.16,.7,.24,1), transform .6s cubic-bezier(.16,.7,.24,1);
}
.trans-topic:last-child{ padding-bottom: 8px; }
.trans-topic.is-revealed{ opacity: 1; transform: translateY(0); }
.trans-topic h4{ color: var(--text-pri); }

/* Mobile-only marker attached directly to its own topic block (fixes the
   2026-09-03 mobile bug: the desktop's shared sticky anchor, once it
   stacked to a static row above the text, scrolled independently of the
   text it was meant to label and desynced from it). Hidden on desktop —
   the sticky .trans-scrolly-anchor is used there instead — and shown only
   under the 760px breakpoint below, where it moves in normal document
   flow as part of its own .trans-topic, so it can never separate from its
   matching text again. Shares .trans-marker/.trans-marker-num/.is-active
   with the desktop anchor markers, so js/main.js's single reveal loop
   (which now toggles every element matching a given data-marker) drives
   both representations from the same state with no extra code. */
.trans-topic-marker{ display: none; }

@media (max-width: 760px){
  .trans-scrolly{ grid-template-columns: 1fr; gap: 0; }
  .trans-scrolly-anchor{ display: none; }
  .trans-topic-marker{
    display: flex;
    margin-bottom: 12px;
  }
  /* !important: overrides .trans-marker:not(:last-child)::after (the
     desktop connecting-line stub), which otherwise outranks a same-
     media-query override on specificity alone. */
  .trans-topic-marker::after{ display: none !important; }
  .trans-topic-marker .trans-marker-num{ width: 32px; height: 32px; font-size: 12px; }
  .trans-topic{ padding: 0 0 40px; }
  .trans-topic:last-child{ padding-bottom: 0; }
}
@media (prefers-reduced-motion: reduce){
  .trans-topic{ opacity: 1; transform: none; transition: none; }
}

/* Transparency — "Our Contributions" stat grid (counts up on scroll,
   see js/main.js) */
.stat-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 8px;
}
.stat-box{ padding: 26px 0; border-bottom: 1px solid var(--warm-gray2); }
.stat-label{ font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--mid-gray); }
.stat-num{
  font-size: 44px; font-weight: 700; color: var(--coral);
  font-variant-numeric: tabular-nums;
  line-height: 1.1; margin: 8px 0 4px;
}
.stat-cap{ font-size: 13px; color: var(--mid-gray); }
@media (max-width: 600px){
  .stat-grid{ grid-template-columns: 1fr; }
}