/* =====================================================================
   Vishaal Natural Food Products — Design System
   Palette derived from the brand logo: deep forest green + antique gold
   on a warm ivory canvas. Premium, editorial, export-grade.
   ===================================================================== */

:root {
  /* Brand colours */
  --green-900: #082a1f;
  --green-800: #0b3d2e;
  --green-700: #0f4c39;
  --green-600: #146149;
  --green-500: #1c7a5c;
  --green-050: #eef4f0;

  --gold-700: #a67c2e;
  --gold-600: #bf983f;
  --gold-500: #c8a34a;
  --gold-400: #d9bd74;
  --gold-300: #e0c789;
  --gold-200: #ecdcb0;

  --ivory:    #faf8f2;
  --ivory-2:  #f3efe5;
  --cream:    #fbf9f4;
  --white:    #ffffff;

  --ink:      #182420;
  --ink-soft: #33443c;
  --muted:    #5f6f66;
  --line:     #e4ded0;

  /* Typography */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Metrics */
  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(8, 42, 31, .06);
  --shadow-md: 0 14px 40px rgba(8, 42, 31, .10);
  --shadow-lg: 0 30px 70px rgba(8, 42, 31, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
}

/* ----------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* -------------------------------------------------- typography */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--green-800); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { color: var(--ink-soft); }
.lead { font-size: 1.16rem; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); }
.eyebrow.center::after { content: ""; width: 26px; height: 2px; background: var(--gold-500); }
.eyebrow.center { justify-content: center; }

.text-gold { color: var(--gold-600); }
.serif { font-family: var(--serif); }

