:root{
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --text: #14171a;
  --muted: #5a616a;
  --divider: rgba(20,23,26,0.12);
  --band-warm: #eef2f6;

  /* Minimal use accent (your orange). Keep it subtle. */
  --accent: #d07a2a;

  --maxw: 1200px;
  --pad: 16px;
  --pad-desktop: 28px;

  --shadow: 0 12px 30px rgba(0,0,0,0.18);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible{ outline: 2px solid var(--text); outline-offset: 3px; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
@media (min-width: 900px){
  .container{ padding: 0 var(--pad-desktop); }
}

.skip-link{
  position: absolute;
  left: 16px;
  top: 12px;

  transform: translateY(-200%);
  transition: transform 120ms ease;

  background: #fff;
  border: 1px solid var(--divider);
  padding: 8px 10px;
  z-index: 10000;
}

.skip-link:focus{
  transform: translateY(0);
}

/* ========== HEADER (overlay) ========== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 2000;
}
.site-header--overlay{
  position: absolute; /* overlays hero */
  top: 0; left: 0; right: 0;
  background: transparent;
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
}
.header-inner--overlay{
  color: #fff;
}
.brand-logo{
  width: 210px;
  height: auto;
  transition: width 180ms ease;
}

@media (min-width: 900px){
  .brand-logo{ width: 220px; }
}

.header-actions{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Desktop nav */
/* ===== Desktop navigation (clean spacing + right alignment) ===== */

.site-nav--desktop{ display: none; }

@media (min-width: 1000px){
  .site-nav--desktop{ display: block; }
  .header-actions{ display: none; }
}

/* nav list reset + spacing */
.nav-list{
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 26px;              /* spacing between items */
  flex-wrap: wrap;        /* allows wrap if needed */
  row-gap: 10px;          /* clean wrap spacing */
}

/* Desktop nav: add spacing between direct anchor links (no UL needed) */
@media (min-width: 1000px){
  .site-nav--desktop{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .site-nav--desktop .nav-link + .nav-link{
    margin-left: 24px; /* adjust: 20–30px */
  }
}
.nav-item{ margin: 0; padding: 0; }

/* links: no underline noise, professional weight */
.nav-link{
  position: relative;
  display: inline-block;

  padding: 10px 0;        /* room for active indicator */
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em; /* subtle, not shouty */
  text-transform: none;   /* keep as Title Case */

  color: #fff;            /* overlay hero header */
  opacity: 0.88;

  text-decoration: none;
  white-space: nowrap;    /* prevents ugly breaks inside words */
}

@media (hover: hover){
  .nav-link:hover{
    opacity: 1;
  }
}

/* Active: thin rule aligned with the link width */
.nav-link[aria-current="page"]{
  opacity: 1;
}

.nav-link[aria-current="page"]::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 2px;
  background: rgba(255,255,255,0.85);
}

.nav-link.is-active{
  opacity: 1;
}
.nav-link.is-active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  height: 2px;
  background: rgba(255,255,255,0.85);
}

/* Minimal icon button */
.icon-btn{
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.10);
  color: #fff;
  padding: 10px 12px;
  cursor: not-allowed;
}
.icon-circle{
  width: 14px; height: 14px;
  border: 2px solid #fff;
  border-radius: 999px;
  display: inline-block;
}

/* Hamburger */
.nav-toggle{
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.10);
  color: #fff;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-toggle-label{ font-size: 14px; }
.nav-toggle-icon{
  width: 18px; height: 12px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: relative;
}
.nav-toggle-icon::before{
  content:"";
  position:absolute;
  left:0; right:0;
  top:4px;
  border-top: 2px solid #fff;
}

/* ===== header transition ===== */
.site-header--overlay{
  position: absolute;
  top: 0; left: 0; right: 0;
  background: transparent;
  transition: background 180ms ease, box-shadow 180ms ease;
}
.site-header{
  height: 150px;
}

/* Sticky state (white bar) */
.site-header--overlay.is-sticky{
  position: fixed;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
}

/* Nav colors swap */
.site-header--overlay.is-sticky .nav-link{
  color: #14171a;
  opacity: 0.88;
}
.site-header--overlay.is-sticky .nav-link:hover{
  opacity: 1;
}

/* Active underline color swap */
.site-header--overlay.is-sticky .nav-link.is-active::after,
.site-header--overlay.is-sticky .nav-link[aria-current="page"]::after{
  background: rgba(20,23,26,0.85);
}

/* Mobile Menu button swap */
.site-header--overlay.is-sticky .nav-toggle{
  color: #14171a;
  border-color: rgba(20,23,26,0.22);
  background: rgba(255,255,255,0.72);
}
.site-header--overlay.is-sticky .nav-toggle-icon{
  border-top-color: #14171a;
  border-bottom-color: #14171a;
}
.site-header--overlay.is-sticky .nav-toggle-icon::before{
  border-top-color: #14171a;
}

/* Smaller logo when header becomes sticky */
.site-header--overlay.is-sticky .brand-logo{
  width: 180px;
}


/* ========== HERO V1 ========== */
.hero-v1{
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-v1__media{
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.02);
}

