/* =========================================================
   KORO EXPORT — Design System
   Concept: Nigerian origin × global standards.
   A working document — soil, sesame, hibiscus and ginger
   rendered with the restraint of an international trade desk.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,17;9..144,17&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,380;0,9..144,440;0,9..144,560;1,9..144,440&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root{
  /* --- Color tokens — extracted from the Koro Export logo (teal #037F74, cyan #0DD5E5),
     with functional neutrals (ink / paper) added for text and background --- */
  --ink:        #12211E;   /* near-black, teal-tinted — primary text */
  --ink-soft:   #4B5F5C;   /* secondary text */
  --paper:      #FFFFFF;   /* base background */
  --paper-high: #EFF6F5;   /* lifted panel background */
  --soil:       #065A52;   /* brand teal, dark — dark surfaces, buttons */
  --soil-high:  #0A6F65;   /* lighter dark teal, for dark-surface hover */
  --sesame:     #0DD5E5;   /* brand cyan — accent, used sparingly */
  --sesame-low: #BFEFEC;   /* pale cyan — tints, text on dark surfaces */
  --hibiscus:   #036970;   /* deep cyan-teal — links, focus, active states */
  --ginger:     #037F74;   /* brand teal — primary accent on light surfaces */
  --line:       #DCE8E6;   /* hairline rule on paper */
  --line-dark:  #12433D;   /* hairline rule on soil */
  --cream:      #F5FBFA;

  /* --- Type --- */
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* --- Layout --- */
  --max-w: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-s: 2px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Focus states — always visible */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 2px solid var(--hibiscus);
  outline-offset: 3px;
}

/* =========== Utility text styles =========== */
.eyebrow{
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content: '';
  width: 22px;
  height: 1px;
  background: var(--hibiscus);
  display: inline-block;
}

.lede{
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.6;
}

/* =========== Header / Nav =========== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239,230,211,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo span.sub{
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-top: 5px;
}
.main-nav{
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a{
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a.active{ color: var(--ink); }
.main-nav a.active::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--hibiscus);
}
.nav-cta{
  background: var(--soil);
  color: var(--cream) !important;
  padding: 11px 22px;
  border-radius: var(--radius-s);
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background 0.2s ease;
}
.nav-cta:hover{ background: var(--hibiscus); color: var(--cream) !important; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span{
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 920px){
  .main-nav{
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--soil);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px var(--gutter);
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.32s ease;
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav a{ color: var(--sesame-low); font-size: 20px; }
  .main-nav a:hover, .main-nav a.active{ color: var(--cream); }
  .nav-cta{ margin-top: 10px; }
  .nav-toggle{ display: block; }
  body.nav-open{ overflow: hidden; }
}

/* =========== Buttons =========== */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary{ background: var(--soil); color: var(--cream); }
.btn-primary:hover{ background: var(--hibiscus); }
.btn-outline{ border-color: var(--ink); color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--paper); }
.btn-outline-light{ border-color: rgba(251,248,240,0.5); color: var(--cream); }
.btn-outline-light:hover{ background: var(--cream); color: var(--soil); }
.btn-row{ display: flex; gap: 16px; flex-wrap: wrap; }

/* =========== Hero =========== */
.hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  background: var(--soil);
}
.hero-media{
  position: absolute; inset: 0;
}
.hero-media img{
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,25,17,0.25) 0%, rgba(30,20,14,0.55) 62%, rgba(24,16,11,0.86) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 76px;
  width: 100%;
}
.hero-eyebrow{
  font-size: 13px;
  font-weight: 500;
  color: var(--sesame-low);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before{ content:''; width: 22px; height: 1px; background: var(--sesame-low); }
.hero h1{
  color: var(--cream);
  font-size: clamp(38px, 6vw, 74px);
  max-width: 16ch;
  font-weight: 500;
}
.hero .lede{
  color: var(--sesame-low);
  margin-top: 22px;
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 18.5px);
}
.hero .btn-row{ margin-top: 38px; }

