@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ═══════════════════════════════════════
   ASIA PACIFIC CROPS — Design System
   Forest  #1B5E20  Gold  #F9A825
   Linen   #F5F0E8  Dark  #0F2D12
═══════════════════════════════════════ */
:root {
  --forest:  #1B5E20;
  --forest2: #2E7D32;
  --forest3: #43A047;
  --gold:    #F9A825;
  --linen:   #F5F0E8;
  --linen2:  #EBE4D6;
  --linen3:  #DDD4C2;
  --dark:    #0F2D12;
  --ink:     #1a1a1a;
  --body:    #4a4a4a;
  --muted:   #888;
  --border:  #ddd4c2;
  --ease:    cubic-bezier(.25,.46,.45,.94);
  --ease2:   cubic-bezier(.16,1,.3,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #fff; color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; line-height: 1.65;
}
img   { display: block; max-width: 100%; height: auto; }
a     { text-decoration: none; color: inherit; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .45s var(--ease);
}
.nb-bg {
  position: absolute; inset: 0; background: transparent;
  transition: background .45s var(--ease), box-shadow .45s var(--ease);
}
#navbar.scrolled .nb-bg {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 4px 32px rgba(0,0,0,.06);
}
.nb-inner {
  max-width: 1380px; margin: 0 auto;
  padding: 0 20px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; position: relative; z-index: 1;
  transition: height .35s var(--ease);
}
@media (min-width: 768px) { .nb-inner { padding: 0 36px; height: 84px; } }
#navbar.scrolled .nb-inner { height: 60px; }
@media (min-width: 768px) { #navbar.scrolled .nb-inner { height: 68px; } }

/* Logo */
.nb-logo { display: flex; align-items: center; flex-shrink: 0; }
.nb-logo-pill { padding: 4px 8px; border-radius: 8px; display: flex; align-items: center; }
#navbar.scrolled .nb-logo-pill { background: transparent; }
.nb-logo-img {
  height: 55px; width: auto;
  transition: height .35s var(--ease), filter .35s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
@media (min-width: 768px) { .nb-logo-img { height: 64px; } }
#navbar.scrolled .nb-logo-img { height: 55px; filter: none; }

/* Desktop links */
.nb-links { display: none; }
@media (min-width: 960px) { .nb-links { display: flex; align-items: center; gap: 32px; } }
.nb-link {
  font-size: .84rem; font-weight: 500;
  color: rgba(255,255,255,.78); position: relative; padding: 4px 0;
  transition: color .25s var(--ease);
}
#navbar.scrolled .nb-link { color: var(--body); }
.nb-link::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: var(--gold); border-radius: 2px;
  transition: width .3s var(--ease);
}
.nb-link:hover, .nb-link.on { color: #fff; }
#navbar.scrolled .nb-link:hover, #navbar.scrolled .nb-link.on { color: var(--forest); }
.nb-link:hover::after, .nb-link.on::after { width: 100%; }

/* Right cluster */
.nb-right { display: flex; align-items: center; gap: 8px; }
.nb-phone { display: none; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); transition: color .25s; }
@media (min-width: 1120px) { .nb-phone { display: flex; } }
#navbar.scrolled .nb-phone { color: var(--muted); }
.nb-phone:hover { color: #fff; }
#navbar.scrolled .nb-phone:hover { color: var(--forest); }

.nb-socials { display: none; align-items: center; gap: 6px; }
@media (min-width: 800px) { .nb-socials { display: flex; } }
.nb-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
}
#navbar.scrolled .nb-socials a { background: rgba(0,0,0,.05); color: var(--body); }
.nb-socials a:hover { background: var(--gold) !important; color: var(--dark) !important; }

.nb-ham {
  width: 40px; height: 40px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85); transition: background .2s, color .2s;
}
@media (min-width: 960px) { .nb-ham { display: none; } }
#navbar.scrolled .nb-ham { color: var(--ink); }
.nb-ham:hover { background: rgba(255,255,255,.12); }
#navbar.scrolled .nb-ham:hover { background: rgba(0,0,0,.05); }

