/* ==========================================================================
   TROPICAL AGRIFOODS — PREMIUM UI SYSTEM
   Apple · Google · Nestlé-level design quality
   ========================================================================== */

/* --------------------------------------------------------------------------
   EXTENDED DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Glass */
  --glass-bg:        rgba(255,255,255,0.72);
  --glass-border:    rgba(255,255,255,0.45);
  --glass-shadow:    0 8px 32px rgba(26,92,42,0.12);
  --glass-blur:      20px;

  /* Gradients */
  --gradient-hero:   linear-gradient(160deg, rgba(14,48,24,0.82) 0%, rgba(26,92,42,0.55) 60%, rgba(26,92,42,0.1) 100%);
  --gradient-green:  linear-gradient(135deg, #1A5C2A 0%, #2E7D35 100%);
  --gradient-gold:   linear-gradient(90deg, #F5C800 0%, #C9A400 100%);
  --gradient-dark:   linear-gradient(180deg, #0E3018 0%, #071a0e 100%);

  /* Announcement bar */
  --announce-bg:     #0E3018;
  --announce-text:   rgba(255,255,255,0.88);

  /* Nav heights */
  --nav-h:           76px;
  --announce-h:      30px;

  /* Card radius */
  --card-r:          16px;

  /* Transitions */
  --t-card:   all 0.38s cubic-bezier(0.25,1,0.5,1);
  --t-fast:   all 0.18s ease;
  --t-medium: all 0.32s cubic-bezier(0.25,1,0.5,1);

  /* ---- Pre-Hero Brand Bar — LIGHT MODE ---- */
  --ph-bg:              #ffffff;
  --ph-border:          #e8e8e8;
  --ph-text:            #333333;
  --ph-muted:           #777777;
  --ph-separator:       #dddddd;
  --ph-link:            #555555;
  --ph-link-hover:      #111111;
  --ph-link-bold:       #333333;
  --ph-search-border:   #cccccc;
  --ph-search-focus:    #333333;
  --ph-search-input:    #111111;
  --ph-search-placeholder: #aaaaaa;
  --ph-search-icon:     #999999;
  --ph-select-bg:       #ffffff;
  --ph-select-color:    #333333;
  --ph-toggle-track:    #d0d0d0;
  --ph-toggle-border:   #cccccc;
  --ph-toggle-knob:     #888888;
  --ph-info-bg:         #eeeeee;
  --ph-info-color:      #888888;
}

/* ---- Pre-Hero Brand Bar — DARK MODE overrides ---- */
body.dark-mode-active {
  --ph-bg:              #1a1a1a;
  --ph-border:          #2a2a2a;
  --ph-text:            #e0e0e0;
  --ph-muted:           #a0a0a0;
  --ph-separator:       #333333;
  --ph-link:            #8c8c8c;
  --ph-link-hover:      #ffffff;
  --ph-link-bold:       #a6a6a6;
  --ph-search-border:   #444444;
  --ph-search-focus:    #ffffff;
  --ph-search-input:    #ffffff;
  --ph-search-placeholder: #666666;
  --ph-search-icon:     #888888;
  --ph-select-bg:       #1a1a1a;
  --ph-select-color:    #ffffff;
  --ph-toggle-track:    #333333;
  --ph-toggle-border:   #444444;
  --ph-toggle-knob:     #a0a0a0;
  --ph-info-bg:         #333333;
  --ph-info-color:      #888888;
}

/* --------------------------------------------------------------------------
   ANNOUNCEMENT BAR
   -------------------------------------------------------------------------- */
.announce-bar {
  background: var(--announce-bg);
  color: var(--announce-text);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0 1rem;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 101;
}
.announce-bar a {
  color: var(--color-brand-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--t-fast);
}
.announce-bar a:hover { color: #fff; }
.announce-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-brand-gold);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

/* --------------------------------------------------------------------------
   SITE HEADER — Clean White Sticky
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom-color: #e8e8e8;
}
.announce-bar.hidden { display: none; }

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}

/* Logo — always show dark logo on white header */
.header-logo-img {
  height: 62px;
  width: auto;
  transition: var(--t-medium);
}
.logo-light { display: none !important; }
.logo-dark { display: block !important; }

/* Nav links */
.main-navigation { flex: 1; display: flex; justify-content: center; }
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0.25rem;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--t-fast);
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.875rem; right: 0.875rem;
  height: 2px;
  background: var(--color-brand-green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.25,1,0.5,1);
}
.nav-link:hover::after,
.nav-item.current-menu-item .nav-link::after { transform: scaleX(1); }
.nav-link:hover { color: var(--color-brand-green); background: rgba(26,92,42,0.05); }
.nav-item.current-menu-item .nav-link { color: var(--color-brand-green); }

/* ============================================================
   PREMIUM DROPDOWN MEGA-MENU
   ============================================================ */
.nav-item { position: relative; }

/* Chevron rotation */
.dropdown-chevron {
  transition: transform 0.25s cubic-bezier(0.25,1,0.5,1);
  margin-left: 3px;
  flex-shrink: 0;
}
.nav-item.is-open .dropdown-chevron { transform: rotate(180deg); }

/* Panel */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.97);
  min-width: 340px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-radius: 18px;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 12px 40px rgba(26,92,42,0.13),
    0 32px 80px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(26,92,42,0.10);
  padding: 0.5rem 0.5rem 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s cubic-bezier(0.25,1,0.5,1),
    transform 0.28s cubic-bezier(0.25,1,0.5,1),
    visibility 0.28s;
  pointer-events: none;
  list-style: none;
  margin: 0;
  /* Brand accent bar on top */
  border-top: 3px solid var(--color-brand-green);
  overflow: hidden;
}

/* Pointer triangle */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 8px;
  background: var(--color-brand-green);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Open state */
.nav-item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: all;
}

/* Category header strip (top of a grouped dropdown) */
.dropdown-group-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.875rem 0.4rem;
  margin-bottom: 0.15rem;
}
.dropdown-group-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--color-brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown-group-icon svg {
  width: 15px; height: 15px;
  stroke: var(--color-brand-green);
}
.dropdown-group-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-green);
}

/* Divider */
.dropdown-divider {
  height: 1px;
  background: var(--color-brand-green-light);
  margin: 0.35rem 0.875rem;
}

/* Each item link */
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.875rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
  position: relative;
}
.dropdown-link:hover {
  background: var(--color-brand-green-light);
  transform: translateX(3px);
}

/* Icon badge per item */
.dropdown-item-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--color-bg-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s ease;
}
.dropdown-link:hover .dropdown-item-icon {
  background: rgba(26,92,42,0.12);
}
.dropdown-item-icon svg {
  width: 18px; height: 18px;
  stroke: var(--color-brand-green);
}

/* Text block */
.dropdown-item-text { flex: 1; min-width: 0; }
.dropdown-item-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-near-black);
  line-height: 1.25;
}
.dropdown-item-sub {
  display: block;
  font-size: 0.775rem;
  color: var(--color-mid-grey);
  margin-top: 2px;
  line-height: 1.4;
}

/* Arrow chevron on each row */
.dropdown-item-arrow {
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  flex-shrink: 0;
}
.dropdown-link:hover .dropdown-item-arrow {
  opacity: 1;
  transform: translateX(0);
}
.dropdown-item-arrow svg {
  width: 14px; height: 14px;
  stroke: var(--color-brand-green);
}

/* Sub-list (C-REAL nested) */
.dropdown-sub {
  list-style: none;
  margin: 0 0 0.25rem;
  padding: 0 0.5rem 0 calc(0.875rem + 36px + 0.75rem);
}
.dropdown-sub .dropdown-link {
  font-size: 0.825rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  color: var(--color-mid-grey);
  gap: 0.4rem;
}
.dropdown-sub .dropdown-link::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-brand-gold);
  flex-shrink: 0;
}
.dropdown-sub .dropdown-link:hover {
  color: var(--color-brand-green);
  background: var(--color-brand-green-light);
  transform: translateX(2px);
}

/* Bottom CTA strip inside dropdown */
.dropdown-footer {
  margin-top: 0.35rem;
  padding: 0.7rem 0.875rem;
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-green-deep) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: opacity 0.18s ease;
}
.dropdown-footer:hover { opacity: 0.9; }
.dropdown-footer-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.dropdown-footer-action {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-brand-gold);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Header CTA button */
.btn-sm {
  font-size: 0.8125rem;
  padding: 0.35rem 0.95rem;
  line-height: 1.2;
  border-radius: var(--radius-round);
}
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
}
.lang-link {
  color: var(--color-mid-grey);
  transition: var(--t-fast);
  text-decoration: none;
}
.lang-link:hover, .lang-link.active {
  color: var(--color-brand-green);
}
.lang-separator {
  color: var(--color-border);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--t-fast);
  flex-shrink: 0;
}
.menu-toggle:hover { background: rgba(0,0,0,0.05); }
.hamburger-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-near-black);
  border-radius: 2px;
  transition: var(--t-medium);
  transform-origin: center;
}
.menu-toggle.is-active .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-active .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #0d1f13;
  padding: calc(var(--nav-h) + 1.5rem) 0 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.25,1,0.5,1);
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
/* Top-level drawer links */
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  font-size: 1.2rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.22s ease;
}
.mobile-drawer.is-open .mobile-nav-link { opacity: 1; transform: translateX(0); }
/* Stagger link animations */
.mobile-nav-list > li:nth-child(1) .mobile-nav-link { transition-delay: 0.05s; }
.mobile-nav-list > li:nth-child(2) .mobile-nav-link { transition-delay: 0.10s; }
.mobile-nav-list > li:nth-child(3) .mobile-nav-link { transition-delay: 0.15s; }
.mobile-nav-list > li:nth-child(4) .mobile-nav-link { transition-delay: 0.20s; }
.mobile-nav-list > li:nth-child(5) .mobile-nav-link { transition-delay: 0.25s; }
.mobile-nav-list > li:nth-child(6) .mobile-nav-link { transition-delay: 0.30s; }
.mobile-nav-link:hover { color: var(--color-brand-gold); }
/* Sub-list */
.mobile-sub-list {
  list-style: none;
  margin: 0.25rem 0 0.625rem 0.25rem;
  padding: 0 0 0 0.875rem;
  border-left: 2px solid rgba(245,200,0,0.25);
}
.mobile-sub-link {
  display: block;
  padding: 0.35rem 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-sub-link:hover { color: var(--color-brand-gold); }
.mobile-drawer-cta {
  margin-top: 2rem;
  padding: 0 1.5rem;
  display: block;
  text-align: center;
}

/* --------------------------------------------------------------------------
   BUTTONS — Full system
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--radius-round);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--t-medium);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.btn:hover::before { opacity: 1; }

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0);
  animation: ripple-anim 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(4); opacity: 0; }
}

/* Small Button Variant */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,92,42,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,92,42,0.4);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-brand-green);
  border-color: var(--color-brand-green);
}
.btn-ghost:hover {
  background: var(--color-brand-green);
  color: #fff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   SIDEBAR LAYOUT
   -------------------------------------------------------------------------- */
.layout-sidebar-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 992px) {
  .layout-sidebar-right {
    grid-template-columns: 1fr 300px;
    gap: 4rem;
  }
}
.widget-area {
  background: var(--color-bg-cream);
  padding: 2rem;
  border-radius: var(--radius-large);
  border: 1px solid rgba(0,0,0,0.05);
}
.widget {
  margin-bottom: 2rem;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget-title {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-brand-green);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-brand-gold);
}
.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget ul li {
  margin-bottom: 0.75rem;
}
.widget ul li a {
  color: var(--color-near-black);
  text-decoration: none;
  transition: color 0.2s;
}
.widget ul li a:hover {
  color: var(--color-brand-green);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-near-black);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(245,200,0,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,200,0,0.5);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */
#scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* --------------------------------------------------------------------------
   SCROLL REVEAL SYSTEM
   -------------------------------------------------------------------------- */
.reveal,
.scroll-reveal,
.scroll-reveal-stagger {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.25,1,0.5,1), transform 0.75s cubic-bezier(0.25,1,0.5,1);
}
.reveal.is-visible,
.scroll-reveal.is-visible,
.scroll-reveal-stagger.is-visible { opacity: 1; transform: translateY(0); }

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.45s; }

.scroll-reveal--delay { transition-delay: 0.18s; }

/* Stagger siblings */
.scroll-reveal-stagger:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal-stagger:nth-child(2) { transition-delay: 0.15s; }
.scroll-reveal-stagger:nth-child(3) { transition-delay: 0.25s; }
.scroll-reveal-stagger:nth-child(4) { transition-delay: 0.35s; }


/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Carousel */
.hero-carousel { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero-slide.is-active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
}

/* Hero content */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + var(--announce-h));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding-bottom: clamp(5rem, 10vw, 9rem);
}
.hero-content {
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brand-gold);
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--color-brand-gold);
  border-radius: 2px;
}

