/* =========================================================
   Stalwart International — Shared Design System
   Palette: Forest + Gold, dark tech-forward surfaces
   Voice: Modern, confident, dark mode
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Forest greens (primary) */
  --forest-900: #143020;
  --forest-800: #1f4d2e;
  --forest-700: #2a6440;
  --forest-600: #347a4f;
  --forest-500: #4a9063;
  --forest-100: #e3ede5;
  --forest-50:  #f0f5f1;

  /* Olive greens (secondary surfaces) */
  --olive-900: #2d3a0e;
  --olive-800: #3a4a14;
  --olive-700: #4a5e1a;
  --olive-600: #5a7a2a;
  --olive-500: #7a9a3a;
  --olive-200: #c8d8a0;
  --olive-100: #e8efd4;
  --olive-50:  #f2f5e8;

  /* Gold (accent — CTAs, glows, dividers) */
  --gold-900: #8a6a1f;
  --gold-700: #c9a13a;
  --gold-500: #D4A843;
  --gold-300: #e8c878;
  --gold-100: #f5e9cc;
  --gold-50:  #fbf6e8;
  --gold-glow: rgba(212, 168, 67, 0.35);

  /* Emerald pop — hover glows, secondary accent */
  --emerald: #3ddc84;
  --emerald-glow: rgba(61, 220, 132, 0.28);

  /* Dark surfaces */
  --bg: #070d0a;
  --bg-alt: #0a1310;
  --bg-alt-2: #0d1a15;
  --cream:    #0e1a15;
  --cream-2:  #122019;
  --ivory:    #0a1512;
  --white:    #ffffff;
  --black:    #040805;
  --charcoal: #0d1712;

  /* Glass surfaces */
  --surface: rgba(255,255,255,0.035);
  --surface-hover: rgba(255,255,255,0.06);
  --surface-solid: #101d17;
  --surface-solid-2: #14241d;

  /* Text (light on dark) */
  --text-dark:   #eef2ef;
  --text-body:   #c3d0c8;
  --text-muted:  #8fa196;
  --text-light:  #63776c;
  --text-on-dark: #eef2ef;
  --text-on-dark-muted: #a7b6ae;

  /* Borders */
  --border:        rgba(255,255,255,0.10);
  --border-soft:   rgba(255,255,255,0.07);
  --border-dark:   rgba(255,255,255,0.14);

  /* Type */
  --font-display: 'Space Grotesk', 'Manrope', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif:   'Space Grotesk', 'Inter', sans-serif; /* legacy alias — no longer serif */

  /* Spacing rhythm */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Layout */
  --container: 1280px;
  --container-narrow: 1080px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold-500); color: var(--forest-900); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}
h1 { font-size: clamp(38px, 5.2vw, 68px); line-height: 1.05; font-weight: 700; }
h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; }
h3 { font-size: clamp(19px, 2vw, 26px); line-height: 1.25; }
h4 { font-size: clamp(15px, 1.5vw, 18px); letter-spacing: -0.01em; }
p { line-height: 1.7; }

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 40px; }

/* ---------- Section ---------- */
.section { padding: var(--space-9) 0; }
.section-sm { padding: var(--space-8) 0; }
.section-lg { padding: 120px 0; }
.section-dark { background: var(--forest-900); color: var(--text-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-ivory { background: var(--ivory); }
.section-olive { background: var(--olive-700); color: var(--white); }
.section-olive h1, .section-olive h2, .section-olive h3, .section-olive h4 { color: var(--white); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--space-8); }
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 16px;
  padding-bottom: 12px;
  position: relative;
}
.section-head .eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--gold-700);
}
.section-head .lead { color: var(--text-muted); margin-top: 18px; font-size: 16px; }
.section-head.text-left { text-align: left; margin-left: 0; }
.section-head.text-left .eyebrow::after { left: 0; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%); color: var(--forest-900); border-color: transparent; box-shadow: 0 0 0 rgba(212,168,67,0); }
.btn-primary:hover { box-shadow: 0 8px 30px var(--gold-glow); transform: translateY(-2px); }
.btn-forest { background: var(--surface-solid); color: var(--text-dark); border-color: var(--border); }
.btn-forest:hover { border-color: var(--gold-500); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.btn-outline { background: transparent; color: var(--text-dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold-500); color: var(--gold-500); box-shadow: 0 0 24px var(--gold-glow); }
.btn-outline-light { background: rgba(255,255,255,0.04); color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-outline-light:hover { background: rgba(255,255,255,0.09); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold-500); border-color: var(--gold-700); }
.btn-outline-gold:hover { background: var(--gold-500); color: var(--forest-900); box-shadow: 0 8px 30px var(--gold-glow); }
.btn-ghost { padding: 14px 4px; border: none; border-bottom: 2px solid var(--gold-500); color: var(--text-dark); border-radius: 0; }
.btn-ghost:hover { color: var(--gold-500); }
.btn-sm { padding: 12px 22px; font-size: 11px; }
.btn-lg { padding: 20px 40px; font-size: 13px; }

/* ---------- Top utility bar ---------- */
.util-bar { background: var(--forest-900); color: var(--text-on-dark-muted); font-size: 13px; padding: 10px 0; }
.util-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.util-left { display: flex; gap: 24px; }
.util-left a, .util-left span { display: inline-flex; align-items: center; gap: 8px; color: var(--text-on-dark-muted); transition: color 0.2s; }
.util-left a:hover { color: var(--gold-500); }
.util-left svg { width: 14px; height: 14px; color: var(--gold-500); }
.util-right { display: flex; align-items: center; gap: 18px; }
.util-social { display: flex; gap: 12px; }
.util-social a { color: var(--text-on-dark-muted); transition: color 0.2s; }
.util-social a:hover { color: var(--gold-500); }
.util-social svg { width: 14px; height: 14px; }

/* ---------- Header / main nav ---------- */
.site-header { background: rgba(7,13,10,0.75); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-soft); position: sticky; top: 0; z-index: 100; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; min-height: 84px; }
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 52px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 12px 14px;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover { color: var(--gold-500); }
.main-nav a.active { color: var(--gold-500); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold-500);
  box-shadow: 0 0 8px var(--gold-glow);
}
.main-nav .has-dropdown { position: relative; }
.main-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  min-width: 260px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  border-top: 2px solid var(--gold-500);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 8px 0;
  display: none;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 12px 22px; font-size: 12px; color: var(--text-body); }
