/* ==========================================================================
   WE GLOBALL — "The Manifest" design system
   A visual language borrowed from bills of lading, customs stamps and
   shipping ledgers: numbered line-items, rubber-stamp seals, HS-code style
   mono labels, dotted trade-route rules. Built for an agri-export brand.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root{
  /* color — brand palette */
  --ink:        #003870;   /* Headings / brand navy (also dark-section bg) */
  --ink-deep:   #002850;   /* Deeper navy for footer / mobile nav overlay */
  --accent:   #4A90C2;   /* Accent — seals, highlights, on-dark emphasis */
  --accent-d: #1F5C94;   /* Deeper accent — borders, underlines on light bg */
  --olive:      #55694a;
  --paper:      #FAFBFC;   /* Background */
  --paper-2:    #F5F8FC;   /* Alternate Section */
  --white:      #FFFFFF;   /* White Cards */
  --text:       #1A1A1A;   /* Body Text */
  --text-soft:  #5C6675;   /* Secondary Text */
  --line:       #E6EAF0;   /* Borders */
  --line-dark:  rgba(255,255,255,0.14);

  /* type */
  --f-display: 'Fraunces', ui-serif, Georgia, serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;
  --f-mono:    'IBM Plex Mono', ui-monospace, monospace;

  /* rhythm */
  --gap: clamp(1.25rem, 2vw, 2rem);
  --radius: 3px;
  --radius-btn: 10px;   /* rounded corners for all button-style elements */
  --shadow: 0 12px 28px -14px rgba(0,56,112,0.22);
  --shadow-btn: 0 6px 16px -6px rgba(0,56,112,0.28);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body{ max-width: 100%; overflow-x: hidden; }
@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; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--f-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; }
h1,h2,h3,h4{ font-family: var(--f-display); margin: 0; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
p{ margin: 0; }

:focus-visible{
  outline: 2px solid var(--accent-d);
  outline-offset: 3px;
}

.wrap{
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- eyebrow / manifest labels ---------- */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-d);
}
.eyebrow::before{
  content: '';
  width: 26px;
  height: 1px;
  background: var(--accent-d);
  display: inline-block;
}
.eyebrow.on-dark{ color: var(--accent); }
.eyebrow.on-dark::before{ background: var(--accent); }

/* ---------- header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}
.brand img{ height: 40px; width: auto; border-radius: 2px; transition: transform .18s ease; }
.brand:hover img{ transform: scale(1.04); }
.brand-word{
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}
.brand-word span{ color: var(--accent); }

.main-nav{ display: flex; align-items: center; gap: 2rem; }
.main-nav > ul{ display: flex; align-items: center; gap: 1.9rem; }
.main-nav a{
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  transition: color .18s ease;
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a[aria-current="page"]{ color: var(--white); }
.main-nav a[aria-current="page"]::after{
  content:'';
  position: absolute; left:0; right:0; bottom:-4px;
  height: 2px; background: var(--accent);
}
/* .has-dropdown gets an invisible padding "bridge" so the hover state survives
   the visual gap between the nav link and the menu below it — this is the
   fix for the flyout being fiddly/closing before the mouse reaches it. */
.has-dropdown{ position: relative; padding-bottom: 0.9rem; margin-bottom: -0.9rem; }
.dropdown{
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--white);
  min-width: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown{
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear 0s;
}
.dropdown a{
  display: block;
  color: var(--text);
  padding: 0.7rem 0.85rem;
  font-size: 0.85rem;
  border-radius: 7px;
}
.dropdown a:hover{ background: var(--paper-2); color: var(--ink); }

/* ---------- nested flyout (product sub-types) ---------- */
/* Same bridge technique, this time as a horizontal gap on the right edge. */
.dropdown-item{ position: relative; padding-right: 0.6rem; margin-right: -0.6rem; }
.dropdown-item > a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.dropdown-item > a::after{
  content: '›';
  font-size: 1rem;
  color: var(--text-soft);
}
.flyout{
  position: absolute;
  top: -0.5rem;
  left: 100%;
  min-width: 260px;
  max-height: 340px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(4px);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s;
  z-index: 5;
}
.dropdown-item:hover .flyout,
.dropdown-item:focus-within .flyout{
  opacity: 1; visibility: visible; transform: translateX(0);
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear 0s;
}
.flyout a{
  display: block;
  color: var(--text);
  padding: 0.65rem 0.8rem;
  font-size: 0.82rem;
  border-radius: 7px;
  white-space: nowrap;
}
.flyout a:hover{ background: var(--paper-2); color: var(--ink); }