.hero-headline {
  font-family: var(--font-headings);
  font-size: var(--type-display);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline .highlight {
  color: var(--color-brand-gold);
  display: inline;
}

.hero-body {
  font-size: clamp(1rem, 1.5vw, 1.175rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  margin-bottom: 2.25rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Floating impact chips */
.hero-impact-chips {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.impact-chip {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--glass-shadow);
  min-width: 160px;
}
.impact-chip-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gradient-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.impact-chip-num {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-near-black);
  line-height: 1;
}
.impact-chip-label {
  font-size: 0.75rem;
  color: var(--color-mid-grey);
  font-weight: 500;
  line-height: 1.3;
}

/* Carousel controls */
.hero-carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--t-fast);
  padding: 0;
}
.carousel-dot.is-active { background: var(--color-brand-gold); width: 24px; border-radius: 4px; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  right: 2.5rem;
  z-index: 3;
}
.scroll-cue-line {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  margin: 0 auto;
  animation: scroll-cue-anim 2s ease-in-out infinite;
}
@keyframes scroll-cue-anim {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.4); opacity: 0.4; }
}

/* Fade-in animation helpers */
.fade-in-up        { animation: fadeInUp 0.9s cubic-bezier(0.25,1,0.5,1) both; }
.fade-in-up-delay  { animation: fadeInUp 0.9s 0.2s cubic-bezier(0.25,1,0.5,1) both; }
.fade-in-up-more   { animation: fadeInUp 0.9s 0.4s cubic-bezier(0.25,1,0.5,1) both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* SVG wave divider below hero */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 70px; }

/* --------------------------------------------------------------------------
   STATS STRIP
   -------------------------------------------------------------------------- */
.stats-strip {
  background: var(--gradient-green);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}
.stat-number {
  display: block;
  font-family: var(--font-headings);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--color-brand-gold);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-suffix {
  font-size: 0.7em;
  font-weight: 600;
  vertical-align: super;
  margin-left: 2px;
}
.stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   SECTION SHARED STYLES
   -------------------------------------------------------------------------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand-green);
  margin-bottom: 0.875rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--color-brand-green);
  border-radius: 2px;
}
.section-heading {
  font-family: var(--font-headings);
  font-size: var(--type-h2);
  font-weight: 800;
  color: var(--color-near-black);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.section-heading .accent {
  color: var(--color-brand-green);
}
.section-heading .accent-gold {
  color: var(--color-brand-gold-dark);
}
.section-lead {
  font-size: 1.0625rem;
  color: var(--color-mid-grey);
  line-height: 1.75;
  max-width: 620px;
}
.section-intro--centered { text-align: center; }
.section-intro--centered .section-lead { margin: 0 auto; }
.section-intro--centered .section-eyebrow { justify-content: center; }

/* --------------------------------------------------------------------------
   SPLIT LAYOUT (Our Role + Who We Work With)
   -------------------------------------------------------------------------- */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split-layout--reverse { direction: rtl; }
.split-layout--reverse > * { direction: ltr; }

.split-text { display: flex; flex-direction: column; gap: 0; }
.split-text p {
  color: var(--color-charcoal);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.split-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

.split-image-frame {
  position: relative;
  border-radius: var(--card-r);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(26,92,42,0.18);
}
.split-image-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-green);
  z-index: -1;
  opacity: 0.5;
}
.split-image-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}
.split-image-frame:hover .split-image-bg { transform: scale(1.04); }

/* Image caption micro-detail */
.split-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(14,48,24,0.9) 0%, transparent 100%);
  padding: 1.5rem 1.25rem 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.775rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   APPROACH PILLARS
   -------------------------------------------------------------------------- */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-top: 2.5rem;
}
.approach-text p {
  color: var(--color-charcoal);
  line-height: 1.82;
  margin-bottom: 1.25rem;
}
.approach-pillars { display: flex; flex-direction: column; gap: 1rem; }

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border-radius: var(--card-r);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-brand-green);
  box-shadow: var(--shadow-card);
  transition: var(--t-card);
}
.pillar-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--color-brand-gold-dark);
}
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--color-brand-green-light);
  color: var(--color-brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t-fast);
}
.pillar-item:hover .pillar-icon {
  background: var(--color-brand-green);
  color: #fff;
}
.pillar-title {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.25rem;
}
.pillar-desc {
  font-size: 0.875rem;
  color: var(--color-mid-grey);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   PRODUCT CARDS
   -------------------------------------------------------------------------- */
.products-section .section-intro { margin-bottom: 2.5rem; }
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--card-r);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: var(--t-card);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(26,92,42,0.16);
  border-color: transparent;
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.product-card-img-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25,1,0.5,1);
}
.product-card:hover .product-card-img-bg { transform: scale(1.06); }
.product-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,48,24,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.38s ease;
}
.product-card:hover .product-card-image::after { opacity: 1; }

/* Category chip */
.product-chip {
  position: absolute;
  top: 0.875rem; left: 0.875rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-round);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-green);
  z-index: 1;
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-title {
  font-family: var(--font-headings);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 0.875rem;
  color: var(--color-mid-grey);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}
.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-green);
  transition: var(--t-fast);
}
.product-card-cta::after {
  content: '→';
  transition: transform 0.2s ease;
}
.product-card:hover .product-card-cta { color: var(--color-brand-green-deep); }
.product-card:hover .product-card-cta::after { transform: translateX(4px); }

.products-view-all {
  text-align: center;
}
.products-view-all a {
  color: var(--color-brand-green);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-bottom: 2px solid var(--color-brand-green);
  padding-bottom: 2px;
  transition: var(--t-fast);
}
.products-view-all a:hover {
  color: var(--color-brand-green-deep);
  border-color: var(--color-brand-green-deep);
}

/* --------------------------------------------------------------------------
   WHO WE WORK WITH — Region badges
   -------------------------------------------------------------------------- */
.stat-float-card {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: #fff;
  border-radius: var(--card-r);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 16px 48px rgba(26,92,42,0.16);
  border: 1px solid var(--color-border);
  text-align: center;
  min-width: 160px;
}
.stat-float-card .stat-number {
  display: block;
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-brand-green);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-float-card .stat-label {
  font-size: 0.8rem;
  color: var(--color-mid-grey);
}

.region-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.region-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--color-brand-green-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-round);
  padding: 0.375rem 0.875rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-brand-green-deep);
}

.partner-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.partner-type-item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.partner-type-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-brand-green);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   VALUES / CINEMATIC DARK SECTION
   -------------------------------------------------------------------------- */
.values-section {
  background: var(--gradient-dark) !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,200,0,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(46,125,53,0.12) 0%, transparent 50%);
  pointer-events: none;
}

/* Decorative quote marks */
.values-section .section-eyebrow { color: var(--color-brand-gold); }
.values-section .section-eyebrow::before { background: var(--color-brand-gold); }
.values-section .section-heading { color: #fff; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  margin-top: 2.5rem;
}
.value-quote {
  position: relative;
  border: none;
  margin: 0; padding: 0;
}
.value-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: clamp(6rem, 12vw, 10rem);
  color: var(--color-brand-gold);
  opacity: 0.25;
  position: absolute;
  top: -2rem; left: -1rem;
  line-height: 1;
  pointer-events: none;
}
.value-quote p {
  font-family: var(--font-headings);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  position: relative;
  z-index: 1;
  margin: 0;
}
.value-body p {
  color: rgba(255,255,255,0.75);
  line-height: 1.82;
  margin-bottom: 1.25rem;
}
.value-body .btn-ghost {
  color: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
}
.value-body .btn-ghost:hover {
  background: var(--color-brand-gold);
  color: var(--color-near-black);
}

/* Gold accent line */
.gold-accent-line {
  display: block;
  width: 60px; height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   CTA STRIP
   -------------------------------------------------------------------------- */
.cta-strip {
  background: var(--gradient-dark);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(245,200,0,0.08) 0%, transparent 60%);
}
.cta-wave-top {
  position: absolute;
  top: -1px; left: 0; right: 0;
  line-height: 0;
}
.cta-wave-top svg { display: block; width: 100%; }
.cta-strip-inner { position: relative; z-index: 1; }
.cta-strip-heading {
  font-family: var(--font-headings);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}
.cta-strip-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.75);
}

/* Tagline strip */
.footer-tagline-strip {
  background: var(--color-brand-green);
  padding: 1.125rem 0;
}
.footer-tagline-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-tagline-brand {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.footer-tagline-divider { color: rgba(255,255,255,0.4); }
.footer-tagline-motto {
  font-style: italic;
  color: var(--color-brand-gold);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* Region pills */
.footer-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer-region-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-round);
  padding: 0.25rem 0.75rem;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--t-fast);
}
.footer-social-link:hover {
  background: var(--color-brand-green);
  border-color: var(--color-brand-green);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer body */
.footer-body { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
}
.footer-logo-img {
  height: 64px; width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.footer-mission {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.footer-hq {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-hq strong { color: rgba(255,255,255,0.75); }

.footer-col-title {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col-title--spaced { margin-top: 2rem; }
.footer-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.footer-links a::before {
  content: '';
  width: 0; height: 2px;
  background: var(--color-brand-gold);
  border-radius: 2px;
  transition: width 0.2s ease;
  display: inline-block;
}
.footer-links a:hover { color: #fff; }
.footer-links a:hover::before { width: 12px; }

/* Newsletter */
.footer-newsletter-desc {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.footer-newsletter-fields {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-round);
  overflow: hidden;
  transition: border-color 0.2s;
}
.footer-newsletter-fields:focus-within { border-color: var(--color-brand-gold); }
.footer-newsletter-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.625rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--font-body);
}
.footer-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-btn {
  background: var(--color-brand-gold);
  border: none;
  padding: 0.625rem 1rem;
  cursor: pointer;
  color: var(--color-near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.footer-newsletter-btn:hover { background: var(--color-brand-gold-dark); }
.footer-newsletter-thanks {
  color: var(--color-brand-gold);
  font-size: 0.875rem;
  margin: 0;
}

/* Trust strip */
.footer-trust-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}
.footer-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.footer-trust-badge svg { color: var(--color-brand-gold); opacity: 0.7; }
.footer-trust-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer-trust-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-trust-links a:hover { color: rgba(255,255,255,0.8); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copyright { font-size: 0.825rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.footer-legal a {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-sep { color: rgba(255,255,255,0.2); }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-impact-chips { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; --announce-h: auto; }

  .announce-bar {
    height: auto !important;
    padding: 0.4rem 1rem !important;
    flex-direction: column !important;
    gap: 0.2rem !important;
    line-height: 1.4 !important;
    font-size: 0.75rem !important;
  }

  /* Header: logo left, hamburger right, space between */
  .header-container {
    justify-content: space-between;
    gap: 0;
  }

  /* Logo — scale down gracefully on mobile */
  .header-logo-img { height: 46px; }
  .footer-logo-img { height: 50px; }
  .main-navigation {
    flex: 0 0 auto;
    justify-content: flex-end;
  }
  .menu-toggle {
    display: flex;
    margin-left: 0;
  }
  .main-navigation .nav-menu { display: none; }
  .mobile-drawer { display: block; }
  .header-cta-group { display: none !important; }

  .split-layout,
  .split-layout--reverse { grid-template-columns: 1fr; direction: ltr; }
  .split-layout--reverse .split-visual { order: -1; }

  .approach-grid { grid-template-columns: 1fr; }
  .product-cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .partner-types { grid-template-columns: 1fr; }

  .hero-content-wrapper { align-items: flex-end; padding-bottom: 5rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .cta-strip-buttons { flex-direction: column; align-items: center; }
  .cta-strip-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  .footer-trust-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item + .stat-item::before { display: none; }
}

/* --------------------------------------------------------------------------
   HOMEPAGE INSPIRATION OVERRIDES
   -------------------------------------------------------------------------- */

/* Capsule Eyebrows */
.capsule-eyebrow {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  color: #475569;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.two-tone-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  color: var(--color-near-black);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.two-tone-title .highlight {
  color: var(--color-brand-gold-dark);
}
.two-tone-title .accent-gold {
  color: var(--color-brand-gold-dark);
}

/* Custom Buttons with Arrow Badge */
.btn-arrow-right {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-brand-green);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: var(--t-medium);
  box-shadow: 0 4px 14px rgba(26,92,42,0.15);
}
.btn-arrow-right:hover {
  background: var(--color-brand-green-deep);
  transform: translateY(-2px);
  color: #fff;
}
.btn-arrow-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-brand-gold);
  color: var(--color-near-black);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-near-black);
  font-weight: 600;
  transition: var(--t-fast);
}
.btn-outline-custom:hover {
  background: rgba(0,0,0,0.03);
  border-color: var(--color-charcoal);
}

/* -------------------------------------------------------------------------
   NESTLE-STYLE PRE-HERO BRAND BAR
   ------------------------------------------------------------------------- */
.pre-hero-brand-bar {
  background: var(--ph-bg);
  color: var(--ph-text);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ph-border);
  font-family: var(--font-body);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* All child colours driven by CSS variables — no mode-specific overrides needed here */



.pre-hero-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Row 1: Top Controls */
.pre-hero-top-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.pre-hero-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Dark Mode Toggle */
.dark-mode-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: var(--ph-muted);
  font-weight: 500;
  transition: color 0.3s ease;
}
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ph-info-bg);
  color: var(--ph-info-color);
  font-size: 9px;
  font-style: normal;
  font-weight: bold;
  cursor: help;
  margin-left: 2px;
  transition: background 0.3s ease, color 0.3s ease;
}
.theme-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--ph-toggle-track);
  transition: background-color .3s ease, border-color .3s ease;
  border: 1px solid var(--ph-toggle-border);
}
.slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  left: 3px;
  bottom: 3px;
  background-color: var(--ph-toggle-knob);
  transition: transform .3s ease, background-color .3s ease;
}
.slider.round {
  border-radius: 20px;
}
.slider.round:before {
  border-radius: 50%;
}
.theme-switch input:checked + .slider {
  background-color: var(--color-brand-gold);
  border-color: var(--color-brand-gold-dark);
}
.theme-switch input:checked + .slider:before {
  transform: translateX(18px);
  background-color: #ffffff;
}