.dropdown a:hover { background: var(--surface-hover); color: var(--gold-500); }
.header-cta { margin-left: 12px; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); margin: 5px 0; transition: 0.2s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; background: var(--bg); }
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 640px; height: 640px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--emerald-glow) 0%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,13,10,0.94) 0%, rgba(7,13,10,0.8) 40%, rgba(7,13,10,0.3) 70%, rgba(7,13,10,0) 100%); }
.hero-bg.dark-overlay::after { background: linear-gradient(90deg, rgba(7,13,10,0.92) 0%, rgba(7,13,10,0.6) 50%, rgba(7,13,10,0.25) 100%); }
.hero-bg.solid-dark { background: var(--bg); }
.hero-bg.solid-dark::after { display: none; }
.hero-bg.gradient-green { background: linear-gradient(135deg, var(--bg-alt) 0%, var(--forest-900) 60%, var(--bg) 100%); }
.hero-bg.gradient-green::after { background: none; }
.hero-inner { position: relative; z-index: 2; padding: 100px 40px; max-width: 720px; }
.hero-inner.full-width { max-width: 100%; text-align: center; }
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 999px;
}
.hero-inner.dark-text .hero-eyebrow { color: var(--gold-500); background: rgba(212,168,67,0.10); border-color: var(--gold-700); }
.hero h1 { color: var(--text-dark); margin-bottom: 24px; }
.hero-inner.dark-text h1, .hero-inner.dark-text .hero-tagline, .hero-inner.dark-text p { color: var(--white); }
.hero h1 .accent { color: var(--emerald); }
.hero-inner.dark-text h1 .accent { color: var(--gold-500); }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--gold-300), var(--gold-700)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-inner.dark-text h1 em { background: linear-gradient(135deg, var(--gold-300), var(--gold-700)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-tagline { font-size: 18px; font-weight: 500; color: var(--text-body); margin-bottom: 18px; }
.hero p { font-size: 16px; color: var(--text-body); margin-bottom: 36px; max-width: 540px; line-height: 1.7; }
.hero-inner.dark-text p { color: var(--text-on-dark); }
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Hero trust pills */
.hero-pills { display: flex; gap: 28px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-pill { display: flex; align-items: center; gap: 10px; }
.hero-pill-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); color: var(--gold-500); border-radius: var(--radius-sm); }
.hero-pill-icon svg { width: 18px; height: 18px; }
.hero-pill span { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dark); line-height: 1.3; }
.hero-inner.dark-text .hero-pill-icon { background: rgba(255,255,255,0.06); border-color: rgba(212,168,67,0.4); color: var(--gold-500); }
.hero-inner.dark-text .hero-pill span { color: var(--text-on-dark); }

/* ---------- Page header (smaller hero for sub pages) ---------- */
.page-header { background: var(--bg); color: var(--text-on-dark); padding: 100px 0 80px; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(212,168,67,0.12) 0%, transparent 45%), radial-gradient(circle at 85% 80%, rgba(61,220,132,0.10) 0%, transparent 45%); }
.page-header::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); }
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow { color: var(--gold-500); }
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header .lead { color: var(--text-on-dark-muted); max-width: 720px; font-size: 17px; }
.breadcrumb { padding: 14px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border-soft); font-size: 12px; }
.breadcrumb .container { display: flex; gap: 10px; align-items: center; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-500); }
.breadcrumb .sep { color: var(--text-light); }
.breadcrumb .current { color: var(--gold-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------- Two-column intro (image + text) ---------- */
.intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-split.reverse { direction: rtl; }
.intro-split.reverse > * { direction: ltr; }
.intro-img { aspect-ratio: 4/3; background: var(--cream-2); position: relative; overflow: hidden; }
.intro-img .placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.intro-img.tone-green { background: linear-gradient(135deg, var(--forest-800) 0%, var(--olive-700) 100%); }
.intro-img.tone-olive { background: linear-gradient(135deg, var(--olive-700) 0%, var(--olive-500) 100%); }
.intro-img.tone-gold { background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 100%); }
.intro-img.tone-cream { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%); }
.intro-img.tone-forest { background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-700) 100%); }
.intro-content .eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 16px; display: block; }
.intro-content h2 { margin-bottom: 24px; }
.intro-content p { color: var(--text-body); margin-bottom: 18px; font-size: 16px; }
.intro-content .checklist { margin-top: 24px; }
.intro-content .checklist li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-soft); font-size: 15px; }
.intro-content .checklist li:last-child { border-bottom: none; }
.check-dot { width: 22px; height: 22px; flex-shrink: 0; background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: var(--forest-900); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }

/* ---------- Service / capability card grid ---------- */
.card-grid { display: grid; gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; backdrop-filter: blur(8px); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.card:hover { transform: translateY(-4px); border-color: var(--gold-700); box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--gold-glow); }
.card-img { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.card-img .placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.85); font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; text-align: center; padding: 16px; }
.card-img.tone-green { background: linear-gradient(135deg, var(--forest-800) 0%, var(--olive-700) 100%); }
.card-img.tone-olive { background: linear-gradient(135deg, var(--olive-700) 0%, var(--olive-500) 100%); }
.card-img.tone-gold { background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 100%); }
.card-img.tone-forest { background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-700) 100%); }
.card-img.tone-cream { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%); }
.card-img.tone-cream .placeholder { color: var(--text-muted); }
.card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 12px; font-size: 20px; }
.card-body p { color: var(--text-muted); font-size: 14px; flex: 1; margin-bottom: 18px; }
.card-body .checklist { margin: 0 0 18px; }
.card-body .checklist li { font-size: 13px; padding: 6px 0; border-bottom: 1px dashed var(--border-soft); }
.card-body .checklist li:last-child { border-bottom: none; }
.card-link { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-500); display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 8px; }
.card-link:hover { color: var(--emerald); gap: 12px; }
.card-cta { background: var(--surface-solid-2); color: var(--white); }
.card-cta h3, .card-cta p { color: var(--white); }
.card-cta p { color: var(--text-on-dark-muted); }
.card-cta .card-link { color: var(--gold-500); }
.card-cta .card-link:hover { color: var(--white); }

/* ---------- Stats / numbers strip ---------- */
.stats-strip { background: var(--bg-alt); color: var(--white); padding: var(--space-8) 0; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item { padding: 16px; }
.stat-num { font-family: var(--font-display); font-size: clamp(40px, 4.5vw, 64px); font-weight: 800; color: var(--gold-500); line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px; text-shadow: 0 0 30px var(--gold-glow); }
.stat-label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-muted); }
.stats-strip.olive { background: var(--surface-solid-2); }
.stats-strip.cream { background: var(--bg-alt-2); color: var(--text-dark); }
.stats-strip.cream .stat-num { color: var(--gold-500); }
.stats-strip.cream .stat-label { color: var(--text-muted); }

/* ---------- Process steps ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process::before { content: ''; position: absolute; top: 32px; left: 8%; right: 8%; height: 1px; background: var(--border); z-index: 0; }
.process-step { position: relative; z-index: 1; padding: 0 16px; text-align: center; }
.process-num { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--surface-solid); border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--gold-500); transition: background 0.2s, color 0.2s, box-shadow 0.2s; }
.process-step:hover .process-num { border-color: var(--gold-500); box-shadow: 0 0 24px var(--gold-glow); }
.process-step h4 { font-size: 16px; margin-bottom: 10px; color: var(--text-dark); }
.process-step p { font-size: 14px; color: var(--text-muted); }

/* ---------- Industries / sectors pills ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-pill { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; display: flex; align-items: center; gap: 16px; transition: all 0.25s var(--ease); }
.industry-pill:hover { border-color: var(--gold-700); background: var(--surface-hover); transform: translateY(-2px); }
.industry-pill-icon { width: 36px; height: 36px; flex-shrink: 0; color: var(--gold-500); display: flex; align-items: center; justify-content: center; }
.industry-pill-icon svg { width: 28px; height: 28px; }
.industry-pill span { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.3; }

/* ---------- Industries row (icon + label, no box) ---------- */
.industries-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 24px; }
.industry-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 12px 8px; }
.industry-item .icon { width: 48px; height: 48px; color: var(--gold-500); display: flex; align-items: center; justify-content: center; }
.industry-item .icon svg { width: 36px; height: 36px; }
.industry-item span { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: var(--text-dark); line-height: 1.35; }

/* ---------- Why / features row ---------- */
.features-row { display: grid; gap: 24px; }
.features-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.features-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-item { padding: 32px 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); backdrop-filter: blur(8px); transition: all 0.25s var(--ease); }
.feature-item:hover { border-color: var(--gold-700); background: var(--surface-hover); box-shadow: 0 12px 32px rgba(0,0,0,0.35); }
.feature-item .icon { width: 48px; height: 48px; color: var(--gold-500); margin-bottom: 18px; display: flex; align-items: center; justify-content: center; }
.feature-item .icon svg { width: 36px; height: 36px; }
.feature-item h4 { font-size: 16px; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: var(--text-muted); }

/* ---------- Choose grid (compact bordered icon boxes, philosophy section) ---------- */
.choose-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.choose-item { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius); padding: 22px 12px; text-align: center; backdrop-filter: blur(8px); transition: all 0.25s var(--ease); }
.choose-item:hover { border-color: var(--gold-500); background: var(--surface-hover); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.35), 0 0 0 1px var(--gold-glow); }
.choose-item .icon { width: 38px; height: 38px; margin: 0 auto 12px; color: var(--gold-500); display: flex; align-items: center; justify-content: center; }
.choose-item .icon svg { width: 24px; height: 24px; }
.choose-item span { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }

/* ---------- Philosophy split (circular framed image + text) ---------- */
.philosophy-media { position: relative; aspect-ratio: 1/1; max-width: 420px; margin: 0 auto; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--surface-solid) 0%, var(--surface-solid-2) 100%); border: 1px solid var(--border); box-shadow: 0 0 60px var(--emerald-glow); }
.philosophy-media img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-media .placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; text-align: center; padding: 20px; }

/* ---------- Free-from / small badge row ---------- */
.badge-row { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 44px; }
.badge-row-item { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 108px; text-align: center; }
.badge-row-item .icon { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); display: flex; align-items: center; justify-content: center; color: var(--gold-500); transition: all 0.2s; }
.badge-row-item:hover .icon { border-color: var(--gold-500); box-shadow: 0 0 20px var(--gold-glow); }
.badge-row-item .icon svg { width: 22px; height: 22px; }
.badge-row-item span { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--text-dark); line-height: 1.35; }

/* ---------- CTA card (gold-bordered glass callout card) ---------- */
.cta-card { background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(61,220,132,0.05)); border: 1px solid rgba(212,168,67,0.3); border-radius: var(--radius-lg); padding: 36px 32px; backdrop-filter: blur(8px); }
.cta-card h3 { margin-bottom: 12px; }
.cta-card p { color: var(--text-body); font-size: 14px; margin-bottom: 22px; }

/* ---------- Split media placeholder / tone support ---------- */
.split-media .placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; padding: 16px; }
.split-media.tone-forest { background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-700) 100%); }
.split-media.tone-olive { background: linear-gradient(135deg, var(--olive-700) 0%, var(--olive-500) 100%); }
.split-media.tone-gold { background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-500) 100%); }
.split-media.tone-cream { background: linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 100%); }
.split-media.tone-green { background: linear-gradient(135deg, var(--forest-800) 0%, var(--olive-700) 100%); }
.split-media.tone-forest .placeholder, .split-media.tone-olive .placeholder, .split-media.tone-gold .placeholder, .split-media.tone-green .placeholder { color: rgba(255,255,255,0.85); }

/* ---------- Footer mini world map ---------- */
.footer-map { margin-top: 6px; }
.footer-map-svg { width: 100%; height: auto; display: block; opacity: 0.9; }
.footer-map-svg .map-land { fill: rgba(255,255,255,0.08); stroke: rgba(184,146,42,0.3); stroke-width: 0.6; }
.footer-map-note { font-size: 12px; color: var(--text-on-dark-muted); margin-top: 10px; }

/* ---------- Testimonial / quote ---------- */
.quote-section { background: var(--bg-alt); color: var(--white); padding: var(--space-9) 0; text-align: center; position: relative; overflow: hidden; }
.quote-section::before { content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%); pointer-events: none; }
.quote-section .quote-mark { font-family: var(--font-display); font-size: 96px; line-height: 0.6; color: var(--gold-500); margin-bottom: 24px; position: relative; }
.quote-section blockquote { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 32px); font-weight: 500; line-height: 1.4; max-width: 900px; margin: 0 auto 32px; color: var(--white); text-transform: none; letter-spacing: -0.01em; position: relative; }
.quote-section .quote-author { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-500); position: relative; }

