/* ============================================================
   EXPORTS BY ANSHA - Shared design system
   Concept: "Field to Port" - premium produce trading house.
   Used by: index, about, products, quality, contact
   ============================================================ */

:root{
  --ink:        #16241C;
  --ink-soft:   #46584E;
  --pine:       #103D2A;
  --pine-deep:  #0A2A1D;
  --leaf:       #2F7E50;
  --turmeric:   #DC9A12;
  --turmeric-2: #B97D05;
  --paper:      #FBFAF4;
  --paper-2:    #F1EEE2;
  --line:       rgba(16,61,42,0.14);
  --line-light: rgba(255,255,255,0.16);

  --chilli:  #3FA24A;
  --lemon:   #E9B619;
  --tur:     #D98A1E;
  --veg:     #4E8C5C;

  --display: "Fraunces", Georgia, serif;
  --body:    "Archivo", system-ui, -apple-system, sans-serif;
  --mono:    "Spline Sans Mono", ui-monospace, monospace;

  --wrap: 1200px;
  --r: 18px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  font-size:17px;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }

.wrap{ width:100%; max-width:var(--wrap); margin:0 auto; padding:0 24px; }

/* ---- Reusable type ---- */
.eyebrow{
  font-family:var(--mono);
  font-size:.72rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--turmeric-2);
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-weight:500;
}
.eyebrow::before{
  content:"";
  width:26px; height:1px;
  background:var(--turmeric);
  display:inline-block;
}
.eyebrow.on-dark{ color:var(--turmeric); }

h1,h2,h3{ font-family:var(--display); font-weight:600; line-height:1.05; letter-spacing:-0.015em; }
.section-head{ max-width:720px; margin-bottom:54px; }
.section-head h2{ font-size:clamp(2rem, 4.4vw, 3.25rem); margin:18px 0 16px; }
.section-head p{ color:var(--ink-soft); font-size:1.08rem; max-width:60ch; }

.lead{ font-size:1.18rem; color:var(--ink-soft); }

/* ---- Buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:.6em;
  font-family:var(--body); font-weight:600; font-size:.98rem;
  padding:15px 26px; border-radius:100px;
  cursor:pointer; border:1.5px solid transparent;
  transition:transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.btn-gold{ background:var(--turmeric); color:var(--pine-deep); box-shadow:0 10px 24px -12px rgba(220,154,18,.9); }
.btn-gold:hover{ transform:translateY(-2px); background:#eaa61b; box-shadow:0 16px 30px -12px rgba(220,154,18,.85); }
.btn-pine{ background:var(--pine); color:#fff; }
.btn-pine:hover{ transform:translateY(-2px); background:var(--pine-deep); }
.btn-ghost{ background:transparent; color:var(--pine); border-color:var(--line); }
.btn-ghost:hover{ border-color:var(--pine); background:rgba(16,61,42,.04); }
.btn-ghost.on-dark{ color:#fff; border-color:var(--line-light); }
.btn-ghost.on-dark:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.btn .arrow{ transition:transform .2s ease; }
.btn:hover .arrow{ transform:translateX(3px); }

:focus-visible{ outline:3px solid var(--turmeric); outline-offset:3px; border-radius:4px; }

/* ============================================================ HEADER */
.topbar{ background:var(--pine-deep); color:rgba(255,255,255,.82); font-size:.8rem; font-family:var(--mono); letter-spacing:.04em; }
.topbar .wrap{ display:flex; justify-content:space-between; align-items:center; gap:18px; min-height:38px; flex-wrap:wrap; }
.topbar a{ color:var(--turmeric); }
.topbar .tb-right{ display:flex; gap:22px; }
@media(max-width:680px){ .topbar .tb-right{ display:none; } }

header{
  position:sticky; top:0; z-index:60;
  background:rgba(251,250,244,.94);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
header.scrolled{ border-color:var(--line); box-shadow:0 8px 30px -20px rgba(16,36,28,.5); }
.nav{ display:flex; align-items:center; justify-content:space-between; min-height:74px; gap:24px; }

.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand .mark{ width:42px; height:42px; border-radius:11px; background:var(--pine); display:grid; place-items:center; flex-shrink:0; }
.brand .mark svg{ width:24px; height:24px; }
.brand .name{ font-family:var(--display); font-weight:600; font-size:1.28rem; line-height:1; letter-spacing:-.01em; }
.brand .name span{ display:block; font-family:var(--mono); font-size:.6rem; letter-spacing:.28em; color:var(--turmeric-2); font-weight:500; margin-top:4px; text-transform:uppercase; }

.nav-links{ display:flex; align-items:center; gap:30px; }
.nav-links a{ font-size:.95rem; font-weight:500; color:var(--ink); position:relative; padding:4px 0; }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--turmeric); transition:width .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--pine); font-weight:600; }
.nav-cta{ display:flex; align-items:center; gap:14px; }

.menu-btn{ display:none; background:none; border:none; cursor:pointer; padding:8px; }
.menu-btn span{ display:block; width:24px; height:2px; background:var(--ink); margin:5px 0; transition:.3s; border-radius:2px; }

@media(max-width:980px){
  .nav-links{
    position:fixed; inset:0 0 0 auto; width:min(320px,82vw); background:var(--paper);
    flex-direction:column; align-items:flex-start; padding:110px 36px 40px; gap:8px;
    transform:translateX(100%); transition:transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow:-20px 0 60px -30px rgba(0,0,0,.4); z-index:55;
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ font-size:1.2rem; width:100%; padding:14px 0; border-bottom:1px solid var(--line); }
  .nav-links a::after{ display:none; }
  .menu-btn{ display:block; z-index:56; }
  .menu-btn.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .menu-btn.open span:nth-child(2){ opacity:0; }
  .menu-btn.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
  .nav-cta .btn-text{ display:none; }
}
@media(max-width:520px){ .nav-cta .btn-quote{ display:none; } }

/* ============================================================ HERO (home) */
.hero{
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(220,154,18,.14), transparent 55%),
    linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%);
  color:#fff; position:relative; overflow:hidden;
}
.hero::after{ content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image:repeating-linear-gradient(115deg, rgba(255,255,255,.022) 0 2px, transparent 2px 46px); }
.hero .wrap{ position:relative; z-index:2; }
.hero-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:54px; align-items:center; padding:84px 0 92px; }
.hero h1{ font-size:clamp(2.5rem, 5.6vw, 4.5rem); font-weight:600; margin:22px 0 24px; letter-spacing:-.02em; }
.hero h1 .accent{ color:var(--turmeric); font-style:italic; font-weight:500; }
.hero p.lead{ color:rgba(255,255,255,.84); max-width:52ch; }
.hero-actions{ display:flex; gap:14px; margin-top:36px; flex-wrap:wrap; }
.hero-stats{ display:flex; gap:34px; margin-top:46px; flex-wrap:wrap; }
.hero-stats .stat .num{ font-family:var(--display); font-size:2rem; font-weight:600; color:var(--turmeric); line-height:1; }
.hero-stats .stat .lab{ font-family:var(--mono); font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.62); margin-top:8px; }