/* Region Selector dropdown */
.site-dropdown-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--ph-muted);
  border-right: 1px solid var(--ph-separator);
  padding-right: 1.5rem;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.globe-icon {
  display: flex;
  align-items: center;
  color: var(--ph-muted);
  transition: color 0.3s ease;
}
.globe-icon svg {
  width: 14px;
  height: 14px;
}
.site-select {
  background: transparent;
  color: var(--ph-muted);
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  padding: 2px 4px;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}
.site-select option {
  background: var(--ph-select-bg);
  color: var(--ph-select-color);
}
.dropdown-chevron-mini {
  color: var(--ph-search-icon);
  margin-left: 2px;
  transition: color 0.3s ease;
}

/* Blue Contact Button */
.contact-btn-blue {
  background: var(--color-brand-gold);
  color: var(--color-near-black);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 3px;
  transition: background-color 0.2s ease;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
}
.contact-btn-blue:hover {
  background: var(--color-brand-gold-dark);
  color: var(--color-near-black);
}

/* Row 2: Logo + Tagline & Search */
.pre-hero-main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.pre-hero-branding {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.pre-hero-logo-link {
  display: flex;
  align-items: center;
}
.pre-hero-logo {
  height: 38px;
  width: auto;
  transition: transform 0.3s ease;
}
.pre-hero-logo-link:hover .pre-hero-logo {
  transform: scale(1.03);
}
.pre-hero-separator {
  width: 1px;
  height: 24px;
  background: var(--ph-separator);
  transition: background 0.3s ease;
}
.pre-hero-tagline {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ph-muted);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

/* Underline Search field */
.pre-hero-search {
  flex: 0 1 360px;
  min-width: 240px;
}
.pre-hero-search-form {
  width: 100%;
}
.search-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ph-search-border);
  padding-bottom: 4px;
  transition: border-color 0.3s ease;
}
.search-field-wrapper:focus-within {
  border-bottom-color: var(--ph-search-focus);
}
.search-field-input {
  width: 100%;
  background: transparent !important;
  border: none !important;
  color: var(--ph-search-input) !important;
  font-size: 0.9375rem;
  padding: 4px 32px 4px 0 !important;
  outline: none !important;
  box-shadow: none !important;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}
.search-field-input::placeholder {
  color: var(--ph-search-placeholder);
  transition: color 0.3s ease;
}
.search-submit-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-brand-green);
  border: none;
  padding: 0.45rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.search-sparkle-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.search-submit-btn:hover {
  background: var(--color-brand-green-deep);
  transform: translateY(-50%) scale(1.08);
}


/* Pre-Hero Text Logo */
.pre-hero-text-logo {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-near-black);
  text-decoration: none;
}

body.dark-mode-active .pre-hero-text-logo {
  color: #fff !important;
}

/* Dark mode: force bottom quick-nav links to white, not green */
body.dark-mode-active .pre-hero-nav-link,
body.dark-mode-active .pre-hero-nav-link.text-bold {
  color: rgba(255,255,255,0.7) !important;
}
body.dark-mode-active .pre-hero-nav-link:hover,
body.dark-mode-active .pre-hero-nav-link.text-bold:hover {
  color: #ffffff !important;
}

/* Row 3: Bottom Quick Links Navigation */
.pre-hero-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ph-border);
  padding-top: 0.875rem;
  transition: border-color 0.3s ease;
}
.pre-hero-sub-nav,
.pre-hero-sub-nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pre-hero-nav-item {
  margin: 0;
  padding: 0;
}
.pre-hero-nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ph-link);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.pre-hero-nav-link:hover {
  color: var(--ph-link-hover);
}
.pre-hero-nav-link.text-bold {
  font-weight: 600;
  color: var(--ph-link-bold);
}
.pre-hero-nav-link.text-bold:hover {
  color: var(--ph-link-hover);
}
.home-icon-svg {
  width: 15px;
  height: 15px;
  stroke-width: 2;
}

/* Responsive pre-hero styles */
@media (max-width: 991px) {
  .pre-hero-main-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .pre-hero-search {
    width: 100%;
    max-width: 450px;
  }
  .pre-hero-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .pre-hero-sub-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .pre-hero-sub-nav-right {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  /* Pre-hero: compact, zero dead space */
  .pre-hero-brand-bar {
    padding: 0.5rem 0 !important;
  }
  .pre-hero-container {
    gap: 0.5rem;
  }
  .pre-hero-top-row {
    width: 100%;
  }
  .pre-hero-controls {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .site-dropdown-wrapper {
    display: none !important;
  }
  /* Logo/separator hidden — keep only tagline as a tiny label */
  .pre-hero-logo-link,
  .pre-hero-separator {
    display: none !important;
  }
  /* Main row: tagline on left, search on right — no stacking */
  .pre-hero-main-row {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.625rem !important;
    width: 100%;
  }
  .pre-hero-branding {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-start;
    padding: 0;
  }
  .pre-hero-tagline {
    font-size: 0.7rem !important;
    color: #777777;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }
  .pre-hero-search {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }
  /* Bottom quick-nav hidden on mobile */
  .pre-hero-bottom-row {
    display: none !important;
  }
}

/* =========================================================================
   INTERACTIVE SITE-WIDE DARK MODE STYLES
   ========================================================================= */
body.dark-mode-active {
  background-color: #121212 !important;
  color: #e0e0e0 !important;
}

/* Header Override */
body.dark-mode-active .site-header {
  background-color: #181818 !important;
  border-bottom-color: #262626 !important;
}
body.dark-mode-active .nav-link {
  color: #ffffff !important;
}
body.dark-mode-active .nav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
body.dark-mode-active .nav-link::after {
  background: var(--color-brand-gold) !important;
}
body.dark-mode-active .site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.3) !important;
}

/* Header Logos Toggle */
body.dark-mode-active .logo-dark {
  display: none !important;
}
body.dark-mode-active .logo-light {
  display: block !important;
}
/* Force WP Custom Logo to turn white in dark mode */
body.dark-mode-active .custom-logo {
  filter: brightness(0) invert(1) !important;
}

/* Header Dropdowns — Dark Mode */
body.dark-mode-active .dropdown-menu {
  background: rgba(22, 28, 22, 0.97) !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3), 0 24px 64px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.07) !important;
  border-top-color: var(--color-brand-gold) !important;
}
body.dark-mode-active .dropdown-menu::before {
  background: var(--color-brand-gold) !important;
}
body.dark-mode-active .dropdown-group-label {
  color: var(--color-brand-gold) !important;
}
body.dark-mode-active .dropdown-group-icon {
  background: rgba(245,200,0,0.1) !important;
}
body.dark-mode-active .dropdown-group-icon svg,
body.dark-mode-active .dropdown-item-icon svg {
  stroke: var(--color-brand-gold) !important;
}
body.dark-mode-active .dropdown-item-icon {
  background: rgba(255,255,255,0.05) !important;
}
body.dark-mode-active .dropdown-link:hover {
  background: rgba(255,255,255,0.06) !important;
}
body.dark-mode-active .dropdown-item-label {
  color: #f0f0f0 !important;
}
body.dark-mode-active .dropdown-item-sub {
  color: #7a7a7a !important;
}
body.dark-mode-active .dropdown-item-arrow svg {
  stroke: var(--color-brand-gold) !important;
}
body.dark-mode-active .dropdown-divider {
  background: rgba(255,255,255,0.06) !important;
}
body.dark-mode-active .dropdown-sub .dropdown-link {
  color: #7a7a7a !important;
}
body.dark-mode-active .dropdown-sub .dropdown-link::before {
  background: rgba(245,200,0,0.5) !important;
}
body.dark-mode-active .dropdown-sub .dropdown-link:hover {
  color: var(--color-brand-gold) !important;
  background: rgba(255,255,255,0.05) !important;
}

/* Section Backgrounds */
body.dark-mode-active .section--white {
  background-color: #121212 !important;
  color: #e0e0e0 !important;
}
body.dark-mode-active .section--sage {
  background-color: #181818 !important;
  color: #d1d1d1 !important;
}

/* Typography Overrides (Except inside specifically excluded sections/cards) */
body.dark-mode-active h1:not(.hero-large-title), 
body.dark-mode-active h2:not(#partner-title), 
body.dark-mode-active h3:not(.value-card-new h3):not(.team-name), 
body.dark-mode-active h4, 
body.dark-mode-active h5, 
body.dark-mode-active h6 {
  color: #ffffff !important;
}
body.dark-mode-active .two-tone-title:not(#partner-title) .highlight {
  color: var(--color-brand-gold) !important;
}
body.dark-mode-active .capsule-eyebrow {
  background: rgba(245, 200, 0, 0.08) !important;
  color: var(--color-brand-gold) !important;
  border-color: rgba(245, 200, 0, 0.15) !important;
}
body.dark-mode-active p:not(.hero-sub-new):not(.partner-card-yellow p):not(.value-card-new p):not(.banner-overlay-card p) {
  color: #c0c0c0 !important;
}

/* Hero Section Dark Mode Overrides */
body.dark-mode-active .hero-section-new h1.hero-large-title {
  color: rgba(255, 255, 255, 0.88) !important;
}
body.dark-mode-active .hero-section-new p.hero-sub-new {
  color: rgba(255, 255, 255, 0.88) !important;
}
body.dark-mode-active .hero-section-new span.hero-eyebrow-new {
  color: var(--color-brand-gold) !important;
}
body.dark-mode-active .hero-section-new a.hero-cta-link {
  color: rgba(255, 255, 255, 0.88) !important;
}
body.dark-mode-active .hero-section-new .splide__arrow {
  color: rgba(255, 255, 255, 0.88) !important;
}
body.dark-mode-active .hero-section-new .splide__pagination__page {
  border-color: rgba(255, 255, 255, 0.88) !important;
}
body.dark-mode-active .hero-section-new .splide__pagination__page.is-active {
  background: rgba(255, 255, 255, 0.88) !important;
}

/* Card Overrides — Make light cards dark in dark mode so text is readable */

/* 1. Value/Resilience Cards */
body.dark-mode-active .value-card-new {
  background: #1a1a1a !important;
  border-color: #2d2d2d !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important;
}
body.dark-mode-active .value-card-new h3 {
  color: #ffffff !important;
}
body.dark-mode-active .value-card-new p {
  color: #b0b0b0 !important;
}
body.dark-mode-active .value-card-icon-new {
  background: rgba(245, 200, 0, 0.1) !important;
  color: var(--color-brand-gold) !important;
}

/* 2. Distributor Banner Overlay Card */
body.dark-mode-active .banner-overlay-card {
  background: #1a1a1a !important;
  border: 1px solid #2d2d2d !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4) !important;
}
body.dark-mode-active .banner-overlay-card h2 {
  color: #ffffff !important;
}
body.dark-mode-active .banner-overlay-card p {
  color: #b0b0b0 !important;
}

/* 3. Team Cards */
body.dark-mode-active .team-card-new {
  background: #1e293b !important;
  border-color: #334155 !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3) !important;
}
body.dark-mode-active .team-card-new--highlighted,
body.dark-mode-active .team-card-new:hover {
  background-color: var(--color-brand-gold) !important;
  border-color: var(--color-brand-gold) !important;
  box-shadow: 0 20px 40px rgba(245, 200, 0, 0.2) !important;
}
body.dark-mode-active .team-name {
  color: #ffffff !important;
}
body.dark-mode-active .team-card-new--highlighted .team-name,
body.dark-mode-active .team-card-new:hover .team-name {
  color: #0f3a20 !important;
}
body.dark-mode-active .team-role {
  color: #94a3b8 !important;
}
body.dark-mode-active .team-card-new--highlighted .team-role,
body.dark-mode-active .team-card-new:hover .team-role {
  color: #0f3a20 !important;
}
body.dark-mode-active .team-dept {
  color: #6ee7b7 !important;
  opacity: 0.7;
}
body.dark-mode-active .team-card-new--highlighted .team-dept,
body.dark-mode-active .team-card-new:hover .team-dept {
  color: #0f3a20 !important;
  opacity: 0.65;
}
body.dark-mode-active .team-avatar-wrapper {
  background: #0f172a !important;
  border-color: #1e293b !important;
}
body.dark-mode-active .team-avatar-placeholder {
  background: #0f172a !important;
  color: #475569 !important;
}
body.dark-mode-active .team-card-new--highlighted .team-avatar-placeholder,
body.dark-mode-active .team-card-new:hover .team-avatar-placeholder {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--color-brand-gold) !important;
}
body.dark-mode-active .team-card-info {
  border-top-color: #334155 !important;
}
body.dark-mode-active .team-card-arrow-circle {
  background: #334155 !important;
  border-color: #475569 !important;
  color: #cbd5e1 !important;
}
body.dark-mode-active .team-card-new--highlighted .team-card-arrow-circle,
body.dark-mode-active .team-card-new:hover .team-card-arrow-circle {
  background: #0f3a20 !important;
  border-color: #0f3a20 !important;
  color: var(--color-brand-gold) !important;
}