/* ---------- Final CTA strip ---------- */
.cta-strip { background: var(--bg-alt); color: var(--white); padding: var(--space-9) 0; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(212,168,67,0.10) 0%, transparent 45%), radial-gradient(circle at 80% 70%, rgba(61,220,132,0.08) 0%, transparent 45%); }
.cta-strip .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.cta-strip h2 { color: var(--white); margin-bottom: 18px; }
.cta-strip h2 .accent { color: var(--gold-500); }
.cta-strip p { color: var(--text-on-dark); font-size: 16px; max-width: 540px; }
.cta-strip .cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-strip .cta-actions .btn { width: 100%; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--text-on-dark-muted); padding: 80px 0 0; border-top: 1px solid var(--border-soft); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer-brand img { height: 60px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; color: var(--text-on-dark-muted); max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-on-dark-muted); font-size: 13.5px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--text-on-dark-muted); margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); color: var(--text-on-dark-muted); transition: all 0.25s var(--ease); }
.footer-social a:hover { background: rgba(212,168,67,0.12); border-color: var(--gold-500); color: var(--gold-500); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { border-top: 1px solid var(--border-soft); padding: 24px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--text-light); }
.footer-bottom a { color: var(--text-light); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-500); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.gap-3 { gap: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .industries-row { grid-template-columns: repeat(4, 1fr); }
  .features-row.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .container, .container-narrow { padding: 0 24px; }
  .section { padding: 70px 0; }
  .section-lg { padding: 90px 0; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: 540px; }
  .hero-inner { padding: 60px 24px; max-width: 100%; }
  .hero-bg::after { background: linear-gradient(180deg, rgba(7,13,10,0.94) 0%, rgba(7,13,10,0.9) 100%); }
  .intro-split { grid-template-columns: 1fr; gap: 40px; }
  .intro-split.reverse { direction: ltr; }
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cta-strip .container { grid-template-columns: 1fr; gap: 30px; }
  .util-bar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .industries-row { grid-template-columns: repeat(4, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 18px; }
  h1 { font-size: clamp(34px, 8vw, 48px); }
  h2 { font-size: clamp(26px, 6vw, 36px); }
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .features-row.cols-3, .features-row.cols-4 { grid-template-columns: 1fr; }
  .industries-row { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-pills { gap: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .page-header { padding: 70px 0 60px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   PAGE EXTENSIONS — section blocks used on individual pages.
   All use the design tokens above. Kept here so each page
   can stay mostly class-driven without inline styles.
   ========================================================= */

/* ---------- Page hero (split: text + image) ---------- */
.page-hero { background: var(--bg); }
.page-hero .container { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; padding-top: 80px; padding-bottom: 80px; }
.page-hero.reverse .container { grid-template-columns: 1fr 1.05fr; }
.page-hero.reverse .page-hero-media { order: -1; }
.page-hero-text .eyebrow { color: var(--gold-500); font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; display: block; }
.page-hero-text h1 { margin-bottom: 18px; }
.page-hero-text .tagline { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--gold-500); margin-bottom: 18px; line-height: 1.4; }
.page-hero-text p { color: var(--text-body); margin-bottom: 28px; max-width: 520px; }
.page-hero-media { aspect-ratio: 4/3; background: var(--surface-solid); border: 1px solid var(--border); border-radius: var(--radius); position: relative; overflow: hidden; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media .placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }

/* Hero with image background + dark overlay (for Contact, OEM split) */
.page-hero.dark { background: var(--bg-alt); color: var(--text-on-dark); }
.page-hero.dark .page-hero-text h1 { color: var(--white); }
.page-hero.dark .page-hero-text p { color: var(--text-on-dark); max-width: 520px; }
.page-hero.dark .page-hero-text .eyebrow { color: var(--gold-500); }
.page-hero.dark .page-hero-text .tagline { color: var(--gold-500); font-style: normal; }

/* ---------- Gold underline (used after section H2s) ---------- */
.gold-rule { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold-500), transparent); margin-bottom: 28px; }
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ---------- Two-column content block (text + image, both sides) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse > .split-media { order: -1; }
.split-text h2 { margin-bottom: 16px; }
.split-text p { color: var(--text-body); margin-bottom: 16px; line-height: 1.8; }
.split-text p:last-child { margin-bottom: 0; }
.split-media { aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--surface-solid); border: 1px solid var(--border); border-radius: var(--radius); }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-media.with-frame::before { content: ''; position: absolute; top: -14px; left: -14px; width: 90px; height: 90px; border-top: 3px solid var(--gold-500); border-left: 3px solid var(--gold-500); z-index: 1; }
.split-media.with-frame::after { content: ''; position: absolute; bottom: -14px; right: -14px; width: 90px; height: 90px; border-bottom: 3px solid var(--gold-500); border-right: 3px solid var(--gold-500); }

/* ---------- Capabilities / Why list ---------- */
.cap-list { margin-top: 8px; }
.cap-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); font-size: 15px; color: var(--text-body); line-height: 1.6; }
.cap-list li:last-child { border-bottom: none; }
.cap-list .cap-icon { width: 32px; height: 32px; flex-shrink: 0; background: rgba(212,168,67,0.10); color: var(--gold-500); display: flex; align-items: center; justify-content: center; font-size: 14px; border-radius: var(--radius-sm); }
.cap-list .cap-icon svg { width: 18px; height: 18px; }

/* ---------- Product icon grid (cosmetics, etc.) ---------- */
.product-icon-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 10px; }
.product-icon-item { text-align: center; }
.product-icon-box { width: 90px; height: 90px; margin: 0 auto 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 30px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.product-icon-item:hover .product-icon-box { border-color: var(--gold-500); box-shadow: 0 0 24px var(--gold-glow); transform: translateY(-4px); }
.product-icon-item span { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--text-dark); display: block; line-height: 1.4; }

/* ---------- Product image grid (superfoods) ---------- */
.product-img-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; align-items: end; }
.product-img-item { text-align: center; }
.product-img-wrap { height: 130px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 12px; }
.product-img-wrap img { max-height: 120px; max-width: 100%; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)); transition: transform 0.3s; }
.product-img-item:hover .product-img-wrap img { transform: translateY(-6px); }
.product-img-item span { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--text-dark); display: block; line-height: 1.4; }

/* ---------- Why / features strip (4-column icon row on tinted bg) ---------- */
.features-tint { padding: var(--space-8) 0; }
.features-tint.olive { background: var(--olive-800); color: var(--white); }
.features-tint.forest { background: var(--forest-900); color: var(--white); }
.features-tint.cream { background: var(--cream); }
.features-tint-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.features-tint-item { padding: 32px 28px; display: flex; gap: 18px; align-items: flex-start; }
.features-tint-item.olive, .features-tint-item.forest { background: inherit; color: var(--white); }
.features-tint-item.cream { background: var(--cream); }
.features-tint-icon { width: 48px; height: 48px; flex-shrink: 0; border: 1.5px solid currentColor; opacity: 0.7; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.features-tint-item.cream .features-tint-icon { border-color: var(--border); color: var(--gold-500); opacity: 1; }
.features-tint-item h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; }
.features-tint-item.olive h4, .features-tint-item.forest h4 { color: var(--white); }
.features-tint-item p { font-size: 13px; line-height: 1.6; color: var(--text-on-dark-muted); }
.features-tint-item.cream p { color: var(--text-muted); }