/* Full-bleed background video */
.hero-v1__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* critical */
  object-position: center;
  filter: saturate(0.95) contrast(1.05);
}
.hero-v1__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.62) 35%,
    rgba(0,0,0,0.78) 100%
  );
}
.hero-v1__content{
  position: relative;
  padding: 120px 0 64px 0; /* room for overlay header */
  width: 100%;
}
.hero-v1__eyebrow{
  margin: 0 0 10px 0;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.9;
}
.hero-v1__title{
  margin: 0 0 14px 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.hero-v1__subtitle{
  margin: 0 0 26px 0;
  font-size: 16px;
  max-width: 70ch;
  opacity: 0.92;
}
@media (min-width: 900px){
  .hero-v1__content{ padding: 160px 0 78px 0; }
  .hero-v1__title{ font-size: 64px; }
  .hero-v1__subtitle{ font-size: 18px; }
}

/* Hero links (3 items) */
.hero-v1__links{
  display: grid;
  gap: 10px;
  max-width: 980px;
}
@media (min-width: 900px){
  .hero-v1__links{
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}
.hero-v1__link{
  display: block;
  padding: 14px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.18);
  transition: background 160ms ease, border-color 160ms ease;
}
.hero-v1__link:hover{
  background: rgba(0,0,0,0.28);
  border-color: rgba(255,255,255,0.28);
  text-decoration: none;
}
.kicker{
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 6px;
}
.headline{
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

/* Scroll hint */
.hero-v1__scroll{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}
.scroll-label{
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.scroll-line{
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.55);
}

/* ========== SECTIONS ========== */
.section{ padding: 56px 0; }
.section-tight{ padding: 26px 0; }
@media (min-width: 900px){
  .section{ padding: 78px 0; }
}
.section-title{
  margin: 0 0 22px 0;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 38ch;
}
.section-text{
  margin: 0;
  max-width: 80ch;
  color: var(--text);
}

/* Tiles */
.tiles{
  display: grid;
  gap: 18px;
}
@media (min-width: 900px){
.tiles{ grid-template-columns: repeat(3, 1fr); }
}
.tile{
  border-top: 2px solid var(--accent); /* subtle, Vitol-like */
  background: #fff;
}
.tile__img{
  height: 190px;
  background-size: cover;
  background-position: center;
}
.tile__body{
  padding: 18px 16px 18px 16px;
  border-left: 1px solid var(--divider);
  border-right: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.tile__title{
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.tile__text{
  margin: 0 0 14px 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 60ch;
}
.tile__link{
  font-size: 14px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Split band */
.split-band{
  background-color: #ffffff;
}
.split-band__inner{
  display: grid;
  gap: 22px;
}
@media (min-width: 900px){
  .split-band__inner{
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 26px;
  }
}
.mini-links{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.mini-links a{
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Quote card (clean, not “cardy”) */
.quote-card{
  background: #fff;
  border: 1px solid var(--divider);
  padding: 18px;
  box-shadow: none;
}
.quote-card__kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.quote-card__title{
  margin: 0 0 14px 0;
  font-size: 18px;
  line-height: 1.25;
}
.quote-card__link{
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Contact strip */
.contact-strip{
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--divider);
  padding-top: 16px;
  max-width: 90ch;
}
@media (min-width: 900px){
  .contact-strip{ flex-direction: row; align-items: baseline; gap: 12px; }
}
.contact-strip--strong a{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer */
.site-footer{ background: #fff; }
.footer-divider{ height: 1px; background: var(--divider); }
.footer-inner{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  color: var(--muted);
  font-size: 14px;
}
@media (min-width: 900px){
  .footer-inner{ flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ========== MOBILE DRAWER (full-screen, Vitol-like) ========== */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
}
.drawer.is-open{ display: block; }

.drawer__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  border: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.drawer__panel{
  position: absolute;
  inset: 0;
  background: #fff; /* institutional white */
  color: #0f1215;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.drawer__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15,18,21,0.14);
}
.drawer__logo{ width: 210px; height: auto; }
.drawer__close{
  border: 1px solid rgba(15,18,21,0.18);
  background: transparent;
  color: #0f1215;
  width: 44px;
  height: 44px;
  font-size: 26px;
  line-height: 1;
}

.drawer__nav{
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}
.drawer__link{
  padding: 14px 4px;
  font-size: 18px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(15,18,21,0.12);
}
.drawer__link.is-active{
  text-decoration: underline;
  text-underline-offset: 6px;
}

.drawer__bottom{
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(15,18,21,0.14);
}
.drawer__note{
  margin: 0 0 6px 0;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.85;
}
.drawer__email{
  display: inline-block;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.drawer__legal{
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.85;
}
.drawer__legal a{
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (prefers-reduced-motion: reduce){
  .hero-v1__video{
    display: none;
  }

  .hero-v1__media{
    background-image: url("Media/hero-poster.jpg");
    background-size: cover;
    background-position: center;
  }
}
/* ===== HEADER RESPONSIVE RULES ===== */

/* Mobile default: show hamburger, hide desktop nav */
.site-nav--desktop{
  display: none;
}

/* Desktop breakpoint */
@media (min-width: 1000px){
  .site-nav--desktop{
    display: block;
  }

  /* Hide hamburger + header actions on desktop */
  .header-actions{
    display: none;
  }
}
.site-header--overlay{
  overflow: hidden; /* prevents stray underline artifacts at edges */
}
/* ========== COUNTERPARTY ENGAGEMENT (no side box) ========== */
.engagement{
  background: var(--bg);
  padding: 62px 0;
}

.engagement__kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.engagement__title{
  margin: 0 0 12px 0;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 34ch;
}

@media (min-width: 900px){
  .engagement__title{ font-size: 34px; }
}

.engagement__text{
  margin: 0 0 18px 0;
  color: var(--text);
  max-width: 85ch;
}

.engagement__cta{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(20,23,26,0.28);
  padding-bottom: 3px;
  transition: border-color 160ms ease, opacity 160ms ease;
}

.engagement__cta:hover{
  border-bottom-color: rgba(20,23,26,0.75);
  text-decoration: none;
}

/* Match Business Built on Trust to Start a Conversation size */
.split-band .section-title{
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 34ch;
}

@media (min-width: 900px){
  .split-band .section-title{
    font-size: 34px;
  }
}
/* ========== HERO SWAP (Import/Export flip) ========== */
/* Matches HERO V1 proportions, overlay gradient, and typography */

.hero-swap{
  position: relative;
  min-height: 86vh;                 /* match .hero-v1 */
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-swap__media{
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.02);           /* match .hero-v1__media */
}

.hero-swap__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.68) 0%,
    rgba(0,0,0,0.62) 35%,
    rgba(0,0,0,0.78) 100%
  );                                 /* match .hero-v1__overlay */
}


/* Content aligns with HERO V1 spacing */
.hero-swap__content{
  position: relative;
  padding: 120px 0 64px 0;
  width: 100%;
}

.hero-swap__eyebrow{
  margin: 0 0 10px 0;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.9;
}

.hero-swap__title{
  margin: 0 0 14px 0;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.hero-swap__subtitle{
  margin: 0 0 26px 0;
  font-size: 16px;
  max-width: 70ch;
  opacity: 0.92;
}

@media (min-width: 900px){
  .hero-swap__content{ padding: 160px 0 78px 0; } /* match .hero-v1 */
  .hero-swap__title{ font-size: 64px; }
  .hero-swap__subtitle{ font-size: 18px; }
}

/* Panels: reserve space once; both panels overlay identically */
.hero-swap__panels{
  position: relative;
  max-width: 70ch;
  min-height: 220px; /* tweak 200–260 depending on copy length */
}

/* Both panels occupy the exact same coordinates */
.hero-swap__panel{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;

  transition: opacity 900ms ease, transform 900ms ease;
}

/* Default visible panel (Import) */
.hero-swap__panel--import{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Export state toggles visibility */
.hero-swap.is-export .hero-swap__panel--import{
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.hero-swap.is-export .hero-swap__panel--export{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Subtle note (optional) */
.hero-swap__tag{
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.85;
}

@media (min-width: 900px){
  .hero-swap__panels{ min-height: 240px; }
}

/* ===== HERO SWAP BACKGROUND FADE (NO ROTATION) ===== */

.hero-swap__bg{
  position: absolute;
  inset: 0;
}

.hero-swap__bg-layer{
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);

  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Default visible image */
.hero-swap__bg--import{
  opacity: 1;
}

/* Export state fades */
.hero-swap.is-export .hero-swap__bg--import{
  opacity: 0;
}

.hero-swap.is-export .hero-swap__bg--export{
  opacity: 1;
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce){
  .hero-swap__bg-layer{
    transition: none;
  }
  .hero-swap__panel{
    transition: none;
  }
}

.section-intro{
  font-size: 17px;
  max-width: 80ch;
  color: var(--muted);
}

.feature-eyebrow{
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.feature-title{
  margin: 6px 0 14px 0;
}

.feature-list{
  margin: 18px 0;
  padding-left: 18px;
}

.feature-note{
  font-size: 14px;
  color: var(--muted);
}

/* =========================================================
   OUR PRODUCTS – PAGE ENHANCEMENTS (Import/Export + Principles)
   Paste at END of styles.css
========================================================= */

/* 1) Section band should actually feel like a band */
.section-band{
  background: var(--bg-soft);
}

/* 2) Intro paragraph under hero */
.section-intro{
  font-size: 18px;
  line-height: 1.7;
  max-width: 86ch;
  color: rgba(20,23,26,0.75);
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 900px){
  .section-intro{ font-size: 19px; }
}

/* =========================================================
   HERO SWAP – keep your fade behavior, but tighten layering
========================================================= */

.hero-swap__media{
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1.02);
}

/* Ensure background layers sit behind overlay and content */
.hero-swap__bg{ position: absolute; inset: 0; }
.hero-swap__bg-layer{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);
  opacity: 0;
  transition: opacity 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hero-swap__bg--import{ opacity: 1; }

.hero-swap.is-export .hero-swap__bg--import{ opacity: 0; }
.hero-swap.is-export .hero-swap__bg--export{ opacity: 1; }

/* Keep overlay above images */
.hero-swap__overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Content above overlay */
.hero-swap__content{
  position: relative;
  z-index: 3;
}

/* Panels transition (slightly softer) */
.hero-swap__panel{
  transition: opacity 900ms ease, transform 900ms ease;
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce){
  .hero-swap__bg-layer,
  .hero-swap__panel{
    transition: none;
  }
}

/* =========================================================
   IMPORT / EXPORT – “Operational Lanes” styling
========================================================= */

.feature-split{
  display: grid;
  gap: 30px;
}

@media (min-width: 900px){
  .feature-split{
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 36px;
  }

  /* Reverse layout without messing up internal text direction */
  .feature-split--reverse{
    direction: rtl;
  }
  .feature-split--reverse > *{
    direction: ltr;
  }
}

/* Media block: more premium look */
.feature-split__media{
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;

  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

/* Add a subtle gradient on top of the image (keeps it “institutional”) */
.feature-split__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.20) 0%,
    rgba(0,0,0,0.10) 35%,
    rgba(0,0,0,0.28) 100%
  );
  pointer-events: none;
}

/* Content block: framed, not “cardy”, but clearly structured */
.feature-split__content{
  border-top: 2px solid rgba(208,122,42,0.85); /* accent, subtle */
  padding-top: 14px;
}

/* Eyebrow + title hierarchy */
.feature-eyebrow{
  margin: 0 0 8px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.65);
}

.feature-title{
  margin: 0 0 14px 0;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 30ch;
}

@media (min-width: 900px){
  .feature-title{ font-size: 34px; }
}

/* Paragraph spacing within the lane */
.feature-split__content p{
  margin: 0 0 14px 0;
  max-width: 78ch;
  color: rgba(20,23,26,0.84);
}

/* List: tighter, cleaner */
.feature-list{
  margin: 14px 0 14px 0;
  padding-left: 18px;
  color: rgba(20,23,26,0.78);
}
.feature-list li{
  margin: 8px 0;
}

/* “Note” at the bottom */
.feature-note{
  margin: 10px 0 0 0;
  font-size: 14px;
  color: rgba(20,23,26,0.62);
}

/* =========================================================
   EXECUTION PRINCIPLES – convert into a framework grid
========================================================= */

/* Optional: make Execution Principles title align with your other titles */
.section-title{
  margin: 0 0 10px 0;
}
/* ========== OPERATING PLATFORM (Business Model + Verticals + Markets) ========== */

.section-kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-title-lg{
  margin: 0 0 14px 0;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 55ch;
}

.section-lede{
  margin: 0 0 26px 0;
  max-width: 85ch;
  color: var(--muted);
  font-size: 16px;
}

@media (min-width: 900px){
  .section-title-lg{ font-size: 34px; }
  .section-lede{ font-size: 17px; }
}

/* Cards (Business Model) */
.platform-cards{
  display: grid;
  gap: 16px;
  margin-top: 10px;
}

@media (min-width: 900px){
  .platform-cards{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.platform-card{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.85);
  padding: 18px 16px;
}

.platform-card__kicker{
  margin: 0 0 8px 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.platform-card__title{
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.platform-card__text{
  margin: 0 0 12px 0;
  color: var(--text);
  opacity: 0.92;
  font-size: 14px;
}

.platform-card__list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.platform-block{
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--divider);
}

.platform-block--soft{
  background: var(--bg-soft);
  padding: 22px 16px;
  border: 1px solid var(--divider);
}

@media (min-width: 900px){
  .platform-block--soft{
    padding: 26px 22px;
  }
}

.platform-block__head{
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.platform-h3{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.platform-muted{
  margin: 0;
  color: var(--muted);
  max-width: 90ch;
}

.platform-note{
  margin: 14px 0 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* Verticals tiles */
.verticals-grid{
  display: grid;
  gap: 16px;
}

@media (min-width: 900px){
  .verticals-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.vertical-tile{
  background: #fff;
  border: 1px solid var(--divider);
  overflow: hidden;
}

.vertical-tile__media{
  height: 170px;
  background-size: cover;
  background-position: center;
}

.vertical-tile__body{
  padding: 16px;
}

.vertical-tile__title{
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.vertical-tile__text{
  margin: 0 0 12px 0;
  font-size: 14px;
  color: var(--muted);
}

.vertical-tile__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag{
  display: inline-block;
  font-size: 12px;
  color: rgba(20,23,26,0.78);
  background: rgba(20,23,26,0.06);
  border: 1px solid rgba(20,23,26,0.08);
  padding: 6px 8px;
  border-radius: 999px;
}

/* Markets */
.markets-grid{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 900px){
  .markets-grid{
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}

.market-card{
  background: #fff;
  border: 1px solid var(--divider);
  padding: 14px 12px;
}

.market-card__title{
  margin: 0 0 6px 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.market-card__text{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.platform-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.platform-cta{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(20,23,26,0.22);
  padding-bottom: 3px;
}

.platform-cta:hover{
  border-bottom-color: rgba(20,23,26,0.75);
  text-decoration: none;
}
/* EXECUTION PRINCIPLES — band separation */
.principles.section-band{
  background: var(--bg-soft);
}

/* Tighten spacing and make it feel like a framework */
.principles .section-title{
  margin-bottom: 14px;
}

.principles-grid{
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.principles-grid > div{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(20,23,26,0.10);
  border-top: 2px solid rgba(208,122,42,0.65);
  padding: 16px 16px 14px 16px;
}

.principles-grid h3{
  margin: 0 0 8px 0;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.principles-grid p{
  margin: 0;
  color: rgba(20,23,26,0.72);
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 900px){
  .principles-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}
.principles{
  border-top: 1px solid var(--divider);
}
/* Principles needs its own visual band */
.principles-band{
  background: var(--band-warm);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 78px 0;
}

/* Give the principles cards a slightly “lifted” contrast against the band */
.principles-band .principles-grid > div{
  background: #fff;
}

/* Optional: a clean break between Principles and Platform */
.section-divider{
  height: 1px;
  background: var(--divider);
}

.engagement{
  background: var(--bg-soft);
  border-top: 1px solid var(--divider);
  padding: 78px 0;
}

.engagement-panel{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.75);
  padding: 26px 22px;
}

@media (min-width: 900px){
  .engagement-panel{ padding: 30px 28px; }
}
.principles-band .section-title{
  margin-bottom: 14px;
}
.principles-band .principles-grid{
  margin-top: 14px;
}
.engagement{
  background: var(--bg-soft);
  border-top: 1px solid var(--divider);
  padding: 78px 0;
}

.engagement-panel{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.75);
  padding: 26px 22px;
}

@media (min-width: 900px){
  .engagement-panel{ padding: 30px 28px; }
}

/* =========================================================
   LOGISTICS PAGE – workflow + capability layout
   Paste at END of styles.css
========================================================= */

.ops-steps{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

@media (min-width: 900px){
  .ops-steps{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.ops-step{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.75);
  padding: 16px 16px 14px 16px;
}

.ops-step__kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.55);
}

.ops-step__title{
  margin: 0 0 8px 0;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.ops-step__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(20,23,26,0.72);
}

.ops-grid{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

@media (min-width: 900px){
  .ops-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

.ops-card{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.65);
  padding: 18px 16px 16px 16px;
}

.ops-card__title{
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.ops-card__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(20,23,26,0.72);
  font-size: 14px;
}

.ops-card__list li{
  margin: 8px 0;
}

.ops-note{
  margin-top: 16px;
  color: var(--muted);
}
/* =========================================================
   LOGISTICS – timeline workflow (recommended)
========================================================= */

.ops-timeline{
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--divider);
  padding: 18px;
}

.ops-timeline__track{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

@media (min-width: 980px){
  .ops-timeline__track{
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
  }

  .ops-timeline__track::before{
    content: "";
    position: absolute;
    top: 16px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: rgba(20,23,26,0.14);
  }
}

.ops-milestone{
  position: relative;
  padding-top: 34px;
  border-top: 2px solid rgba(208,122,42,0.0);
}

.ops-milestone__dot{
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: #fff;
  border: 2px solid rgba(208,122,42,0.85);
}

@media (min-width: 980px){
  .ops-milestone__dot{
    left: 50%;
    transform: translateX(-50%);
  }
}

.ops-milestone__num{
  margin: 0 0 8px 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.55);
  font-weight: 500;
}

.ops-milestone__title{
  margin: 0 0 8px 0;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.ops-milestone__text{
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(20,23,26,0.72);
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

/* Optional subtle hover for desktop */
@media (hover:hover) and (min-width: 980px){
  .ops-milestone{
    transition: transform 160ms ease, border-color 160ms ease;
  }
  .ops-milestone:hover{
    transform: translateY(-2px);
  }
}
/* =========================================================
   LOGISTICS – full-width image band separator
========================================================= */

.ops-imageband{
  position: relative;
  width: 100%;
  min-height: 280px;
  display: grid;
  align-items: end;
  margin: 26px 0 10px 0;

  /* Background image (swap filename as needed) */
  background-image: url("Media/logistics-band.jpg");
  background-size: cover;
  background-position: center;

  /* Keeps it consistent with your minimalist system */
  border-top: 1px solid rgba(20,23,26,0.10);
  border-bottom: 1px solid rgba(20,23,26,0.10);
}

/* Dark overlay so white text is always readable */
.ops-imageband::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.00) 100%
  );
}

/* Subtle accent line (optional but looks “finished”) */
.ops-imageband::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(208,122,42,0.85);
  opacity: 0.65;
}

.ops-imageband__inner{
  position: relative;
  z-index: 1;
  padding: 26px 0;
  color: #fff;
  max-width: 760px;
}

.ops-imageband__kicker{
  margin: 0 0 8px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.ops-imageband__text{
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  max-width: 75ch;
  opacity: 0.92;
}

	/* =========================================================
   ABOUT US – Split layout + timeline + compliance grid
   Paste at END of styles.css
========================================================= */

/* Overview split */
.about-split{
  display: grid;
  gap: 22px;
  margin-top: 14px;
}

@media (min-width: 900px){
  .about-split{
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 26px;
  }
}

.about-text{
  margin: 0 0 14px 0;
  max-width: 85ch;
  color: rgba(20,23,26,0.88);
}

.about-muted{
  color: rgba(20,23,26,0.62);
}

/* Right-side card (consistent with your other “clean” cards) */
.about-card{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.75);
  padding: 18px 16px;
}

.about-card__kicker{
  margin: 0 0 8px 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-card__title{
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.about-card__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(20,23,26,0.72);
  font-size: 14px;
}

.about-card__list li{ margin: 8px 0; }

/* Timeline container */
.about-timeline{
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--divider);
  padding: 18px;
}

/* Vertical timeline track */
.about-timeline__track{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  position: relative;
}

@media (min-width: 900px){
  .about-timeline__track{
    gap: 12px;
  }
}

/* Left rail line */
.about-timeline__track::before{
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 14px;
  width: 1px;
  background: rgba(20,23,26,0.14);
}

.about-event{
  position: relative;
  padding-left: 42px;
  padding-top: 2px;
}

.about-event__dot{
  position: absolute;
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(208,122,42,0.85);
}

.about-event__meta{
  margin: 0 0 6px 0;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.55);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.about-event__num{
  letter-spacing: 0.18em;
}

.about-event__year{
  letter-spacing: 0.12em;
}

.about-event__title{
  margin: 0 0 6px 0;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.about-event__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(20,23,26,0.72);
  max-width: 92ch;
}

/* Compliance grid */
.about-compliance{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

@media (min-width: 900px){
  .about-compliance{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.about-compliance__card{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.65);
  padding: 18px 16px 16px 16px;
}

.about-compliance__title{
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.about-compliance__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(20,23,26,0.72);
}
/* ================================
   ABOUT – stronger hierarchy
================================ */

.about-title-strong{
  letter-spacing: -0.02em;
}

.about-lede{
  margin: 0;
  max-width: 92ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(20,23,26,0.78);
}

@media (min-width: 900px){
  .about-lede{ font-size: 17px; }
}

.about-lede--left{
  text-align: left;
  margin: 0 0 18px 0;
}

/* Proof strip */
.about-proof{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

@media (min-width: 900px){
  .about-proof{
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

.about-proof__item{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.75);
  padding: 14px 14px 12px 14px;
}

.about-proof__kicker{
  margin: 0 0 8px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.60);
}

.about-proof__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(20,23,26,0.78);
}

/* Platform layout */
.about-platform{
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

@media (min-width: 980px){
  .about-platform{
    grid-template-columns: 1.25fr 0.75fr;
    gap: 22px;
    align-items: start;
  }
}

.about-h3{
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.about-mini-grid{
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

@media (min-width: 900px){
  .about-mini-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.about-mini{
  background: #fff;
  border: 1px solid var(--divider);
  padding: 14px 14px 12px 14px;
}

.about-mini__title{
  margin: 0 0 8px 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.about-mini__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(20,23,26,0.72);
}

/* Right-side frame */
.about-frame{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.75);
  padding: 18px 16px;
}

.about-frame__kicker{
  margin: 0 0 8px 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-frame__title{
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.about-frame__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(20,23,26,0.72);
  font-size: 14px;
}
.about-frame__list li{ margin: 8px 0; }

.about-frame__note{
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(20,23,26,0.62);
  border-top: 1px solid var(--divider);
  padding-top: 12px;
}

/* ================================
   ABOUT – Milestones (Card Timeline)
================================ */

.about-timeline2{
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

@media (min-width: 900px){
  .about-timeline2{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1180px){
  .about-timeline2{
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-milestone{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.75);
  padding: 16px 16px 14px 16px;
}

.about-milestone__meta{
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 10px;
}

.about-milestone__year{
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.65);
}

.about-milestone__tag{
  font-size: 12px;
  color: rgba(20,23,26,0.68);
  background: rgba(20,23,26,0.06);
  border: 1px solid rgba(20,23,26,0.08);
  padding: 5px 8px;
  border-radius: 999px;
}

.about-milestone__title{
  margin: 0 0 8px 0;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.about-milestone__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(20,23,26,0.72);
}

/* ================================
   ABOUT – Governance framework
================================ */

.gov-grid{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

@media (min-width: 980px){
  .gov-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.gov-card{
  background: #fff;
  border: 1px solid var(--divider);
  border-top: 2px solid rgba(208,122,42,0.75);
  padding: 18px 16px 16px 16px;
}

.gov-card__top{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.gov-card__kicker{
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.60);
}

.gov-card__title{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.gov-card__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(20,23,26,0.72);
  font-size: 14px;
}

.gov-card__list li{ margin: 8px 0; }
	
/* =========================================================
   ABOUT US – PREMIUM LAYER (Hierarchy + Timeline Rail + Governance Framework)
   Paste at END of styles.css
========================================================= */

/* Stronger overview composition */
.about-band{
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.about-title-xl{
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
@media (min-width: 900px){
  .about-title-xl{ font-size: 42px; }
}

.about-head{
  display: grid;
  gap: 18px;
}
@media (min-width: 980px){
  .about-head{
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
    gap: 22px;
  }
}

/* At-a-glance */
.about-glance{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  padding: 18px 16px;
}
.about-glance__kicker{
  margin: 0 0 12px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.58);
}
.about-glance__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.about-metric{
  border-top: 1px solid rgba(20,23,26,0.10);
  padding-top: 10px;
}
.about-metric__value{
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.about-metric__label{
  margin: 4px 0 0 0;
  font-size: 13px;
  color: rgba(20,23,26,0.62);
}
.about-glance__note{
  margin: 14px 0 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(20,23,26,0.62);
}

/* Framework panels */
.about-framework{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
@media (min-width: 980px){
  .about-framework{
    grid-template-columns: 1fr 1fr 0.9fr;
    gap: 16px;
  }
}

.about-panel{
  background: #fff;
  border: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  padding: 18px 16px 16px 16px;
  position: relative;
}
.about-panel::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 2px;
  background: rgba(208,122,42,0.75);
}
.about-panel__kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.58);
}
.about-panel__title{
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.about-panel__text{
  margin: 0;
  color: rgba(20,23,26,0.75);
  font-size: 14px;
  line-height: 1.7;
}
.about-panel__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(20,23,26,0.74);
  font-size: 14px;
}
.about-panel__list li{ margin: 8px 0; }

.about-panel--accent{
  background: linear-gradient(180deg, #fff 0%, rgba(208,122,42,0.06) 100%);
}

/* Badges */
.about-badges{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-badge{
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(20,23,26,0.10);
  background: rgba(20,23,26,0.04);
  color: rgba(20,23,26,0.72);
}

/* Section head alignment */
.about-section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

/* =========================================================
   TIMELINE RAIL (Premium)
========================================================= */

.timeline-rail{
  margin-top: 18px;
  position: relative;
  display: grid;
  gap: 14px;
}

/* Desktop: 3 columns. Mobile: horizontal scroll rail (premium behavior) */
@media (max-width: 899px){
  .timeline-rail{
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 1fr);
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }
  .timeline-card{ scroll-snap-align: start; }
}

@media (min-width: 900px){
  .timeline-rail{
    grid-template-columns: repeat(3, 1fr);
  }
}

.timeline-rail__line{
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(20,23,26,0.12);
}

.timeline-card{
  background: #fff;
  border: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.07);
  padding: 16px 16px 14px 16px;
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

@media (hover:hover){
  .timeline-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.10);
  }
}

.timeline-card__top{
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-left: 18px;
  margin-bottom: 10px;
}
.timeline-card__year{
  font-weight: 800;
  letter-spacing: -0.03em;
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(20,23,26,0.35);
  line-height: 1;
}
.timeline-card__tag{
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(20,23,26,0.10);
  background: rgba(20,23,26,0.04);
  color: rgba(20,23,26,0.70);
}

.timeline-card__title{
  margin: 0 0 8px 0;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.timeline-card__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(20,23,26,0.72);
}

/* =========================================================
   GOVERNANCE FRAMEWORK (Premium)
========================================================= */

.about-governance{
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.gov-framework{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
@media (min-width: 980px){
  .gov-framework{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.gov-col{
  background: #fff;
  border: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.07);
  padding: 18px 16px 16px 16px;
  position: relative;
}
.gov-col::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 2px;
  background: rgba(208,122,42,0.75);
}

.gov-col__head{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20,23,26,0.10);
  margin-bottom: 12px;
}
.gov-col__num{
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.60);
  padding-top: 3px;
}
.gov-col__title{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.gov-col__subtitle{
  margin: 6px 0 0 0;
  font-size: 13px;
  color: rgba(20,23,26,0.62);
  line-height: 1.5;
}

.gov-item{
  padding: 10px 0;
  border-bottom: 1px solid rgba(20,23,26,0.08);
}
.gov-item:last-child{ border-bottom: 0; }
.gov-item__title{
  margin: 0 0 6px 0;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.gov-item__text{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(20,23,26,0.70);
}

/* ===== ABOUT PAGE OVERRIDES (must be LAST in file) ===== */
body.theme-dark-hero .about-band,
body.theme-dark-hero .about-governance,
body.theme-dark-hero .principles-band{
  /* no-op marker to confirm parsing */
}

/* Give space so title does not collide with the year */
.timeline-card h3,
.timeline-card__title{
  padding-right: 56px;
}

/* =========================================================
   CONTACT – Page Layout (Paste at END of styles.css)
========================================================= */

.contact-band{
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.contact-title-xl{
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 40ch;
}
@media (min-width: 900px){
  .contact-title-xl{ font-size: 42px; }
}

.contact-lede{
  margin: 0 0 16px 0;
  max-width: 92ch;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(20,23,26,0.78);
}
@media (min-width: 900px){
  .contact-lede{ font-size: 17px; }
}

.contact-head{
  display: grid;
  gap: 18px;
}
@media (min-width: 980px){
  .contact-head{
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
    gap: 22px;
  }
}

/* Primary email block */
.contact-primary{
  margin-top: 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  padding: 18px 16px;
}
.contact-primary__label{
  margin: 0 0 8px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.58);
}
.contact-primary__email{
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.contact-primary__note{
  margin: 10px 0 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(20,23,26,0.62);
}

/* Checklist card */
.contact-card{
  background: #fff;
  border: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.07);
  padding: 18px 16px 16px 16px;
  position: relative;
}
.contact-card::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 2px;
  background: rgba(208,122,42,0.75);
}
.contact-card__kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.58);
}
.contact-card__title{
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.contact-card__list{
  margin: 0;
  padding-left: 18px;
  color: rgba(20,23,26,0.72);
  font-size: 14px;
}
.contact-card__list li{ margin: 8px 0; }
.contact-card__note{
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(20,23,26,0.62);
  border-top: 1px solid rgba(20,23,26,0.10);
  padding-top: 12px;
}

/* Form + side panels grid */
.contact-grid{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
@media (min-width: 980px){
  .contact-grid{
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
    align-items: start;
  }
}

/* Form container */
.contact-form{
  background: #fff;
  border: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.07);
  padding: 18px 16px 16px 16px;
  position: relative;
}
.contact-form::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 2px;
  background: rgba(208,122,42,0.75);
}
.contact-form__grid{
  display: grid;
  gap: 12px;
  margin-top: 6px;
}
@media (min-width: 700px){
  .contact-form__grid{
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full{
  grid-column: 1 / -1;
}
.field label{
  font-size: 13px;
  color: rgba(20,23,26,0.72);
}
.field input,
.field select,
.field textarea{
  font: inherit;
  border: 1px solid rgba(20,23,26,0.16);
  background: #fff;
  padding: 10px 10px;
  border-radius: 10px;
  outline: none;
}
.field textarea{
  resize: vertical;
  min-height: 140px;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(20,23,26,0.42);
  box-shadow: 0 0 0 3px rgba(208,122,42,0.14);
}

.contact-actions{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.contact-btn{
  border: 1px solid rgba(20,23,26,0.16);
  background: rgba(20,23,26,0.04);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 650;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.contact-btn:hover{
  background: rgba(20,23,26,0.07);
  border-color: rgba(20,23,26,0.26);
  transform: translateY(-1px);
}
.contact-alt{
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form__disclaimer{
  margin: 12px 0 0 0;
  font-size: 13px;
  color: rgba(20,23,26,0.62);
  border-top: 1px solid rgba(20,23,26,0.10);
  padding-top: 12px;
}

/* Side panels */
.contact-side{
  display: grid;
  gap: 14px;
}
.contact-side__panel{
  background: #fff;
  border: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 18px 55px rgba(0,0,0,0.07);
  padding: 18px 16px 16px 16px;
  position: relative;
}
.contact-side__panel::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 2px;
  background: rgba(208,122,42,0.65);
}
.contact-side__kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.58);
}
.contact-side__title{
  margin: 0 0 10px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.contact-side__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(20,23,26,0.72);
}
.contact-side__badges{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-badge{
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(20,23,26,0.10);
  background: rgba(20,23,26,0.04);
  color: rgba(20,23,26,0.72);
}
.contact-side__steps{
  margin: 0;
  padding-left: 18px;
  color: rgba(20,23,26,0.72);
  font-size: 14px;
}
.contact-side__steps li{
  margin: 8px 0;
}

/* Tiles */
.contact-tiles{
  display: grid;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 900px){
  .contact-tiles{
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.contact-tile{
  background: #fff;
  border: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  padding: 18px 16px 16px 16px;
  position: relative;
}
.contact-tile::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 2px;
  background: rgba(208,122,42,0.65);
}
.contact-tile__kicker{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,23,26,0.55);
}
.contact-tile__title{
  margin: 0 0 8px 0;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.contact-tile__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(20,23,26,0.72);
}
/* =========================================================
   CONTACT – center and equal width (override)
   Paste at END of styles.css
========================================================= */

.contact-center{
  max-width: 780px;          /* adjust to taste: 720–820 */
  margin: 0 auto;
}

.contact-head{
  display: block !important;
  margin: 0;
}

.contact-grid{
  display: block !important;
  margin-top: 18px;
}

.contact-primary,
.contact-form{
  width: 100%;
  box-sizing: border-box;
}

.contact-lede{
  margin-bottom: 14px;
}
/* =========================================================
   MOBILE SPACING + OVERLAY HEADER (pin + white-on-scroll via your JS class)
   ========================================================= */

/* Prevent iPhone top gap caused by fixed header height */
.site-header{ height: auto; z-index: 6000; }

/* Mobile side padding (incl. iPhone safe area) */
:root{
  --pad: max(18px, calc(env(safe-area-inset-left) + 16px));
}

@media (max-width: 899px){
  .container{
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
}

html, body{ overflow-x: hidden; }

/* Pin overlay header (must be fixed to stay on top) */
.site-header--overlay{
  position: fixed;
  top: 0; left: 0; right: 0;
  background: transparent; /* top-of-hero state */
}

/* IMPORTANT: match THIS selector to whatever class your JS toggles on scroll.
   In your styles.css earlier, it looked like you use .is-sticky. */
.site-header--overlay.is-sticky{
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(20,23,26,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* =========================================================
   MOBILE DRAWER vs FIXED HEADER — stacking + click fixes
   ========================================================= */

/* Ensure drawer sits ABOVE the fixed header */
.drawer{ z-index: 10000; }            /* header is 6000 */

/* Ensure backdrop is behind the panel and doesn't cover controls */
.drawer__backdrop{ z-index: 0; }
.drawer__panel{ z-index: 1; position: relative; }

/* Make sure close button (X) is always on top and clickable */
.drawer__top{ position: relative; z-index: 2; }
.drawer__close, .drawer__top button{
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

/* When drawer is open, prevent header from visually interfering */
.drawer.is-open ~ .site-header,
.drawer.is-open + .site-header{
  pointer-events: none;
}

/* Safer: if your drawer is NOT a sibling of header, use :has (works on modern Safari/iOS) */
body:has(.drawer.is-open) .site-header{
  pointer-events: none;
}
/* =========================================================
   FORCE MOBILE DRAWER FULL-SCREEN (iOS-safe)
   ========================================================= */

.drawer{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;   /* dynamic viewport (best for iOS Safari) */
  z-index: 10000;
}

.drawer__backdrop{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.drawer__panel{
  position: absolute;
  inset: 0;         /* FULL SCREEN */
  width: 100%;
  height: 100%;
  max-width: none;  /* remove any accidental constraints */
  border-radius: 0; /* full-screen look */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* =========================================================
   FOOTER — tighten spacing between copyright and links
   ========================================================= */

.site-footer p{
  margin-bottom: 4px; /* reduce default paragraph gap */
}

.site-footer .footer-links,
.site-footer nav,
.site-footer .footer-nav{
  margin-top: 0;
}

/* If links are inside a <p>, tighten even more */
.site-footer p + p{
  margin-top: 2px;
}

/* Optional: slightly reduce line-height for a cleaner block */
.site-footer{
  line-height: 1.35;
}
/* =========================================================
   LOGISTICS — How a Trade Runs (desktop grid + mobile swipe rail)
   ========================================================= */

/* Base */
.ops-timeline{ margin-top: 14px; }
.ops-timeline__track{
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Desktop/tablet */
@media (min-width: 980px){
  .ops-timeline__track{
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }
}

/* Mobile: swipe rail with true left/right breathing room */
@media (max-width: 979px){
  .ops-timeline{ padding: 0; } /* container already has side padding */

  .ops-timeline__track{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 78%);
    gap: 16px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 0 0 10px 0; /* no big top/bottom padding */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    /* KEY: create left/right gutters without messing with container padding */
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;
  }

  /* Give the first/last card breathing room */
  .ops-timeline__track::before,
  .ops-timeline__track::after{
    content: "";
    width: 16px;
  }

  /* Hide scrollbar but keep swipe */
  .ops-timeline__track::-webkit-scrollbar{ display: none; }

  .ops-milestone{
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid rgba(20,23,26,0.08);
    border-radius: 16px;
    padding: 16px 16px 14px;
    min-height: 150px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  }

  .ops-milestone__dot{ display: none; }

  .ops-milestone__num{
    margin: 0 0 6px 0;
    letter-spacing: 0.08em;
    opacity: 0.7;
  }

  .ops-milestone__title{ margin: 0 0 8px 0; }
  .ops-milestone__text{ margin: 0; max-width: none; line-height: 1.45; }
}
/* =========================================================
   LOGISTICS — mobile rail final tuning (top inset + next-card peek)
   ========================================================= */
@media (max-width: 979px){

  /* 1) Fix the top breathing room (without inflating bottom) */
  .ops-timeline__track{
    padding-top: 12px;     /* adds the missing top space */
    padding-bottom: 12px;  /* keep consistent */
  }

  /* 2) Ensure the next card is visible (peek) */
  .ops-timeline__track{
    grid-auto-columns: minmax(240px, 72%); /* was 78% */
  }

  /* Slightly larger right gutter so the peek reads better */
  .ops-timeline__track::after{
    width: 28px; /* was 16px */
  }
}
/* =========================================================
   iPad portrait — increase horizontal margins (container padding)
   ========================================================= */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: portrait){
  :root{
    --pad: 28px; /* tablet portrait feels better than 18px */
  }

  .container{
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
}

/* =========================================================
   iPhone: push hero text below fixed header/logo
   ========================================================= */
@media (max-width: 480px){
  .hero-v1__content{
    padding-top: calc(120px + 64px); /* header + breathing room */
  }
}