/* 4. Insight/News Cards */
body.dark-mode-active .insight-card-new {
  background: #1a1a1a !important;
  border-color: #2d2d2d !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3) !important;
}
body.dark-mode-active .insight-title {
  color: #ffffff !important;
}
body.dark-mode-active .insight-cat {
  color: var(--color-brand-gold) !important;
}

/* Enforce high contrast on Yellow Partner Card (OBASIMA) */
body.dark-mode-active .partner-card-yellow {
  background: var(--color-brand-gold) !important;
  color: #11341c !important;
}
body.dark-mode-active .partner-card-yellow h2,
body.dark-mode-active .partner-card-yellow h2#partner-title {
  color: #11341c !important;
}
body.dark-mode-active .partner-card-yellow p {
  color: #11341c !important;
}
body.dark-mode-active .partner-card-yellow .capsule-eyebrow {
  background: rgba(17, 52, 28, 0.07) !important;
  color: #11341c !important;
  border-color: rgba(17, 52, 28, 0.15) !important;
}


/* Section 2 Tabs Override */
body.dark-mode-active .tab-header-item {
  color: #8c8c8c !important;
}
body.dark-mode-active .tab-header-item.active {
  color: var(--color-brand-gold) !important;
}
body.dark-mode-active .tab-header-item.active::after {
  background: var(--color-brand-gold) !important;
}
body.dark-mode-active .tab-panel-content {
  color: #d1d1d1 !important;
}

/* Accordion Trigger Override */
body.dark-mode-active .faq-trigger-new {
  color: #ffffff !important;
}
body.dark-mode-active .faq-item-new {
  border-bottom-color: #262626 !important;
}

/* Custom interactive elements */
body.dark-mode-active .btn-outline-custom {
  color: #ffffff !important;
  border-color: #444444 !important;
}
body.dark-mode-active .btn-outline-custom:hover {
  background: rgba(255,255,255,0.05) !important;
}
body.dark-mode-active .lang-link {
  color: #888888 !important;
}
body.dark-mode-active .lang-link.active,
body.dark-mode-active .lang-link:hover {
  color: #ffffff !important;
}
body.dark-mode-active .hamburger-bar {
  background-color: #ffffff !important;
}

/* Enforce consistent Gold Buttons in Dark Mode for visibility */
body.dark-mode-active .btn-primary,
body.dark-mode-active .btn-arrow-right {
  background: var(--color-brand-gold) !important;
  color: #11341c !important;
  border-color: var(--color-brand-gold) !important;
}
body.dark-mode-active .btn-primary:hover,
body.dark-mode-active .btn-arrow-right:hover {
  background: #e6b800 !important;
  color: #11341c !important;
  box-shadow: 0 8px 30px rgba(245, 200, 0, 0.3) !important;
}

/* -------------------------------------------------------------------------
   NEW HERO — Full-Screen Splide.js Light-Mode Centered Carousel
   ------------------------------------------------------------------------- */
.hero-section-new.splide {
  position: relative;
  width: 100vw;
  height: 80vh;
  min-height: 560px;
  overflow: hidden;
  background: #ffffff;
}
.hero-section-new .splide__track {
  height: 100%;
}
.hero-section-new .splide__list {
  height: 100%;
}
.hero-slide-new {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* Radial dark green overlay over the image */
.hero-slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 48, 24, 0.8) 0%, rgba(14, 48, 24, 0.05) 75%);
  z-index: 1;
}
.hero-slide-overlay-new {
  display: none;
}

/* Hero content centered */
.hero-content-new {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  padding: 0 var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Typography elements in white */
.hero-eyebrow-new {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-gold);
  margin-bottom: 0.75rem;
}
.hero-large-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.25;
  margin: 0 0 1rem;
  max-width: 740px;
}
.hero-sub-new {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  font-weight: 500;
  color: #ffffff !important;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

/* Minimalist inline text link CTA */
.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.hero-cta-link:hover {
  border-bottom-color: #ffffff;
  color: #ffffff;
}

/* Arrows controls centered vertically on screen edges */
.hero-arrow-new.splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0.7;
}
.hero-arrow-new.splide__arrow:hover {
  opacity: 1;
}
.hero-arrow-new.splide__arrow:hover:not(:disabled) {
  transform: translateY(-50%) scale(1.15);
}
.hero-arrow-new.splide__arrow svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}
.hero-arrow--prev {
  left: 1.5rem;
}
.hero-arrow--next {
  right: 1.5rem;
}

/* Pagination Dots */
.hero-section-new .splide__pagination {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-section-new .splide__pagination__page {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #ffffff;
  opacity: 0.5;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
}
.hero-section-new .splide__pagination__page.is-active {
  background: #ffffff;
  border-color: #ffffff;
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section-new.splide {
    /* Fill remaining viewport — no dead gap below search bar */
    height: calc(100svh - var(--nav-h) - 90px);
    min-height: 380px;
    max-height: 660px;
  }
  .hero-arrow-new.splide__arrow {
    width: 36px;
    height: 36px;
  }
  .hero-arrow-new.splide__arrow svg {
    width: 24px;
    height: 24px;
  }
  .hero-arrow--prev {
    left: 0.5rem;
  }
  .hero-arrow--next {
    right: 0.5rem;
  }
  /* Tighten carousel typography on mobile */
  .hero-large-title {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
  }
  .hero-sub-new {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}

/* Who We Are Tab Layout */Are Tab Layout */
.who-we-are-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 2rem;
}
.who-we-are-actions {
  display: flex;
  gap: 1rem;
}
.tab-header-list {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  list-style: none;
  padding-left: 0;
}
.tab-header-item {
  font-family: var(--font-headings);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-mid-grey);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: var(--t-fast);
  position: relative;
}
.tab-header-item.active {
  color: var(--color-brand-green);
}
.tab-header-item.active::after {
  content: '';
  position: absolute;
  bottom: -0.875rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-brand-green);
}
.tab-panel-content {
  font-size: 1.0625rem;
  color: var(--color-charcoal);
  line-height: 1.75;
}

/* Services Mockup styles */
.services-section-new {
  background: var(--color-bg-dark);
  color: #ffffff;
  padding: 6rem 0;
}
.services-section-new .capsule-eyebrow {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
}
.services-section-new .two-tone-title {
  color: #ffffff;
}
.services-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card-new {
  background: #124020;
  border-radius: 24px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 380px;
  transition: var(--t-card);
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}
.service-card-new:hover {
  transform: translateY(-8px);
  background: #18522a;
}
.service-card-new.highlight-card {
  background: var(--color-brand-gold);
  color: var(--color-near-black);
}
.service-card-new.highlight-card:hover {
  background: var(--color-brand-gold-dark);
}
.service-card-title {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: auto;
  line-height: 1.35;
  color: #ffffff;
}
.highlight-card .service-card-title {
  color: var(--color-near-black);
}
.service-card-img-wrapper {
  margin-top: 2rem;
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--t-medium);
}
.service-card-new:hover .service-card-img {
  transform: scale(1.06);
}

/* Values Grid */
.values-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card-new {
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: var(--t-card);
}
.value-card-new:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}
.value-card-icon-new {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-brand-green-light);
  color: var(--color-brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

/* Distributor Callout Banner */
.distributor-banner-section {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.distributor-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}
.banner-overlay-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem;
  max-width: 550px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.highlight-capsule {
  background: var(--color-brand-gold);
  color: var(--color-near-black);
  padding: 0.15rem 0.6rem;
  border-radius: 6px;
  display: inline-block;
  font-weight: 700;
  border-right: 2px solid var(--color-near-black);
  animation: cursorBlink 0.8s step-end infinite;
  white-space: nowrap;
}

@keyframes cursorBlink {
  0%, 100% { border-color: transparent; }
  50% { border-color: var(--color-near-black); }
}

/* Team Styles */
.team-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}
.team-eyebrow {
  margin-bottom: 0.75rem;
}
.team-large-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #1e3a27; /* Dark Forest Green */
  line-height: 1.2;
  margin: 0;
}
.team-large-title .highlight-brand-yellow {
  color: var(--color-brand-gold);
}
.team-header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.team-careers-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e293b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: color 0.2s ease;
}
.team-careers-link:hover {
  color: #0f172a;
}
.team-careers-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--color-brand-gold);
  border-radius: 50%;
  color: #000000;
  transition: transform 0.2s ease;
}
.team-careers-arrow svg {
  width: 12px;
  height: 12px;
}
.team-careers-link:hover .team-careers-arrow {
  transform: translate(2px, -2px);
}
.team-view-all-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  background-color: #123c24;
  padding: 0.8rem 1.85rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.team-view-all-btn:hover {
  background-color: #0d2c1a;
  transform: translateY(-2px);
}

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.team-card-new {
  background: #ffffff;
  border-radius: 32px;
  padding: 2.5rem 1.5rem 1.5rem;
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 420px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.team-avatar-wrapper {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.team-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  background: #f8fafc;
}
.team-avatar-placeholder svg {
  width: 76px;
  height: 76px;
  transition: color 0.3s ease;
}
.team-card-info {
  width: 100%;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  transition: border-color 0.35s ease;
}
.team-card-text {
  text-align: left;
}
.team-name {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.35rem;
  line-height: 1.2;
  transition: color 0.35s ease;
}
.team-role {
  font-family: var(--font-body);
  font-size: 0.725rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  display: block;
  transition: color 0.35s ease;
}
.team-dept {
  font-family: var(--font-body);
  font-size: 0.675rem;
  font-weight: 500;
  color: var(--color-brand-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 0.25rem;
  opacity: 0.8;
  transition: color 0.35s ease, opacity 0.35s ease;
}
.team-card-new--highlighted .team-dept,
.team-card-new:hover .team-dept {
  color: #0f3a20;
  opacity: 0.65;
}
.team-card-arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.35s ease;
}
.team-card-arrow-circle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s ease;
}

/* Hover and active/highlight state */
.team-card-new--highlighted,
.team-card-new:hover {
  background-color: var(--color-brand-gold);
  border-color: var(--color-brand-gold);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 200, 0, 0.18);
}
.team-card-new--highlighted .team-avatar-wrapper,
.team-card-new:hover .team-avatar-wrapper {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}
.team-card-new--highlighted .team-avatar-placeholder,
.team-card-new:hover .team-avatar-placeholder {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-brand-gold);
}
.team-card-new--highlighted .team-card-info,
.team-card-new:hover .team-card-info {
  border-top-color: rgba(15, 58, 32, 0.15);
}
.team-card-new--highlighted .team-name,
.team-card-new:hover .team-name {
  color: #0f3a20;
}
.team-card-new--highlighted .team-role,
.team-card-new:hover .team-role {
  color: #0f3a20;
  opacity: 0.75;
}
.team-card-new--highlighted .team-card-arrow-circle,
.team-card-new:hover .team-card-arrow-circle {
  background: #0f3a20;
  color: var(--color-brand-gold);
}
.team-card-new--highlighted .team-card-arrow-circle svg,
.team-card-new:hover .team-card-arrow-circle svg {
  transform: scale(1.1);
}


/* Trusted Partner Section */
.trusted-partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.partner-product-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.partner-card-yellow {
  background: var(--color-brand-gold); /* Maintain brand yellow/gold */
  color: #11341c;
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 24px 56px rgba(26, 92, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.partner-card-yellow .capsule-eyebrow {
  background: rgba(17, 52, 28, 0.07);
  color: #11341c;
  border: 1px solid rgba(17, 52, 28, 0.15);
  font-weight: 700;
}
.partner-card-yellow h2 {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #11341c;
  margin: 1.25rem 0;
  letter-spacing: -0.02em;
}
.partner-card-yellow p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #11341c;
  margin-bottom: 2.25rem;
}

/* Redesigned partner action button matching references */
.partner-framework-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  transition: var(--ease-smooth);
}
.partner-framework-btn:hover {
  transform: translateY(-2px);
}
.partner-framework-btn .btn-pill-label {
  background: #11341c; /* Deep forest-dark green */
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 2rem;
  border-radius: 9999px;
  display: inline-block;
  line-height: 1.2;
}
.partner-framework-btn .btn-circle-arrow {
  background: #11341c;
  color: var(--color-brand-gold); /* Yellow accent arrow */
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease-smooth);
}
.partner-framework-btn:hover .btn-circle-arrow {
  background: var(--color-brand-green);
  color: #ffffff;
}
.partner-framework-btn .btn-circle-arrow svg {
  width: 16px;
  height: 16px;
}