/* ---------------------------------------------------- layout */
.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 2.6rem, 1360px); margin-inline: auto; }
section { padding: clamp(3.6rem, 8vw, 7rem) 0; }
.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: .8rem 0 1rem; }
.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-green { background: var(--green-800); color: #dfeae3; }
.bg-green h2, .bg-green h3 { color: var(--white); }
.bg-pattern { background: var(--green-900) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 8l4 12h12l-10 8 4 12-10-7-10 7 4-12-10-8h12z' fill='%23ffffff' fill-opacity='.03'/%3E%3C/svg%3E"); }

.grid { display: grid; gap: 1.6rem; }
.eyebrow + h2 { margin-top: .7rem; }

/* ---------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  border: 1.5px solid transparent; transition: all .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); box-shadow: 0 10px 24px rgba(200,163,74,.28); }
.btn-primary:hover { background: var(--gold-600); border-color: var(--gold-600); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(200,163,74,.36); }
.btn-dark { background: var(--green-800); color: #fff; border-color: var(--green-800); }
.btn-dark:hover { background: var(--green-700); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--green-800); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green-800); background: var(--green-800); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: #fff; color: var(--green-800); border-color: #fff; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; color: var(--green-700); }
.link-arrow svg { width: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--gold-700); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ===================================================== header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h); display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.site-header .container-wide { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: min(100% - 2.6rem, 1360px); }
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img { height: 58px; width: auto; transition: height .35s var(--ease); filter: drop-shadow(0 4px 10px rgba(0,0,0,.15)); }
.brand-text { display: none; line-height: 1.1; }
.brand-text b { font-family: var(--serif); font-size: 1.15rem; color: var(--green-800); display: block; }
.brand-text span { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-700); }

/* nav */
.main-nav { display: flex; align-items: center; gap: .3rem; }
.main-nav > ul { display: flex; align-items: center; gap: .2rem; }
.nav-link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .6rem .9rem; border-radius: 8px; font-weight: 500; font-size: .95rem;
  color: var(--ink); transition: color .25s, background .25s;
}
.nav-link .caret { width: 12px; height: 12px; opacity: .6; }
.nav-item { position: relative; }
.nav-item > .nav-link.active,
.nav-item:hover > .nav-link { color: var(--green-700); }
.nav-item > .nav-link.active::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .35rem; height: 2px; background: var(--gold-500); border-radius: 2px;
}
/* dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-md); padding: .5rem; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .25s var(--ease);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: .7rem .85rem; border-radius: 9px; font-size: .92rem; color: var(--ink-soft); font-weight: 500; }
.dropdown a:hover { background: var(--green-050); color: var(--green-700); }

.header-cta { display: flex; align-items: center; gap: .8rem; }

/* transparent-over-hero state */
.site-header.transparent { background: transparent; }
.site-header.transparent .nav-link,
.site-header.transparent .brand-text b { color: #fff; }
.site-header.transparent .brand-text span { color: var(--gold-400); }
.site-header.transparent .nav-item:hover > .nav-link,
.site-header.transparent .nav-link.active { color: var(--gold-400); }
.site-header.transparent .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.site-header.transparent .btn-ghost:hover { background: #fff; color: var(--green-800); }
.site-header.transparent .hamburger span { background: #fff; }

/* scrolled / solid state */
.site-header.solid { background: rgba(251,249,244,.92); backdrop-filter: saturate(140%) blur(12px); box-shadow: 0 2px 20px rgba(8,42,31,.08); height: 72px; }
.site-header.solid .brand img { height: 48px; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 4px; background: none; border: 0; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--green-800); border-radius: 2px; transition: .3s var(--ease); }
.mobile-drawer { display: none; }

/* ===================================================== hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; padding-top: var(--header-h); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg svg, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(6,32,24,.92) 0%, rgba(8,42,31,.78) 42%, rgba(8,42,31,.30) 100%);
}
.hero-inner { max-width: 720px; padding: 3rem 0; }
.hero .eyebrow { color: var(--gold-400); }
.hero .eyebrow::before { background: var(--gold-400); }
.hero h1 { color: #fff; margin: 1.1rem 0 1.3rem; }
.hero h1 em { color: var(--gold-400); font-style: normal; }
.hero p { color: rgba(255,255,255,.9); font-size: 1.18rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero-scroll .mouse { width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.6); border-radius: 12px; position: relative; }
.hero-scroll .mouse::before { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: #fff; border-radius: 2px; animation: scrollpip 1.6s infinite; }
@keyframes scrollpip { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translate(-50%, 10px); } }

/* hero certification chips */
.hero-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 2.4rem; }
.hero-badges span { font-size: .78rem; font-weight: 600; letter-spacing: .04em; padding: .4rem .85rem; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }

/* ============================================= trust marquee */
.trust-bar { background: var(--green-900); color: #cfe0d7; padding: 0; overflow: hidden; border-top: 1px solid rgba(255,255,255,.06); }
.marquee { display: flex; gap: 0; white-space: nowrap; }
.marquee__track { display: flex; align-items: center; gap: 3rem; padding: 1.05rem 1.5rem; animation: marquee 40s linear infinite; }
.marquee__track span { display: inline-flex; align-items: center; gap: .7rem; font-size: .9rem; font-weight: 500; letter-spacing: .02em; }
.marquee__track span::before { content: "✦"; color: var(--gold-500); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================= stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat b { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-600); display: block; line-height: 1; }
.bg-green .stat b { color: var(--gold-400); }
.stat small { display: block; margin-top: .6rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.bg-green .stat small { color: #a9c2b6; }

/* ============================================= feature cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.card .ic { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--green-050); color: var(--green-700); margin-bottom: 1.2rem; }
.card .ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.card p { font-size: .97rem; }

/* pillar cards (What we do) with gold top rule */
.pillar { text-align: left; }
.pillar::before { content: ""; position: absolute; top: 0; left: 0; height: 4px; width: 0; background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); transition: width .4s var(--ease); }
.pillar:hover::before { width: 100%; }

/* ============================================= product grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.4rem; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-card .thumb { position: relative; aspect-ratio: 4/3; background: linear-gradient(160deg, var(--ivory-2), var(--green-050)); overflow: hidden; }
.product-card .thumb img, .product-card .thumb svg { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .tag { position: absolute; top: .8rem; left: .8rem; z-index: 2; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-900); background: var(--gold-400); padding: .3rem .7rem; border-radius: 999px; }
.product-card .body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.product-card p { font-size: .9rem; margin-bottom: 1rem; flex: 1; }

/* filter chips */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; margin-bottom: 2.5rem; }
.chip { padding: .5rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-size: .88rem; font-weight: 600; color: var(--ink-soft); transition: all .25s; }
.chip.active, .chip:hover { background: var(--green-800); border-color: var(--green-800); color: #fff; }

/* ============================================= split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img, .split-media svg { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.split-media .float-badge {
  position: absolute; bottom: -22px; right: -18px; background: #fff; border-radius: 16px;
  box-shadow: var(--shadow-md); padding: 1rem 1.3rem; display: flex; align-items: center; gap: .9rem; border: 1px solid var(--line);
}
.split-media .float-badge b { font-family: var(--serif); font-size: 1.8rem; color: var(--green-800); line-height: 1; }
.split-media .float-badge small { font-size: .72rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.split-content h2 { margin-bottom: 1.2rem; }
.split-content p + p { margin-top: 1rem; }

/* tick list */
.ticks { display: grid; gap: .85rem; margin-top: 1.6rem; }
.ticks li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-soft); font-size: 1rem; }
.ticks li svg { flex: none; width: 22px; height: 22px; color: var(--gold-600); margin-top: 2px; }
.ticks.two { grid-template-columns: 1fr 1fr; }

/* ============================================= certifications */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1.2rem; }
.cert {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.2rem; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.cert:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold-200); }
.cert .badge { width: 76px; height: 76px; margin: 0 auto .9rem; }
.cert b { display: block; color: var(--green-800); font-size: 1rem; font-family: var(--serif); }
.cert small { color: var(--muted); font-size: .8rem; }