/* =========== Page header (non-home) =========== */
.page-header{
  padding: 150px 0 60px;
  background: var(--soil);
  color: var(--cream);
}
.page-header h1{ color: var(--cream); font-size: clamp(34px, 5vw, 56px); max-width: 20ch; }
.page-header .lede{ color: var(--sesame-low); margin-top: 18px; }
.page-header .eyebrow{ color: var(--sesame-low); }
.page-header .eyebrow::before{ background: var(--sesame-low); }

/* =========== Sections =========== */
section{ padding: 96px 0; }
section.tight{ padding: 64px 0; }
.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head h2{ font-size: clamp(28px, 3.4vw, 44px); max-width: 18ch; margin-top: 14px; }
.on-soil{ background: var(--soil); color: var(--cream); }
.on-soil h2, .on-soil h3{ color: var(--cream); }
.on-soil .eyebrow{ color: var(--sesame-low); }
.on-soil .eyebrow::before{ background: var(--sesame-low); }
.on-soil p{ color: var(--sesame-low); }
.on-high{ background: var(--paper-high); }

/* =========== Trust strip =========== */
.trust-strip{
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item{
  padding: 34px var(--gutter);
  border-left: 1px solid var(--line-dark);
}
.trust-item:first-child{ border-left: none; padding-left: 0; }
.trust-item .num{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--sesame-low);
  display: block;
  margin-bottom: 6px;
}
.trust-item .label{ font-size: 14px; color: var(--sesame-low); opacity: 0.85; }
@media (max-width: 860px){
  .trust-grid{ grid-template-columns: repeat(2,1fr); }
  .trust-item{ border-left: none; border-top: 1px solid var(--line-dark); padding-left: 0; }
  .trust-item:nth-child(odd){ padding-right: 20px; }
}

/* =========== Product cards / grid =========== */
.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}
.product-card{
  background: var(--paper);
  position: relative;
  display: block;
  overflow: hidden;
}
.product-card .media{
  aspect-ratio: 4/5;
  overflow: hidden;
}
.product-card .media img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.product-card:hover .media img{ transform: scale(1.045); }
.product-card .card-body{ padding: 26px 26px 30px; }
.product-card .tag{ font-size: 12.5px; color: var(--ink-soft); margin-bottom: 8px; display:block; }
.product-card h3{ font-size: 23px; margin-bottom: 10px; }
.product-card p{ color: var(--ink-soft); font-size: 15px; margin: 0 0 16px; }
.product-card .link{
  font-size: 14px; font-weight: 500; color: var(--hibiscus);
  display: inline-flex; align-items: center; gap: 8px;
}
@media (max-width: 860px){ .product-grid{ grid-template-columns: 1fr; } }

/* =========== Why section — editorial list, not icon cards =========== */
.value-list{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 20px 60px;
}
.value-row{
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.value-list .value-row:last-of-type{ border-bottom: 1px solid var(--line); }
.value-row .idx{ font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--ink-soft); }
.value-row h3{ font-size: 21px; margin-bottom: 8px; }
.value-row p{ color: var(--ink-soft); font-size: 15.5px; margin: 0; max-width: 44ch; }
@media (max-width: 780px){
  .value-list{ grid-template-columns: 1fr; }
}

/* =========== Sourcing journey =========== */
.journey{
  display: flex;
  border-top: 1px solid var(--line);
}
.journey-step{
  flex: 1;
  padding: 26px 20px 0 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.journey-step:last-child{ border-right: none; padding-right: 0; }
.journey-step .n{ font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--hibiscus); }
.journey-step h4{ font-size: 16px; margin: 10px 0 8px; font-family: var(--font-body); font-weight: 600; }
.journey-step p{ font-size: 13.8px; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px){
  .journey{ flex-direction: column; }
  .journey-step{ border-right: none; border-top: 1px solid var(--line); padding: 22px 0; }
  .journey-step:first-child{ border-top: none; }
}