/* Accordion FAQs */
.faq-grid-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}
.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item-new {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}
.faq-trigger-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-near-black);
  cursor: pointer;
  text-align: left;
  padding: 0.5rem 0;
}
.faq-panel-new {
  display: none;
  padding: 0.5rem 0 1rem;
  font-size: 0.95rem;
  color: var(--color-mid-grey);
  line-height: 1.6;
}
.faq-item-new.active .faq-panel-new {
  display: block;
}

/* Insights grid */
.insights-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.insight-card-new {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--t-card);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.insight-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.insight-img-wrapper {
  height: 220px;
  width: 100%;
}
.insight-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insight-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.insight-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-mid-grey);
  margin-bottom: 0.5rem;
}
.insight-title {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: auto;
}

/* Newsletter section block */
.newsletter-block-new {
  background: var(--color-bg-dark);
  border-radius: 28px;
  padding: 4rem;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.newsletter-form-row {
  display: flex;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 0.35rem 0.5rem 0.35rem 1.5rem;
  margin-top: 1.5rem;
}
.newsletter-form-row input[type="email"] {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  flex-grow: 1;
  font-size: 0.95rem;
}
.newsletter-form-row .btn-subscribe {
  background: var(--color-brand-gold);
  color: var(--color-near-black);
  border: none;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--t-fast);
}
.newsletter-form-row .btn-subscribe:hover {
  background: var(--color-brand-gold-dark);
}
.newsletter-right-img {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-stat-cards { display: none; }
  .services-grid-new { grid-template-columns: repeat(2, 1fr); }
  .values-grid-new { grid-template-columns: repeat(2, 1fr); }
  .team-grid-new { grid-template-columns: repeat(2, 1fr); }
  .trusted-partner-grid { grid-template-columns: 1fr; }
  .faq-grid-layout { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-block-new { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero-scroll-cue-new { display: none; }
  .hero-large-title { font-size: 2.4rem; }
  .hero-sub-new { font-size: 0.95rem; }
  .who-we-are-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid-new { grid-template-columns: 1fr; }
  .values-grid-new { grid-template-columns: 1fr; }
  .team-grid-new { grid-template-columns: 1fr; }
  .insights-grid-new { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item + .stat-item::before { display: none; }
  .who-we-are-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .who-we-are-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   PREFERS REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   PREMIUM PAGE HERO SYSTEM
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-green-deep) 100%);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: #ffffff;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--color-brand-gold);
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-round);
  margin-bottom: 1.5rem;
}
.page-hero-heading {
  font-family: var(--font-headings);
  font-size: var(--type-h1);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero-heading .highlight-brand-yellow {
  color: var(--color-brand-gold);
}
.page-hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}
/* Sage variant (lighter hero for product pages) */
.page-hero--sage {
  background: var(--color-bg-sage);
}
.page-hero--sage::before {
  background-image: linear-gradient(rgba(26, 92, 42, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(26, 92, 42, 0.03) 1px, transparent 1px);
}
.page-hero--sage .page-hero-eyebrow {
  background: rgba(26, 92, 42, 0.08);
  border-color: rgba(26, 92, 42, 0.2);
  color: var(--color-brand-green);
}
.page-hero--sage .page-hero-heading {
  color: var(--color-near-black);
}
.page-hero--sage .page-hero-sub {
  color: var(--color-mid-grey);
}
.page-hero--sage::after {
  background: #ffffff;
}
@media (max-width: 768px) {
  .page-hero {
    padding: 5.5rem 0 4.5rem;
  }
  .page-hero-eyebrow {
    margin-bottom: 1rem;
    padding: 0.3rem 0.85rem;
    font-size: 0.725rem;
  }
  .page-hero-heading {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .page-hero-sub {
    font-size: 0.925rem;
    line-height: 1.6;
    padding: 0 1rem;
  }
}

/* --------------------------------------------------------------------------
   STORY TIMELINE & REDESIGN SYSTEM
   -------------------------------------------------------------------------- */
.story-timeline {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
  padding-left: 3.5rem;
}
.story-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-brand-green) 0%, var(--color-border) 100%);
}
.timeline-item {
  position: relative;
  margin-bottom: 4rem;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-dot {
  position: absolute;
  left: calc(-3.5rem + 7px);
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-brand-gold);
  border: 4px solid var(--color-bg-white);
  box-shadow: 0 0 0 2px var(--color-brand-green);
  z-index: 2;
}
.timeline-date {
  font-family: var(--font-headings);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-brand-green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}
.timeline-content {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
  transition: var(--ease-smooth);
}
.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-brand-green-light);
}

/* Quote/Leadership Accent */
.editorial-quote-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-brand-green-light) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  margin-top: 3rem;
  border-left: 6px solid var(--color-brand-green);
  box-shadow: var(--shadow-card);
}
.editorial-quote-text {
  font-family: var(--font-headings);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: var(--color-near-black);
  font-weight: 700;
  margin-bottom: 2rem;
}
.editorial-quote-author {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brand-green-deep);
}
@media (max-width: 640px) {
  .story-timeline {
    padding-left: 2rem;
  }
  .story-timeline::before {
    left: 8px;
  }
  .timeline-dot {
    left: calc(-2rem + 4px);
    width: 14px;
    height: 14px;
  }
  .timeline-content {
    padding: 1.5rem;
  }
  .editorial-quote-section {
    padding: 2.5rem 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   IMPACT PAGE SYSTEM — GLASSMETRICS & PILLARS
   -------------------------------------------------------------------------- */
.stats-glass-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat-glass-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(26, 92, 42, 0.04);
  transition: var(--ease-smooth);
}
.stat-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 92, 42, 0.12);
  border-color: rgba(245, 200, 0, 0.4);
}
.stat-glass-value {
  font-family: var(--font-headings);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--color-brand-green);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-glass-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-glass-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-mid-grey);
  line-height: 1.4;
  margin: 0;
}

/* Three-Column Value Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.pillar-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-brand-green);
  transition: var(--ease-smooth);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-left-color: var(--color-brand-gold);
}
.pillar-title {
  font-family: var(--font-headings);
  font-size: var(--type-h3);
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 1rem;
}
.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .stats-glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .stats-glass-grid {
    grid-template-columns: 1fr;
  }
  .stat-glass-card {
    padding: 2rem 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   TEAM PAGE — FOUNDERS, VALUES STRIP & MANAGEMENT GRID
   -------------------------------------------------------------------------- */

/* Founders Grid — 2-column feature cards */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.founder-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: var(--ease-smooth);
}
.founder-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(26, 92, 42, 0.14);
  border-color: transparent;
}
.founder-card-avatar {
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-green-deep) 100%);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.founder-card-avatar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
}
.founder-card-avatar svg {
  width: 80px;
  height: 80px;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 1;
}
.founder-card-body {
  padding: 2.25rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.founder-name {
  font-family: var(--font-headings);
  font-size: var(--type-h3);
  font-weight: 800;
  color: var(--color-near-black);
  margin: 0;
  letter-spacing: -0.01em;
}
.founder-role {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-green);
  background: var(--color-brand-green-light);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-round);
  align-self: flex-start;
}
.founder-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  line-height: 1.7;
  margin: 0;
}
.founder-gold-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand-gold) 0%, var(--color-brand-gold-dark) 100%);
  border-radius: 0 0 2px 2px;
}

/* Team Values Strip — 3-col horizontal bar */
.team-values-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 4rem;
}
.team-values-item {
  padding: 2.5rem;
  border-right: 1px solid var(--color-border);
  background: var(--color-bg-white);
  transition: background 0.3s ease;
}
.team-values-item:last-child { border-right: none; }
.team-values-item:hover { background: var(--color-bg-sage); }
.team-values-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.team-values-icon svg { width: 22px; height: 22px; color: var(--color-brand-green); }
.team-values-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.5rem;
}
.team-values-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-mid-grey);
  line-height: 1.6;
  margin: 0;
}

/* Management Grid — 3-cols, uses existing team-card-new */
.management-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

/* Open Position Placeholder Card */
.open-position-card {
  background: var(--color-bg-cream);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  transition: var(--ease-smooth);
  min-height: 190px;
}
.open-position-card:hover {
  border-color: var(--color-brand-green);
  background: var(--color-brand-green-light);
}
.open-position-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-mid-grey);
}
.open-position-title {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin: 0;
}

@media (max-width: 1024px) {
  .founders-grid { grid-template-columns: 1fr; }
  .team-values-strip {
    grid-template-columns: 1fr;
  }
  .team-values-item { border-right: none; border-bottom: 1px solid var(--color-border); }
  .team-values-item:last-child { border-bottom: none; }
  .management-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .management-grid { grid-template-columns: 1fr; }
  .founder-card-body { padding: 1.75rem; }
}

/* Product Card Redesign & Animation Extensions */
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 64px rgba(26, 92, 42, 0.12);
}
.product-card:hover .product-card-img-bg {
  transform: scale(1.08);
}
.product-card:hover .partner-framework-btn {
  transform: translateY(-1px);
}
.product-card:hover .partner-framework-btn .btn-circle-arrow {
  background: var(--color-brand-green);
  color: #ffffff;
  transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   QUALITY & SAFETY PAGE — PILLAR CARDS, PROCESS CHAIN, STANDARDS GRID
   -------------------------------------------------------------------------- */

/* Quality Pillar Cards Grid (4-col) */
.quality-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.quality-pillar-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-card);
  transition: all 0.38s cubic-bezier(0.25,1,0.5,1);
  position: relative;
  overflow: hidden;
}
.quality-pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand-green) 0%, var(--color-brand-gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.25,1,0.5,1);
}
.quality-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(26,92,42,0.14);
  border-color: transparent;
}
.quality-pillar-card:hover::after { transform: scaleX(1); }
.quality-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quality-pillar-icon svg { width: 26px; height: 26px; color: var(--color-brand-green); }
.quality-pillar-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin: 0;
  letter-spacing: -0.01em;
}
.quality-pillar-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-charcoal);
  line-height: 1.65;
  margin: 0;
}

/* Process Chain — vertical numbered steps */
.quality-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.quality-process-steps::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-brand-green) 0%, var(--color-brand-gold) 100%);
  opacity: 0.25;
}
.quality-process-step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease;
}
.quality-process-step:last-child { border-bottom: none; }
.quality-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-green-mid) 100%);
  color: #ffffff;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(26,92,42,0.25);
  position: relative;
  z-index: 1;
}
.quality-step-content { flex: 1; }
.quality-step-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.quality-step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  line-height: 1.65;
  margin: 0;
}

/* Standards Compliance Cards (3-col) */
.quality-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.quality-standard-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-brand-green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: all 0.38s cubic-bezier(0.25,1,0.5,1);
}
.quality-standard-card:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 40px rgba(26,92,42,0.12);
  border-left-color: var(--color-brand-gold);
}
.quality-standard-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-brand-green-light);
  color: var(--color-brand-green);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-round);
  margin-bottom: 1rem;
}
.quality-standard-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}
.quality-standard-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-charcoal);
  line-height: 1.65;
  margin: 0;
}

/* Quality Promise Statement — centered large quote block */
.quality-promise-block {
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-green-deep) 100%);
  border-radius: var(--radius-xl, 28px);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quality-promise-block::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-headings);
  font-size: 12rem;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  pointer-events: none;
}
.quality-promise-text {
  font-family: var(--font-headings);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 740px;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.quality-promise-attribution {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Communication Principles checklist */
.quality-principles-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.quality-principles-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--color-charcoal);
  line-height: 1.6;
}
.quality-principles-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--color-brand-green-light);
  border: 1.5px solid var(--color-brand-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231A5C2A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 1024px) {
  .quality-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-standards-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-promise-block { padding: 3rem 2rem; }
}
@media (max-width: 640px) {
  .quality-pillars-grid { grid-template-columns: 1fr; }
  .quality-standards-grid { grid-template-columns: 1fr; }
  .quality-process-steps::before { display: none; }
  .quality-promise-block { padding: 2.5rem 1.5rem; }
  .quality-promise-block::before { font-size: 8rem; }
}

/* --------------------------------------------------------------------------
   FORTIFIED & VALUE-ADDED FOODS PAGE
   -------------------------------------------------------------------------- */

/* Stat ticker bar — full-width dark band under hero */
.fortified-stat-bar {
  background: var(--color-near-black);
  padding: 1rem 0;
  overflow: hidden;
}
.fortified-stat-bar-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}
.fortified-stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.fortified-stat-item:last-child { border-right: none; }
.fortified-stat-value {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand-gold);
  line-height: 1;
  white-space: nowrap;
}
.fortified-stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.35;
  max-width: 90px;
}

/* Approach pillars — 3-column with large numbered icons */
.fortified-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.fortified-approach-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.38s cubic-bezier(0.25,1,0.5,1);
}
.fortified-approach-card::before {
  content: attr(data-num);
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  font-family: var(--font-headings);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(26,92,42,0.06);
  line-height: 1;
  pointer-events: none;
}
.fortified-approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(26,92,42,0.14);
  border-color: var(--color-brand-green);
}
.fortified-approach-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-green-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(26,92,42,0.25);
}
.fortified-approach-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}
.fortified-approach-title {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.fortified-approach-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  line-height: 1.7;
  margin: 0;
}