@media (max-width: 1240px){
  .flyout{ left: auto; right: 100%; }
  .dropdown-item{ padding-right: 0; margin-right: 0; padding-left: 0.6rem; margin-left: -0.6rem; }
}

.header-cta{
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #4a90c2;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--white);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.header-cta:hover{ background: var(--paper-2); transform: translateY(-2px); box-shadow: var(--shadow-btn); }
.header-cta:active{ transform: translateY(0); box-shadow: none; }

.nav-toggle{
  display: none;
  background: none; border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-btn);
  width: 42px; height: 38px;
  color: var(--white);
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
  align-items: center; justify-content: center;
}
.nav-toggle:hover{ background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ---------- hero ---------- */
.hero{
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 6vw, 4rem);
}
.hero::before{
  /* dotted trade-route arcs, purely abstract, no real map traced */
  content:'';
  position: absolute; inset: -10% -5% auto auto;
  width: 640px; height: 640px;
  background-image:
    radial-gradient(circle, rgba(31,92,148,0.35) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 62%);
          mask-image: radial-gradient(circle at 70% 30%, black 0%, transparent 62%);
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.hero h1{
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.04;
  margin-top: 0.9rem;
}
.hero h1 em{
  font-style: italic;
  color: var(--accent);
}
.hero-sub{
  margin-top: 1.4rem;
  max-width: 46ch;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
}
.hero-actions{
  display: flex;
  gap: 1rem;
  margin-top: 2.1rem;
  flex-wrap: wrap;
}
.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}
.btn:active{ transform: translateY(0); box-shadow: none; }
.btn-primary{ background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover{ transform: translateY(-2px); background: var(--accent-d); border-color: var(--accent-d); box-shadow: var(--shadow-btn); }
.btn-ghost{ color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); box-shadow: var(--shadow-btn); }

/* stamp seal — signature element */
.seal{
  --sz: 132px;
  width: var(--sz); height: var(--sz);
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(-9deg);
  position: relative;
  flex-shrink: 0;
}
.seal::before{
  content:'';
  position: absolute; inset: 6px;
  border: 1px dashed rgba(31,92,148,0.6);
  border-radius: 50%;
}
.seal-text{
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.5;
}