.hero-visual{ position:relative; }
.label-card{ background:#fff; color:var(--ink); border-radius:var(--r); padding:26px; box-shadow:0 40px 80px -40px rgba(0,0,0,.6); position:relative; border:1px solid rgba(0,0,0,.05); }
.label-card .lc-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; padding-bottom:18px; border-bottom:1.5px dashed var(--line); }
.label-card .lc-stamp{ font-family:var(--mono); font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; border:1.5px solid var(--leaf); color:var(--leaf); padding:6px 10px; border-radius:7px; font-weight:600; transform:rotate(-3deg); }
.label-card h3{ font-size:1.5rem; }
.label-card .lc-sub{ font-family:var(--mono); font-size:.7rem; letter-spacing:.1em; color:var(--ink-soft); text-transform:uppercase; margin-top:4px; }
.lc-rows{ margin-top:18px; display:grid; gap:0; }
.lc-rows .row{ display:flex; justify-content:space-between; gap:14px; font-family:var(--mono); font-size:.82rem; padding:9px 0; border-bottom:1px dotted var(--line); }
.lc-rows .row:last-child{ border-bottom:none; }
.lc-rows .row .k{ color:var(--ink-soft); }
.lc-rows .row .v{ font-weight:600; color:var(--ink); }
.hero-visual .badge-float{ position:absolute; bottom:-26px; left:-26px; background:var(--turmeric); color:var(--pine-deep); font-family:var(--mono); font-weight:600; font-size:.72rem; letter-spacing:.08em; padding:14px 18px; border-radius:14px; box-shadow:0 24px 40px -20px rgba(220,154,18,.9); text-transform:uppercase; line-height:1.4; }
.hero-visual .leaf-bg{ position:absolute; top:-50px; right:-40px; width:200px; opacity:.16; color:var(--turmeric); z-index:-1; }
@media(max-width:920px){ .hero-grid{ grid-template-columns:1fr; gap:64px; padding:60px 0 70px; } .hero-visual{ max-width:420px; } }

/* ============================================================ PAGE HERO (inner pages) */
.page-hero{
  background:
    radial-gradient(120% 120% at 90% -10%, rgba(220,154,18,.16), transparent 55%),
    linear-gradient(160deg, var(--pine) 0%, var(--pine-deep) 100%);
  color:#fff; position:relative; overflow:hidden;
}
.page-hero::after{ content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image:repeating-linear-gradient(115deg, rgba(255,255,255,.022) 0 2px, transparent 2px 46px); }
.page-hero .wrap{ position:relative; z-index:2; padding:72px 24px 76px; }
.crumbs{ font-family:var(--mono); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.55); margin-bottom:22px; }
.crumbs a{ color:var(--turmeric); }
.crumbs span{ margin:0 8px; opacity:.5; }
.page-hero h1{ font-size:clamp(2.2rem,5vw,3.6rem); font-weight:600; max-width:18ch; letter-spacing:-.02em; }
.page-hero p{ color:rgba(255,255,255,.82); font-size:1.12rem; max-width:58ch; margin-top:20px; }