/* ---------- Process steps (5-step numbered, with connector line) ---------- */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 50px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: var(--border); z-index: 0; }
.process-step-item { position: relative; z-index: 1; padding: 0 16px; text-align: center; }
.process-step-num { width: 64px; height: 64px; margin: 0 auto 18px; background: var(--surface-solid); border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--gold-500); transition: border-color 0.2s, box-shadow 0.2s; }
.process-step-item:hover .process-step-num { border-color: var(--gold-500); box-shadow: 0 0 24px var(--gold-glow); }
.process-step-item h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.process-step-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.process-steps.cols-6 { grid-template-columns: repeat(6, 1fr); }
.process-steps.cols-8 { grid-template-columns: repeat(8, 1fr); }

/* ---------- Certification badges ---------- */
.cert-badges { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 40px; }
.cert-badge { width: 110px; height: 110px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dark); flex-direction: column; gap: 6px; background: var(--surface); transition: border-color 0.2s, box-shadow 0.2s; }
.cert-badge:hover { border-color: var(--gold-500); box-shadow: 0 0 24px var(--gold-glow); }
.cert-badge .cert-emoji { font-size: 22px; }

/* ---------- World map / serving worldwide wrapper ---------- */
.world-map-wrap { position: relative; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 30px; display: flex; align-items: center; justify-content: center; min-height: 320px; }
.world-map-wrap.cream { background: var(--surface-solid); }
.world-map-svg { width: 100%; height: auto; display: block; }
.world-map-svg .map-land { fill: rgba(255,255,255,0.10); stroke: rgba(184,146,42,0.30); stroke-width: 0.6; stroke-linejoin: round; }
.world-map-svg .map-land-dark { fill: rgba(20,48,32,0.10); stroke: rgba(184,146,42,0.30); stroke-width: 0.6; stroke-linejoin: round; }
.world-map-svg .pulse { animation: pulse 2.4s ease-in-out infinite; }
.world-map-svg .pulse-hub { animation: pulseHub 2.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulse { 0%,100%{r:4;opacity:1} 50%{r:7;opacity:0.5} }
@keyframes pulseHub { 0%,100%{r:6;opacity:1} 50%{r:8;opacity:0.85} }
@media (prefers-reduced-motion: reduce) { .world-map-svg .pulse, .world-map-svg .pulse-hub { animation: none; } }

/* ---------- Two-column content with sidebar (e.g. raw-material quality + markets) ---------- */
.dual-block { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.dual-block h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.dual-block > div > p { color: var(--text-body); line-height: 1.8; margin: 14px 0 22px; }
.dual-block .map-img { aspect-ratio: 16/7; background: var(--surface-solid); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 18px; }
.dual-block .map-img svg { width: 100%; height: 100%; }
.dual-block .map-img .pulse { animation: pulse 2s infinite; }

/* ---------- Categories grid (raw materials 4-col cards) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(8px); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.cat-card:hover { transform: translateY(-4px); border-color: var(--gold-700); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.cat-img { aspect-ratio: 16/10; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--surface-solid); }
.cat-img-label { position: relative; z-index: 1; color: var(--white); font-family: var(--font-display); font-size: 20px; font-weight: 700; text-align: center; padding: 0 14px; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.cat-img--botanical { background: linear-gradient(135deg, var(--olive-700), var(--olive-500)); }
.cat-img--herbal { background: linear-gradient(135deg, var(--forest-800), var(--olive-700)); }
.cat-img--essential { background: linear-gradient(135deg, var(--gold-700), var(--gold-500)); }
.cat-img--carrier { background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); }
.cat-img--marine { background: linear-gradient(135deg, #2e5090, #6B89B8); }
.cat-img--nutra { background: linear-gradient(135deg, var(--olive-700), var(--olive-500)); }
.cat-img--functional { background: linear-gradient(135deg, var(--gold-700), var(--gold-900)); }
.cat-img--cosmetic { background: linear-gradient(135deg, #d4a8b0, #e8c8c0); }
.cat-img--gums { background: linear-gradient(135deg, var(--gold-900), var(--gold-500)); }
.cat-img--seeds { background: linear-gradient(135deg, #6a4a1a, #a88a4a); }
.cat-img--other { background: linear-gradient(135deg, var(--forest-800), var(--gold-700)); }
.cat-body { padding: 22px 22px 20px; display: flex; flex-direction: column; flex: 1; }
.cat-body h3 { font-size: 18px; margin-bottom: 12px; }
.cat-body ul { margin-bottom: 14px; flex: 1; }
.cat-body li { font-size: 13px; color: var(--text-body); padding: 4px 0 4px 16px; position: relative; line-height: 1.5; }
.cat-body li::before { content: '•'; position: absolute; left: 0; top: 4px; color: var(--gold-700); font-size: 16px; line-height: 1; }
.cat-body li.more { color: var(--text-muted); font-style: italic; }
.cat-view { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-700); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 6px; }
.cat-view:hover { color: var(--emerald); }
.cat-card--cta { background: var(--forest-900); color: var(--white); }
.cat-card--cta .cat-body h3 { color: var(--white); font-size: 20px; }
.cat-card--cta .cat-body p { font-size: 13px; color: var(--text-on-dark-muted); line-height: 1.6; margin-bottom: 14px; }
.cat-card--cta .cat-body ul li { color: var(--text-on-dark); }
.cat-card--cta .cat-body ul li::before { color: var(--gold-500); }
.cat-cta-btn { display: inline-block; background: var(--gold-700); color: var(--white); padding: 12px 22px; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 16px; transition: background 0.2s, color 0.2s; }
.cat-cta-btn:hover { background: var(--white); color: var(--forest-900); }

/* ---------- Industries row (compact, used in hero pill area) ---------- */
.industries-row-tight { display: grid; grid-template-columns: repeat(8, 1fr); gap: 24px; }
.industry-item-tight { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 8px; }
.industry-item-tight .icon { width: 48px; height: 48px; color: var(--gold-700); display: flex; align-items: center; justify-content: center; }
.industry-item-tight .icon svg { width: 36px; height: 36px; }
.industry-item-tight span { font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--text-dark); line-height: 1.35; }

/* ---------- Trust pills (final CTA) ---------- */
.trust-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-pill { display: flex; align-items: center; gap: 14px; padding: 18px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); }
.trust-pill-icon { width: 40px; height: 40px; flex-shrink: 0; color: var(--gold-500); display: flex; align-items: center; justify-content: center; }
.trust-pill-icon svg { width: 28px; height: 28px; }
.trust-pill span { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); line-height: 1.3; }