/* Featured product spotlight — dark green card with product image */
.fortified-featured-card {
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-green-deep) 100%);
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  position: relative;
  box-shadow: 0 40px 80px rgba(26,92,42,0.22);
}
.fortified-featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.fortified-featured-copy {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.fortified-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,200,0,0.18);
  border: 1px solid rgba(245,200,0,0.35);
  color: var(--color-brand-gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-round);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}
.fortified-featured-title {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.fortified-featured-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  margin: 0 0 2rem;
}
.fortified-featured-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.fortified-featured-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-round);
}
.fortified-featured-img {
  position: relative;
  overflow: hidden;
}
.fortified-featured-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}
.fortified-featured-card:hover .fortified-featured-img img {
  transform: scale(1.04);
}

/* Nutrient micro-bar inside featured card */
.fortified-nutrient-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.fortified-nutrient-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 0.6rem 1rem;
  text-align: center;
  backdrop-filter: blur(8px);
}
.fortified-nutrient-chip strong {
  display: block;
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-brand-gold);
}
.fortified-nutrient-chip span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

/* Applications audience cards — icon + label style */
.fortified-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.fortified-audience-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-card);
  transition: all 0.38s cubic-bezier(0.25,1,0.5,1);
}
.fortified-audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(26,92,42,0.12);
  border-color: var(--color-brand-gold);
}
.fortified-audience-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-brand-gold-pale);
  border: 1px solid rgba(245,200,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fortified-audience-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-brand-gold-dark);
}
.fortified-audience-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin: 0;
  letter-spacing: -0.01em;
}
.fortified-audience-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-charcoal);
  line-height: 1.68;
  margin: 0;
}
.fortified-audience-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-brand-green);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}
.fortified-audience-link:hover { gap: 0.65rem; }
.fortified-audience-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}
.fortified-audience-link:hover svg { transform: translateX(3px); }

/* Governance / responsibility split-block with left accent */
.fortified-governance-block {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-brand-green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2.5rem 2.5rem 2.5rem 2.75rem;
  box-shadow: var(--shadow-card);
}
.fortified-governance-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
.fortified-governance-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  line-height: 1.6;
}
.fortified-governance-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--color-brand-green-light);
  border: 1.5px solid var(--color-brand-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231A5C2A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .fortified-approach-grid { grid-template-columns: repeat(2, 1fr); }
  .fortified-featured-card { grid-template-columns: 1fr; }
  .fortified-featured-img { min-height: 320px; position: relative; }
  .fortified-audience-grid { grid-template-columns: repeat(2, 1fr); }
  .fortified-stat-bar-inner { flex-wrap: wrap; }
  .fortified-stat-item { flex: 0 0 50%; padding: 0.875rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fortified-stat-item:nth-child(even) { border-right: none; }
  .fortified-stat-item:nth-child(n+3) { border-bottom: none; }
  .fortified-governance-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .fortified-approach-grid { grid-template-columns: 1fr; }
  .fortified-audience-grid { grid-template-columns: 1fr; }
  .fortified-featured-copy { padding: 2rem 1.75rem; }
  .fortified-stat-bar-inner { flex-direction: column; gap: 0.5rem; }
  .fortified-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0.75rem 1.25rem; width: 100%; justify-content: center; }
  .fortified-stat-item:last-child { border-bottom: none; }
}

/* --------------------------------------------------------------------------
   CONTACT PAGE
   -------------------------------------------------------------------------- */

/* Info Strip under hero */
.contact-info-strip {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 300px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--color-brand-green-deep);
  color: var(--color-bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
}
.contact-info-text {
  display: flex;
  flex-direction: column;
}
.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-mid-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.contact-info-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-near-black);
  font-weight: 500;
  line-height: 1.4;
}

/* Split Hero Section */
.contact-split-wrapper {
  display: flex;
  background: var(--color-bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  margin-top: 5rem;
  min-height: 500px;
}
.contact-split-content {
  flex: 1;
  padding: 4rem;
  background: var(--color-bg-offwhite);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-split-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}
.contact-pill-float {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 85%;
}
.contact-pill-icon {
  width: 36px;
  height: 36px;
  background: var(--color-brand-gold);
  color: var(--color-near-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-pill-icon svg { width: 18px; height: 18px; }
.contact-pill-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--color-charcoal);
  font-weight: 500;
}

/* Department Contacts (Replacing form) */
.contact-dept-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-dept-item {
  background: var(--color-bg-white);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.contact-dept-item:hover {
  border-color: var(--color-brand-gold);
  box-shadow: 0 4px 15px rgba(245,200,0,0.1);
}
.contact-dept-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin-bottom: 0.5rem;
}
.contact-dept-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

/* Office Locations */
.office-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.office-card {
  border-radius: 24px;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.office-card--hq {
  background: var(--color-brand-green-deep);
  color: var(--color-bg-white);
}
.office-card--hq .office-eyebrow { border-color: rgba(255,255,255,0.3); color: var(--color-bg-white); }
.office-card--hq .office-title { color: var(--color-bg-white); }
.office-card--hq .office-address, .office-card--hq .office-phone { color: rgba(255,255,255,0.85); }
.office-card--hq .office-link { color: var(--color-brand-gold); }

.office-card--branch {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
}
.office-card--branch .office-eyebrow { border-color: var(--color-border); color: var(--color-mid-grey); }
.office-card--branch .office-title { color: var(--color-brand-green-deep); }
.office-card--branch .office-address, .office-card--branch .office-phone { color: var(--color-charcoal); }
.office-card--branch .office-link { color: var(--color-brand-green); }

.office-eyebrow {
  display: inline-flex;
  padding: 0.4rem 1.25rem;
  border-radius: 99px;
  border: 1px solid;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 2rem;
}
.office-title {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.office-address, .office-phone {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.office-link {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 2rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.office-link:hover { opacity: 0.8; }
.office-link svg {
  width: 18px; height: 18px;
  background: currentColor;
  border-radius: 50%;
  color: var(--color-bg-white) !important; /* Force white icon inside the colored circle */
  padding: 3px;
}
.office-card--hq .office-link svg { color: var(--color-brand-green-deep) !important; }

/* Giant Arrow Decoration */
.office-arrow-bg {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 250px;
  height: 250px;
  color: var(--color-brand-gold);
  opacity: 0.9;
  transform: rotate(45deg);
  pointer-events: none;
}

/* Bottom Partner Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.partner-image-card {
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  min-height: 400px;
}
.partner-cta-card {
  border-radius: 24px;
  background: var(--color-brand-gold);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.partner-cta-card .office-eyebrow {
  border-color: rgba(26,92,42,0.2);
  color: var(--color-brand-green-deep);
}
.partner-cta-title {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  line-height: 1.1;
  margin-bottom: 2.5rem;
  max-width: 400px;
}
.partner-cta-card .btn {
  align-self: flex-start;
  padding: 0.8rem 1.5rem;
  border-radius: 99px;
  background: var(--color-brand-green-deep);
  color: var(--color-bg-white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.partner-cta-card .btn svg {
  width: 20px; height: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-split-wrapper { flex-direction: column; }
  .contact-split-image { min-height: 350px; }
  .office-locations-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .partner-image-card { min-height: 300px; }
}
@media (max-width: 640px) {
  .contact-info-strip { gap: 2rem; flex-direction: column; align-items: stretch; }
  .contact-split-content { padding: 2.5rem 1.5rem; }
  .office-card, .partner-cta-card { padding: 2.5rem 1.5rem; }
  .partner-cta-title { font-size: 2rem; }
  .contact-pill-float { bottom: 1rem; left: 1rem; right: 1rem; width: auto; max-width: none; }
}

/* --------------------------------------------------------------------------
   FAQ PAGE REDESIGN
   -------------------------------------------------------------------------- */

/* Split Layout */
.faq-split-wrapper {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 3rem;
  position: relative;
}

/* Sidebar Navigation */
.faq-sidebar {
  flex: 0 0 280px;
  position: sticky;
  top: 120px; /* offset for fixed header */
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
}
.faq-sidebar-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}
.faq-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.faq-nav-link:hover {
  background: var(--color-bg-offwhite);
  color: var(--color-brand-green-deep);
}
.faq-nav-link.active {
  background: var(--color-brand-green-deep);
  color: var(--color-bg-white);
}

/* Accordion Content Area */
.faq-content-area {
  flex: 1;
  min-width: 0;
}
.faq-category-section {
  margin-bottom: 4rem;
  scroll-margin-top: 140px; /* Prevents sticky header overlapping */
}
.faq-category-header {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.faq-category-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

/* Custom Accordion Items */
.custom-faq-item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.custom-faq-item:hover {
  border-color: var(--color-brand-gold);
  box-shadow: 0 4px 20px rgba(26,92,42,0.06);
}
.custom-faq-item.is-open {
  border-color: var(--color-brand-green);
  box-shadow: 0 8px 30px rgba(26,92,42,0.08);
}
.custom-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.custom-faq-question-text {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-near-black);
  padding-right: 1.5rem;
  transition: color 0.3s ease;
}
.custom-faq-item.is-open .custom-faq-question-text {
  color: var(--color-brand-green-deep);
}
.custom-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-bg-offwhite);
  color: var(--color-brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.custom-faq-item:hover .custom-faq-icon {
  background: var(--color-brand-gold);
  color: var(--color-bg-white);
}
.custom-faq-item.is-open .custom-faq-icon {
  background: var(--color-brand-green-deep);
  color: var(--color-bg-white);
  transform: rotate(180deg);
}

.custom-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-faq-answer-inner {
  padding: 0 1.75rem 1.5rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-charcoal);
}

/* FAQ Bottom CTA */
.faq-cta-block {
  background: var(--color-brand-green-deep);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  margin-top: 5rem;
  color: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}
.faq-cta-block::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--color-brand-gold);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}
.faq-cta-title {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-bg-white);
}
.faq-cta-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-split-wrapper { flex-direction: column; gap: 2rem; }
  .faq-sidebar {
    position: static;
    flex: none;
    width: 100%;
    padding: 1.5rem;
  }
  .faq-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .faq-nav-link {
    background: var(--color-bg-offwhite);
    border: 1px solid var(--color-border);
    border-radius: 99px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 640px) {
  .custom-faq-question { padding: 1.25rem; }
  .custom-faq-answer-inner { padding: 0 1.25rem 1.25rem 1.25rem; }
  .faq-cta-block { padding: 2rem 1.5rem; }
  .faq-category-header { font-size: 1.5rem; }
}
}

/* --------------------------------------------------------------------------
   DISTRIBUTORS PAGE REDESIGN
   -------------------------------------------------------------------------- */

/* Manifesto Intro */
.distributor-manifesto {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 3rem 0;
}
.distributor-manifesto::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-brand-gold);
  margin: 2rem auto 0;
  border-radius: 2px;
}

/* Benefits Grid (Icon Cards) */
.distributor-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.distributor-benefit-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.distributor-benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-brand-gold);
  box-shadow: 0 12px 40px rgba(26,92,42,0.08);
}
.distributor-benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(245,200,0,0.1);
  color: var(--color-brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}
.distributor-benefit-card:hover .distributor-benefit-icon {
  background: var(--color-brand-gold);
  color: var(--color-bg-white);
}
.distributor-benefit-card h3 {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  margin-bottom: 0.75rem;
}
.distributor-benefit-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin: 0;
}

/* Expectations Checklist */
.distributor-checklist-block {
  background: var(--color-brand-green-deep);
  border-radius: 20px;
  padding: 4rem;
  color: var(--color-bg-white);
  position: relative;
  overflow: hidden;
}
.distributor-checklist-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url('../logo_watermark.svg') no-repeat right center;
  background-size: 60%;
  opacity: 0.05;
  pointer-events: none;
}
.distributor-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}
.distributor-check-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.distributor-check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brand-gold);
  color: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.distributor-check-item h4 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-bg-white);
  margin-bottom: 0.5rem;
}
.distributor-check-item p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

/* Support Vertical Cards */
.distributor-support-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.distributor-support-card {
  background: var(--color-bg-white);
  border-left: 4px solid var(--color-brand-gold);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}
.distributor-support-card:hover {
  transform: translateX(8px);
}
.distributor-support-card h4 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin-bottom: 0.5rem;
}
.distributor-support-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  margin: 0;
}

/* Huge CTA Banner */
.distributor-mega-cta {
  background: var(--color-brand-green);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26,92,42,0.15);
}
.distributor-mega-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,200,0,0.15) 0%, rgba(245,200,0,0) 70%);
  pointer-events: none;
}
.distributor-mega-cta h2 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-bg-white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.distributor-mega-cta p {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
}
.distributor-mega-cta .btn-mega {
  background: var(--color-brand-gold);
  color: var(--color-bg-white);
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 1.25rem 2.5rem;
  border-radius: 99px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(245,200,0,0.3);
}
.distributor-mega-cta .btn-mega:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245,200,0,0.4);
  background: #ffdb33;
}
.distributor-mega-cta .btn-mega svg {
  width: 24px; height: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .distributor-checklist-grid { grid-template-columns: 1fr; gap: 2rem; }
  .distributor-checklist-block { padding: 3rem; }
}
@media (max-width: 768px) {
  .distributor-benefits-grid { grid-template-columns: 1fr; }
  .distributor-mega-cta { padding: 3rem 1.5rem; }
  .distributor-mega-cta h2 { font-size: 2rem; }
}