.hero-panel{
  position: relative;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.2vw, 2rem);
}
.hero-photos{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.8rem;
}
.hero-photos img{
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-photos .tall{ grid-row: span 2; aspect-ratio: 3/4; }
.hero-photos .wide{ aspect-ratio: 16/10; }

.manifest-strip{
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.manifest-strip .item dt{
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem;
}
.manifest-strip .item dd{
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.86);
}

/* ---------- socials rail ---------- */
.social-rail{
  display: flex; gap: 0.75rem;
}
.social-rail a{
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: border-color .16s ease, color .16s ease, transform .16s ease;
}
.social-rail a:hover{ border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.social-rail svg{ width: 16px; height: 16px; }

/* ---------- section shells ---------- */
.section{ padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-head{
  max-width: 62ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.section-head h2{
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 0.7rem;
}
.section-head p{
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 1.02rem;
}
.section.alt{ background: var(--paper-2); }
.section.dark{ background: var(--ink); color: var(--white); }
.section.dark .section-head p{ color: rgba(255,255,255,0.75); }

/* ---------- about / mission copy blocks ---------- */
.prose{ max-width: 74ch; font-size: 1.03rem; color: var(--text-soft); }
.prose p + p{ margin-top: 1.1rem; }
.founder-line{
  margin-top: 1.6rem;
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 0.9rem;
}

.split{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split img{
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* mission / vision cards */
.mv-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.mv-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.3rem);
  position: relative;
}
.mv-card .tag{
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-d);
}
.mv-card h3{ font-size: 1.3rem; margin-top: 0.5rem; }
.mv-card p{ margin-top: 0.8rem; color: var(--text-soft); }

/* ---------- product line-items (home listing) ---------- */
.manifest-list{ display: flex; flex-direction: column; }
.manifest-row{
  display: grid;
  grid-template-columns: 90px 1.1fr 1.4fr auto;
  gap: var(--gap);
  align-items: center;
  padding: clamp(1.4rem, 2.4vw, 2rem) 0;
  border-top: 1px solid var(--line);
}
.manifest-row:last-child{ border-bottom: 1px solid var(--line); }
.manifest-row .no{
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--accent-d);
}
.manifest-row .thumb{
  width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 2px;
  border: 1px solid var(--line);
}
.manifest-row .thumb img{ width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.manifest-row:hover .thumb img{ transform: scale(1.05); }
.manifest-row h3{ font-size: 1.35rem; }
.manifest-row p{ margin-top: 0.5rem; color: var(--text-soft); font-size: 0.96rem; }
.manifest-row .go{
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--accent-d);
  padding-bottom: 2px;
  white-space: nowrap;
}

/* ---------- product page: spec feature cards ---------- */
.feature-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}
.feature-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.feature-card .thumb{
  width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 2px;
}
.feature-card .thumb img{ width: 100%; height: 100%; object-fit: cover; }
.feature-card h4{ font-size: 1.02rem; font-weight: 600; }

.gallery-strip{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.gallery-strip img{
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--line);
}

.product-hero{
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(2.6rem, 6vw, 4rem);
}
.product-hero .code{
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.product-hero h1{ color: var(--white); margin-top: 0.6rem; font-size: clamp(2.1rem,4vw,3.1rem); }
.product-hero .lede{ margin-top: 1rem; max-width: 60ch; color: rgba(255,255,255,0.8); }
.crumbs{
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.crumbs a{ color: rgba(255,255,255,0.8); }
.crumbs a:hover{ color: var(--accent); }

/* ---------- why choose us ---------- */
.why-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.8rem, 3vw, 2.6rem) var(--gap);
}
.why-item{
  border-top: 2px solid var(--accent);
  padding-top: 1.3rem;
}
.why-item .no{
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  display: block;
}
.why-item h4{ font-size: 1.18rem; margin-top: 0.7rem; color: var(--white); line-height: 1.3; }
.why-item p{ margin-top: 0.7rem; color: rgba(255,255,255,0.72); font-size: 0.96rem; line-height: 1.6; max-width: 32ch; }

@media (max-width: 960px){
  .why-list{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .why-list{ grid-template-columns: 1fr; }
}

/* ---------- contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.field{ margin-bottom: 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.field label{
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.field input, .field textarea{
  font-family: var(--f-body);
  font-size: 0.98rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  color: var(--text);
  resize: vertical;
}
.field input:focus, .field textarea:focus{
  outline: none;
  border-color: var(--accent-d);
  background: var(--white);
}
.form-note{ font-size: 0.82rem; color: var(--text-soft); margin-top: 0.6rem; }

.contact-info{ display: flex; flex-direction: column; gap: 1.4rem; }
.info-row{
  display: flex; gap: 1rem; align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.3rem;
}
.info-row .ico{
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--accent-d);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-d);
}
.info-row .ico svg{ width: 18px; height: 18px; }
.info-row h4{
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}
.info-row p{ margin-top: 0.3rem; font-size: 1rem; }
.info-row a:hover{ color: var(--accent-d); }

/* ---------- footer ---------- */
.site-footer{
  background: var(--ink-deep);
  color: rgba(255,255,255,0.75);
  padding-block: clamp(2.6rem, 5vw, 3.6rem) 1.6rem;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: var(--gap);
  padding-bottom: 2.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h5{
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-brand p{ margin-top: 0.9rem; max-width: 34ch; font-size: 0.92rem; color: rgba(255,255,255,0.65); }
.footer-grid ul li + li{ margin-top: 0.6rem; }
.footer-grid a{ font-size: 0.92rem; }
.footer-grid a:hover{ color: var(--accent); }
.footer-bottom{
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 1.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- toast (form feedback) ---------- */
.toast{
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--accent);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  z-index: 200;
  max-width: 320px;
}
.toast.show{ transform: translateY(0); opacity: 1; }

/* ---------- reveal-on-scroll ---------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- data table (quality / varieties) ---------- */
.table-scroll{
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.data-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.94rem;
}
.data-table caption{ caption-side: top; text-align: left; padding: 1rem 1.2rem 0; }
.data-table thead th{
  text-align: left;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2);
  padding: 0.9rem 1.1rem;
  border-bottom: 2px solid var(--accent-d);
  white-space: nowrap;
}
.data-table tbody td{
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--text-soft);
}
.data-table tbody tr:last-child td{ border-bottom: none; }
.data-table tbody tr:nth-child(even){ background: rgba(31,92,148,0.06); }
.data-table td.variety{
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  white-space: nowrap;
}
.data-table td.variety a{
  color: inherit;
  border-bottom: 1px solid var(--accent);
  transition: color .16s ease;
}
.data-table td.variety a:hover{ color: var(--accent-d); }
.data-table td.no{
  font-family: var(--f-mono);
  color: var(--accent-d);
  font-size: 0.78rem;
}
.data-table .pass{
  color: var(--olive);
  font-weight: 600;
}

/* ---------- certification badges ---------- */
.cert-row{
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.cert-badge{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--accent-d);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
}
.cert-badge .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-d);
  flex-shrink: 0;
}