/* Mobile drawer */
#mob-nav {
  position: fixed; inset: 0; z-index: 998; background: var(--dark);
  display: flex; flex-direction: column; padding-top: 72px; overflow-y: auto;
  transform: translateX(-100%); transition: transform .42s var(--ease2);
}
@media (min-width: 768px) { #mob-nav { padding-top: 84px; } }
#mob-nav.open { transform: translateX(0); }
#mob-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; font-size: 1.05rem; font-weight: 600;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, padding-left .3s;
}
#mob-nav a:hover { color: #fff; padding-left: 38px; }
.mob-cta-wrap { padding: 28px; }

/* ══════════════════════════════════════
   HERO — full screen video
══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(10,28,12,.92) 0%, rgba(10,28,12,.48) 42%, rgba(10,28,12,.12) 75%, transparent 100%),
    linear-gradient(to right, rgba(10,28,12,.55) 0%, rgba(10,28,12,.1) 55%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1380px; margin: 0 auto;
  padding: 80px 20px 60px;
}
@media (min-width: 768px) { .hero-content { padding: 100px 36px 88px; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ''; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; display: block;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  font-weight: 700; color: #fff;
  line-height: 1.06; letter-spacing: -.015em;
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 600; }
.hero-sub {
  font-size: clamp(.92rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.65); max-width: 500px;
  line-height: 1.8; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cue {
  position: absolute; bottom: 32px; right: 32px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.35); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  animation: cue 3s ease-in-out infinite;
}
@keyframes cue { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@media (max-width: 500px) { .hero-cue { display: none; } }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.58);
}
.trust-pill svg { color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-bar { background: var(--gold); overflow: hidden; padding: 11px 0; }
.ticker-inner { display: flex; white-space: nowrap; animation: marquee 38s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tick-word {
  display: inline-flex; align-items: center; gap: 16px; padding: 0 22px;
  font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--dark); flex-shrink: 0;
}
.tick-word::after { content: '✦'; font-size: .42rem; opacity: .4; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .875rem;
  border-radius: 3px; padding: .75rem 1.6rem; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s, color .2s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-gold  { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #FFB300; box-shadow: 0 8px 28px rgba(249,168,37,.35); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn-dark  { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--forest); box-shadow: 0 8px 28px rgba(11,45,18,.3); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest2); }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }
.btn-lg { padding: .9rem 2.2rem; font-size: .95rem; }

/* ══════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════ */
.container { max-width: 1380px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px)  { .container { padding: 0 28px; } }
@media (min-width: 1024px) { .container { padding: 0 36px; } }

.section    { padding: 64px 0; }
.section-sm { padding: 48px 0; }
@media (min-width: 768px) { .section { padding: 88px 0; } .section-sm { padding: 64px 0; } }
@media (min-width: 1024px){ .section { padding: 100px 0; } }

.bg-linen  { background: var(--linen); }
.bg-dark   { background: var(--dark); }
.bg-forest { background: var(--forest); }
.bg-white  { background: #fff; }

.overline {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .67rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--forest3); margin-bottom: 12px;
}
.overline::before { content: ''; width: 18px; height: 2px; background: var(--gold); border-radius: 2px; flex-shrink: 0; display: block; }
.overline-light { color: rgba(255,255,255,.45); }
.overline-light::before { background: var(--gold); }

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 3rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.01em;
}
.divline { width: 44px; height: 3px; background: var(--gold); border-radius: 2px; margin-top: 12px; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  /* background: #2e8737; */
  padding: 100px 20px 56px;
  position: relative; overflow: hidden;
}
@media (min-width: 640px) { .page-hero { padding: 116px 28px 64px; } }
@media (min-width: 1024px){ .page-hero { padding: 132px 36px 76px; } }
.page-hero::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(249,168,37,.05); pointer-events: none;
}
.page-hero-in { max-width: 1380px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 14px;
}
.page-hero p { font-size: clamp(.9rem, 1.3vw, 1rem); color: rgba(255,255,255,.5); max-width: 500px; line-height: 1.8; }

/* ══════════════════════════════════════
   PRODUCT CAROUSEL — 3-item center scale
══════════════════════════════════════ */
.prod-strip { background: var(--linen); padding: 40px 0 0; overflow: hidden; }
@media (min-width: 768px) { .prod-strip { padding: 56px 0 0; } }