/* --------------------------------------------------------------------------
   INSTITUTIONS PAGE REDESIGN
   -------------------------------------------------------------------------- */

/* Scope Grid — 3 audience cards */
.institution-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.institution-scope-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.institution-scope-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-brand-green);
  box-shadow: 0 16px 40px rgba(26,92,42,0.10);
}
.institution-scope-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(26,92,42,0.08);
  color: var(--color-brand-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.35s ease;
}
.institution-scope-card:hover .institution-scope-icon {
  background: var(--color-brand-green-deep);
  color: var(--color-bg-white);
}
.institution-scope-card h3 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  margin-bottom: 0.75rem;
}
.institution-scope-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin: 0;
}

/* How We Work — Numbered Timeline */
.institution-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.institution-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: var(--color-brand-gold);
  z-index: 0;
}
.institution-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.institution-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-brand-green-deep);
  color: var(--color-bg-white);
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--color-brand-gold);
  transition: all 0.3s ease;
}
.institution-step:hover .institution-step-num {
  background: var(--color-brand-gold);
  border-color: var(--color-brand-green-deep);
}
.institution-step h4 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-near-black);
  margin-bottom: 0.5rem;
}
.institution-step p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  line-height: 1.55;
  margin: 0;
}

/* Regional Stats Bar */
.institution-stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--color-brand-green-deep);
  border-radius: 16px;
  overflow: hidden;
  margin: 3rem 0;
}
.institution-stat-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}
.institution-stat-item:last-child { border-right: none; }
.institution-stat-item:hover { background: rgba(255,255,255,0.05); }
.institution-stat-num {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-brand-gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.institution-stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

/* Quality & Compliance items */
.institution-quality-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.institution-quality-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg-offwhite);
  border-radius: 10px;
  border-left: 4px solid var(--color-brand-green-deep);
  transition: all 0.3s ease;
}
.institution-quality-item:hover {
  background: var(--color-bg-white);
  box-shadow: 0 4px 20px rgba(26,92,42,0.07);
  transform: translateX(4px);
}
.institution-quality-item svg {
  width: 22px;
  height: 22px;
  color: var(--color-brand-green-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.institution-quality-item p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  margin: 0;
  line-height: 1.55;
}
.institution-quality-item strong {
  color: var(--color-near-black);
  display: block;
  font-family: var(--font-headings);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

/* Institutions Mega CTA */
.institution-mega-cta {
  background: linear-gradient(135deg, var(--color-brand-green-deep) 0%, var(--color-brand-green) 100%);
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,92,42,0.2);
}
.institution-mega-cta::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,200,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.institution-mega-cta::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,200,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.institution-mega-cta .eyebrow-gold {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.institution-mega-cta h2 {
  font-family: var(--font-headings);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-bg-white);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}
.institution-mega-cta > p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 2;
  line-height: 1.65;
}
.institution-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.btn-gold-solid {
  background: var(--color-brand-gold);
  color: #fff;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 1.1rem 2.25rem;
  border-radius: 99px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(245,200,0,0.35);
  transition: all 0.3s ease;
}
.btn-gold-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245,200,0,0.45);
  background: #ffd700;
}
.btn-white-outline {
  background: transparent;
  color: #fff;
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1.1rem 2.25rem;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-3px);
}
.btn-gold-solid svg, .btn-white-outline svg { width: 20px; height: 20px; }

/* Responsive */
@media (max-width: 1024px) {
  .institution-scope-grid { grid-template-columns: repeat(2, 1fr); }
  .institution-timeline { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .institution-timeline::before { display: none; }
  .institution-stat-bar { grid-template-columns: repeat(2, 1fr); }
  .institution-stat-item:nth-child(2) { border-right: none; }
  .institution-stat-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 640px) {
  .institution-scope-grid { grid-template-columns: 1fr; }
  .institution-timeline { grid-template-columns: 1fr; }
  .institution-stat-bar { grid-template-columns: 1fr; }
  .institution-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .institution-stat-item:last-child { border-bottom: none; }
  .institution-mega-cta { padding: 3rem 1.5rem; }
  .institution-mega-cta h2 { font-size: 2rem; }
}

/* --------------------------------------------------------------------------
   NUTRITION INFO PAGE REDESIGN
   -------------------------------------------------------------------------- */

/* Approach Pillar Cards */
.nutrition-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.nutrition-pillar-card {
  background: var(--color-bg-white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border-top: 4px solid var(--color-brand-gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: all 0.35s ease;
}
.nutrition-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,92,42,0.09);
  border-top-color: var(--color-brand-green-deep);
}
.nutrition-pillar-num {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26,92,42,0.08);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.35s ease;
}
.nutrition-pillar-card:hover .nutrition-pillar-num {
  color: rgba(245,200,0,0.25);
}
.nutrition-pillar-card h3 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  margin-bottom: 0.75rem;
}
.nutrition-pillar-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  line-height: 1.65;
  margin: 0;
}

/* Disclaimer chip */
.nutrition-disclaimer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,200,0,0.12);
  border: 1px solid rgba(245,200,0,0.35);
  border-radius: 99px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-charcoal);
  margin-top: 2rem;
}
.nutrition-disclaimer-chip svg {
  width: 16px; height: 16px;
  color: var(--color-brand-gold);
  flex-shrink: 0;
}

/* Download Spec Cards */
.nutrition-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.nutrition-spec-card {
  background: var(--color-bg-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}
.nutrition-spec-card:hover {
  border-color: var(--color-brand-gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(26,92,42,0.09);
}
.nutrition-spec-card-header {
  padding: 1.5rem 2rem;
  background: var(--color-brand-green-deep);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nutrition-spec-card-header svg {
  width: 28px;
  height: 28px;
  color: var(--color-brand-gold);
  flex-shrink: 0;
}
.nutrition-spec-card-header h3 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-bg-white);
  margin: 0;
}
.nutrition-spec-card-body {
  padding: 1.75rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nutrition-spec-card-body p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}
.nutrition-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.nutrition-spec-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-brand-green-deep);
  background: rgba(26,92,42,0.07);
  border-radius: 99px;
  padding: 0.3rem 0.75rem;
  font-weight: 600;
}
.nutrition-spec-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand-green-deep);
  text-decoration: none;
  border: 2px solid var(--color-brand-green-deep);
  border-radius: 99px;
  padding: 0.65rem 1.25rem;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.nutrition-spec-btn:hover {
  background: var(--color-brand-green-deep);
  color: var(--color-bg-white);
}
.nutrition-spec-btn svg { width: 16px; height: 16px; }

/* Guidance Table-List */
.nutrition-guidance-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.nutrition-guidance-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-bg-white);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.nutrition-guidance-row:hover {
  border-color: var(--color-brand-gold);
  box-shadow: 0 6px 24px rgba(26,92,42,0.06);
}
.nutrition-guidance-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245,200,0,0.1);
  color: var(--color-brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nutrition-guidance-icon svg { width: 22px; height: 22px; }
.nutrition-guidance-text h4 {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.3rem;
}
.nutrition-guidance-text p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  margin: 0;
  line-height: 1.5;
}

/* Using This Info / Disclaimer Block */
.nutrition-usage-block {
  background: var(--color-bg-offwhite);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.nutrition-usage-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--color-brand-green-deep);
  color: var(--color-brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nutrition-usage-icon svg { width: 40px; height: 40px; }
.nutrition-usage-text { flex: 1; min-width: 200px; }
.nutrition-usage-text h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  margin-bottom: 0.75rem;
}
.nutrition-usage-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .nutrition-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .nutrition-spec-grid { grid-template-columns: repeat(2, 1fr); }
  .nutrition-usage-block { flex-direction: column; gap: 2rem; }
}
@media (max-width: 640px) {
  .nutrition-pillars-grid { grid-template-columns: 1fr; }
  .nutrition-spec-grid { grid-template-columns: 1fr; }
  .nutrition-usage-block { padding: 2rem 1.5rem; }
}

/* --------------------------------------------------------------------------
   NUTS & KERNELS PAGE REDESIGN
   -------------------------------------------------------------------------- */

/* Products Grid */
.nuts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.nuts-card {
  background: var(--color-bg-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,92,42,0.04);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}
.nuts-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(26,92,42,0.12);
  border-color: var(--color-brand-green);
}
.nuts-card-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.nuts-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}
.nuts-card:hover .nuts-card-image {
  transform: scale(1.05);
}
.nuts-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,48,24,0.6) 0%, transparent 60%);
}
.nuts-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--color-brand-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.nuts-card-content {
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nuts-card-title {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  margin-bottom: 1rem;
}
.nuts-card-description {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: var(--color-charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.nuts-card-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--color-border);
}
.nuts-spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-mid-grey);
}
.nuts-spec-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-brand-green);
  flex-shrink: 0;
}

/* Sourcing Timeline Info Cards */
.nuts-info-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.nuts-info-pill {
  background: var(--color-bg-white);
  border-left: 4px solid var(--color-brand-green);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.nuts-info-pill:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(26,92,42,0.06);
}
.nuts-info-pill h4 {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-brand-green-deep);
  margin-bottom: 0.25rem;
}
.nuts-info-pill p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  margin: 0;
}

/* Markets Grid */
.nuts-market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.nuts-market-card {
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.nuts-market-card:hover {
  border-color: var(--color-brand-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26,92,42,0.08);
}
.nuts-market-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-brand-green-light);
  color: var(--color-brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.35s ease;
}
.nuts-market-card:hover .nuts-market-icon {
  background: var(--color-brand-green);
  color: var(--color-bg-white);
}
.nuts-market-icon svg {
  width: 24px;
  height: 24px;
}
.nuts-market-card h3 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  margin-bottom: 0.75rem;
}
.nuts-market-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  line-height: 1.5;
  margin: 0;
}
.nuts-market-card.highlight {
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-green-deep) 100%);
  border-color: transparent;
  color: var(--color-bg-white);
}
.nuts-market-card.highlight h3 {
  color: var(--color-bg-white);
}
.nuts-market-card.highlight p {
  color: rgba(255,255,255,0.85);
}
.nuts-market-card.highlight .nuts-market-icon {
  background: rgba(255,255,255,0.15);
  color: var(--color-brand-gold);
}

/* Quote/Quote section */
.nuts-quote-container {
  position: relative;
  background: var(--color-brand-gold-pale);
  border-radius: 24px;
  padding: 4rem 3rem;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(26,92,42,0.03);
}
.nuts-quote-watermark {
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--font-headings);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(26,92,42,0.05);
  line-height: 1;
  user-select: none;
}
.nuts-quote-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-brand-green-deep);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .nuts-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nuts-market-grid { grid-template-columns: repeat(2, 1fr); }
  .nuts-info-pill-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nuts-market-grid { grid-template-columns: 1fr; }
  .nuts-quote-container { padding: 3rem 1.5rem; }
  .nuts-quote-text { font-size: 1.15rem; }
  .nuts-card-content { padding: 1.75rem; }
  .nuts-card-specs { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   GRAINS & SEEDS PAGE REDESIGN
   -------------------------------------------------------------------------- */

/* Products Grid */
.grains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
.grains-card {
  background: var(--color-bg-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,92,42,0.04);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}
.grains-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(26,92,42,0.12);
  border-color: var(--color-brand-green);
}
.grains-card-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.grains-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}
.grains-card:hover .grains-card-image {
  transform: scale(1.05);
}
.grains-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,48,24,0.6) 0%, transparent 60%);
}
.grains-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--color-brand-gold);
  color: var(--color-bg-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.grains-card-content {
  padding: 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.grains-card-title {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  margin-bottom: 0.75rem;
}
.grains-card-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-charcoal);
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
}

/* Sourcing Info Cards */
.grains-info-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.grains-info-pill {
  background: var(--color-bg-white);
  border-left: 4px solid var(--color-brand-green);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.grains-info-pill:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(26,92,42,0.06);
}
.grains-info-pill h4 {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-brand-green-deep);
  margin-bottom: 0.25rem;
}
.grains-info-pill p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  margin: 0;
}

/* Markets Grid */
.grains-market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.grains-market-card {
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.grains-market-card:hover {
  border-color: var(--color-brand-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26,92,42,0.08);
}
.grains-market-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--color-brand-green-light);
  color: var(--color-brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.35s ease;
}
.grains-market-card:hover .grains-market-icon {
  background: var(--color-brand-green);
  color: var(--color-bg-white);
}
.grains-market-icon svg {
  width: 24px;
  height: 24px;
}
.grains-market-card h3 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-brand-green-deep);
  margin-bottom: 0.75rem;
}
.grains-market-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  line-height: 1.5;
  margin: 0;
}
.grains-market-card.highlight {
  background: linear-gradient(135deg, var(--color-brand-green) 0%, var(--color-brand-green-deep) 100%);
  border-color: transparent;
  color: var(--color-bg-white);
}
.grains-market-card.highlight h3 {
  color: var(--color-bg-white);
}
.grains-market-card.highlight p {
  color: rgba(255,255,255,0.85);
}
.grains-market-card.highlight .grains-market-icon {
  background: rgba(255,255,255,0.15);
  color: var(--color-brand-gold);
}