/* logos strip */
.cert-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.4rem 2.6rem; }
.cert-strip .badge { width: 62px; height: 62px; opacity: .95; }

/* ============================================= process steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 2.2rem 1.6rem 1.8rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.step .num { counter-increment: step; position: absolute; top: -20px; left: 1.6rem; width: 44px; height: 44px; border-radius: 12px; background: var(--green-800); color: var(--gold-400); font-family: var(--serif); font-size: 1.3rem; display: grid; place-items: center; box-shadow: var(--shadow-sm); }
.step .num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.15rem; margin: .5rem 0 .5rem; }
.step p { font-size: .92rem; }
.bg-green .step { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.bg-green .step p { color: #b9ccc2; }

/* ============================================= world map / regions */
.map-wrap { position: relative; }
.region-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; margin-top: 2rem; }
.region { display: flex; align-items: center; gap: .7rem; padding: .9rem 1.1rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; font-weight: 600; }
.region .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(217,189,116,.2); }

/* ============================================= leadership */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; }
.person { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; }
.person:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.person .photo { aspect-ratio: 1/1; background: linear-gradient(160deg, var(--green-050), var(--ivory-2)); display: grid; place-items: center; }
.person .photo svg { width: 100%; height: 100%; }
.person .info { padding: 1.4rem; }
.person .info b { font-family: var(--serif); font-size: 1.2rem; color: var(--green-800); display: block; }
.person .info .role { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; margin: .2rem 0 .8rem; }
.person .info p { font-size: .9rem; }

/* ============================================= CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: #fff; max-width: 720px; margin: 0 auto 1rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================= page hero (inner) */
.page-hero { position: relative; padding: calc(var(--header-h) + 3.5rem) 0 3.5rem; color: #fff; overflow: hidden; text-align: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,32,24,.86), rgba(8,42,31,.92)); }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg svg { width: 100%; height: 100%; object-fit: cover; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 620px; margin: 1rem auto 0; }
.breadcrumb { display: flex; gap: .5rem; justify-content: center; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1.2rem; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { color: var(--gold-400); }

/* ============================================= forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .96rem; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: #fff; color: var(--ink); transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(20,97,73,.1); }

.alert { padding: 1rem 1.2rem; border-radius: 12px; font-size: .95rem; font-weight: 500; margin-bottom: 1.2rem; }
.alert-success { background: #e7f4ee; color: #12603f; border: 1px solid #b7e0cb; }
.alert-error { background: #fdecec; color: #a32424; border: 1px solid #f3c4c4; }

/* contact info list */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { flex: none; width: 44px; height: 44px; border-radius: 11px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; }
.info-row .ic svg { width: 20px; }
.info-row b { display: block; color: var(--green-800); font-size: .95rem; margin-bottom: .15rem; }
.info-row a, .info-row span { color: var(--muted); font-size: .92rem; }
.info-row a:hover { color: var(--green-700); }

.email-table { width: 100%; border-collapse: collapse; }
.email-table td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); font-size: .95rem; }
.email-table tr:last-child td { border-bottom: 0; }
.email-table td:first-child { font-weight: 600; color: var(--ink); }
.email-table td:last-child a { color: var(--green-700); font-weight: 500; }