/* ============================================================ SECTIONS */
.block{ padding:96px 0; }
.block.tight{ padding:72px 0; }
.block.alt{ background:var(--paper-2); }
.block.pine{ background:var(--pine); color:#fff; }
.block.pine .section-head p{ color:rgba(255,255,255,.78); }

/* ============================================================ PRODUCTS */
.feature-products{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.pcard{ background:#fff; border:1px solid var(--line); border-radius:var(--r); overflow:hidden; display:flex; flex-direction:column; transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.pcard:hover{ transform:translateY(-6px); box-shadow:0 30px 60px -34px rgba(16,36,28,.4); border-color:transparent; }
.pcard .visual{ height:180px; position:relative; display:grid; place-items:center; overflow:hidden; }
.pcard.chilli .visual{ background:linear-gradient(140deg,#eaf6e8,#cfe9cd); }
.pcard.lemon  .visual{ background:linear-gradient(140deg,#fcf4d8,#f6e7a8); }
.pcard.tur    .visual{ background:linear-gradient(140deg,#fbeacb,#f3d199); }
.pcard .visual svg{ width:96px; height:96px; }
.pcard.chilli .visual svg{ color:var(--chilli); }
.pcard.lemon  .visual svg{ color:#caa30c; }
.pcard.tur    .visual svg{ color:var(--tur); }
.pcard .visual .tag{ position:absolute; top:14px; left:14px; font-family:var(--mono); font-size:.62rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; background:rgba(255,255,255,.85); color:var(--ink); padding:6px 10px; border-radius:7px; }
.pcard .pbody{ padding:24px; display:flex; flex-direction:column; flex:1; }
.pcard h3{ font-size:1.5rem; margin-bottom:6px; }
.pcard .pdesc{ color:var(--ink-soft); font-size:.95rem; margin-bottom:18px; }
.pspec{ margin-top:auto; border-top:1px solid var(--line); padding-top:14px; display:grid; gap:0; }
.pspec .srow{ display:flex; justify-content:space-between; gap:12px; font-family:var(--mono); font-size:.76rem; padding:6px 0; }
.pspec .srow .sk{ color:var(--ink-soft); }
.pspec .srow .sv{ font-weight:600; }

.more-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:24px; }
.mcard{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:22px; display:flex; flex-direction:column; gap:14px; transition:transform .25s ease, box-shadow .25s ease; }
.mcard:hover{ transform:translateY(-4px); box-shadow:0 22px 44px -30px rgba(16,36,28,.4); }
.mcard .mi{ width:46px; height:46px; border-radius:11px; background:var(--paper-2); display:grid; place-items:center; }
.mcard .mi svg{ width:26px; height:26px; color:var(--leaf); }
.mcard h4{ font-family:var(--display); font-size:1.18rem; font-weight:600; }
.mcard .hs{ font-family:var(--mono); font-size:.68rem; color:var(--ink-soft); letter-spacing:.06em; margin-top:-6px; }
@media(max-width:880px){ .feature-products{ grid-template-columns:1fr; } .more-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:460px){ .more-grid{ grid-template-columns:1fr; } }

/* ============================================================ STEPS / CAPABILITIES */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-top:1px solid var(--line-light); }
.step{ padding:36px 26px 36px 0; border-right:1px solid var(--line-light); position:relative; }
.step:last-child{ border-right:none; padding-right:0; }
.step .snum{ font-family:var(--mono); font-size:.8rem; color:var(--turmeric); letter-spacing:.1em; }
.step .sicon{ width:54px; height:54px; border-radius:13px; background:rgba(255,255,255,.08); display:grid; place-items:center; margin:20px 0 18px; }
.step .sicon svg{ width:28px; height:28px; color:var(--turmeric); }
.step h3{ font-size:1.32rem; margin-bottom:10px; }
.step p{ color:rgba(255,255,255,.74); font-size:.95rem; }
@media(max-width:880px){
  .steps{ grid-template-columns:1fr 1fr; }
  .step{ padding:30px 22px; border-bottom:1px solid var(--line-light); }
  .step:nth-child(odd){ padding-left:0; }
  .step:nth-child(even){ border-right:none; padding-right:0; }
}
@media(max-width:520px){ .steps{ grid-template-columns:1fr; } .step{ border-right:none; padding-left:0; padding-right:0; } }

/* ============================================================ WHY / FEATURE GRID */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.why{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:30px; }
.why .wi{ width:50px; height:50px; border-radius:12px; background:var(--pine); display:grid; place-items:center; margin-bottom:20px; }
.why .wi svg{ width:26px; height:26px; color:var(--turmeric); }
.why h3{ font-size:1.28rem; margin-bottom:10px; }
.why p{ color:var(--ink-soft); font-size:.95rem; }
@media(max-width:880px){ .why-grid{ grid-template-columns:1fr; } }

/* ============================================================ SPLIT / QUALITY */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.split .visual-panel{ background:linear-gradient(150deg,#cfe9cd,#eaf6e8); border-radius:var(--r); padding:46px; position:relative; min-height:420px; display:flex; flex-direction:column; justify-content:space-between; border:1px solid var(--line); }
.split .visual-panel .qbadge{ align-self:flex-start; font-family:var(--mono); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; background:var(--pine); color:#fff; padding:9px 14px; border-radius:8px; font-weight:600; }
.split .visual-panel .big-check{ width:120px; height:120px; color:var(--pine); align-self:center; }
.split .visual-panel .qfoot{ font-family:var(--mono); font-size:.78rem; color:var(--pine); letter-spacing:.05em; }
.checklist{ display:grid; gap:18px; margin-top:30px; }
.checklist li{ display:flex; gap:14px; align-items:flex-start; }
.checklist li svg{ width:24px; height:24px; color:var(--leaf); flex-shrink:0; margin-top:2px; }
.checklist li strong{ display:block; font-family:var(--display); font-weight:600; font-size:1.1rem; }
.checklist li span{ color:var(--ink-soft); font-size:.94rem; }
@media(max-width:880px){ .split{ grid-template-columns:1fr; gap:40px; } .split .visual-panel{ min-height:300px; order:-1; } }

/* ============================================================ MARKETS */
.markets{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.market{ background:rgba(255,255,255,.05); border:1px solid var(--line-light); border-radius:14px; padding:24px; }
.market .mreg{ font-family:var(--mono); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--turmeric); margin-bottom:12px; }
.market ul li{ font-size:.92rem; color:rgba(255,255,255,.82); padding:4px 0; }
@media(max-width:880px){ .markets{ grid-template-columns:1fr 1fr; } }
@media(max-width:480px){ .markets{ grid-template-columns:1fr; } }

/* ============================================================ ABOUT / FOUNDER */
.about-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center; }
.about-grid .ap{ background:linear-gradient(160deg,var(--pine),var(--pine-deep)); border-radius:var(--r); padding:44px; color:#fff; position:relative; overflow:hidden; }
.about-grid .ap .leaf-bg{ position:absolute; bottom:-30px; right:-20px; width:170px; color:var(--turmeric); opacity:.2; }
.about-grid .ap .quote{ font-family:var(--display); font-size:1.6rem; font-weight:500; font-style:italic; line-height:1.3; }
.about-grid .ap .qby{ font-family:var(--mono); font-size:.78rem; letter-spacing:.08em; color:var(--turmeric); margin-top:24px; }
.about-text h2{ font-size:clamp(1.9rem,3.6vw,2.8rem); margin-bottom:20px; }
.about-text p{ color:var(--ink-soft); margin-bottom:16px; }
@media(max-width:880px){ .about-grid{ grid-template-columns:1fr; gap:36px; } }

/* Founder card */
.founder{ display:grid; grid-template-columns:.8fr 1.2fr; gap:56px; align-items:center; }
.founder-card{ background:linear-gradient(160deg,var(--pine),var(--pine-deep)); border-radius:var(--r); padding:42px; color:#fff; text-align:center; position:relative; overflow:hidden; }
.founder-card .leaf-bg{ position:absolute; top:-30px; right:-30px; width:160px; color:var(--turmeric); opacity:.16; }
.founder-card .monogram{ width:120px; height:120px; border-radius:50%; margin:0 auto 22px; background:var(--turmeric); color:var(--pine-deep); display:grid; place-items:center; font-family:var(--display); font-weight:600; font-size:2.6rem; position:relative; z-index:1; }
.founder-card .fname{ font-family:var(--display); font-size:1.6rem; font-weight:600; position:relative; z-index:1; }
.founder-card .frole{ font-family:var(--mono); font-size:.74rem; letter-spacing:.12em; text-transform:uppercase; color:var(--turmeric); margin-top:8px; position:relative; z-index:1; }
.founder-card .fquote{ font-style:italic; color:rgba(255,255,255,.85); margin-top:22px; font-size:1.02rem; position:relative; z-index:1; }
.founder-card .flink{ display:inline-flex; align-items:center; gap:8px; margin-top:22px; font-family:var(--mono); font-size:.78rem; color:var(--turmeric); position:relative; z-index:1; }
.founder-card .flink svg{ width:16px; height:16px; }
@media(max-width:880px){ .founder{ grid-template-columns:1fr; gap:36px; } }

/* Credentials grid */
.creds{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.cred{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:26px; }
.cred .ci{ width:46px; height:46px; border-radius:11px; background:var(--paper-2); display:grid; place-items:center; margin-bottom:16px; }
.cred .ci svg{ width:24px; height:24px; color:var(--leaf); }
.cred h4{ font-family:var(--display); font-size:1.1rem; font-weight:600; margin-bottom:6px; }
.cred p{ font-size:.86rem; color:var(--ink-soft); }
@media(max-width:880px){ .creds{ grid-template-columns:1fr 1fr; } }
@media(max-width:460px){ .creds{ grid-template-columns:1fr; } }

/* Partner / expertise list */
.partner-list{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.partner{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:30px; }
.partner .pi{ width:50px; height:50px; border-radius:12px; background:var(--pine); display:grid; place-items:center; margin-bottom:20px; }
.partner .pi svg{ width:26px; height:26px; color:var(--turmeric); }
.partner h3{ font-size:1.22rem; margin-bottom:10px; }
.partner p{ color:var(--ink-soft); font-size:.94rem; }
@media(max-width:880px){ .partner-list{ grid-template-columns:1fr; } }

/* ============================================================ CTA BAND */
.cta-band{ background:linear-gradient(150deg,var(--turmeric),#c98a0f); color:var(--pine-deep); border-radius:var(--r); padding:54px; text-align:center; position:relative; overflow:hidden; }
.cta-band h2{ font-size:clamp(1.8rem,3.6vw,2.6rem); margin-bottom:14px; }
.cta-band p{ max-width:50ch; margin:0 auto 28px; color:rgba(10,42,29,.82); font-size:1.05rem; }
.cta-band .btn-pine{ background:var(--pine-deep); }

/* ============================================================ RFQ / CONTACT */
.rfq{ background:var(--pine-deep); color:#fff; }
.rfq-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:start; }
.rfq-left h2{ font-size:clamp(2rem,4vw,3rem); margin:16px 0 18px; }
.rfq-left p{ color:rgba(255,255,255,.8); max-width:42ch; }
.contact-list{ margin-top:34px; display:grid; gap:18px; }
.contact-list a, .contact-list div{ display:flex; gap:14px; align-items:center; color:#fff; font-size:.98rem; }
.contact-list svg{ width:22px; height:22px; color:var(--turmeric); flex-shrink:0; }
.contact-list .ci small{ display:block; font-family:var(--mono); font-size:.66rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.5); }
.socials{ display:flex; gap:12px; margin-top:30px; }
.socials a{ width:42px; height:42px; border-radius:11px; border:1px solid var(--line-light); display:grid; place-items:center; transition:background .2s ease, border-color .2s ease; }
.socials a:hover{ background:rgba(255,255,255,.08); border-color:#fff; }
.socials svg{ width:18px; height:18px; color:#fff; }

.rfq-form{ background:#fff; border-radius:var(--r); padding:34px; color:var(--ink); }
.rfq-form .frow{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-family:var(--mono); font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:7px; font-weight:500; }
.field input, .field select, .field textarea{ width:100%; font-family:var(--body); font-size:.98rem; color:var(--ink); padding:13px 15px; border:1.5px solid var(--line); border-radius:11px; background:var(--paper); transition:border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--leaf); box-shadow:0 0 0 4px rgba(47,126,80,.12); }
.field textarea{ resize:vertical; min-height:104px; }
.form-foot{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-top:6px; }
.form-foot .note{ font-size:.8rem; color:var(--ink-soft); max-width:30ch; }
.form-success{ display:none; background:#eaf6e8; border:1.5px solid var(--leaf); border-radius:12px; padding:18px 20px; color:var(--pine); font-weight:500; margin-top:8px; }
.form-success.show{ display:block; }
.err{ border-color:#d05a3a !important; }
@media(max-width:880px){ .rfq-grid{ grid-template-columns:1fr; gap:40px; } }
@media(max-width:520px){ .rfq-form .frow{ grid-template-columns:1fr; } .rfq-form{ padding:24px; } }

/* ============================================================ FOOTER */
footer{ background:var(--pine); color:rgba(255,255,255,.82); padding:72px 0 30px; }
.foot-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px; }
.foot-grid .fbrand .brand .name{ color:#fff; }
.foot-grid .fbrand p{ font-size:1.02rem; line-height:1.6; margin-top:18px; max-width:36ch; }
.foot-col h4{ font-family:var(--mono); font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color:var(--turmeric); margin-bottom:18px; font-weight:600; }
.foot-col ul li{ padding:7px 0; }
.foot-col ul li a, .foot-col ul li span{ font-size:1.02rem; transition:color .2s ease; }
.foot-col ul li a:hover{ color:#fff; }
.foot-bottom{ border-top:1px solid var(--line-light); margin-top:50px; padding-top:24px; display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; font-family:var(--mono); font-size:.82rem; letter-spacing:.04em; }
.seo-keys{ margin-top:18px; font-size:.78rem; color:rgba(255,255,255,.4); line-height:1.8; }
.seo-keys a{ color:rgba(255,255,255,.4); }
.seo-keys a:hover{ color:var(--turmeric); }
@media(max-width:880px){ .foot-grid{ grid-template-columns:1fr 1fr; gap:32px; } }
@media(max-width:480px){ .foot-grid{ grid-template-columns:1fr; } }

/* ============================================================ REVEAL */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media(prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
}

/* ============================================================
   REAL IMAGE SUPPORT  (added so product/founder/hero photos render)
   ============================================================ */

/* Product card photos */
.pcard .visual{ height:230px; background:var(--paper-2); }
.pcard .visual img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; }
.pcard .visual .tag{ z-index:2; }

/* Hero photo + floating spec label */
.hero-photo{ border-radius:var(--r); overflow:hidden; box-shadow:0 40px 80px -40px rgba(0,0,0,.6); border:1px solid rgba(255,255,255,.12); }
.hero-photo img{ width:100%; height:520px; object-fit:cover; display:block; }
.hero-visual .label-card{ position:absolute; left:-26px; bottom:-30px; width:min(320px,86%); }
.hero-visual .badge-float{ top:-22px; right:-18px; left:auto; bottom:auto; }
@media(max-width:920px){ .hero-photo img{ height:440px; } }
@media(max-width:560px){
  .hero-visual .label-card{ position:static; width:auto; margin-top:18px; left:auto; bottom:auto; }
  .hero-visual .badge-float{ display:none; }
  .hero-photo img{ height:340px; }
}

/* Quality / split panel photo */
.split .visual-panel.has-photo{ padding:0; overflow:hidden; position:relative; background:var(--paper-2); }
.split .visual-panel.has-photo img{ width:100%; height:100%; min-height:430px; object-fit:cover; display:block; }
.split .visual-panel.has-photo .qbadge{ position:absolute; top:20px; left:20px; z-index:2; }

/* Founder photo */
.founder-card .founder-photo{ width:150px; height:150px; border-radius:50%; object-fit:cover; margin:0 auto 22px; position:relative; z-index:1; border:4px solid rgba(255,255,255,.16); }

/* Page hero with banner image */
.page-hero.with-img{ }
.page-hero.with-img .page-hero-media{ position:absolute; inset:0; z-index:0; overflow:hidden; }
.page-hero.with-img .page-hero-media img{ width:100%; height:100%; object-fit:cover; opacity:.9; }
.page-hero.with-img .page-hero-media::after{ content:""; position:absolute; inset:0; background:linear-gradient(160deg, rgba(16,61,42,.52), rgba(10,42,29,.8)); }
.page-hero.with-img{ min-height:420px; display:flex; align-items:flex-end; }

/* ============================================================
   BLOG + WORDPRESS  (Asha Theme)
   ============================================================ */
.skip-link{ position:absolute; left:-9999px; }
.skip-link:focus{ left:8px; top:8px; background:#fff; color:var(--pine); padding:10px 16px; border-radius:8px; z-index:200; }
.screen-reader-text{ position:absolute !important; clip:rect(1px,1px,1px,1px); width:1px; height:1px; overflow:hidden; }

.brand-logo img{ max-height:54px; width:auto; }
.footer-logo img{ max-height:54px; width:auto; filter:brightness(0) invert(1); }

/* Editable page content (Elementor or block editor) */
.asha-entry{ font-size:1.05rem; color:var(--ink); }
.asha-entry h2{ font-size:clamp(1.6rem,3vw,2.2rem); margin:34px 0 14px; }
.asha-entry h3{ font-size:1.4rem; margin:26px 0 12px; }
.asha-entry p{ margin-bottom:18px; color:var(--ink-soft); }
.asha-entry ul, .asha-entry ol{ margin:0 0 18px 1.2em; color:var(--ink-soft); }
.asha-entry ul li{ list-style:disc; padding:4px 0; }
.asha-entry ol li{ list-style:decimal; padding:4px 0; }
.asha-entry img{ border-radius:14px; margin:18px 0; }
.asha-entry a{ color:var(--leaf); text-decoration:underline; }
.asha-entry blockquote{ border-left:3px solid var(--turmeric); padding:6px 0 6px 22px; margin:22px 0; font-family:var(--display); font-style:italic; font-size:1.3rem; color:var(--ink); }

/* Blog grid */
.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.blog-layout{ display:grid; grid-template-columns:1fr; gap:0; }
.post-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r); overflow:hidden; display:flex; flex-direction:column; transition:transform .3s ease, box-shadow .3s ease; }
.post-card:hover{ transform:translateY(-6px); box-shadow:0 30px 60px -34px rgba(16,36,28,.4); }
.post-card .thumb{ aspect-ratio:16/10; overflow:hidden; background:var(--paper-2); }
.post-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.post-card .pc-body{ padding:24px; display:flex; flex-direction:column; flex:1; }
.post-card .pc-meta{ font-family:var(--mono); font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color:var(--turmeric-2); margin-bottom:10px; }
.post-card h3{ font-size:1.3rem; line-height:1.2; margin-bottom:10px; }
.post-card h3 a:hover{ color:var(--leaf); }
.post-card p{ color:var(--ink-soft); font-size:.95rem; margin-bottom:16px; }
.post-card .read{ margin-top:auto; font-family:var(--mono); font-size:.82rem; color:var(--leaf); font-weight:600; }
@media(max-width:880px){ .blog-grid{ grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .blog-grid{ grid-template-columns:1fr; } }

/* Single post */
.single-wrap{ display:grid; grid-template-columns:minmax(0,1fr) 300px; gap:50px; align-items:start; }
.single-featured{ border-radius:var(--r); overflow:hidden; margin-bottom:30px; }
.single-featured img{ width:100%; object-fit:cover; }
.post-meta{ font-family:var(--mono); font-size:.78rem; letter-spacing:.06em; color:var(--ink-soft); margin-bottom:30px; }
.widget{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:24px; margin-bottom:22px; }
.widget-title{ font-family:var(--display); font-size:1.1rem; margin-bottom:14px; }
.widget ul li{ padding:7px 0; border-bottom:1px dotted var(--line); }
.widget ul li:last-child{ border-bottom:none; }
.widget a:hover{ color:var(--leaf); }
@media(max-width:980px){ .single-wrap{ grid-template-columns:1fr; } }

/* Pagination */
.asha-pagination{ margin-top:50px; display:flex; gap:8px; flex-wrap:wrap; justify-content:center; }
.asha-pagination .page-numbers{ font-family:var(--mono); font-size:.9rem; padding:10px 16px; border:1px solid var(--line); border-radius:10px; color:var(--ink); }
.asha-pagination .page-numbers.current{ background:var(--pine); color:#fff; border-color:var(--pine); }
.asha-pagination a.page-numbers:hover{ border-color:var(--pine); }

/* Footer legal menu */
.legal-menu{ display:flex; gap:20px; flex-wrap:wrap; }
.legal-menu li a{ font-family:var(--mono); font-size:.74rem; letter-spacing:.04em; color:rgba(255,255,255,.6); }
.legal-menu li a:hover{ color:var(--turmeric); }
.foot-col ul li{ padding:7px 0; }
.foot-col ul li a{ font-size:1.02rem; }

/* ============================================================
   MEGA MENU  (built from Appearance > Menus)
   ============================================================ */
.nav-links .menu-item-has-children{ position:relative; }
.nav-links .menu-item-has-children > a::after{ content:"⌄"; font-size:.8em; margin-left:6px; opacity:.7; }
.nav-links .mega-panel{
  position:absolute; left:50%; top:calc(100% + 14px); transform:translateX(-50%) translateY(8px);
  min-width:520px; max-width:90vw; background:#fff; border:1px solid var(--line);
  border-radius:16px; box-shadow:0 40px 80px -40px rgba(16,36,28,.5); padding:22px;
  opacity:0; visibility:hidden; transition:opacity .22s ease, transform .22s ease; z-index:70;
}
.nav-links .menu-item-has-children:hover > .mega-panel,
.nav-links .menu-item-has-children:focus-within > .mega-panel{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.nav-links .mega-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:6px 22px; }
.nav-links .mega-list > li > a{ display:block; padding:12px 14px; border-radius:10px; font-weight:600; font-size:.96rem; color:var(--ink); }
.nav-links .mega-list > li > a:hover{ background:var(--paper-2); color:var(--pine); }
.nav-links .mega-desc{ display:block; font-family:var(--body); font-weight:400; font-size:.8rem; color:var(--ink-soft); margin-top:2px; }
.nav-links .mega-panel::before{ content:""; position:absolute; top:-7px; left:50%; transform:translateX(-50%) rotate(45deg); width:14px; height:14px; background:#fff; border-left:1px solid var(--line); border-top:1px solid var(--line); }

/* Mobile: mega panel becomes a simple stacked list */
@media(max-width:980px){
  .nav-links .mega-panel{
    position:static; transform:none; opacity:1; visibility:visible; min-width:0; box-shadow:none;
    border:none; padding:6px 0 6px 14px; background:transparent; border-radius:0;
  }
  .nav-links .mega-panel::before{ display:none; }
  .nav-links .mega-list{ grid-template-columns:1fr; gap:0; }
  .nav-links .mega-list > li > a{ padding:10px 0; font-size:1rem; }
  .nav-links .menu-item-has-children > a::after{ display:none; }
}

/* ============================================================
   MOBILE MENU HARDENING
   ============================================================ */
@media(max-width:980px){
  .nav-links{ overflow-y:auto; -webkit-overflow-scrolling:touch; }
  .nav-links > li{ width:100%; }
  /* Top-level items inside the mobile drawer */
  .nav-links > li > a{ display:block; }
  /* Make the mega parent label tappable and clearly a heading on mobile */
  .nav-links .menu-item-has-children > a{ font-weight:600; }
}
/* Backdrop behind the open mobile menu */
.menu-backdrop{ position:fixed; inset:0; background:rgba(10,42,29,.45); opacity:0; visibility:hidden; transition:opacity .3s ease; z-index:50; }
.menu-backdrop.show{ opacity:1; visibility:visible; }

/* ============================================================
   SINGLE PRODUCT DETAIL  (content is editable / duplicatable)
   ============================================================ */
.asha-entry .btn{ text-decoration:none; }
.product-detail{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; margin:6px 0 10px; }
.pd-media{ border-radius:var(--r); overflow:hidden; box-shadow:0 30px 60px -40px rgba(16,36,28,.5); }
.pd-media img{ width:100%; height:100%; max-height:470px; object-fit:cover; display:block; margin:0; }
.pd-art{ display:grid; place-items:center; min-height:400px; border-radius:var(--r); }
.pd-art svg{ width:170px; height:170px; }
.pd-art.chilli{ background:linear-gradient(140deg,#eaf6e8,#cfe9cd); color:var(--chilli); }
.pd-art.lemon{ background:linear-gradient(140deg,#fcf4d8,#f6e7a8); color:#caa30c; }
.pd-art.tur{ background:linear-gradient(140deg,#fbeacb,#f3d199); color:var(--tur); }
.pd-art.veg{ background:linear-gradient(140deg,#e7f3e8,#cfe6d2); color:var(--veg); }
.pd-art.fruit{ background:linear-gradient(140deg,#f7e3e6,#f0c9cf); color:#b5485c; }
.pd-info .eyebrow{ margin-bottom:14px; }
.pd-info h2{ font-size:clamp(1.7rem,3.2vw,2.4rem); margin:0 0 14px; }
.pd-info > p{ color:var(--ink-soft); margin-bottom:22px; }
.spec-card{ background:#fff; border:1px solid var(--line); border-radius:14px; padding:6px 22px; margin-bottom:24px; }
.spec-card .sc-row{ display:flex; justify-content:space-between; gap:16px; font-family:var(--mono); font-size:.85rem; padding:12px 0; border-bottom:1px dotted var(--line); }
.spec-card .sc-row:last-child{ border-bottom:none; }
.spec-card .sc-row span{ color:var(--ink-soft); }
.spec-card .sc-row b{ color:var(--ink); font-weight:600; }
.pd-sections{ margin-top:6px; max-width:820px; }
.pd-sections h3{ font-family:var(--display); font-size:1.4rem; margin:28px 0 10px; }
.pd-sections p{ color:var(--ink-soft); margin-bottom:14px; }
.pd-sections ul{ margin:0 0 16px 1.2em; color:var(--ink-soft); }
.pd-sections ul li{ list-style:disc; padding:4px 0; }
@media(max-width:880px){ .product-detail{ grid-template-columns:1fr; gap:28px; } .pd-art{ min-height:280px; } }

/* ============================================================
   MEGA MENU CLICK FIX
   The panel had a 14px gap below "Products"; moving the cursor
   across it dropped :hover before reaching the panel, so child
   links were unclickable. We close the gap and add an invisible
   hover bridge that only appears while the item is open.
   ============================================================ */
@media(min-width:981px){
  .nav-links .menu-item-has-children > .mega-panel{ top:calc(100% + 8px); }
  /* transparent bridge spanning header-link -> panel, active only on hover/focus */
  .nav-links .menu-item-has-children::after{
    content:""; position:absolute; left:50%; transform:translateX(-50%);
    top:100%; width:560px; max-width:92vw; height:16px; display:none;
  }
  .nav-links .menu-item-has-children:hover::after,
  .nav-links .menu-item-has-children:focus-within::after{ display:block; }
  /* keep the panel interactive the moment it is shown */
  .nav-links .menu-item-has-children:hover > .mega-panel,
  .nav-links .menu-item-has-children:focus-within > .mega-panel{ pointer-events:auto; }
  .nav-links .mega-panel{ pointer-events:none; }
}


/* ============================================================
   MOBILE DRAWER  (rebuilt: in-drawer header + accordion submenu)
   ============================================================ */
@media(max-width:980px){
  /* Drawer shell */
  #navLinks.nav-links{
    position:fixed; inset:0 0 0 auto;
    width:min(360px,88vw); height:100%;
    background:var(--paper);
    flex-direction:column; align-items:stretch;
    gap:0; padding:0; margin:0;
    transform:translateX(100%); transition:transform .32s cubic-bezier(.4,0,.2,1);
    box-shadow:-20px 0 60px -30px rgba(0,0,0,.4); z-index:70;
    overflow-y:auto; -webkit-overflow-scrolling:touch; list-style:none;
  }
  #navLinks.nav-links.open{ transform:translateX(0); }

  /* In-drawer header (injected by JS): brand + close button */
  #navLinks .drawer-head{
    position:sticky; top:0; z-index:2;
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 20px; background:var(--pine); color:#fff;
  }
  #navLinks .drawer-head .dh-name{ font-family:var(--display); font-weight:600; font-size:1.1rem; color:#fff; }
  #navLinks .drawer-head .dh-name span{ display:block; font-family:var(--mono); font-size:.58rem; letter-spacing:.22em; text-transform:uppercase; color:var(--turmeric); margin-top:3px; }
  #navLinks .drawer-close{
    background:rgba(255,255,255,.12); border:none; color:#fff; cursor:pointer;
    width:38px; height:38px; border-radius:10px; font-size:1.4rem; line-height:1;
    display:grid; place-items:center;
  }

  /* Rows */
  #navLinks li{ width:100%; list-style:none; position:relative; }
  #navLinks .menu-item > a,
  #navLinks li > a{
    display:block; width:100%; box-sizing:border-box;
    padding:16px 20px; margin:0;
    font-size:1.05rem; font-weight:600; color:var(--ink) !important;
    border-bottom:1px solid var(--line); text-decoration:none;
  }
  #navLinks li > a::after{ display:none !important; }

  /* Accordion toggle button (injected by JS) for items with children */
  #navLinks .submenu-toggle{
    position:absolute; top:0; right:0; height:53px; width:56px;
    background:none; border:none; border-bottom:1px solid var(--line);
    color:var(--pine); cursor:pointer; display:grid; place-items:center; padding:0;
  }
  #navLinks .submenu-toggle svg{ width:18px; height:18px; transition:transform .25s ease; }
  #navLinks .menu-item-has-children.expanded > .submenu-toggle svg{ transform:rotate(180deg); }
  /* leave room so the label text doesn't sit under the toggle */
  #navLinks .menu-item-has-children > a{ padding-right:64px; }

  /* Submenu (Products children) as collapsible accordion */
  #navLinks .mega-panel{
    position:static; transform:none; opacity:1; visibility:visible;
    min-width:0; max-width:none; box-shadow:none; border:none; border-radius:0;
    background:var(--paper-2); padding:0;
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  #navLinks .menu-item-has-children.expanded > .mega-panel{ max-height:640px; }
  #navLinks .mega-panel::before{ display:none; }
  #navLinks .mega-list{ display:block; grid-template-columns:1fr; gap:0; margin:0; padding:0; }
  #navLinks .mega-list > li > a{
    display:block; width:100%; box-sizing:border-box;
    padding:13px 20px 13px 38px; margin:0;
    font-size:.98rem; font-weight:500; color:var(--ink-soft) !important;
    border-bottom:1px solid rgba(16,61,42,.06);
  }
  #navLinks .mega-list > li:last-child > a{ border-bottom:none; }
  #navLinks .mega-desc{ display:none; }

  /* Hide the page hamburger while the drawer (with its own close) is open */
  body.menu-open .menu-btn{ visibility:hidden; }
}

/* ============================================================
   FOOTER BRAND VISIBILITY
   The brand "chip" was pine on a pine footer, so it disappeared.
   Give it a light chip and keep any uploaded logo legible.
   ============================================================ */
.foot-grid .fbrand .brand .mark{ background:#fff; }
.foot-grid .fbrand .brand .mark svg{ width:26px; height:26px; }
.foot-grid .fbrand .footer-logo{ background:#fff; display:inline-block; padding:10px 14px; border-radius:12px; }
.foot-grid .fbrand .footer-logo img{ filter:none; }   /* show the real logo colours on the white chip */

/* Injected mobile-drawer elements stay hidden on desktop */
.drawer-head{ display:none; }
.submenu-toggle{ display:none; }

/* ============================================================
   HOMEPAGE FOUNDER / AUTHORITY SECTION  (restored)
   ============================================================ */
.founder-hero{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; align-items:center; }
.fh-photo{ position:relative; }
.fh-photo img{ position:relative; z-index:1; width:100%; border-radius:var(--r); display:block; box-shadow:0 40px 80px -45px rgba(16,36,28,.6); }
.fh-photo::after{ content:""; position:absolute; right:-16px; bottom:-16px; width:55%; height:55%; border:2px solid var(--turmeric); border-radius:var(--r); z-index:0; }
.fh-badge{ position:absolute; left:-18px; bottom:26px; z-index:2; background:#fff; border:1px solid var(--line); border-radius:14px; padding:13px 18px; box-shadow:0 24px 50px -28px rgba(16,36,28,.5); }
.fh-badge b{ display:block; font-family:var(--display); font-weight:600; font-size:1.05rem; color:var(--ink); }
.fh-badge span{ display:block; font-family:var(--mono); font-size:.66rem; letter-spacing:.12em; text-transform:uppercase; color:var(--turmeric-2); margin-top:3px; }
.fh-text h2{ font-size:clamp(1.9rem,3.6vw,2.7rem); margin:14px 0 16px; }
.fh-quote{ font-family:var(--display); font-style:italic; font-size:1.22rem; line-height:1.45; color:var(--ink); border-left:3px solid var(--turmeric); padding-left:18px; margin:0 0 18px; }
.fh-text > p{ color:var(--ink-soft); margin-bottom:18px; }
.fh-creds{ display:flex; flex-wrap:wrap; gap:10px; margin:0 0 24px; padding:0; list-style:none; }
.fh-creds li{ font-family:var(--mono); font-size:.74rem; font-weight:600; letter-spacing:.04em; color:var(--pine); background:rgba(16,61,42,.06); border:1px solid var(--line); padding:8px 12px; border-radius:8px; }
.fh-actions{ display:flex; gap:12px; flex-wrap:wrap; }
@media(max-width:880px){
  .founder-hero{ grid-template-columns:1fr; gap:42px; }
  .fh-photo{ max-width:420px; margin:0 auto; width:100%; }
  .fh-badge{ left:6px; }
}

/* ============================================================
   HOMEPAGE VIDEO (MOTION)  — hero clip + cinematic band
   ============================================================ */
.hero-photo{ background:#0A2A1D; }
.hero-photo .hero-clip{ width:100%; height:520px; object-fit:cover; display:block; }
@media(max-width:920px){ .hero-photo .hero-clip{ height:440px; } }
@media(max-width:560px){ .hero-photo .hero-clip{ height:340px; } }

.video-band{ position:relative; display:flex; align-items:center; overflow:hidden; background:var(--pine-deep); min-height:clamp(360px,52vh,560px); }
.video-band .vb-poster,
.video-band .vb-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.video-band .vb-poster{ background-size:cover; background-position:center; z-index:0; }
.video-band .vb-video{ z-index:1; }
.video-band .vb-overlay{ position:absolute; inset:0; z-index:2; background:linear-gradient(90deg, rgba(10,42,29,.88), rgba(10,42,29,.58) 58%, rgba(10,42,29,.32)); }
.video-band .vb-content{ position:relative; z-index:3; color:#fff; padding:64px 0; max-width:680px; }
.video-band .vb-content h2{ color:#fff; font-size:clamp(2rem,4.4vw,3.1rem); line-height:1.1; margin:12px 0 14px; }
.video-band .vb-content p{ color:rgba(255,255,255,.86); font-size:1.05rem; margin-bottom:24px; max-width:52ch; }

/* Mobile: keep the video, JS plays it on scroll into view */
@media(max-width:640px){
  .video-band{ min-height:320px; }
  .video-band .vb-content{ padding:48px 0; }
}

/* Reduced motion: never hide content, just stop playback (poster remains) */
@media (prefers-reduced-motion: reduce){
  .video-band .vb-video{ display:none; }
}

/* ============================================================
   CERTIFICATION / MINISTRY LOGOS
   ============================================================ */
.cert-logos{ display:flex; flex-wrap:wrap; align-items:center; gap:12px; }
.cert-logos.strip{ justify-content:flex-end; }
.cert-chip{ background:#fff; border-radius:13px; padding:12px 18px; display:inline-flex; align-items:center; justify-content:center; height:66px; box-shadow:0 12px 30px -20px rgba(0,0,0,.55); }
.cert-chip img{ height:40px; width:auto; max-width:170px; object-fit:contain; display:block; }
@media(max-width:780px){ .cert-logos.strip{ justify-content:center; width:100%; } }
@media(max-width:480px){ .cert-chip{ height:56px; padding:10px 14px; } .cert-chip img{ height:32px; } }

/* About credential cards: real logo instead of the generic icon */
.cred .ci.cert{ width:auto; height:64px; min-width:64px; background:#fff; border:1px solid var(--line); padding:9px 14px; border-radius:12px; }
.cred .ci.cert img{ height:42px; width:auto; max-width:160px; object-fit:contain; }

/* When a product has a Featured Image, show it as the hero photo and drop the
   in-content line-art so there is one clean product image, not two. */
.asha-entry.has-feat .product-detail{ display:block; }
.asha-entry.has-feat .pd-media{ display:none; }
.asha-entry.has-feat .pd-info{ max-width:760px; }

/* ============================================================
   MOBILE ALIGNMENT POLISH
   ============================================================ */
@media(max-width:780px){
  .trust .wrap{ justify-content:center; text-align:center; }
}
@media(max-width:520px){
  .wrap{ padding:0 18px; }
  .page-hero .wrap{ padding:54px 18px 58px; }
  .hero-stats{ gap:22px 26px; }
  .spec-card .sc-row{ flex-wrap:wrap; gap:2px 16px; }
  .hero-visual .badge-float{ left:0; bottom:-20px; }
  .cta-band{ text-align:center; }
}

/* Bundled product photos (onion, okra, ginger, pomegranate, grapes) */
.pd-media .pd-shot{ width:100%; height:100%; min-height:420px; object-fit:contain; background:#fff; padding:26px; box-sizing:border-box; }
@media(max-width:880px){ .pd-media .pd-shot{ min-height:300px; padding:18px; } }

/* Product listing thumbnails (photos instead of line icons) */
.mcard .mi.photo{ width:60px; height:60px; background:#fff; padding:4px; border:1px solid var(--line); }
.mcard .mi.photo img{ width:100%; height:100%; object-fit:contain; border-radius:7px; display:block; }

/* ============================================================
   TOP BAR LANGUAGE / TRANSLATE WIDGET (e.g. GTranslate)
   ============================================================ */
.tb-translate{ display:inline-flex; align-items:center; }
.tb-translate .tb-widget{ display:inline-flex; align-items:center; margin:0; }
.tb-translate select,
.tb-translate .gt_selector{
  background:transparent; color:#fff; border:1px solid rgba(255,255,255,.30);
  border-radius:6px; padding:3px 8px; font-size:.78rem; font-family:inherit; line-height:1.2;
  cursor:pointer; outline:none;
}
.tb-translate select option{ color:#111; }
.tb-translate .gtranslate_wrapper,
.tb-translate a{ display:inline-flex; align-items:center; }
.tb-translate img{ display:inline-block; vertical-align:middle; }
/* Keep the language switcher visible on phones (contact links still hide) */
@media(max-width:680px){
  .topbar .tb-right{ display:flex; gap:14px; }
  .topbar .tb-right > a{ display:none; }
}

/* ============================================================
   PRODUCT SPECIFICATION TABLE  (pd-extra-specs)
   ============================================================ */
.alt-light{ background:var(--paper-2); }
.pd-extra-specs{ max-width:860px; }
.pes-heading{
  font-family:var(--display); font-size:1.5rem; font-weight:600;
  color:var(--ink); margin:0 0 22px;
  padding-bottom:12px; border-bottom:2px solid var(--turmeric);
  display:inline-block;
}
.pes-table{ width:100%; border-collapse:collapse; margin-bottom:28px; }
.pes-table th,
.pes-table td{
  padding:13px 18px; font-size:.97rem; line-height:1.45;
  border-bottom:1px solid var(--line); text-align:left; vertical-align:top;
}
.pes-table th{
  width:42%; font-weight:600; color:var(--ink);
  background:rgba(16,61,42,.04); font-family:var(--body);
}
.pes-table td{ color:var(--ink-soft); }
.pes-table tr:last-child th,
.pes-table tr:last-child td{ border-bottom:none; }
.pes-table tr:hover th,
.pes-table tr:hover td{ background:rgba(220,154,18,.06); }
.pes-cta{ margin-top:8px; }
@media(max-width:560px){
  .pes-table th,
  .pes-table td{ padding:11px 12px; font-size:.92rem; }
  .pes-table th{ width:48%; }
}

/* ============================================================
   PRODUCT ATTRIBUTE SELECTORS
   ============================================================ */
.pda-wrap{ max-width:860px; }
.pda-title{ font-size:clamp(1.4rem,2.8vw,2rem); margin:8px 0 10px; }
.pda-sub{ color:var(--ink-soft); margin-bottom:28px; max-width:64ch; }
.pda-group{ margin-bottom:22px; }
.pda-label{ font-size:.95rem; font-weight:700; color:var(--ink); margin:0 0 10px; letter-spacing:.01em; }
.pda-options{ display:flex; flex-wrap:wrap; gap:10px; }
.pda-chip{ display:inline-flex; align-items:center; gap:7px; cursor:pointer; }
.pda-chip input[type=radio]{ display:none; }
.pda-chip span{
  display:inline-block; padding:9px 18px;
  border:1.5px solid var(--line); border-radius:24px;
  font-size:.92rem; color:var(--ink-soft);
  background:#fff; transition:all .18s ease; line-height:1;
}
.pda-chip input[type=radio]:checked + span{
  background:var(--pine); color:#fff; border-color:var(--pine);
  box-shadow:0 4px 14px -6px rgba(16,61,42,.45);
}
.pda-chip:hover span{ border-color:var(--pine); color:var(--pine); }
.pda-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:28px; }
.pda-btn-wa svg{ display:inline-block; vertical-align:middle; }

/* ============================================================
   INQUIRY MODAL
   ============================================================ */
.inq-overlay{
  display:none; position:fixed; inset:0; z-index:200;
  background:rgba(10,28,20,.6); backdrop-filter:blur(4px);
  align-items:center; justify-content:center; padding:16px;
  overflow-y:auto;
}
.inq-overlay.open{ display:flex; }
.inq-modal{
  position:relative; background:#fff; border-radius:18px;
  width:100%; max-width:820px; box-shadow:0 40px 80px -30px rgba(0,0,0,.4);
  max-height:92vh; overflow-y:auto;
}
.inq-close{
  position:absolute; top:14px; right:16px; z-index:1;
  background:#f1f1f0; border:none; border-radius:50%;
  width:34px; height:34px; font-size:1.3rem; line-height:1;
  cursor:pointer; display:grid; place-items:center; color:var(--ink);
}
.inq-body{ display:grid; grid-template-columns:220px 1fr; min-height:400px; }
.inq-sidebar{
  background:linear-gradient(160deg,var(--pine),var(--pine-deep));
  border-radius:18px 0 0 18px;
  padding:32px 20px; display:flex; flex-direction:column;
  align-items:center; text-align:center; gap:10px;
}
.inq-sidebar img{ width:120px; height:120px; object-fit:cover; border-radius:12px; border:3px solid rgba(255,255,255,.25); }
.inq-sidebar p{ color:rgba(255,255,255,.75); font-size:.82rem; margin:6px 0 0; }
.inq-sidebar strong{ color:#fff; font-family:var(--display); font-size:1.18rem; line-height:1.2; }
.inq-sidebar span{ color:rgba(255,255,255,.6); font-size:.78rem; margin-top:auto; }
.inq-form-wrap{ padding:28px 30px; }
.inq-form-wrap h3{ font-size:1.2rem; margin:0 0 14px; color:var(--ink); }
.inq-selections{ display:flex; flex-wrap:wrap; gap:7px; margin-bottom:16px; min-height:0; }
.inq-sel-chip{
  font-family:var(--mono); font-size:.72rem; padding:5px 11px;
  background:rgba(16,61,42,.07); border:1px solid rgba(16,61,42,.15);
  border-radius:20px; color:var(--pine); font-weight:600;
}
.inq-form label{ display:block; font-size:.88rem; font-weight:600; color:var(--ink); margin-bottom:12px; }
.inq-form label input,
.inq-form label textarea{
  display:block; width:100%; margin-top:5px; box-sizing:border-box;
  padding:10px 13px; border:1.5px solid var(--line); border-radius:8px;
  font-size:.95rem; font-family:var(--body); color:var(--ink);
  transition:border-color .18s;
}
.inq-form label input:focus,
.inq-form label textarea:focus{ border-color:var(--pine); outline:none; }
.inq-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.inq-form-error{ color:#c00; font-size:.86rem; margin-bottom:10px; padding:9px 12px; background:#fff0f0; border-radius:7px; }
.inq-success{ text-align:center; padding:32px 20px; }
.inq-success strong{ display:block; font-size:1.2rem; color:var(--pine); margin-bottom:8px; }
.inq-success p{ color:var(--ink-soft); }
@media(max-width:680px){
  .inq-body{ grid-template-columns:1fr; }
  .inq-sidebar{ border-radius:18px 18px 0 0; flex-direction:row; text-align:left; padding:20px; gap:14px; }
  .inq-sidebar img{ width:72px; height:72px; flex-shrink:0; }
  .inq-sidebar p{ display:none; }
  .inq-form-wrap{ padding:20px; }
  .inq-row{ grid-template-columns:1fr; gap:0; }
}
@media(max-width:420px){ .pda-chip span{ padding:8px 14px; font-size:.86rem; } }

/* ============================================================
   PRODUCT IMAGE SECTION  (shows below page hero)
   ============================================================ */
.prod-img-section{ padding-top:0; }
.prod-img-section .wrap{ max-width:900px; }
.prod-img-frame{
  border-radius:var(--r); overflow:hidden;
  box-shadow:0 30px 60px -40px rgba(16,36,28,.45);
  background:#fff;
}
.prod-img-frame img{
  width:100%; max-height:500px;
  object-fit:cover; display:block;
}
@media(max-width:680px){
  .prod-img-frame img{ max-height:300px; }
}