.ps-head {
  padding: 0 20px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 28px;
}
@media (min-width: 640px) { .ps-head { padding: 0 28px; margin-bottom: 36px; } }
@media (min-width: 1024px){ .ps-head { padding: 0 40px; margin-bottom: 40px; } }

.ps-topbar-label {
  font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; display: block;
}
.ps-info-heading {
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  font-weight: 700; line-height: 1.06; color: var(--forest); margin: 0;
}
.ps-head-right { display: flex; align-items: center; gap: 8px; padding-bottom: 4px; }
.ps-arr {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--linen3); background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--body); cursor: pointer; flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}
.ps-arr:hover { background: var(--forest); border-color: var(--forest); color: #fff; }

.ps-rule { width: 100%; height: 1px; background: var(--linen3); }

/* Carousel viewport */
.ps-viewport { overflow: hidden; width: 100%; position: relative; }

/* Track */
.ps-track {
  display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
  padding-left:  calc(50% - var(--sw, 260px) / 2 - 140px);
  padding-right: calc(50% - var(--sw, 260px) / 2 - 140px);
}
.ps-track::-webkit-scrollbar { display: none; }
.ps-track:active { cursor: grabbing; }

/* Slides */
.ps-slide {
  --sw: 260px;
  flex: 0 0 var(--sw); scroll-snap-align: center;
  display: flex; flex-direction: column; align-items: center;
  background: var(--linen); border-right: 1px solid var(--linen3);
  transform: scale(.82); opacity: .55;
  transform-origin: bottom center;
  transition: transform .45s var(--ease), opacity .45s var(--ease), background .25s;
  will-change: transform, opacity;
}
@media (min-width: 480px)  { .ps-slide { --sw: 280px; } }
@media (min-width: 768px)  { .ps-slide { --sw: 320px; } }
@media (min-width: 1100px) { .ps-slide { --sw: 360px; } }
.ps-slide.active { transform: scale(1); opacity: 1; }

.ps-slide-img {
  width: 100%; height: 220px;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 18px 20px 0; overflow: visible;
}
@media (min-width: 768px) { .ps-slide-img { height: 260px; padding: 20px 24px 0; } }
.ps-slide-img img {
  width: 100%; max-width: 220px; height: 190px;
  object-fit: contain; object-position: bottom center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.11));
  border: none; box-shadow: none; border-radius: 0;
  transition: filter .45s var(--ease);
}
@media (min-width: 768px) { .ps-slide-img img { height: 220px; max-width: 240px; } }
.ps-slide.active .ps-slide-img img { filter: drop-shadow(0 10px 26px rgba(0,0,0,.17)); }

.ps-slide-sep { width: 100%; height: 1px; background: var(--linen3); flex-shrink: 0; margin-top: 8px; }
.ps-slide-foot { width: 100%; padding: 14px 12px 22px; text-align: center; flex-shrink: 0; }
@media (min-width: 768px) { .ps-slide-foot { padding: 18px 16px 26px; } }
.ps-slide-name { font-size: .92rem; font-weight: 700; color: var(--ink); margin-bottom: 11px; }
@media (min-width: 768px) { .ps-slide-name { font-size: 1rem; } }
.ps-slide-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--forest); color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: .42rem 1.15rem; border-radius: 50px;
  white-space: nowrap; transition: background .2s, transform .2s;
  border: none; cursor: pointer; text-decoration: none;
}
.ps-slide-btn:hover { background: var(--forest2); transform: translateY(-1px); }

.ps-bottom {
  padding: 16px 20px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
@media (min-width: 640px) { .ps-bottom { padding: 18px 28px 48px; } }
@media (min-width: 1024px){ .ps-bottom { padding: 20px 40px 52px; } }
.ps-dots { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ps-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--linen3); border: none; padding: 0;
  cursor: pointer; flex-shrink: 0; transition: background .2s, transform .2s;
}
.ps-dot.on { background: var(--forest); transform: scale(1.5); }
.ps-bottom-text { font-size: .82rem; color: var(--muted); line-height: 1.72; max-width: 360px; }

/* ══════════════════════════════════════
   SPLIT GRID (2 col on desktop)
══════════════════════════════════════ */
.split { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }

/* Image mosaic */
.img-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 640px) { .img-mosaic { gap: 14px; } }
.img-mosaic img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; transition: transform .5s var(--ease); }
.img-mosaic img:hover { transform: scale(1.03); }

/* Stats */
.stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
@media (min-width: 480px) { .stat-grid { grid-template-columns: repeat(4,1fr); } }
.stat-card { background: var(--linen); border: 1px solid var(--border); border-radius: 4px; padding: 22px 14px; text-align: center; }
@media (min-width: 640px) { .stat-card { padding: 26px 18px; } }
.stat-n { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--forest); line-height: 1; }
.stat-l { font-size: .74rem; color: var(--muted); margin-top: 5px; font-weight: 500; }
.tag-chip { font-size: .7rem; font-weight: 700; padding: .28rem .8rem; border-radius: 3px; background: rgba(27,94,32,.07); color: var(--forest); border: 1px solid rgba(27,94,32,.14); display: inline-block; }

/* ══════════════════════════════════════
   QUALITY SECTION
══════════════════════════════════════ */
.quality-section { position: relative; overflow: hidden; }
.quality-section .qs-bg { position: absolute; inset: 0; opacity: .06; }
.quality-section .qs-bg img { width: 100%; height: 100%; object-fit: cover; }
.qs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (min-width: 640px)  { .qs-grid { gap: 12px; } }
@media (min-width: 720px)  { .qs-grid { grid-template-columns: repeat(3,1fr); } }
.qs-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 18px; transition: background .25s; }
.qs-card:hover { background: rgba(255,255,255,.09); }
@media (min-width: 640px) { .qs-card { padding: 22px; } }
.qs-title { font-size: .86rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.qs-body  { font-size: .78rem; color: rgba(255,255,255,.42); line-height: 1.65; }

/* ══════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (min-width: 768px)  { .steps-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 480px)  { .steps-grid { grid-template-columns: 1fr; } }
.step-num { width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0; background: var(--forest); color: #fff; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-line { height: 2px; flex: 1; background: var(--linen3); }
.step-title { font-size: 1.2rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step-body  { font-size: .85rem; color: var(--body); line-height: 1.78; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-wrap { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); background: #fff; }
.faq-btn  { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; text-align: left; gap: 14px; background: #fff; border: none; cursor: pointer; transition: background .2s; }
@media (min-width: 640px) { .faq-btn { padding: 22px 26px; } }
.faq-btn:hover { background: var(--linen); }
.faq-q  { font-size: .9rem; font-weight: 600; color: var(--ink); }
@media (min-width: 640px) { .faq-q { font-size: .94rem; } }
.faq-ico { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: var(--linen); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--forest); transition: all .3s var(--ease); line-height: 1; }
.faq-open .faq-ico { background: var(--forest); color: #fff; border-color: var(--forest); transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .44s var(--ease); }
.faq-ans  { padding: 0 20px 20px; font-size: .87rem; color: var(--body); line-height: 1.8; }
@media (min-width: 640px) { .faq-ans { padding: 0 26px 24px; } }

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.nl-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--forest) 100%);
  padding: 48px 24px; border-radius: 6px;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .nl-band { padding: 64px 44px; } }
.nl-band::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: rgba(249,168,37,.07); pointer-events: none; }
.nl-inner { display: grid; grid-template-columns: 1fr; gap: 28px; position: relative; z-index: 1; }
@media (min-width: 960px) { .nl-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; width: 100%; }
.nl-inp {
  flex: 1 1 220px; background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18); border-radius: 3px;
  padding: .82rem 1.2rem; font-size: .9rem; font-family: inherit; color: #fff; outline: none;
  transition: border-color .2s, background .2s;
}
.nl-inp::placeholder { color: rgba(255,255,255,.35); }
.nl-inp:focus { border-color: var(--gold); background: rgba(255,255,255,.14); }

/* ══════════════════════════════════════
   CARDS (product pages)
══════════════════════════════════════ */
.card { background: #fff; border-radius: 4px; border: 1px solid var(--border); overflow: hidden; transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.card:hover { box-shadow: 0 20px 56px rgba(0,0,0,.09); transform: translateY(-3px); }
.card-img { height: 200px; overflow: hidden; background: var(--linen); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 18px 18px 22px; }
.card-body h3 { font-size: .93rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.card-meta { font-size: .73rem; color: var(--muted); margin-bottom: 6px; }
.card-desc { font-size: .81rem; color: var(--body); line-height: 1.65; margin-bottom: 13px; }
.card-enq { display: inline-flex; align-items: center; gap: 5px; font-size: .79rem; font-weight: 700; color: var(--forest); padding: .4rem 1rem; border-radius: 3px; background: var(--linen); border: 1.5px solid var(--border); transition: all .2s; }
.card:hover .card-enq { background: var(--forest); color: #fff; border-color: var(--forest); gap: 7px; }

/* Filter tabs */
.ftab { padding: .5rem 1.1rem; border-radius: 3px; font-size: .8rem; font-weight: 600; border: 1.5px solid var(--border); background: #fff; color: var(--body); cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: all .2s; }
.ftab:hover, .ftab.active { background: var(--forest); color: #fff; border-color: var(--forest); }

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.field {
  width: 100%; background: #fff;
  border: 1.5px solid var(--border); border-radius: 4px;
  padding: .78rem .95rem; font-size: .9rem; font-family: inherit;
  color: var(--ink); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(27,94,32,.08); }
.field-err   { border-color: #dc2626 !important; }
.field-err:focus { box-shadow: 0 0 0 3px rgba(220,38,38,.1); }
.field-msg   { font-size: .75rem; color: #dc2626; margin-top: 4px; display: block; }
.flabel { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
select.field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
textarea.field { resize: vertical; min-height: 120px; }

/* Two-column form grid — CSS not JS */
.form-col-2 { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 540px) { .form-col-2 { grid-template-columns: 1fr 1fr; } }

/* ══════════════════════════════════════
   CONTACT / DETAIL GRIDS (CSS, not JS)
══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.45fr 1fr; gap: 40px; } }

.product-hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 960px) { .product-hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

.enquiry-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 960px) { .enquiry-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 960px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.about-stat-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); }
@media (min-width: 480px) { .about-stat-row { grid-template-columns: repeat(4,1fr); } }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer { background: var(--dark); color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  padding: 64px 20px 48px;
  max-width: 1380px; margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 540px)  { .footer-grid { grid-template-columns: 1fr 1fr; padding: 72px 28px 52px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.6fr; padding: 88px 36px 60px; } }
.footer-bot {
  max-width: 1380px; margin: 0 auto;
  padding: 22px 20px;
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .footer-bot { padding: 26px 36px; } }
.footer h4 { font-family: 'DM Sans', sans-serif; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 18px; }
.footer a, .footer p { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.75; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.fsoc a { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.07); color: rgba(255,255,255,.4); margin-right: 6px; transition: background .2s, color .2s; }
.fsoc a:hover { background: var(--gold); color: var(--dark); }
.cert-chip { display: inline-flex; align-items: center; gap: 5px; font-size: .67rem; font-weight: 600; padding: .26rem .75rem; border-radius: 3px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.45); white-space: nowrap; }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.rev   { opacity: 0; transform: translateY(22px);  transition: opacity .65s var(--ease), transform .65s var(--ease); }
.rev.in { opacity: 1; transform: none; }
.rev-l { opacity: 0; transform: translateX(-22px); transition: opacity .68s var(--ease), transform .68s var(--ease); }
.rev-l.in { opacity: 1; transform: none; }
.rev-r { opacity: 0; transform: translateX(22px);  transition: opacity .68s var(--ease), transform .68s var(--ease); }
.rev-r.in { opacity: 1; transform: none; }
.fu { animation: fu .7s var(--ease) both; }
@keyframes fu { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
.d1{animation-delay:.08s} .d2{animation-delay:.16s} .d3{animation-delay:.26s} .d4{animation-delay:.38s}

/* ══════════════════════════════════════
   MISC
══════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--forest3); border-radius: 3px; }
.hidden { display: none !important; }

/* Disable hover transforms on touch devices */
@media (hover: none) {
  .card:hover     { transform: none; box-shadow: none; }
  .btn:hover      { transform: none; box-shadow: none; }
  .ps-slide-img img { transform: none !important; }
  .img-mosaic img:hover { transform: none; }
}