/* Quote/Quote section */
.grains-quote-container {
  position: relative;
  background: var(--color-brand-gold-pale);
  border-radius: 24px;
  padding: 4rem 3rem;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 4px 30px rgba(26,92,42,0.03);
}
.grains-quote-watermark {
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--font-headings);
  font-size: 10rem;
  font-weight: 900;
  color: rgba(26,92,42,0.05);
  line-height: 1;
  user-select: none;
}
.grains-quote-text {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-brand-green-deep);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .grains-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grains-market-grid { grid-template-columns: repeat(2, 1fr); }
  .grains-info-pill-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grains-market-grid { grid-template-columns: 1fr; }
  .grains-quote-container { padding: 3rem 1.5rem; }
  .grains-quote-text { font-size: 1.15rem; }
  .grains-card-content { padding: 1.75rem; }
}


/* ================================================================
   SEARCH RESULTS PAGE
   ================================================================ */

/* Search Bar on Results Page */
.search-results-bar {
  max-width: 720px;
  margin: 0 auto 3rem;
}
.search-results-form {
  width: 100%;
}
.search-results-input-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-bg-white);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  padding: 0.75rem 1.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-results-input-wrapper:focus-within {
  border-color: var(--color-brand-green);
  box-shadow: 0 0 0 4px rgba(26, 92, 42, 0.08);
}
.search-results-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-near-black);
  background: transparent;
}
.search-results-input::placeholder {
  color: var(--color-mid-grey);
}
.search-results-submit {
  background: var(--color-brand-green);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.search-results-submit:hover {
  background: #14532d;
  transform: translateY(-1px);
}

/* Results Grid */
.search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Individual Result Card */
.search-result-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.search-result-card:hover {
  border-color: var(--color-brand-green);
  box-shadow: 0 12px 32px rgba(26, 92, 42, 0.08);
  transform: translateY(-2px);
}
.search-result-card-inner {
  padding: 2rem 2.25rem;
}

/* Type Badge */
.search-result-type {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-green);
  background: rgba(26, 92, 42, 0.06);
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

/* Result Title */
.search-result-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.search-result-title a {
  color: var(--color-near-black);
  text-decoration: none;
  transition: color 0.2s ease;
}
.search-result-title a:hover {
  color: var(--color-brand-green);
}

/* Excerpt */
.search-result-excerpt {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  line-height: 1.7;
  margin: 0 0 0.75rem;
}

/* Search Term Highlighting */
.search-highlight,
mark.search-highlight {
  background: var(--color-brand-gold);
  color: var(--color-near-black);
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  font-weight: 600;
}

/* URL Preview */
.search-result-url {
  display: block;
  font-size: 0.8rem;
  color: var(--color-mid-grey);
  margin-bottom: 1rem;
  word-break: break-all;
}

/* Read More Link */
.search-result-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-brand-green);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.search-result-link:hover {
  gap: 0.75rem;
  color: #14532d;
}

/* Pagination */
.search-pagination {
  display: flex;
  justify-content: center;
}
.search-pagination-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-pagination-item a,
.search-pagination-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  color: var(--color-charcoal);
  text-decoration: none;
  transition: all 0.2s ease;
}
.search-pagination-item a:hover {
  border-color: var(--color-brand-green);
  color: var(--color-brand-green);
  background: rgba(26, 92, 42, 0.04);
}
.search-pagination-item span.current {
  background: var(--color-brand-green);
  color: #ffffff;
  border-color: var(--color-brand-green);
}

/* Suggestion Chips (No Results State) */
.search-suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.search-suggestion-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-near-black);
  background: rgba(26, 92, 42, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 99px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.search-suggestion-chip:hover {
  background: var(--color-brand-green);
  color: #ffffff;
  border-color: var(--color-brand-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 92, 42, 0.15);
}

/* ── Dark Mode Overrides ── */
body.dark-mode-active .search-results-input-wrapper {
  background: var(--color-bg-dark);
  border-color: rgba(255, 255, 255, 0.12);
}
body.dark-mode-active .search-results-input {
  color: #e0e0e0;
}
body.dark-mode-active .search-result-card {
  background: var(--color-bg-dark);
  border-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode-active .search-result-title a {
  color: #f0f0f0;
}
body.dark-mode-active .search-result-excerpt {
  color: rgba(255, 255, 255, 0.75);
}
body.dark-mode-active .search-result-url {
  color: rgba(255, 255, 255, 0.4);
}
body.dark-mode-active .search-suggestion-chip {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e0e0e0;
}
body.dark-mode-active .search-pagination-item a,
body.dark-mode-active .search-pagination-item span {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .search-result-card-inner {
    padding: 1.5rem;
  }
  .search-result-title {
    font-size: 1.15rem;
  }
  .search-results-input-wrapper {
    flex-wrap: wrap;
  }
  .search-results-submit {
    width: 100%;
  }
}

/* ==========================================================================
   PAGE.PHP — GENERIC PAGE CONTENT
   ========================================================================== */
.page-article {
  padding-top: 2rem;
}
.page-content-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--color-charcoal);
}
.page-content-body h2 {
  font-family: var(--font-headings);
  font-size: var(--type-h2);
  font-weight: 800;
  color: var(--color-near-black);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.page-content-body h3 {
  font-family: var(--font-headings);
  font-size: var(--type-h3);
  font-weight: 700;
  color: var(--color-near-black);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.page-content-body p { margin-bottom: 1.25rem; }
.page-content-body a {
  color: var(--color-brand-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content-body a:hover { color: var(--color-brand-green-deep); }
.page-content-body ul,
.page-content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.page-content-body li { margin-bottom: 0.4rem; }
.page-content-body blockquote {
  border-left: 4px solid var(--color-brand-green);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--color-brand-green-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.1rem;
  color: var(--color-brand-green-deep);
  font-style: italic;
}
.page-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.page-link-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: var(--t-fast);
}
.page-link-item a:hover,
.page-link-item a.current {
  background: var(--color-brand-green);
  border-color: var(--color-brand-green);
  color: #fff;
}

/* Dark mode - page content */
body.dark-mode-active .page-content-body {
  color: rgba(255,255,255,0.82) !important;
}
body.dark-mode-active .page-content-body h2,
body.dark-mode-active .page-content-body h3 {
  color: #f1f5f9 !important;
}

/* ==========================================================================
   SINGLE.PHP — SINGLE POST
   ========================================================================== */

/* Featured image panel */
.single-post-thumbnail {
  margin: 0;
  border-radius: var(--card-r);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,92,42,0.14);
  max-height: 520px;
}
.single-post-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Post body */
.single-post-article { padding-top: 1.5rem; }
.single-post-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--color-charcoal);
}
.single-post-body h2 {
  font-family: var(--font-headings);
  font-size: var(--type-h2);
  font-weight: 800;
  color: var(--color-near-black);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.single-post-body h3 {
  font-family: var(--font-headings);
  font-size: var(--type-h3);
  font-weight: 700;
  color: var(--color-near-black);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.single-post-body p { margin-bottom: 1.375rem; }
.single-post-body a {
  color: var(--color-brand-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.single-post-body blockquote {
  border-left: 4px solid var(--color-brand-green);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--color-brand-green-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-brand-green-deep);
}
.single-post-body img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

/* Post footer — tags + author */
.single-post-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

/* Tags */
.post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.post-tags-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-mid-grey);
  margin-right: 0.25rem;
}
.post-tag-chip {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-round);
  background: var(--color-brand-green-light);
  border: 1px solid var(--color-border);
  color: var(--color-brand-green-deep);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--t-fast);
}
.post-tag-chip:hover {
  background: var(--color-brand-green);
  color: #fff;
  border-color: transparent;
}

/* Author card */
.post-author-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-bg-sage);
  border-radius: var(--card-r);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}
.post-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--color-brand-green-light);
}
.post-author-info { flex: 1; }
.post-author-name {
  display: block;
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 0.25rem;
}
.post-author-bio {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-mid-grey);
  line-height: 1.65;
  margin: 0;
}

/* Post navigation (prev/next) */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  display: flex;
}
.post-navigation .nav-next { justify-content: flex-end; text-align: right; }
.post-navigation a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--t-fast);
  max-width: 260px;
}
.post-navigation a:hover {
  background: var(--color-brand-green-light);
  border-color: var(--color-brand-green);
}
.post-navigation .nav-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-green);
}
.post-navigation .nav-title {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-near-black);
  line-height: 1.3;
}

/* ==========================================================================
   ARCHIVE.PHP — POST GRID
   ========================================================================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.blog-card {
  background: var(--color-bg-white);
  border-radius: var(--card-r);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--t-card);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26,92,42,0.14);
  border-color: transparent;
}
.blog-card-thumbnail-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--color-bg-sage);
}
.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25,1,0.5,1);
}
.blog-card:hover .post-thumbnail img { transform: scale(1.05); }

.post-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category pill on card */
.post-category-pill {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-round);
  background: var(--color-brand-green-light);
  color: var(--color-brand-green-deep);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.entry-title {
  font-family: var(--font-headings);
  font-size: var(--type-h3);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
.entry-title a {
  color: var(--color-near-black);
  text-decoration: none;
  transition: color 0.2s;
}
.entry-title a:hover { color: var(--color-brand-green); }

.entry-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-mid-grey);
  margin-bottom: 0.875rem;
}
.entry-sep { opacity: 0.4; }
.entry-summary {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  line-height: 1.72;
  margin-bottom: 1.25rem;
  flex: 1;
}
.entry-footer { margin-top: auto; }
.read-more-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--t-fast);
}
.read-more-link:hover {
  color: var(--color-brand-green-deep);
  gap: 0.5rem;
}

/* Archive pagination */
.archive-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: var(--t-fast);
}
.archive-pagination .page-numbers:hover {
  background: var(--color-brand-green-light);
  border-color: var(--color-brand-green);
  color: var(--color-brand-green);
}
.archive-pagination .page-numbers.current {
  background: var(--color-brand-green);
  border-color: var(--color-brand-green);
  color: #fff;
  font-weight: 700;
}

/* ==========================================================================
   COMMENTS.PHP — COMMENTS AREA
   ========================================================================== */
.comments-area {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
}
.comments-title {
  font-family: var(--font-headings);
  font-size: var(--type-h3);
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 2rem;
}
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
}
.comment-list .comment {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-sage);
  margin-bottom: 1rem;
}
.comment-list .children {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  padding-left: 2rem;
  border-left: 3px solid var(--color-brand-green-light);
}
.comment-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}
.comment-author img {
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
}
.comment-author .fn {
  font-family: var(--font-headings);
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--color-near-black);
  text-decoration: none;
}
.comment-metadata {
  font-family: var(--font-body);
  font-size: 0.775rem;
  color: var(--color-mid-grey);
}
.comment-metadata a {
  color: var(--color-mid-grey);
  text-decoration: none;
}
.comment-content p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  line-height: 1.72;
  margin: 0;
}
.no-comments {
  font-family: var(--font-body);
  color: var(--color-mid-grey);
  font-style: italic;
  margin-bottom: 2rem;
}

/* Comment form */
.comment-respond {
  background: var(--color-bg-sage);
  border-radius: var(--card-r);
  border: 1px solid var(--color-border);
  padding: 2rem;
}
.comment-reply-title {
  font-family: var(--font-headings);
  font-size: var(--type-h3);
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 1.5rem;
}
.comment-form p { margin-bottom: 1.25rem; }
.comment-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--color-brand-green);
  box-shadow: 0 0 0 3px rgba(26,92,42,0.08);
}
.comment-form textarea { min-height: 140px; resize: vertical; }
.comment-form .btn { margin-top: 0.5rem; }
.comment-form .required { color: var(--color-brand-green); margin-left: 2px; }

/* Dark mode - comments */
body.dark-mode-active .comment-list .comment {
  background: #1e293b !important;
  border-color: #334155 !important;
}
body.dark-mode-active .comments-title,
body.dark-mode-active .comment-author .fn,
body.dark-mode-active .comment-content p {
  color: #f1f5f9 !important;
}
body.dark-mode-active .comment-respond {
  background: #1e293b !important;
  border-color: #334155 !important;
}
body.dark-mode-active .comment-form input,
body.dark-mode-active .comment-form textarea {
  background: #0f172a !important;
  border-color: #334155 !important;
  color: #f1f5f9 !important;
}

/* ==========================================================================
   RESPONSIVE — New Templates
   ========================================================================== */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .post-navigation { grid-template-columns: 1fr; }
  .post-navigation .nav-next { justify-content: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .posts-grid { grid-template-columns: 1fr; }
  .single-post-thumbnail { max-height: 260px; }
  .post-author-card { flex-direction: column; }
  .comment-respond { padding: 1.25rem; }
  .comment-list .children { padding-left: 1rem; }
}