/* ---------- plain info card (no thumb) ---------- */
.info-card-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}
.info-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  border-top: 3px solid var(--accent-d);
}
.info-card .no{
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--accent-d);
}
.info-card h4{ font-size: 1.05rem; margin-top: 0.6rem; }
.info-card p{ margin-top: 0.6rem; color: var(--text-soft); font-size: 0.93rem; }

/* ---------- product range cards (feed lines, honey grades, etc.) ---------- */
.product-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.product-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  position: relative;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  scroll-margin-top: 6.5rem;
}
.product-card .cap{
  align-self: flex-start;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-d);
  background: rgba(31,92,148,0.12);
  border: 1px solid rgba(196,138,34,0.35);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}
.product-card h4{ font-size: 1.15rem; }
.product-card p{ color: var(--text-soft); font-size: 0.93rem; flex-grow: 1; }
.product-card .stats{
  display: flex;
  gap: 1.2rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  color: var(--text-soft);
}
.product-card .stats b{ display: block; color: var(--ink); font-size: 0.98rem; font-family: var(--f-display); }

.product-card:target{
  border-color: var(--accent-d);
  box-shadow: 0 0 0 3px rgba(31,92,148,0.25), var(--shadow);
}
.feed-steps{
  display: grid;
  gap: 1.1rem;
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
}
.feed-steps li{
  list-style: none;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}