/* ============================================= recipes */
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.6rem; }
.recipe-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column; }
.recipe-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.recipe-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--green-050); }
.recipe-card .thumb img, .recipe-card .thumb svg { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.recipe-card:hover .thumb img { transform: scale(1.05); }
.recipe-card .body { padding: 1.4rem 1.5rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.recipe-meta { display: flex; gap: 1rem; font-size: .8rem; color: var(--muted); margin-bottom: .7rem; flex-wrap: wrap; }
.recipe-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.recipe-meta svg { width: 15px; height: 15px; color: var(--gold-600); }
.recipe-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.recipe-card p { font-size: .92rem; flex: 1; margin-bottom: 1rem; }
.recipe-cat { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-700); margin-bottom: .5rem; }

/* single recipe */
.recipe-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.recipe-hero .media img, .recipe-hero .media svg { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }
.recipe-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1.5rem 0; }
.recipe-stats .rs { text-align: center; }
.recipe-stats .rs b { display: block; font-family: var(--serif); font-size: 1.4rem; color: var(--green-800); }
.recipe-stats .rs small { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.recipe-body { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; margin-top: 3.5rem; }
.recipe-body h3 { margin-bottom: 1.2rem; padding-bottom: .6rem; border-bottom: 2px solid var(--gold-200); }
.ingredient-list li { display: flex; gap: .7rem; padding: .6rem 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.ingredient-list li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); margin-top: .55rem; }
.step-list { counter-reset: rstep; display: grid; gap: 1.3rem; }
.step-list li { counter-increment: rstep; display: flex; gap: 1.1rem; }
.step-list li::before { content: counter(rstep); flex: none; width: 38px; height: 38px; border-radius: 10px; background: var(--green-800); color: var(--gold-400); font-family: var(--serif); display: grid; place-items: center; font-size: 1.1rem; }
.step-list li p { padding-top: .4rem; }