/* ---------- Final CTA strip (with image background) ---------- */
.final-cta { position: relative; padding: 120px 0; color: var(--white); overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,58,14,0.92) 0%, rgba(20,48,32,0.95) 100%); z-index: 0; }
.final-cta::after { content: ''; position: absolute; inset: 0; background: url('images/rawmat.jpeg') center/cover no-repeat; z-index: -1; opacity: 0.30; }
.final-cta .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; align-items: center; }
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: var(--text-on-dark); margin-bottom: 22px; }

/* ---------- Industries / categories pills (private label) ---------- */
.industry-pills { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.industry-pill-tag { padding: 12px 24px; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--text-dark); letter-spacing: 0.02em; transition: all 0.2s; }
.industry-pill-tag:hover { background: var(--gold-500); color: var(--forest-900); border-color: var(--gold-500); box-shadow: 0 0 24px var(--gold-glow); }

/* ---------- Stat strip variants ---------- */
.stats-strip.gold { background: var(--gold-700); color: var(--white); }
.stats-strip.gold .stat-num { color: var(--white); }
.stats-strip.gold .stat-label { color: rgba(255,255,255,0.85); }

/* ---------- Why cards (private label, dark-on-cream) ---------- */
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10); padding: 32px 28px; transition: background 0.2s, border-color 0.2s; }
.why-card:hover { background: rgba(184,146,42,0.12); border-color: rgba(184,146,42,0.40); }
.why-card .why-card-icon { font-size: 32px; margin-bottom: 16px; }
.why-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--white); }
.why-card p { font-size: 13px; color: var(--text-on-dark-muted); line-height: 1.7; }

/* ---------- Testimonials (private label) ---------- */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.test-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; position: relative; backdrop-filter: blur(8px); }
.test-card::before { content: '\201C'; font-family: var(--font-display); font-size: 80px; color: var(--gold-700); opacity: 0.4; position: absolute; top: 6px; left: 18px; line-height: 1; }
.test-card p { font-size: 14px; color: var(--text-body); line-height: 1.8; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.test-author { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--text-dark); letter-spacing: 0.08em; text-transform: uppercase; }
.test-company { font-size: 11px; color: var(--gold-700); margin-top: 2px; }

/* ---------- Contact info cards (4-col dark strip) ---------- */
.contact-info-cards { background: var(--forest-900); padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.contact-info-card { background: var(--charcoal); padding: 40px 28px; text-align: center; transition: background 0.2s; }
.contact-info-card:hover { background: rgba(184,146,42,0.15); }
.contact-info-card .icon { font-size: 28px; margin-bottom: 14px; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--gold-500); margin-bottom: 10px; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-info-card p, .contact-info-card a { font-size: 13.5px; color: var(--text-on-dark-muted); line-height: 1.7; display: block; transition: color 0.2s; text-decoration: none; }
.contact-info-card a:hover { color: var(--gold-500); }

/* ---------- Contact form ---------- */
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.contact-form label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); }
.contact-form input, .contact-form select, .contact-form textarea { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; font-family: var(--font-body); font-size: 14px; color: var(--text-dark); background: var(--surface-solid); outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 3px var(--gold-glow); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4A843' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.btn-submit { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: var(--forest-900); padding: 16px 40px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: none; border-radius: var(--radius); cursor: pointer; width: 100%; transition: box-shadow 0.2s, transform 0.2s; }
.btn-submit:hover { box-shadow: 0 8px 30px var(--gold-glow); transform: translateY(-1px); }

/* Map placeholder */
.map-wrap { width: 100%; aspect-ratio: 16/10; background: var(--surface-solid); border: 1px solid var(--border-soft); border-radius: var(--radius); margin-bottom: 32px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.office-list { margin-top: 8px; }
.office-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border-soft); }
.office-item:last-child { border-bottom: none; }
.office-item .icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.office-item h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 4px; }
.office-item p, .office-item a { font-size: 14px; color: var(--text-body); line-height: 1.6; text-decoration: none; display: block; transition: color 0.2s; }
.office-item a:hover { color: var(--gold-500); }