.feed-steps li::before{
  counter-increment: step;
  content: counter(step);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  font-family: var(--f-mono);
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feed-steps p{ color: #ffffff; padding-top: 0.5rem; }

.dose-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}
.dose-card{
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  border-left: 3px solid var(--accent);
}
.dose-card h4{ color: var(--accent); font-size: 1.05rem; }
.dose-card ul{ margin-top: 1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.dose-card li{ font-size: 0.94rem; color: rgba(255,255,255,0.82); padding-left: 1rem; position: relative; }
.dose-card li::before{ content:'\2022'; position:absolute; left:0; color: var(--accent); }
.dose-card li b{ color: var(--white); font-family: var(--f-display); font-size: 1.02rem; display: block; }

/* ---------- floating actions (whatsapp + back-to-top) ---------- */
.float-actions{
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 210;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-end;
}
.float-btn{
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.float-btn:hover{ transform: translateY(-3px); box-shadow: var(--shadow-btn); }
.float-btn:active{ transform: translateY(-1px); }
.float-btn svg{ width: 24px; height: 24px; }
.whatsapp-btn{ background: #25D366; color: #fff; border-color: #1ebe57; }
.top-btn{
  background: var(--ink);
  color: var(--accent);
  border-color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}
.top-btn.show{ opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 560px){
  .cert-row{ gap: 0.6rem; }
  .float-actions{ right: 1rem; bottom: 1rem; }
  .float-btn{ width: 46px; height: 46px; }
}

@media (max-width: 900px){
  .main-nav{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-panel{ order: -1; }
  .manifest-strip{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  .mv-grid{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .manifest-row{ grid-template-columns: 70px 1fr; grid-template-areas: "no thumb" "title title" "desc desc" "go go"; row-gap: 0.6rem; }
  .manifest-row .no{ grid-area: no; }
  .manifest-row .thumb{ grid-area: thumb; }
  .manifest-row h3{ grid-area: title; }
  .manifest-row p{ grid-area: desc; }
  .manifest-row .go{ grid-area: go; }
  .gallery-strip{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .manifest-strip{ grid-template-columns: 1fr 1fr; }
  .gallery-strip{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-photos{ grid-template-columns: 1fr 1fr; }
}

/* mobile nav panel */
.mobile-nav{
  display: none;
  position: fixed; inset: 0;
  background: var(--ink-deep);
  z-index: 150;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.open{ display: block; }
.mobile-nav .close-btn{
  background: none; border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); width: 40px; height: 40px; border-radius: var(--radius-btn);
  float: right; cursor: pointer;
  transition: background .16s ease, border-color .16s ease;
}
.mobile-nav .close-btn:hover{ background: rgba(255,255,255,0.1); border-color: var(--white); }
.mobile-nav ul{ margin-top: 4rem; display: flex; flex-direction: column; gap: 1.6rem; }
.mobile-nav a{ font-family: var(--f-display); font-size: 1.6rem; color: var(--white); }
.mobile-nav .sub{ margin-top: 1rem; padding-left: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav .sub a{ font-family: var(--f-body); font-size: 1rem; color: rgba(255,255,255,0.7); }

.mobile-nav .sub-group{ display: flex; flex-direction: column; }
.sub-row{ display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.sub-row > a{ flex: 1; }
.sub-toggle{
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-btn);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
  transition: background .16s ease, border-color .16s ease;
}
.sub-toggle:hover{ background: rgba(255,255,255,0.1); border-color: var(--white); }
.sub-toggle .chev{
  width: 16px; height: 16px;
  transition: transform .18s ease;
}
.sub-toggle[aria-expanded="true"] .chev{ transform: rotate(90deg); }
/* ---------- mobile product submenus ---------- */

.mobile-nav .sub-flyout {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav .sub-flyout.open {
  max-height: 600px;
}

.mobile-nav .sub-flyout ul {
  margin: 0;
  padding: 0.7rem 0 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
}

.mobile-nav .sub-flyout li {
  margin: 0;
  padding: 0;
}

.mobile-nav .sub-flyout a {
  display: block;
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.62);
  white-space: normal;
}
@media (max-width: 767px) {
  .manifest-row {
    display: grid !important;
    grid-template-columns: 35px 120px 1fr !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .manifest-row .no {
    width: auto !important;
  }

  .manifest-row .thumb {
    width: 120px !important;
  }

  .manifest-row .thumb img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .manifest-row > div:not(.thumb) {
    width: auto !important;
    min-width: 0 !important;
  }

  .manifest-row h3 {
    white-space: normal !important;
    word-break: normal !important;
  }

  .manifest-row p {
    width: 100% !important;
    margin: 8px 0 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    line-height: 1.5 !important;
  }

  .manifest-row .go {
    grid-column: 2 / 4;
  }
}
@media (max-width: 900px) {
  .header-cta {
    white-space: nowrap !important;
    width: auto !important;
    min-width: 110px !important;
    flex-shrink: 0 !important;
    padding: 0.65rem 0.9rem !important;
    font-size: 0.68rem !important;
    text-align: center;
  }
}
p {
    text-align: justify;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.feature-card {
    grid-column: span 2;
}

/* 4th and 5th box - bottom row */
.feature-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.feature-card:nth-child(5) {
    grid-column: 4 / span 2;
}
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: auto;
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    width: 100%;
}
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
.info-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 991px) {
    .info-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .info-card-grid {
        grid-template-columns: 1fr;
    }
}