/* ============================================= footer */
.site-footer { background: var(--green-900); color: #b9ccc2; padding-top: 4rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 92px; margin-bottom: 1.2rem; background: #fff; border-radius: 50%; padding: 6px; }
.footer-brand p { color: #9db6aa; font-size: .92rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 700; }
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a { color: #9db6aa; font-size: .92rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-contact li { display: flex; gap: .7rem; font-size: .9rem; color: #9db6aa; margin-bottom: .9rem; align-items: flex-start; }
.footer-contact svg { flex: none; width: 18px; color: var(--gold-500); margin-top: 2px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.footer-badges span { font-size: .68rem; font-weight: 600; padding: .3rem .6rem; border: 1px solid rgba(255,255,255,.16); border-radius: 6px; color: #c7dbd0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding: 1.6rem 0; font-size: .84rem; color: #7f988c; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ============================================= reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .hero-scroll .mouse::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================= responsive */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .recipe-hero, .recipe-body { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .main-nav, .header-cta .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: initial; }
  .split.reverse .split-content { order: 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .ticks.two { grid-template-columns: 1fr; }
  .brand-text { display: block; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; background: var(--green-900); color: #fff;
  padding: 2rem 1.6rem; transform: translateX(100%); transition: transform .4s var(--ease);
  overflow-y: auto; display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: none; }
.mobile-drawer .m-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.mobile-drawer .m-head img { height: 54px; background: #fff; border-radius: 50%; padding: 4px; }
.m-close { background: none; border: 0; color: #fff; font-size: 2rem; line-height: 1; }
.mobile-drawer nav a { display: block; padding: .85rem 0; font-size: 1.15rem; font-family: var(--serif); border-bottom: 1px solid rgba(255,255,255,.1); color: #eaf2ee; }
.mobile-drawer nav a.sub { font-family: var(--sans); font-size: .98rem; padding-left: 1rem; color: #a9c2b6; }
.mobile-drawer .m-actions { margin-top: auto; padding-top: 2rem; display: grid; gap: .8rem; }
body.no-scroll { overflow: hidden; }

/* =====================================================================
   EDITORIAL & CINEMATIC PASS (2026 premium refresh)
   Real photography, richer overlays, gold hairlines, catalogue + offices.
   ===================================================================== */

/* ---- typography & rhythm refinements ---- */
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); letter-spacing: -.02em; }
h2 { letter-spacing: -.015em; }
section { padding: clamp(4rem, 8.5vw, 8rem) 0; }
.lead { font-size: 1.2rem; line-height: 1.7; color: var(--ink-soft); }

/* thin gold hairline divider between stacked light sections */
.bg-ivory + .bg-cream, .bg-cream + .bg-ivory,
.bg-ivory + .bg-ivory, .bg-cream + .bg-cream { position: relative; }
.rule-gold { height: 1px; border: 0; width: min(100% - 2.6rem, var(--container)); margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold-300, #e0c789) 20%, var(--gold-500) 50%, var(--gold-300, #e0c789) 80%, transparent); opacity: .6; }

/* ---- richer hero over a real photograph ---- */
.hero { min-height: 100svh; }
.hero::after {
  background:
    linear-gradient(96deg, rgba(6,32,24,.95) 0%, rgba(7,38,28,.84) 38%, rgba(8,42,31,.5) 70%, rgba(8,42,31,.28) 100%),
    linear-gradient(0deg, rgba(5,28,21,.7) 0%, rgba(5,28,21,0) 32%);
}
.hero h1 { margin: 1.1rem 0 1.4rem; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero p { font-size: 1.2rem; line-height: 1.7; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }

/* ---- inner page hero over a real photograph ---- */
.page-hero { padding: calc(var(--header-h) + 4.6rem) 0 4rem; }
.page-hero::after { background: linear-gradient(180deg, rgba(6,32,24,.78) 0%, rgba(8,42,31,.9) 100%); }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); }

/* ---- framed photography ---- */
.split-media.framed img, .figure img, .media-frame img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media.framed { position: relative; }
.split-media.framed::before {
  content: ""; position: absolute; inset: auto -14px -14px auto; width: 62%; height: 62%;
  border: 2px solid var(--gold-400); border-radius: var(--radius-lg); z-index: -1; opacity: .5;
}
figure.figure { margin: 0; }
figure.figure figcaption { margin-top: .8rem; font-size: .82rem; color: var(--muted); letter-spacing: .01em; }

/* captioned photo gallery (manufacturing / quality) */
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; }
.media-grid figure { margin: 0; }
.media-grid img { aspect-ratio: 4/3; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .5s var(--ease); }
.media-grid figure:hover img { transform: scale(1.03); }
.media-grid figcaption { margin-top: .6rem; font-size: .8rem; color: var(--muted); }

/* full-bleed image band with green wash + centred statement */
.image-band { position: relative; color: #fff; text-align: center; overflow: hidden; }
.image-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.image-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(6,32,24,.72), rgba(6,32,24,.86)); }
.image-band .container { position: relative; z-index: 2; }

/* ---- brand statement / pull quote band ---- */
.brand-statement { text-align: center; }
.brand-statement blockquote { margin: 0 auto; max-width: 940px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.5rem); line-height: 1.32; color: #fff; }
.brand-statement blockquote::before { content: ""; display: block; width: 42px; height: 3px; background: var(--gold-500); margin: 0 auto 1.6rem; }
.brand-statement cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-400); }

/* ---- product family cards: monogram tile + pack line ---- */
.product-card .thumb { aspect-ratio: 5/4; }
.thumb-mono { position: relative; }
/* green tile background, specific enough to beat .product-card .thumb */
.product-card .thumb.thumb-mono,
.catalog-media.thumb-mono { background: linear-gradient(150deg, var(--green-600), var(--green-900)); }
.thumb-mono::after { content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(circle at 78% 20%, rgba(217,189,116,.18), transparent 45%),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M24 6c6 4 9 9 9 16s-3 12-9 16c-6-4-9-9-9-16s3-12 9-16z' fill='none' stroke='%23ffffff' stroke-opacity='.06'/%3E%3C/svg%3E"); }
.monogram { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
  font-family: var(--serif); font-weight: 700; color: var(--gold-400);
  font-size: clamp(3.2rem, 8vw, 5.4rem); line-height: 1; text-shadow: 0 6px 24px rgba(0,0,0,.35); }
.pack-line { font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 600; color: var(--muted); margin-bottom: 1rem; }

/* ---- full catalogue rows (Products page) ---- */
.catalog { display: grid; gap: 1.4rem; }
.catalog-item { display: grid; grid-template-columns: 300px 1fr; gap: 0; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: box-shadow .35s var(--ease), transform .35s var(--ease); }
.catalog-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.catalog-media { position: relative; min-height: 250px; }
.catalog-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.catalog-media .tag { position: absolute; top: .9rem; left: .9rem; z-index: 2; font-size: .66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--green-900); background: var(--gold-400); padding: .3rem .7rem; border-radius: 999px; }
.catalog-media.thumb-mono .monogram { font-size: clamp(3rem, 6vw, 4.6rem); }
.catalog-body { padding: 1.9rem 2.1rem; }
.catalog-body h3 { font-size: 1.45rem; margin: .4rem 0 .7rem; }
.catalog-body > p { font-size: .98rem; }
.sku-chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.1rem 0; }
.sku-chips span { font-size: .78rem; font-weight: 600; color: var(--green-700); background: var(--green-050);
  border: 1px solid #dcebe2; border-radius: 999px; padding: .32rem .8rem; }
.pack-row { display: flex; align-items: baseline; gap: .8rem; padding-top: 1rem; border-top: 1px dashed var(--line); font-size: .9rem; color: var(--ink-soft); }
.pack-row b { flex: none; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-700); }

/* ---- offices grid (Global Presence / Contact) ---- */
.offices { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.3rem; }
.office-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.office-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-200); }
.office-card .role { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--gold-700); }
.office-card h3 { font-size: 1.35rem; margin: .35rem 0 .2rem; }
.office-card .country { font-size: .8rem; color: var(--gold-700); font-weight: 600; margin-bottom: .8rem; }
.office-card address { font-style: normal; font-size: .9rem; color: var(--muted); line-height: 1.6; }
.bg-green .office-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.bg-green .office-card h3 { color: #fff; }
.bg-green .office-card address { color: #b6cabf; }

/* ---- market split bar ---- */
.market-split { margin-top: 1rem; }
.split-bar { display: flex; height: 20px; border-radius: 999px; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); }
.split-bar span { display: block; height: 100%; }
.split-bar .s1 { background: var(--green-700); }
.split-bar .s2 { background: var(--green-500); }
.split-bar .s3 { background: var(--gold-500); }
.split-legend { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.1rem; margin-top: 1.6rem; }
.split-legend .li { display: flex; gap: .8rem; align-items: flex-start; }
.split-legend .sw { flex: none; width: 14px; height: 14px; border-radius: 4px; margin-top: .35rem; }
.split-legend .sw.s1 { background: var(--green-700); }
.split-legend .sw.s2 { background: var(--green-500); }
.split-legend .sw.s3 { background: var(--gold-500); }
.split-legend b { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--green-800); line-height: 1; }
.bg-green .split-legend b { color: #fff; }
.split-legend .lab { font-weight: 600; color: var(--ink); font-size: .92rem; }
.bg-green .split-legend .lab { color: #eaf2ee; }
.split-legend .cty { font-size: .82rem; color: var(--muted); }
.bg-green .split-legend .cty { color: #9db6aa; }

/* country chip cloud */
.country-cloud { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.country-cloud span { font-size: .85rem; font-weight: 600; color: #eaf2ee; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: .4rem .9rem; }

/* ---- responsive additions ---- */
@media (max-width: 760px) {
  .catalog-item { grid-template-columns: 1fr; }
  .catalog-media { min-height: 200px; aspect-ratio: 16/9; }
}