/* ---------- Division contact cards (contact-us) ---------- */
.div-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.div-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 20px; text-align: center; border-bottom: 3px solid transparent; backdrop-filter: blur(8px); transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; cursor: pointer; }
.div-card:hover { border-color: var(--gold-500); box-shadow: 0 8px 30px var(--gold-glow); transform: translateY(-4px); }
.div-card .icon { font-size: 36px; margin-bottom: 14px; }
.div-card h3 { font-size: 18px; margin-bottom: 8px; }
.div-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(8px); transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--gold-700); }
.faq-item h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.faq-item h4::before { content: 'Q'; width: 24px; height: 24px; background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: var(--forest-900); border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.faq-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; padding-left: 34px; }

/* ---------- Vision / Mission cards (about) ---------- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.vm-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 40px; display: flex; gap: 24px; align-items: flex-start; backdrop-filter: blur(8px); transition: box-shadow 0.2s, border-color 0.2s; }
.vm-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.35); border-color: var(--gold-700); }
.vm-icon { width: 64px; height: 64px; flex-shrink: 0; border: 1px solid rgba(212,168,67,0.35); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 26px; background: rgba(212,168,67,0.08); }
.vm-card h3 { font-size: 22px; margin-bottom: 10px; }
.vm-card p { font-size: 14px; color: var(--text-body); line-height: 1.8; }

/* ---------- Core values grid (about) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px; }
.value-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 20px; text-align: center; border-bottom: 3px solid transparent; backdrop-filter: blur(8px); transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.value-item:hover { border-color: var(--gold-500); box-shadow: 0 8px 30px var(--gold-glow); transform: translateY(-4px); }
.value-item .value-emoji { font-size: 32px; margin-bottom: 14px; }
.value-item h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; letter-spacing: 0.04em; }
.value-item p { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* ---------- Worldwide section (about) ---------- */
.worldwide-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.worldwide-text h2 { color: var(--white); margin-bottom: 12px; }
.worldwide-text p { color: var(--text-on-dark-muted); font-size: 14px; line-height: 1.85; margin-bottom: 16px; }

/* ---------- Founder section (about) ---------- */
.founder-grid { display: grid; grid-template-columns: auto 1fr auto; gap: 48px; align-items: center; }
.founder-avatar { width: 120px; height: 120px; overflow: hidden; border: 4px solid var(--gold-700); flex-shrink: 0; }
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-quote h3 { font-size: 24px; margin-bottom: 10px; }
.founder-quote blockquote { font-size: 15px; color: var(--text-body); line-height: 1.85; font-style: italic; border-left: 3px solid var(--gold-700); padding-left: 20px; margin: 20px 0 14px; }
.founder-quote cite { font-size: 13px; font-weight: 700; color: var(--text-dark); font-style: normal; }
.founder-aside { background: var(--surface-solid-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; max-width: 220px; text-align: center; color: var(--white); }
.founder-aside .quote-mark { font-size: 48px; color: var(--gold-500); line-height: 1; }
.founder-aside p { color: var(--text-on-dark-muted); font-size: 13px; line-height: 1.7; font-style: italic; margin-top: 8px; }

/* ---------- Service cards (services page) ---------- */
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--surface); padding: 36px 32px; border: 1px solid var(--border-soft); border-radius: var(--radius); backdrop-filter: blur(8px); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.service-card:hover { border-color: var(--gold-500); transform: translateY(-4px); box-shadow: 0 12px 36px var(--gold-glow); }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); line-height: 1.7; }

/* ---------- Cert grid (certifications page) ---------- */
.cert-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; max-width: 900px; margin: 0 auto; }
.cert-grid .cert-badge { width: 120px; height: 120px; }

/* ---------- Two-column content (e.g. about "Who We Are" image+text) ---------- */
.who-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who-text h2 { margin-bottom: 12px; }
.who-text p { color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.who-image { position: relative; }
.who-image img { width: 100%; height: 400px; object-fit: cover; display: block; }

/* ---------- Page-hero image with gradient overlay (for hero with bg image) ---------- */
.page-hero.bg-image .page-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(255,255,255,0.4) 0%, transparent 30%); }
.page-hero.clip .page-hero-media img { clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%); }

/* ---------- Section with products image (apparel whtm.png) ---------- */
.product-callout { width: 100%; margin-top: 10px; }
.product-callout img { width: 100%; height: auto; object-fit: contain; }

/* =========================================================
   PAGE-EXTENSIONS RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .process-steps.cols-6, .process-steps.cols-8 { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-row-tight { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .features-tint-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cards, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .choose-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .page-hero .container, .split, .who-split, .worldwide-split, .dual-block { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > .split-media, .page-hero.reverse .page-hero-media { order: 0; }
  .product-icon-grid, .product-img-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-row-tight { grid-template-columns: repeat(4, 1fr); }
  .process-steps, .process-steps.cols-6, .process-steps.cols-8 { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid, .faq-grid { grid-template-columns: 1fr; }
  .service-cards, .div-cards, .why-cards, .test-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: repeat(2, 1fr); }
  .final-cta .container { grid-template-columns: 1fr; gap: 40px; }
  .trust-pills { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .founder-aside { max-width: 100%; }
  .founder-quote blockquote { border-left: none; padding-left: 0; }
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-icon-grid, .product-img-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .industries-row-tight { grid-template-columns: repeat(2, 1fr); }
  .contact-info-cards { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .features-tint-grid { grid-template-columns: 1fr; }
  .process-steps, .process-steps.cols-6, .process-steps.cols-8 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .choose-grid { grid-template-columns: 1fr 1fr; }
  .badge-row { gap: 16px; }
  .badge-row-item { width: 84px; }
}