/* =========== Process (How We Work) =========== */
.process-list{ border-top: 1px solid var(--line-dark); }
.process-row{
  display: grid;
  grid-template-columns: 90px 1fr 1.6fr;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: baseline;
}
.process-row .n{ font-family: var(--font-display); font-size: 22px; color: var(--sesame-low); }
.process-row h3{ font-size: 19px; font-weight: 500; }
.process-row p{ font-size: 15px; margin: 0; color: var(--sesame-low); opacity: 0.9; }
@media (max-width: 760px){
  .process-row{ grid-template-columns: 1fr; gap: 8px; }
}

/* =========== Spec table =========== */
.spec-table{ width: 100%; border-collapse: collapse; }
.spec-table tr{ border-top: 1px solid var(--line); }
.spec-table tr:last-child{ border-bottom: 1px solid var(--line); }
.spec-table th, .spec-table td{
  text-align: left;
  padding: 15px 4px;
  font-size: 14.5px;
  vertical-align: top;
}
.spec-table th{ color: var(--ink-soft); font-weight: 500; width: 40%; }
.spec-table td{ color: var(--ink); }
.placeholder-val{ color: var(--ink-soft); font-style: italic; }

/* =========== Certification list =========== */
.cert-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.cert-item{
  background: var(--paper-high);
  padding: 24px 22px;
}
.cert-item .name{ font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.cert-item .status{ font-size: 13px; color: var(--ink-soft); }
@media (max-width: 760px){ .cert-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .cert-grid{ grid-template-columns: 1fr; } }

/* =========== Markets / map =========== */
.markets-list{ display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line-dark); }
.market-item{ padding: 22px 16px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.market-item:nth-child(5n){ border-right: none; }
.market-item h4{ font-size: 15.5px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.market-item p{ font-size: 12.5px; color: var(--sesame-low); margin: 0; opacity: 0.85; }
@media (max-width: 900px){
  .markets-list{ grid-template-columns: repeat(2,1fr); }
  .market-item:nth-child(5n){ border-right: 1px solid var(--line-dark); }
  .market-item:nth-child(2n){ border-right: none; }
}

/* =========== Two column media/text =========== */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media{ order: 2; }
.split-media img{ width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split-text .eyebrow{ margin-bottom: 18px; }
.split-text h2{ font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.split-text p{ color: var(--ink-soft); font-size: 16px; margin: 0 0 16px; max-width: 50ch; }
@media (max-width: 860px){
  .split{ grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media{ order: 0; }
}

/* =========== Quote / Contact form =========== */
.form-wrap{
  background: var(--paper-high);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 56px);
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 24px;
}
.field{ display: flex; flex-direction: column; gap: 8px; }
.field.full{ grid-column: 1 / -1; }
.field label{ font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.field input, .field select, .field textarea{
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-s);
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: 2px solid var(--hibiscus);
  outline-offset: 1px;
  border-color: var(--hibiscus);
}
.field textarea{ resize: vertical; min-height: 100px; font-family: var(--font-body); }
.form-note{ font-size: 13.5px; color: var(--ink-soft); margin-top: 18px; }
.form-actions{ margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-success{
  display: none;
  padding: 18px 20px;
  background: var(--soil);
  color: var(--cream);
  font-size: 14.5px;
  margin-top: 20px;
}
.form-success.show{ display: block; }

/* =========== Contact details =========== */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-block + .contact-block{ margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact-block .label{ font-size: 13px; color: var(--ink-soft); margin-bottom: 6px; }
.contact-block .value{ font-size: 17px; }
@media (max-width: 860px){ .contact-grid{ grid-template-columns: 1fr; gap: 10px; } }

/* =========== CTA band =========== */
.cta-band{
  background: var(--soil);
  color: var(--cream);
  padding: 90px 0;
  text-align: left;
}
.cta-band h2{ color: var(--cream); font-size: clamp(30px,4vw,48px); max-width: 18ch; }
.cta-band p{ color: var(--sesame-low); max-width: 50ch; margin: 20px 0 34px; font-size: 17px; }

/* =========== Footer =========== */
footer{
  background: var(--ink);
  color: var(--sesame-low);
  padding: 72px 0 32px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 0.85fr 0.95fr 1.1fr;
  gap: 32px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(228,210,164,0.18);
}
.footer-grid li{ font-size: 13.5px; line-height: 1.5; }
.footer-brand .logo{ color: var(--cream); }
.footer-brand p{ margin-top: 16px; font-size: 14.5px; color: var(--sesame-low); opacity: 0.85; max-width: 32ch; }
footer h5{ font-size: 12.5px; color: var(--cream); font-weight: 600; margin: 0 0 18px; letter-spacing: 0.02em; }
footer ul li{ margin-bottom: 11px; }
footer ul li a{ font-size: 14.5px; opacity: 0.85; }
footer ul li a:hover{ opacity: 1; color: var(--cream); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 13px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 14px;
}
@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========== Reveal-on-scroll (single orchestrated pass) =========== */
.reveal{ opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity: 1; transform: translateY(0); }

/* =========== Misc =========== */
.hairline{ height: 1px; background: var(--line); border: none; margin: 0; }
.center-copy{ max-width: 640px; }
.small-caps-note{ font-size: 12.5px; color: var(--ink-soft); }

@media (max-width: 760px){
  section{ padding: 64px 0; }
  .trust-grid{ }
}

/* =========================================================
   Media placeholders — used in place of commissioned photography.
   Each variant carries a restrained textile/agricultural motif
   in the palette, with a small caption noting the intended shot.
   Swap for real photography via the same markup structure.
   ========================================================= */
.media-ph{
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 220px;
}
.media-ph svg{ position: absolute; inset: 0; width: 100%; height: 100%; }
.media-ph .ph-caption{
  position: relative;
  z-index: 2;
  padding: 16px 18px;
  font-size: 12px;
  color: rgba(251,248,240,0.82);
  letter-spacing: 0.01em;
}
.media-ph.on-light .ph-caption{ color: rgba(36,28,21,0.62); }
.media-ph.tone-soil{ background: linear-gradient(160deg,#3B2A1E 0%, #241C15 100%); }
.media-ph.tone-sesame{ background: linear-gradient(160deg,#C9A24B 0%, #8C6B25 100%); }
.media-ph.tone-hibiscus{ background: linear-gradient(160deg,#8C2F39 0%, #4E1620 100%); }
.media-ph.tone-ginger{ background: linear-gradient(160deg,#C1652B 0%, #7A3A17 100%); }
.media-ph.tone-parchment{ background: linear-gradient(160deg,#E4D2A4 0%, #CDBB93 100%); }

/* Process list on light background variant */
.light-process{ border-top-color: var(--line); }
.light-process .process-row{ border-bottom-color: var(--line); }
.light-process .process-row .n{ color: var(--hibiscus); }
.light-process .process-row p{ color: var(--ink-soft); opacity: 1; }

/* =========================================================
   V2 — Elevated brand system additions
   ========================================================= */

/* Real image plates now fill hero/split/card media containers */
.hero-media img, .split-media img, .product-card .media img,
.stat-media img, .flag-media img{ width:100%; height:100%; object-fit:cover; display:block; }

/* ---- Signature motif: NIGERIA -> GLOBAL MARKETS ---- */
.signature{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.signature .sig-a{ color: var(--sesame-low); }
.signature .sig-b{ color: rgba(251,248,240,0.55); }
.signature .sig-arrow{ color: var(--hibiscus-light, #D97B84); opacity: 0.9; }
.signature.on-light .sig-a{ color: var(--ink); }
.signature.on-light .sig-b{ color: var(--ink-soft); }
.signature.on-light .sig-arrow{ color: var(--hibiscus); }
.signature.sig-lg{ font-size: 14px; gap: 16px; }

/* ---- Header v2: simplified nav ---- */
.header-inner{ padding-top: 22px; padding-bottom: 22px; }

/* ---- Hero v2 ---- */
.hero{ min-height: 96vh; }
.hero-content{ padding-top: 140px; padding-bottom: 88px; }
.hero-mark{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(251,248,240,0.55);
  margin-bottom: 30px;
}
.hero-mark span{ position: relative; padding-right: 22px; }
.hero-mark span:not(:last-child)::after{
  content:'';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--sesame-low);
}
.hero-mark span.on{ color: var(--sesame-low); }
.hero h1{ font-size: clamp(40px, 6.4vw, 82px); max-width: 15ch; }
.hero-foot{
  position: relative; z-index: 2;
  border-top: 1px solid rgba(251,248,240,0.18);
  padding: 22px var(--gutter) 0;
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  max-width: var(--max-w);
  margin-left: auto; margin-right: auto;
}
.hero-foot .scroll-cue{ font-size: 12px; letter-spacing: 0.1em; color: rgba(251,248,240,0.5); }

/* ---- Editorial product blocks (replace card grid) ---- */
.flagship{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.flagship:last-of-type{ border-bottom: 1px solid var(--line); }
.flagship .flag-media{ aspect-ratio: 5/4; overflow: hidden; }
.flagship .flag-body{ padding: 54px var(--gutter) 54px 64px; display: flex; flex-direction: column; justify-content: center; }
.flagship.reverse{ grid-template-columns: 1.1fr 0.9fr; }
.flagship.reverse .flag-media{ order: 2; }
.flagship.reverse .flag-body{ padding: 54px 64px 54px var(--gutter); order: 1; }
.flag-index{ font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--hibiscus); margin-bottom: 14px; }
.flag-body h3{ font-size: clamp(28px, 3vw, 40px); margin-bottom: 6px; }
.flag-body .flag-sub{ font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.flag-body p.flag-pos{ font-size: 16.5px; color: var(--ink-soft); max-width: 46ch; margin: 0 0 26px; }
.flag-specs{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-bottom: 30px; }
.flag-specs div{ border-top: 1px solid var(--line); padding-top: 10px; }
.flag-specs .k{ display:block; font-size: 11.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.flag-specs .v{ font-size: 14.5px; }
.flag-specs .v.tbc{ color: var(--ink-soft); font-style: italic; }
@media (max-width: 900px){
  .flagship, .flagship.reverse{ grid-template-columns: 1fr; }
  .flagship .flag-media, .flagship.reverse .flag-media{ order: 0; }
  .flagship .flag-body, .flagship.reverse .flag-body{ padding: 40px var(--gutter); order: 1; }
  .flag-specs{ grid-template-columns: 1fr 1fr; }
}

/* ---- Origin process (Source / Assess / Prepare / Document / Ship) ---- */
.origin-process{ border-top: 1px solid var(--line-dark); }
.origin-row{
  display: grid;
  grid-template-columns: 90px 1fr 1.3fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
}
.origin-row .op-n{ font-family: var(--font-display); font-size: 15px; font-style: italic; color: var(--sesame-low); }
.origin-row h3{ font-size: 19px; color: var(--cream); font-weight: 500; }
.origin-row p{ font-size: 15px; color: var(--sesame-low); opacity: 0.88; margin:0; }
@media (max-width: 760px){ .origin-row{ grid-template-columns: 1fr; gap: 6px; } }

/* ---- Quality flow (vertical stepped chain) ---- */
.quality-flow{ display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.qf-step{ display: flex; flex-direction: column; align-items: flex-start; padding: 4px 26px 4px 0; }
.qf-step .qn{ font-family: var(--font-display); font-size: 15px; font-style: italic; color: var(--hibiscus); margin-bottom: 6px; }
.qf-step .ql{ font-size: 15.5px; font-weight: 600; }
.qf-arrow{ color: var(--ink-soft); opacity: 0.5; padding: 0 6px 0 0; font-size: 16px; }
@media (max-width: 760px){
  .quality-flow{ flex-direction: column; align-items: flex-start; gap: 14px; }
  .qf-arrow{ transform: rotate(90deg); padding: 0 0 0 4px; }
}

/* ---- Credibility grid ---- */
.credibility-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.cred-item{ background: var(--paper); padding: 30px 26px; }
.cred-item .cn{ font-family: var(--font-display); font-style: italic; color: var(--hibiscus); font-size: 14px; display:block; margin-bottom: 10px; }
.cred-item h4{ font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.cred-item p{ font-size: 14px; color: var(--ink-soft); margin: 0; }
@media (max-width: 760px){ .credibility-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .credibility-grid{ grid-template-columns: 1fr; } }

/* ---- Global markets map ---- */
.markets-map{ width: 100%; max-width: 760px; margin: 0 auto; }
.markets-map svg{ width: 100%; height: auto; }
.markets-legend{ display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-top: 34px; }
.markets-legend .ml-item{ display:flex; align-items:center; gap:8px; font-size: 13.5px; color: var(--sesame-low); }
.markets-legend .dot{ width:7px; height:7px; border-radius:50%; background: var(--sesame-low); display:inline-block; }

/* ---- Conditional quote-form requirement panels ---- */
.commodity-note{
  grid-column: 1 / -1;
  display: none;
  padding: 14px 16px;
  background: rgba(140,47,57,0.06);
  border-left: 2px solid var(--hibiscus);
  font-size: 13.5px;
  color: var(--ink-soft);
}
.commodity-note.show{ display: block; }

/* ---- Footer v2 columns already 4-up via .footer-grid; refine label ---- */
footer h5{ text-transform: none; }

/* ---- Section eyebrow refinement: avoid all-caps default, keep sentence case where used as label ---- */
.eyebrow.plain{ text-transform: none; }

/* =========================================================
   V3 — Real brand logo, contact CTAs, registration footer row
   ========================================================= */
.logo-link{ display:flex; align-items:center; }
.logo-img{ height: 32px; width: auto; display:block; }
footer .logo-img{ height: 30px; }

.nav-brochure{
  font-size: 13.5px !important;
  color: var(--ink-soft) !important;
  font-weight: 500 !important;
  border-bottom: 1px solid transparent;
}
.nav-brochure:hover{ color: var(--ink) !important; border-bottom-color: var(--line); }
@media (max-width: 920px){
  .nav-brochure{ color: var(--sesame-low) !important; font-size: 16px !important; }
}

.whatsapp-link{ display:inline-flex; align-items:center; gap:8px; }
.whatsapp-link::before{
  content:'';
  width:8px; height:8px; border-radius:50%;
  background: var(--ginger);
  display:inline-block;
}

.footer-meta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 28px;
  padding: 22px 0;
  font-size: 13px;
  color: var(--sesame-low);
  opacity: 0.85;
  border-bottom: 1px solid rgba(228,210,164,0.18);
}
.footer-meta a{ color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }

/* MOQ badge, used on product cards/pages */
.moq-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper-high);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: var(--radius-s);
}
.moq-badge .dot{ width:6px; height:6px; border-radius:50%; background: var(--hibiscus); display:inline-block; }
.on-soil .moq-badge{ background: rgba(255,255,255,0.06); border-color: var(--line-dark); color: var(--cream); }

/* Team section */
.team-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 28px;
}
.team-card .team-media{ aspect-ratio: 4/5; overflow: hidden; margin-bottom: 18px; }
.team-card h3{ font-size: 20px; margin-bottom: 4px; }
.team-card .role{ font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 860px){
  .team-grid{ grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* Registration / compliance list */
.reg-list{ border-top: 1px solid var(--line); }
.reg-row{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.reg-row .reg-k{ font-weight: 600; font-size: 15px; }
.reg-row .reg-v{ font-size: 14.5px; color: var(--ink-soft); }
.reg-row .reg-v.confirmed{ color: var(--ink); }
.reg-row .badge-confirmed{
  display:inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--soil); background: var(--paper-high); border: 1px solid var(--hibiscus);
  padding: 2px 8px; border-radius: 20px; margin-left: 8px;
}
@media (max-width: 700px){ .reg-row{ grid-template-columns: 1fr; gap: 6px; } }

/* Brochure CTA (pending asset — not yet a live download) */
.brochure-note{
  font-size: 13px; color: var(--ink-soft); margin-top: 10px;
}

.brochure-note{ margin-top:20px; font-size:13.5px; }
.brochure-note a{ text-decoration: underline; text-underline-offset: 3px; }
.cta-band .brochure-note{ color: var(--sesame-low); opacity:0.9; }
