/* HarvestWay Traders — Design tokens */
:root {
  --c-primary: #1E6B3A;
  --c-primary-hover: #185A31;
  --c-primary-deep: #155A32;
  --c-secondary: #3B8F52;
  --c-accent: #D4AF37;
  --hwt-gold: #D4AF37;

  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --c-bg: #F7F9F7;
  --c-bg-dark: #102A18;
  --c-surface: #FFFFFF;
  --c-text: #3C3C3C;
  --c-text-secondary: #5A5A5A;
  --c-text-muted: #7A7A7A;
  --c-border-subtle: rgba(0, 0, 0, 0.06);

  --font-heading: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Bebas Neue', 'Manrope', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;

  --container: 1280px;
  --gutter: clamp(1rem, 3vw, 1.5rem);

  --navbar-torn-h: 0px;
  --header-topbar-h: 88px;
  --header-navbar-h: 78px;
  --header-h: 166px;
  --header-topbar-h-scrolled: 72px;
  --header-navbar-h-scrolled: 72px;
  --header-h-scrolled: 144px;

  --r-sm: 12px;
  --r-md: 18px;
  --r-full: 9999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur: 350ms;
}

@media (min-width: 993px) {
  :root {
    --header-navbar-h: 76px;
    --header-navbar-h-scrolled: 68px;
    --header-h: 164px;
    --header-h-scrolled: 140px;
  }
}

@media (max-width: 992px) {
  :root {
    --header-navbar-h: 0px;
    --header-navbar-h-scrolled: 0px;
    --header-h: var(--header-topbar-h);
    --header-h-scrolled: var(--header-topbar-h-scrolled);
  }
}

@media (max-width: 767px) {
  :root {
    --header-topbar-h: 76px;
    --header-topbar-h-scrolled: 70px;
    --header-h: var(--header-topbar-h);
    --header-h-scrolled: var(--header-topbar-h-scrolled);
  }
}

/* HarvestWay Traders — Base layout (header preview) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

img:not(.hwt-logo-badge__img) { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10001;
  padding: 0.5rem 1rem;
  background: var(--c-primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus { top: 1rem; }

.hwt-preview-scroll {
  min-height: 40vh;
  padding: 4rem 1.5rem;
  text-align: center;
  background: #fff;
  border-top: 1px solid var(--c-border-subtle);
}

.hwt-preview-scroll p { color: var(--c-text-muted); font-size: 0.9375rem; }

/* HarvestWay Traders — Header buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur) var(--ease);
}

.btn svg { flex-shrink: 0; }

.btn--pill {
  border-radius: var(--r-full);
  padding: 0.6875rem 1.375rem;
  font-size: 0.8125rem;
}

.btn--pill-quote {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 107, 58, 0.25);
}

.btn--pill-quote:hover {
  background: var(--c-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 107, 58, 0.32);
}

.btn--pill-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}

.btn--pill-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — Header (reference-inspired horizontal category nav)
   ========================================================================== */

/* Logo — white box, fits top bar height (horizontal mark + text) */

.hwt-logo-badge {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  background: #fff;
  border-radius: 0 0 var(--r-md) 0;
  box-shadow:
    4px 4px 20px rgba(16, 42, 24, 0.08),
    0 1px 0 rgba(0, 0, 0, 0.04);
}

.hwt-logo-badge__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  height: 100%;
  padding: 0.375rem 0.625rem 0.375rem 0.5rem;
  color: var(--c-bg-dark);
  text-decoration: none;
}

.hwt-logo-badge__img {
  flex-shrink: 0;
  display: block;
  width: auto;
  height: calc(var(--header-topbar-h) - 14px);
  max-width: min(200px, 28vw);
  max-height: calc(100% - 0.25rem);
  object-fit: contain;
  object-position: left center;
  transition: height 0.35s var(--ease), max-width 0.35s var(--ease);
}

.hwt-site-header.is-scrolled .hwt-logo-badge__img {
  height: calc(var(--header-topbar-h-scrolled) - 12px);
  max-width: min(185px, 26vw);
}

@media (min-width: 993px) {
  .hwt-logo-badge__link {
    padding: 0.4375rem 0.75rem 0.4375rem 0.625rem;
  }

  .hwt-logo-badge__img {
    height: calc(var(--header-topbar-h) - 16px);
    max-width: min(210px, 22vw);
  }

  .hwt-site-header.is-scrolled .hwt-logo-badge__img {
    height: calc(var(--header-topbar-h-scrolled) - 14px);
    max-width: min(195px, 20vw);
  }
}

.hwt-logo-badge__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.125rem;
  min-width: 0;
  line-height: 1.15;
}

.hwt-logo-badge__name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-primary-deep);
  white-space: nowrap;
}

.hwt-logo-badge__tag {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.hwt-site-header.is-scrolled .hwt-logo-badge__name {
  font-size: 0.8125rem;
}

.hwt-site-header.is-scrolled .hwt-logo-badge__tag {
  font-size: 0.5rem;
}

.hwt-site-header.is-scrolled .hwt-logo-badge__link {
  gap: 0.5rem;
  padding-inline: 0.75rem;
}

.hwt-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  font-family: var(--font-body);
  transition: box-shadow 0.35s var(--ease);
  isolation: isolate;
}

.hwt-site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(16, 42, 24, 0.1);
}

.hwt-site-header.is-scrolled .hwt-navbar {
  border-bottom: 1px solid rgba(16, 42, 24, 0.08);
}

.hwt-site-header.is-scrolled .hwt-navbar::after {
  display: none;
}

.hwt-site-header.is-over-hero .hwt-navbar {
  border-bottom: none;
}

/* ── Header shell ──────────────────────────────────────────────────────── */

.hwt-header-shell {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  overflow: visible;
}

/* ── Top bar — full width, logo is first child inside ────────────────────── */

.hwt-topbar {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: var(--header-topbar-h);
  background: var(--c-primary-deep);
  color: rgba(255, 255, 255, 0.92);
  transition: height 0.35s var(--ease);
}

.hwt-site-header.is-scrolled .hwt-topbar {
  height: var(--header-topbar-h-scrolled);
}

.hwt-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  gap: 1rem;
  height: 100%;
  padding-inline: clamp(1rem, 2vw, 1.75rem);
}

.hwt-topbar__contact {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: clamp(0.5rem, 1.5vw, 1rem);
}

.hwt-topbar__contact-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  min-width: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.hwt-topbar__contact-item:hover { color: #fff; }

.hwt-topbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c-accent) 0%, #B8942E 100%);
  color: var(--c-bg-dark);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.35);
  transition: transform var(--dur-fast) var(--ease);
}

.hwt-topbar__icon svg { width: 0.875rem; height: 0.875rem; }

.hwt-topbar__contact-item:hover .hwt-topbar__icon { transform: scale(1.06); }

.hwt-topbar__contact-label {
  display: none;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 993px) {
  .hwt-topbar__inner {
    gap: 1.25rem;
    padding-inline: clamp(1rem, 2vw, 1.75rem) clamp(1rem, 1.5vw, 1.25rem);
  }

  .hwt-topbar__contact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 0.75rem 1.25rem;
    padding-inline: clamp(0.5rem, 2vw, 1.75rem);
  }

  .hwt-topbar__contact-item {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .hwt-topbar__contact-label {
    display: inline;
    flex: 0 1 auto;
    max-width: 100%;
  }
}

.hwt-topbar__right {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.hwt-topbar__social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3125rem 0.5rem;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hwt-topbar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.hwt-topbar__social-link svg { width: 0.875rem; height: 0.875rem; }

.hwt-topbar__social-link:hover {
  background: var(--c-accent);
  color: var(--c-bg-dark);
  transform: translateY(-2px);
}

/* ── Navbar — full width menu ───────────────────────────────────────────── */

.hwt-navbar {
  display: flex;
  align-items: stretch;
  position: relative;
  width: 100%;
  height: var(--header-navbar-h);
  background: #fff;
  overflow: visible;
  transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border-bottom: 1px solid rgba(16, 42, 24, 0.06);
}

.hwt-site-header.is-scrolled .hwt-navbar {
  height: var(--header-navbar-h-scrolled);
  box-shadow: 0 4px 20px rgba(16, 42, 24, 0.06);
}

.hwt-navbar__menu {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  width: 100%;
  gap: 0;
  overflow: visible;
}

.hwt-navbar__scroll {
  display: none;
  position: relative;
  z-index: 80;
  flex-shrink: 0;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  min-width: 2.25rem;
  padding: 0;
  border: none;
  background: rgba(30, 107, 58, 0.06);
  color: var(--c-primary-deep);
  cursor: pointer;
  pointer-events: auto;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.hwt-navbar__scroll svg {
  width: 1.125rem;
  height: 1.125rem;
}

.hwt-navbar__scroll:hover:not(:disabled) {
  background: rgba(30, 107, 58, 0.12);
  color: var(--c-primary);
}

.hwt-navbar__scroll:disabled {
  opacity: 0.35;
  cursor: default;
}

.hwt-navbar__menu.is-scrollable .hwt-navbar__scroll {
  display: inline-flex;
}

.hwt-navbar__menu.is-scrollable .hwt-navbar__scroll--prev {
  border-right: 1px solid rgba(16, 42, 24, 0.08);
}

.hwt-navbar__menu.is-scrollable .hwt-navbar__scroll--next {
  border-left: 1px solid rgba(16, 42, 24, 0.08);
}

.hwt-navbar__menu::before,
.hwt-navbar__menu::after {
  display: none;
}

/* Torn / deckle bottom edge — disabled (flush menu-to-banner join) */
.hwt-navbar::after {
  display: none;
}

.hwt-navbar__track {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  z-index: 1;
}

.hwt-navbar__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: margin-left 0.35s var(--ease);
}

.hwt-navbar__item {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 0 0 auto;
  min-width: clamp(5.5rem, 7vw, 7.25rem);
  max-width: 8.5rem;
  position: relative;
}

.hwt-navbar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 42%;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.hwt-navbar__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  padding: 0.375rem 0.1875rem;
  font-family: var(--font-heading);
  font-size: clamp(0.5625rem, 0.7vw, 0.8125rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--c-text) !important;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.hwt-site-header.is-scrolled .hwt-navbar__link {
  font-size: clamp(0.6rem, 0.68vw, 0.75rem);
  padding-block: 0.3125rem;
}

.hwt-navbar__link-icon {
  display: none;
}

.hwt-navbar__link:hover,
.hwt-navbar__link.is-active,
.hwt-navbar__link[aria-current="page"] {
  color: var(--c-primary);
  background: rgba(30, 107, 58, 0.05);
  border-color: transparent;
  box-shadow: none;
}

.hwt-navbar__link[aria-current="page"] {
  font-weight: 800;
  color: var(--c-primary-deep);
}

.hwt-navbar__link-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 100%;
  hyphens: auto;
  font-weight: inherit;
}

.hwt-navbar__item--has-dropdown .hwt-navbar__link-text::after {
  display: inline-block;
  margin-left: 0.15em;
  font-size: 0.65em;
  line-height: 1;
  content: '▾';
  color: var(--c-primary);
  vertical-align: middle;
  opacity: 0.85;
}

.hwt-navbar__item--has-dropdown.is-open .hwt-navbar__link-text::after {
  transform: rotate(180deg);
}

/* Dropdown menus — attached panel under active category */
.hwt-navbar__item--has-dropdown {
  position: relative;
  z-index: auto;
}

.hwt-navbar__item--has-dropdown.is-open {
  z-index: 30;
}

.hwt-navbar__link--dropdown {
  cursor: pointer;
  border: none;
  background: transparent;
  font: inherit;
  color: var(--c-text) !important;
  position: relative;
}

.hwt-navbar__item--has-dropdown:hover .hwt-navbar__link--dropdown,
.hwt-navbar__item--has-dropdown.is-open .hwt-navbar__link--dropdown {
  color: var(--c-primary);
  background: rgba(30, 107, 58, 0.05);
}

.hwt-navbar__item--has-dropdown.is-open .hwt-navbar__link--dropdown::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px 2px 0 0;
}

.hwt-navbar__item--has-dropdown:hover .hwt-navbar__link-icon,
.hwt-navbar__item--has-dropdown.is-open .hwt-navbar__link-icon {
  display: none;
}

.hwt-navbar__dropdown-link.is-active,
.hwt-navbar__dropdown-link[aria-current="page"] {
  color: var(--hwt-gold);
}

.hwt-navbar__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1200;
  min-width: 12.5rem;
  max-width: min(15rem, calc(100vw - 1rem));
  max-height: min(18rem, 58vh);
  margin: -1px 0 0;
  padding: 0.25rem 0 0.375rem;
  list-style: none;
  background: var(--c-primary-deep);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid var(--c-accent);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 28px rgba(16, 42, 24, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(calc(-50% + var(--hwt-dropdown-shift, 0px)));
  transition: opacity 0.16s var(--ease), visibility 0.16s var(--ease);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.hwt-navbar__item--has-dropdown:not(.is-open) .hwt-navbar__dropdown {
  display: none;
  transition: none;
}

.hwt-navbar__item--has-dropdown.is-open .hwt-navbar__dropdown {
  position: fixed;
  top: var(--hwt-dropdown-top, 0);
  left: var(--hwt-dropdown-left, 0);
  display: block;
  margin: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hwt-navbar__dropdown::-webkit-scrollbar {
  width: 4px;
}

.hwt-navbar__dropdown::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

/* Invisible bridge — covers gap between nav cell and dropdown panel */
.hwt-navbar__dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.hwt-navbar__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.875rem 0.3125rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  text-align: left;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.hwt-navbar__dropdown-link::before {
  content: '';
  flex-shrink: 0;
  width: 0;
  height: 10px;
  opacity: 0;
  background-color: var(--c-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22V7' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M8.5 11C7 9.5 6.5 7.5 7 5.5c.3-1 1.2-1.5 2-.8.7.5 1 1.5.9 2.5M15.5 11c1.5-1.5 2-3.5 1.5-5.5-.3-1-1.2-1.5-2-.8-.7.5-1 1.5-.9 2.5' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M9.5 15c-.5-1.2-.5-2.5 0-3.8M14.5 15c.5-1.2.5-2.5 0-3.8' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22V7' stroke='%23000' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M8.5 11C7 9.5 6.5 7.5 7 5.5c.3-1 1.2-1.5 2-.8.7.5 1 1.5.9 2.5M15.5 11c1.5-1.5 2-3.5 1.5-5.5-.3-1-1.2-1.5-2-.8-.7.5-1 1.5-.9 2.5' stroke='%23000' stroke-width='1.5'/%3E%3Cpath d='M9.5 15c-.5-1.2-.5-2.5 0-3.8M14.5 15c.5-1.2.5-2.5 0-3.8' stroke='%23000' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: width var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.hwt-navbar__dropdown-link:hover,
.hwt-navbar__dropdown-link:focus-visible {
  color: var(--c-accent);
  background: rgba(255, 255, 255, 0.04);
}

.hwt-navbar__dropdown-link:hover::before,
.hwt-navbar__dropdown-link:focus-visible::before {
  width: 10px;
  opacity: 1;
}

.hwt-navbar__dropdown-link--all {
  margin-bottom: 0.1875rem;
  padding: 0.375rem 0.875rem 0.4375rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.hwt-navbar__dropdown-link--all:hover,
.hwt-navbar__dropdown-link--all:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 993px) and (max-width: 1280px) {
  .hwt-navbar__link {
    font-size: clamp(0.5625rem, 0.68vw, 0.6875rem);
    padding-inline: 0.125rem;
  }
}

@media (min-width: 1600px) {
  .hwt-navbar__link {
    font-size: 0.875rem;
    padding-inline: 0.375rem;
  }
}

/* Mobile toggle + compact CTAs */
.hwt-navbar__actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding-inline: var(--gutter);
  border-left: 1px solid var(--c-border-subtle);
  flex-shrink: 0;
}

.hwt-navbar__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-sm);
  background: rgba(30, 107, 58, 0.08);
  border: 1px solid var(--c-border-subtle);
}

.hwt-navbar__toggle-icon {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
}

.hwt-navbar__toggle-icon::before,
.hwt-navbar__toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  background: var(--c-primary);
  border-radius: 2px;
  transition: transform 0.35s var(--ease);
}

.hwt-navbar__toggle-icon::before { top: -6px; }
.hwt-navbar__toggle-icon::after { top: 6px; }

.hwt-site-header.is-drawer-open .hwt-navbar__toggle-icon { background: transparent; }
.hwt-site-header.is-drawer-open .hwt-navbar__toggle-icon::before { top: 0; transform: rotate(45deg); }
.hwt-site-header.is-drawer-open .hwt-navbar__toggle-icon::after { top: 0; transform: rotate(-45deg); }

/* ── Mobile drawer (unchanged structure) ───────────────────────────────── */

.hwt-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.hwt-site-header.is-drawer-open .hwt-drawer {
  pointer-events: auto;
  visibility: visible;
}

.hwt-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 42, 24, 0.45);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.hwt-site-header.is-drawer-open .hwt-drawer__overlay { opacity: 1; }

.hwt-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 22rem);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 40px rgba(16, 42, 24, 0.15);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.hwt-site-header.is-drawer-open .hwt-drawer__panel { transform: translateX(0); }

.hwt-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--c-primary-deep);
  color: #fff;
}

.hwt-drawer__head-title {
  font-family: var(--font-heading);
  font-weight: 700;
}

.hwt-drawer__close {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hwt-drawer__close svg {
  width: 1.125rem;
  height: 1.125rem;
  max-width: none;
}

.hwt-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 1rem;
}

.hwt-drawer__link {
  display: block;
  padding: 0.9375rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border-subtle);
}

.hwt-drawer__link:hover { color: var(--c-primary); background: rgba(30, 107, 58, 0.04); }

.hwt-drawer__accordion { border-bottom: 1px solid var(--c-border-subtle); }

.hwt-drawer__accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: left;
  color: var(--c-primary-deep);
  background: rgba(30, 107, 58, 0.04);
  min-height: 48px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.hwt-drawer__accordion.is-open .hwt-drawer__accordion-trigger {
  color: var(--c-primary);
  background: rgba(30, 107, 58, 0.08);
}

.hwt-drawer__accordion-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  max-width: none;
  transition: transform 0.35s var(--ease);
}

.hwt-drawer__accordion.is-open .hwt-drawer__accordion-icon { transform: rotate(180deg); }

.hwt-drawer__accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.hwt-drawer__accordion.is-open .hwt-drawer__accordion-panel { grid-template-rows: 1fr; }

.hwt-drawer__accordion-inner { overflow: hidden; }

.hwt-drawer__product-list { list-style: none; padding: 0 0 0.75rem; }

.hwt-drawer__product-link {
  display: block;
  padding: 0.6875rem 1.25rem 0.6875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  border-left: 2px solid transparent;
  min-height: 44px;
  line-height: 1.4;
}

.hwt-drawer__product-link:hover,
.hwt-drawer__product-link.is-active {
  color: var(--c-primary);
  border-left-color: var(--c-accent);
  background: rgba(30, 107, 58, 0.04);
}

.hwt-drawer__product-link.is-active {
  font-weight: 700;
}

.hwt-drawer__product-link--all {
  font-weight: 700;
  color: var(--c-primary-deep);
  border-left-color: var(--c-primary);
  background: rgba(30, 107, 58, 0.06);
}

.hwt-drawer__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--c-border-subtle);
  background: var(--c-bg);
}

.hwt-drawer__footer .btn { width: 100%; justify-content: center; }
.hwt-drawer__footer .btn + .btn { margin-top: 0.625rem; }

body.hwt-drawer-open { overflow: hidden; }

/* ── Responsive ────────────────────────────────────────────────────────── */

@media (max-width: 992px) {
  .hwt-header-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-rows: var(--header-topbar-h);
    align-items: center;
    background: var(--c-primary-deep);
    overflow: hidden;
    min-width: 0;
  }

  .hwt-site-header.is-scrolled .hwt-header-shell {
    grid-template-rows: var(--header-topbar-h-scrolled);
  }

  /* Flatten topbar so logo + inner participate in the grid (no overlay) */
  .hwt-topbar {
    display: contents;
  }

  .hwt-logo-badge {
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    justify-self: start;
    width: max-content;
    min-width: 0;
    max-width: calc(100vw - 8.5rem);
  }

  .hwt-topbar__contact {
    display: flex;
    flex: 0 1 auto;
    min-width: 0;
    margin-left: 0;
    justify-content: flex-end;
  }

  .hwt-topbar__contact-item:not(:first-child) { display: none; }

  .hwt-topbar__contact-item:first-child {
    justify-content: center;
  }

  .hwt-topbar__contact-label { display: none; }

  .hwt-topbar__inner {
    grid-column: 2;
    grid-row: 1;
    justify-content: flex-end;
    flex: none;
    width: auto;
    min-width: 0;
    gap: 0.5rem;
    height: 100%;
    padding-inline: 0.375rem;
  }

  .hwt-topbar__right {
    flex-shrink: 0;
    margin-left: 0;
  }

  .hwt-logo-badge__text { display: none; }

  .hwt-logo-badge__link {
    padding: 0.3125rem 0.375rem;
    gap: 0;
    min-width: 0;
    width: auto;
    height: 100%;
  }

  .hwt-logo-badge__img {
    display: block;
    width: auto;
    height: calc(var(--header-topbar-h) - 10px);
    max-width: min(168px, calc(100vw - 9rem));
    max-height: calc(100% - 0.25rem);
    object-fit: contain;
    object-position: left center;
  }

  .hwt-site-header.is-scrolled .hwt-logo-badge__img {
    height: calc(var(--header-topbar-h-scrolled) - 10px);
    max-width: min(158px, calc(100vw - 9rem));
  }

  /* Menu button — own grid column, never overlaps topbar icons */
  .hwt-navbar {
    position: static;
    grid-column: 3;
    grid-row: 1;
    width: auto;
    height: auto;
    background: transparent;
    border-bottom: none;
    box-shadow: none !important;
    z-index: auto;
    pointer-events: auto;
    align-self: center;
  }

  .hwt-site-header.is-scrolled .hwt-navbar {
    height: auto;
    box-shadow: none;
  }

  .hwt-navbar__track { display: none; }

  .hwt-navbar__scroll { display: none !important; }

  .hwt-navbar__menu {
    justify-content: flex-end;
    width: auto;
    height: auto;
    pointer-events: auto;
  }

  .hwt-navbar__actions {
    display: flex;
    height: auto;
    align-items: center;
    padding-inline: max(0.5rem, env(safe-area-inset-right, 0px)) max(0.75rem, env(safe-area-inset-right, 0px));
    border-left: none;
  }

  .hwt-navbar__toggle {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .hwt-navbar__toggle-icon,
  .hwt-navbar__toggle-icon::before,
  .hwt-navbar__toggle-icon::after {
    background: #fff;
  }

  /* Drawer sits below the fixed header — no double green bars */
  .hwt-site-header.is-drawer-open {
    z-index: 1101;
  }

  .hwt-drawer__overlay {
    top: var(--header-topbar-h);
  }

  .hwt-drawer__panel {
    top: var(--header-topbar-h);
    height: calc(100% - var(--header-topbar-h));
  }

  .hwt-site-header.is-scrolled .hwt-drawer__overlay {
    top: var(--header-topbar-h-scrolled);
  }

  .hwt-site-header.is-scrolled .hwt-drawer__panel {
    top: var(--header-topbar-h-scrolled);
    height: calc(100% - var(--header-topbar-h-scrolled));
  }

  .hwt-drawer__head {
    display: none;
  }
}

@media (max-width: 767px) {
  .hwt-drawer__panel {
    width: min(100%, 20rem);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .hwt-drawer__head,
  .hwt-drawer__footer {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }

  .hwt-drawer__link,
  .hwt-drawer__accordion-trigger {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }

  .hwt-drawer__product-link {
    padding-left: max(2rem, calc(env(safe-area-inset-left, 0px) + 1.25rem));
  }
}

@media (max-width: 767px) {
  .hwt-logo-badge {
    max-width: calc(100vw - 7.5rem);
  }

  .hwt-topbar__inner {
    gap: 0.375rem;
    padding-inline: 0.25rem;
  }

  .hwt-topbar__icon {
    width: 1.625rem;
    height: 1.625rem;
  }

  .hwt-topbar__social-link {
    width: 1.625rem;
    height: 1.625rem;
  }

  .hwt-topbar__social-pill {
    padding: 0.1875rem 0.3125rem;
    gap: 0.125rem;
  }

  .hwt-topbar__social-pill .hwt-topbar__social-link:nth-child(n+3) { display: none; }

  .hwt-navbar__actions {
    padding-inline: max(0.375rem, env(safe-area-inset-right, 0px)) max(0.5rem, env(safe-area-inset-right, 0px));
  }

  .hwt-navbar__toggle {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media (max-width: 575px) {
  .hwt-topbar__right {
    display: none;
  }

  .hwt-topbar__inner {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-site-header,
  .hwt-topbar,
  .hwt-navbar,
  .hwt-logo-badge,
  .hwt-drawer__panel {
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   HarvestWay Traders — Hero banner (reference-inspired)
   ========================================================================== */

.hwt-hero {
  position: relative;
  min-height: clamp(520px, calc(100vh - var(--header-topbar-h) - var(--header-navbar-h)), 900px);
  margin-top: calc(var(--header-topbar-h) + var(--header-navbar-h));
  overflow: hidden;
  color: #fff;
}

.hwt-hero__slides {
  position: absolute;
  inset: 0;
}

.hwt-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.65s var(--ease), visibility 0.65s var(--ease);
}

/* Auto-rotate all 3 banners (works even before JS loads) */
.hwt-hero:not(.is-js-ready) .hwt-hero__slide {
  animation: hwt-hero-fade 18s linear infinite;
}

.hwt-hero:not(.is-js-ready) .hwt-hero__slide:nth-child(1) { animation-delay: 0s; }
.hwt-hero:not(.is-js-ready) .hwt-hero__slide:nth-child(2) { animation-delay: -6s; }
.hwt-hero:not(.is-js-ready) .hwt-hero__slide:nth-child(3) { animation-delay: -12s; }

@keyframes hwt-hero-fade {
  0%, 28% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
  }
  33%, 100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
  }
}

.hwt-hero.is-js-ready .hwt-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hwt-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hwt-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hwt-hero__slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 22, 14, 0.82) 0%, rgba(8, 22, 14, 0.55) 42%, rgba(8, 22, 14, 0.15) 68%, rgba(8, 22, 14, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 45%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.hwt-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--gutter);
  padding-right: clamp(4.5rem, 8vw, 6.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(1.5rem, 4vw, 3rem);
}

.hwt-hero__eyebrow,
.hwt-hero__title,
.hwt-hero__desc {
  grid-column: 1;
}

.hwt-hero__cta {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  margin-right: clamp(2rem, 5vw, 4rem);
}

.hwt-hero__eyebrow {
  margin-bottom: 1rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2.2vw, 1.625rem);
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: 0.02em;
}

.hwt-hero__title {
  max-width: 18ch;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hwt-hero__title-line {
  display: block;
}

.hwt-hero__title-line + .hwt-hero__title-line {
  margin-top: 0.15em;
}

.hwt-hero__title-mark {
  position: relative;
  display: inline-block;
}

.hwt-hero__title-mark::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.12em;
  background: var(--c-accent);
  border-radius: 2px;
  opacity: 0.95;
}

.hwt-hero__desc {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

/* CTA — white pill + gold arrow circle */
.hwt-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4375rem 0.4375rem 0.4375rem 1.625rem;
  background: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-bg-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.hwt-hero__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-bg-dark);
}

.hwt-hero__cta-arrow svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Slider arrows — right edge */
.hwt-hero__slider-nav {
  position: absolute;
  top: 50%;
  right: clamp(1rem, 3vw, 2.5rem);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.hwt-hero__slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  color: #fff;
  background: rgba(8, 22, 14, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    color var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease);
}

.hwt-hero__slider-btn:hover {
  color: var(--c-accent);
  background: rgba(8, 22, 14, 0.65);
  transform: scale(1.06);
}

.hwt-hero__slider-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* Slide dots */
.hwt-hero__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 3vw, 2.25rem);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.hwt-hero__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition:
    transform var(--dur-fast) var(--ease),
    background var(--dur-fast) var(--ease),
    width var(--dur-fast) var(--ease);
}

.hwt-hero__dot.is-active {
  width: 1.75rem;
  border-radius: var(--r-full);
  background: var(--c-accent);
  border-color: var(--c-accent);
}

.hwt-hero:not(.is-js-ready) .hwt-hero__dot {
  animation: hwt-hero-dot 18s linear infinite;
}

.hwt-hero:not(.is-js-ready) .hwt-hero__dot:nth-child(1) { animation-delay: 0s; }
.hwt-hero:not(.is-js-ready) .hwt-hero__dot:nth-child(2) { animation-delay: -6s; }
.hwt-hero:not(.is-js-ready) .hwt-hero__dot:nth-child(3) { animation-delay: -12s; }

@keyframes hwt-hero-dot {
  0%, 28% {
    width: 1.75rem;
    border-radius: var(--r-full);
    background: var(--c-accent);
    border-color: var(--c-accent);
  }
  33%, 100% {
    width: 0.625rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.35);
  }
}

.hwt-hero__dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hwt-hero__dot.is-active:hover {
  background: var(--c-accent);
}

@media (max-width: 767px) {
  .hwt-hero__slider-nav { display: none; }

  .hwt-hero__title { max-width: none; }

  .hwt-hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
  }

  .hwt-hero__cta {
    grid-column: 1;
    grid-row: auto;
    justify-self: end;
    margin-top: 1.5rem;
    margin-right: clamp(1rem, 4vw, 2rem);
  }

  .hwt-hero__dots {
    left: var(--gutter);
    bottom: 1.25rem;
    transform: none;
    justify-content: flex-start;
  }

  .hwt-hero__slide-overlay {
    background:
      linear-gradient(180deg, rgba(8, 22, 14, 0.78) 0%, rgba(8, 22, 14, 0.5) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-hero:not(.is-js-ready) .hwt-hero__slide,
  .hwt-hero:not(.is-js-ready) .hwt-hero__dot {
    animation: none;
  }

  .hwt-hero:not(.is-js-ready) .hwt-hero__slide:first-child,
  .hwt-hero.is-js-ready .hwt-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  .hwt-hero__slide { transition: none; }
  .hwt-hero__cta:hover,
  .hwt-float-whatsapp:hover,
  .hwt-hero__whatsapp:hover,
  .hwt-hero__slider-btn:hover { transform: none; }
}

/* HarvestWay Traders — Scroll reveals, loader, page motion */

body.is-loading { overflow: hidden; }

@media (scripting: none) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hwt-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--c-primary-deep);
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.hwt-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hwt-loader__logo {
  width: min(220px, 62vw);
  height: auto;
  animation: hwt-loader-pulse 1.2s ease-in-out infinite;
}

.hwt-loader__bar {
  width: min(180px, 50vw);
  height: 3px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.hwt-loader__bar-fill {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: var(--c-accent);
  animation: hwt-loader-slide 1.1s ease-in-out infinite;
}

@keyframes hwt-loader-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes hwt-loader-slide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="scale"] { transform: scale(0.97); }

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.hwt-hover-lift {
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-hover-lift:hover {
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .hwt-loader__logo,
  .hwt-loader__bar-fill { animation: none; }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hwt-hover-lift:hover { transform: none; }
}

/* HarvestWay Traders — Animated statistics strip */

.hwt-stats {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(135deg, var(--c-primary-deep) 0%, #0d2415 100%);
  color: #fff;
}

.hwt-stats__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwt-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.375rem;
  padding: 1.25rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.hwt-stats__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.hwt-stats__value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--c-accent);
}

.hwt-stats__label {
  max-width: 14ch;
  font-family: var(--font-heading);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.hwt-stats__desc {
  max-width: 22ch;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

@media (min-width: 640px) {
  .hwt-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hwt-stats__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.875rem;
  }

  .hwt-stats__item {
    padding: 1.5rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-stats__item:hover { transform: none; }
}

/* HarvestWay Traders — Global sourcing network map */

.hwt-global {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--c-bg-dark);
  color: #fff;
  overflow: hidden;
}

.hwt-global__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-global__header {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hwt-global__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-accent);
}

.hwt-global__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hwt-global__intro {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.hwt-global__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.hwt-global__map-wrap {
  position: relative;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hwt-global__map {
  width: 100%;
  height: auto;
  display: block;
}

.hwt-global__region {
  fill: rgba(59, 143, 82, 0.22);
  stroke: rgba(59, 143, 82, 0.45);
  stroke-width: 0.6;
  transition: fill var(--dur-fast) var(--ease);
  cursor: pointer;
}

.hwt-global__region.is-active,
.hwt-global__region:hover {
  fill: rgba(59, 143, 82, 0.52);
}

.hwt-global__pin {
  fill: var(--c-accent);
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.55));
  animation: hwt-pin-pulse 2.2s ease infinite;
}

@keyframes hwt-pin-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.hwt-global__side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hwt-global__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hwt-global__region-tag {
  padding: 0.4375rem 0.875rem;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.hwt-global__region-tag.is-active,
.hwt-global__region-tag:hover {
  background: rgba(30, 107, 58, 0.45);
  border-color: var(--c-secondary);
}

.hwt-global__detail {
  padding: 1.25rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hwt-global__detail-title {
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--c-accent);
}

.hwt-global__detail-text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.hwt-global__highlights {
  display: grid;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwt-global__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.hwt-global__highlights li::before {
  content: '';
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.4375rem;
  border-radius: 50%;
  background: var(--c-accent);
}

@media (min-width: 992px) {
  .hwt-global__layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-global__pin { animation: none; }
}

/* ==========================================================================
   HarvestWay Traders — Category carousel (reference circular items)
   ========================================================================== */

.hwt-categories {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: #fff;
}

.hwt-categories__intro {
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  padding-inline: var(--gutter);
  text-align: center;
}

.hwt-categories__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-categories__title {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-categories__desc {
  max-width: 52ch;
  margin-inline: auto;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: var(--c-text-secondary);
}

.hwt-categories__viewport {
  overflow: hidden;
  width: 100%;
}

.hwt-categories__track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.hwt-categories__slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding-inline: var(--gutter);
}

.hwt-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: var(--container);
  margin-inline: auto;
  list-style: none;
}

.hwt-categories__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  text-align: center;
  color: var(--c-primary-deep);
  transition: transform var(--dur-fast) var(--ease);
}

.hwt-categories__item:hover {
  transform: translateY(-4px);
}

.hwt-categories__thumb {
  display: block;
  width: 100%;
  max-width: clamp(150px, 11vw, 185px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  border: 2px dashed var(--c-primary);
  overflow: hidden;
  background: #fff;
  padding: 3px;
  transition: border-color var(--dur-fast) var(--ease);
}

.hwt-categories__item:hover .hwt-categories__thumb {
  border-color: var(--c-primary-deep);
}

.hwt-categories__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hwt-categories__label {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 600;
  line-height: 1.3;
  color: #1a1a1a;
}

.hwt-categories__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.hwt-categories__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--c-primary-deep);
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.hwt-categories__nav-btn:hover {
  color: var(--c-accent);
  transform: scale(1.1);
}

.hwt-categories__nav-btn svg {
  width: 2rem;
  height: 2rem;
}

.hwt-categories__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1100px) {
  .hwt-categories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }

  .hwt-categories__thumb {
    max-width: 168px;
  }
}

@media (max-width: 600px) {
  .hwt-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }

  .hwt-categories__thumb {
    max-width: 148px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-categories__track { transition: none; }
  .hwt-categories__item:hover { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — About section (reference two-column layout)
   ========================================================================== */

.hwt-about {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.hwt-about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- Left column ---- */
.hwt-about__main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hwt-about__eyebrow {
  margin-bottom: 0.75rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.3;
}

.hwt-about__title {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-primary-deep);
}

.hwt-about__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 52ch;
  margin-bottom: 1.75rem;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  background: var(--c-primary-deep);
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 24px rgba(21, 90, 50, 0.28);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.hwt-about__cta:hover {
  background: var(--c-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(21, 90, 50, 0.34);
}

.hwt-about__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-primary-deep);
}

.hwt-about__cta-arrow svg {
  width: 1.0625rem;
  height: 1.0625rem;
}

/* ---- Right column cards ---- */
.hwt-about__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hwt-about__card {
  position: relative;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border-radius: clamp(1rem, 1.8vw, 1.375rem);
  border: 2px dashed rgba(255, 255, 255, 0.55);
}

.hwt-about__card--gold {
  background: var(--c-accent);
  color: var(--c-primary-deep);
}

.hwt-about__card--green {
  background: var(--c-primary-deep);
  color: #fff;
}

.hwt-about__card-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(21, 90, 50, 0.22);
  color: var(--c-primary-deep);
}

.hwt-about__card-badge svg {
  width: 1.375rem;
  height: 1.375rem;
}

.hwt-about__card-label {
  display: block;
  margin-bottom: 0.375rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hwt-about__card-stat {
  display: block;
  margin-bottom: 0.875rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hwt-about__card-text {
  max-width: 34ch;
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.88;
}

.hwt-about__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  list-style: none;
}

.hwt-about__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
}

.hwt-about__check-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  color: var(--c-accent);
}

.hwt-about__check-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.hwt-about__divider {
  height: 1px;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.2);
}

.hwt-about__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
  list-style: none;
}

.hwt-about__features li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.hwt-about__feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.18);
  color: var(--c-accent);
}

.hwt-about__feature-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.hwt-about__feature-text {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.1vw, 0.8125rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hwt-about__read-more {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease);
}

.hwt-about__read-more:hover {
  color: var(--c-accent);
}

@media (max-width: 1024px) {
  .hwt-about__inner {
    grid-template-columns: 1fr;
  }

  .hwt-about__title {
    max-width: none;
  }

  .hwt-about__aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .hwt-about__aside {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-about__cta:hover { transform: none; }
}

/* HarvestWay Traders — How We Work */

.hwt-process {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.hwt-process__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-process__header {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-inline: auto;
}

.hwt-process__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-process__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-process__intro {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-process__track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hwt-process__line {
  display: none;
}

.hwt-process__step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.125rem 1.25rem;
  border-radius: var(--r-sm);
  background: var(--c-bg);
  border: 1px solid rgba(21, 90, 50, 0.08);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-process__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 42, 24, 0.06);
}

.hwt-process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--c-primary-deep);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
}

.hwt-process__name {
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-primary-deep);
}

.hwt-process__desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--c-text-muted);
}

@media (min-width: 768px) {
  .hwt-process__track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .hwt-process__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hwt-process__step:nth-child(5),
  .hwt-process__step:nth-child(6),
  .hwt-process__step:nth-child(7) {
    grid-column: span 1;
  }

  .hwt-process__track {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .hwt-process__step {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem 0.875rem;
  }

  .hwt-process__num {
    margin: 0 auto 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-process__step:hover { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — Agricultural products showcase
   ========================================================================== */

.hwt-products {
  --hwt-products-bg: #f5f3ee;
  --hwt-products-torn: 14px;
  position: relative;
  padding:
    calc(clamp(3rem, 6vw, 5rem) + var(--hwt-products-torn))
    0
    calc(clamp(3rem, 6vw, 5rem) + var(--hwt-products-torn));
  background: var(--hwt-products-bg);
  overflow: hidden;
}

.hwt-products::before,
.hwt-products::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: var(--hwt-products-torn);
  pointer-events: none;
  z-index: 2;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 14' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q30,12 60,4 T120,8 T180,3 T240,10 T300,5 T360,11 T420,4 T480,9 T540,3 T600,10 T660,5 T720,12 T780,4 T840,9 T900,3 T960,11 T1020,5 T1080,10 T1140,4 L1200,8 L1200,14 L0,14 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 14' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q30,12 60,4 T120,8 T180,3 T240,10 T300,5 T360,11 T420,4 T480,9 T540,3 T600,10 T660,5 T720,12 T780,4 T840,9 T900,3 T960,11 T1020,5 T1080,10 T1140,4 L1200,8 L1200,14 L0,14 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hwt-products::before {
  top: calc(-1 * var(--hwt-products-torn) + 1px);
  background: var(--hwt-products-bg);
  transform: scaleY(-1);
}

.hwt-products::after {
  bottom: calc(-1 * var(--hwt-products-torn) + 1px);
  background: #fff;
}

.hwt-products__decor {
  position: absolute;
  left: clamp(0.5rem, 3vw, 2rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  width: min(220px, 38vw);
  opacity: 0.14;
  color: var(--c-primary-deep);
  pointer-events: none;
  z-index: 0;
}

.hwt-products__decor svg {
  width: 100%;
  height: auto;
}

.hwt-products__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-products__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hwt-products__icon {
  display: block;
  width: 2.75rem;
  height: auto;
  margin-bottom: 0.875rem;
  color: var(--c-accent);
}

.hwt-products__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 700;
  color: var(--c-primary-deep);
}

.hwt-products__title {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-primary-deep);
}

.hwt-products__desc {
  max-width: 42ch;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-products__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  background: var(--c-primary-deep);
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 24px rgba(21, 90, 50, 0.22);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.hwt-products__cta:hover {
  background: var(--c-primary-hover);
  transform: translateY(-2px);
}

.hwt-products__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-primary-deep);
}

.hwt-products__cta-arrow svg {
  width: 1.0625rem;
  height: 1.0625rem;
}

.hwt-products__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hwt-products__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--c-primary-deep);
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.hwt-products__nav-btn:hover:not(:disabled) {
  color: var(--c-accent);
  transform: scale(1.08);
}

.hwt-products__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.hwt-products__nav-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

/* ---- Product slider ---- */
.hwt-products__slider {
  min-width: 0;
}

.hwt-products__viewport {
  overflow: hidden;
}

.hwt-products__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.hwt-products__card {
  flex: 0 0 var(--hwt-product-card-w, 280px);
  min-width: var(--hwt-product-card-w, 280px);
}

.hwt-products__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  background: var(--c-primary-deep);
  box-shadow: 0 12px 32px rgba(16, 42, 24, 0.12);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-products__card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(16, 42, 24, 0.16);
}

.hwt-products__card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e4dc;
}

.hwt-products__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.hwt-products__card-link:hover .hwt-products__card-media img {
  transform: scale(1.05);
}

.hwt-products__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.625rem;
  padding: 1.125rem 1.25rem 1.375rem;
  color: #fff;
}

.hwt-products__card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.2;
}

.hwt-products__card-excerpt {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hwt-products__card-more {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #fff;
}

@media (max-width: 1024px) {
  .hwt-products__inner {
    grid-template-columns: 1fr;
  }

  .hwt-products__title {
    max-width: none;
  }

  .hwt-products__decor {
    opacity: 0.08;
  }
}

@media (max-width: 640px) {
  .hwt-products__card {
    flex-basis: min(280px, 78vw);
    min-width: min(280px, 78vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-products__track { transition: none; }
  .hwt-products__card-link:hover,
  .hwt-products__cta:hover,
  .hwt-products__nav-btn:hover:not(:disabled) { transform: none; }
  .hwt-products__card-link:hover .hwt-products__card-media img { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — Our Services
   ========================================================================== */

.hwt-services {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--c-bg);
}

.hwt-services__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-services__header {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hwt-services__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.3;
}

.hwt-services__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-services__intro {
  max-width: 52ch;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: var(--c-text-secondary);
}

.hwt-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  list-style: none;
  margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
  padding: 0;
}

.hwt-services__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  min-width: 0;
  min-height: 100%;
  padding: 1.125rem 1.25rem;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid rgba(21, 90, 50, 0.08);
  box-shadow: 0 4px 18px rgba(16, 42, 24, 0.04);
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}

.hwt-services__item:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 107, 58, 0.18);
  box-shadow: 0 10px 28px rgba(16, 42, 24, 0.08);
}

.hwt-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(30, 107, 58, 0.1);
  color: var(--c-primary);
}

.hwt-services__icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.hwt-services__name {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.05vw, 0.96875rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--c-primary-deep);
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (min-width: 641px) {
  .hwt-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1025px) {
  .hwt-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hwt-services__footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, rgba(30, 107, 58, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%),
    #fff;
  border: 1px solid rgba(21, 90, 50, 0.1);
}

.hwt-services__mission {
  margin: 0;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-services__tagline {
  margin: 0;
  padding-left: clamp(0, 2vw, 1.5rem);
  border-left: 3px solid var(--c-accent);
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  font-weight: 800;
  line-height: 1.5;
  color: var(--c-primary-deep);
}

@media (max-width: 1024px) {
  .hwt-services__footer {
    grid-template-columns: 1fr;
  }

  .hwt-services__tagline {
    padding-left: 0;
    padding-top: 0.25rem;
    border-left: none;
    border-top: 3px solid var(--c-accent);
    padding-top: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-services__item {
    transition: none;
  }

  .hwt-services__item:hover {
    transform: none;
  }
}

/* HarvestWay Traders — Industries We Serve */

.hwt-industries {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--c-bg);
}

.hwt-industries__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-industries__header {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hwt-industries__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-industries__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-industries__intro {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-industries__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwt-industries__card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-height: 100%;
  padding: 1.375rem 1.25rem;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid rgba(21, 90, 50, 0.08);
  box-shadow: 0 4px 20px rgba(16, 42, 24, 0.04);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-industries__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(16, 42, 24, 0.08);
}

.hwt-industries__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-sm);
  background: rgba(30, 107, 58, 0.1);
  color: var(--c-primary);
}

.hwt-industries__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.hwt-industries__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-primary-deep);
}

.hwt-industries__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--c-text-muted);
}

@media (min-width: 640px) {
  .hwt-industries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hwt-industries__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-industries__card:hover { transform: none; }
}

/* HarvestWay Traders — Packing Options & Independent Inspection */

.hwt-packing {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.hwt-packing__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-packing__header {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hwt-packing__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-packing__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-packing__intro {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-packing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwt-packing__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--r-md);
  background: var(--c-bg);
  border: 1px solid rgba(21, 90, 50, 0.08);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.hwt-packing__item:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 107, 58, 0.18);
  box-shadow: 0 10px 28px rgba(16, 42, 24, 0.07);
}

.hwt-packing__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-sm);
  background: rgba(30, 107, 58, 0.1);
  color: var(--c-primary);
}

.hwt-packing__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hwt-packing__text {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--c-primary-deep);
}

.hwt-packing__note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(30, 107, 58, 0.06), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(21, 90, 50, 0.1);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--c-text-secondary);
}

.hwt-inspection {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--c-bg);
}

.hwt-inspection__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-inspection__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: calc(var(--r-md) + 4px);
  background: linear-gradient(145deg, var(--c-primary-deep) 0%, #0f3d22 55%, #164a2c 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(16, 42, 24, 0.18);
  overflow: hidden;
  position: relative;
}

.hwt-inspection__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hwt-inspection__content,
.hwt-inspection__aside {
  position: relative;
  z-index: 1;
}

.hwt-inspection__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: rgba(212, 175, 55, 0.95);
}

.hwt-inspection__title {
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.hwt-inspection__desc {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42rem;
}

.hwt-inspection__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hwt-inspection__badge-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hwt-inspection__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwt-inspection__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.hwt-inspection__badge:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(212, 175, 55, 0.45);
}

.hwt-inspection__points {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwt-inspection__point {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.hwt-inspection__point-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.125rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  color: var(--c-accent);
}

.hwt-inspection__point-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (min-width: 640px) {
  .hwt-packing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hwt-packing__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hwt-inspection__panel {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-packing__item:hover { transform: none; }
}

/* HarvestWay Traders — Certifications & Compliance */

.hwt-certifications {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.hwt-certifications__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-certifications__header {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-inline: auto;
}

.hwt-certifications__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-certifications__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-certifications__subtitle {
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.35vw, 1.1875rem);
  font-weight: 800;
  color: var(--c-primary);
}

.hwt-certifications__intro {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-certifications__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwt-certifications__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
  min-height: 100%;
  padding: 1.375rem 1.125rem;
  border-radius: var(--r-md);
  background: var(--c-bg);
  border: 1px solid rgba(21, 90, 50, 0.08);
  box-shadow: 0 4px 20px rgba(16, 42, 24, 0.04);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.hwt-certifications__card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 107, 58, 0.16);
  box-shadow: 0 12px 32px rgba(16, 42, 24, 0.08);
}

.hwt-certifications__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 107, 58, 0.12), rgba(212, 175, 55, 0.1));
  color: var(--c-primary);
}

.hwt-certifications__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.hwt-certifications__name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--c-primary-deep);
}

.hwt-certifications__note {
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--c-text-muted);
}

.hwt-certifications__footer {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(30, 107, 58, 0.06), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(21, 90, 50, 0.1);
  font-size: 0.875rem;
  line-height: 1.65;
  text-align: center;
  color: var(--c-text-secondary);
}

@media (min-width: 640px) {
  .hwt-certifications__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hwt-certifications__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-certifications__card:hover { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — Why Choose Us
   ========================================================================== */

.hwt-why {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 7vw, 5.5rem);
  background: #fff;
}

.hwt-why__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-why__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 38vw, 420px);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(1.25rem, 2.5vw, 1.75rem);
  background:
    radial-gradient(circle at 20% 80%, rgba(30, 107, 58, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.14) 0%, transparent 40%),
    linear-gradient(145deg, #f3f7f4 0%, #e8efe9 100%);
}

.hwt-why__callout {
  position: relative;
  max-width: 18rem;
  padding: 1.375rem 1.25rem 1.25rem;
  border-radius: 1rem;
  background: var(--c-accent);
  color: var(--c-primary-deep);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.28);
}

.hwt-why__callout::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 50%;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--c-accent);
  transform: translateY(-50%) rotate(45deg);
  border-radius: 0 0 0.25rem 0;
}

.hwt-why__callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.875rem;
  border-radius: 50%;
  background: var(--c-primary-deep);
  color: #fff;
}

.hwt-why__callout-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.hwt-why__callout-text {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
}

.hwt-why__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hwt-why__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-why__title {
  max-width: 18ch;
  margin-bottom: 0.875rem;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-primary-deep);
}

.hwt-why__wheat {
  display: block;
  width: 2.25rem;
  height: auto;
  margin-bottom: 1.125rem;
  color: var(--c-accent);
}

.hwt-why__desc {
  max-width: 52ch;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-why__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  width: 100%;
  margin-bottom: 1.75rem;
  list-style: none;
}

.hwt-why__point {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hwt-why__point-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--c-primary-deep);
}

.hwt-why__point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: rgba(30, 107, 58, 0.12);
  color: var(--c-primary);
}

.hwt-why__point-icon svg {
  width: 0.75rem;
  height: 0.75rem;
}

.hwt-why__point-text {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--c-text-muted);
}

.hwt-why__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  background: var(--c-primary-deep);
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 8px 24px rgba(21, 90, 50, 0.22);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.hwt-why__cta:hover {
  background: var(--c-primary-hover);
  transform: translateY(-2px);
}

.hwt-why__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-primary-deep);
}

.hwt-why__cta-arrow svg {
  width: 1.0625rem;
  height: 1.0625rem;
}

@media (max-width: 900px) {
  .hwt-why__inner {
    grid-template-columns: 1fr;
  }

  .hwt-why__visual {
    min-height: 240px;
  }

  .hwt-why__title {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .hwt-why__points {
    grid-template-columns: 1fr;
  }

  .hwt-why__callout::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -0.625rem;
    transform: translateX(-50%) rotate(45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-why__cta:hover { transform: none; }
}

/* HarvestWay Traders — Quality Assurance */

.hwt-quality {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.hwt-quality__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-quality__header {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-inline: auto;
}

.hwt-quality__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-quality__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-quality__intro {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-quality__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hwt-quality__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--r-md);
  background: var(--c-bg);
  border: 1px solid rgba(21, 90, 50, 0.08);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-quality__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(16, 42, 24, 0.07);
}

.hwt-quality__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(30, 107, 58, 0.12), rgba(212, 175, 55, 0.1));
  color: var(--c-primary);
}

.hwt-quality__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hwt-quality__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--c-primary-deep);
}

.hwt-quality__desc {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--c-text-muted);
}

@media (min-width: 640px) {
  .hwt-quality__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hwt-quality__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-quality__card:hover { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — Operational Scale & Leadership
   ========================================================================== */

.hwt-leadership {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--c-bg);
}

.hwt-leadership__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-leadership__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hwt-leadership__header-main {
  max-width: 44rem;
}

.hwt-leadership__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.3;
}

.hwt-leadership__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-leadership__intro {
  max-width: 62ch;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-leadership__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: clamp(7rem, 14vw, 9rem);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid rgba(21, 90, 50, 0.1);
  box-shadow: 0 8px 28px rgba(16, 42, 24, 0.06);
  text-align: center;
}

.hwt-leadership__stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--c-primary);
}

.hwt-leadership__stat-label {
  margin-top: 0.375rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  line-height: 1.35;
}

.hwt-leadership__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.hwt-leadership__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid rgba(21, 90, 50, 0.08);
  box-shadow: 0 4px 20px rgba(16, 42, 24, 0.04);
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}

.hwt-leadership__card:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 107, 58, 0.16);
  box-shadow: 0 12px 32px rgba(16, 42, 24, 0.08);
}

.hwt-leadership__card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.hwt-leadership__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(30, 107, 58, 0.14), rgba(212, 175, 55, 0.12));
  color: var(--c-primary-deep);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hwt-leadership__name-block {
  min-width: 0;
}

.hwt-leadership__name {
  margin-bottom: 0.375rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--c-primary-deep);
}

.hwt-leadership__role {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--c-primary);
}

.hwt-leadership__contact {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--c-border-subtle);
}

.hwt-leadership__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text-secondary);
  transition: color var(--dur-fast) var(--ease);
  min-width: 0;
}

.hwt-leadership__contact-link:hover {
  color: var(--c-primary);
}

.hwt-leadership__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(30, 107, 58, 0.08);
  color: var(--c-primary);
}

.hwt-leadership__contact-icon svg {
  width: 0.9375rem;
  height: 0.9375rem;
}

.hwt-leadership__contact-text {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .hwt-leadership__header {
    grid-template-columns: 1fr;
  }

  .hwt-leadership__stat {
    flex-direction: row;
    justify-content: flex-start;
    gap: 1rem;
    width: fit-content;
    text-align: left;
  }

  .hwt-leadership__stat-label {
    margin-top: 0;
    max-width: 10rem;
  }
}

@media (max-width: 640px) {
  .hwt-leadership__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-leadership__card {
    transition: none;
  }

  .hwt-leadership__card:hover {
    transform: none;
  }
}

/* ==========================================================================
   HarvestWay Traders — Trade & Payment Settlement
   ========================================================================== */

.hwt-payment {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.hwt-payment__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-payment__header {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.hwt-payment__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.3;
}

.hwt-payment__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-payment__intro {
  max-width: 62ch;
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  color: var(--c-text-secondary);
}

.hwt-payment__panel {
  border-radius: var(--r-md);
  border: 1px solid rgba(21, 90, 50, 0.1);
  background:
    linear-gradient(135deg, rgba(30, 107, 58, 0.04) 0%, rgba(212, 175, 55, 0.05) 100%),
    #fff;
  box-shadow: 0 8px 32px rgba(16, 42, 24, 0.05);
  overflow: hidden;
}

.hwt-payment__panel-head {
  padding: 1rem 1.25rem;
  background: var(--c-primary-deep);
  color: #fff;
}

.hwt-payment__panel-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

.hwt-payment__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hwt-payment__table {
  width: 100%;
  min-width: min(100%, 640px);
  border-collapse: collapse;
  text-align: left;
}

.hwt-payment__table thead th {
  padding: 0.875rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  background: rgba(30, 107, 58, 0.06);
  border-bottom: 1px solid rgba(21, 90, 50, 0.1);
}

.hwt-payment__table thead th:first-child {
  width: 34%;
  min-width: 11rem;
}

.hwt-payment__table tbody tr {
  border-bottom: 1px solid var(--c-border-subtle);
  transition: background var(--dur-fast) var(--ease);
}

.hwt-payment__table tbody tr:last-child {
  border-bottom: none;
}

.hwt-payment__table tbody tr:hover {
  background: rgba(30, 107, 58, 0.03);
}

.hwt-payment__table tbody tr.is-preferred {
  background: rgba(212, 175, 55, 0.08);
}

.hwt-payment__table tbody tr.is-preferred:hover {
  background: rgba(212, 175, 55, 0.12);
}

.hwt-payment__table td {
  padding: 1.125rem 1.25rem;
  vertical-align: top;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--c-text-secondary);
}

.hwt-payment__term {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.hwt-payment__term-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--c-primary-deep);
}

.hwt-payment__term-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.1875rem 0.5rem;
  border-radius: var(--r-full);
  background: var(--c-accent);
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

@media (max-width: 720px) {
  .hwt-payment__table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hwt-payment__table,
  .hwt-payment__table tbody,
  .hwt-payment__table tr,
  .hwt-payment__table td {
    display: block;
    width: 100%;
  }

  .hwt-payment__table tbody tr {
    padding: 0.25rem 0;
  }

  .hwt-payment__table td {
    padding: 0.875rem 1.125rem;
  }

  .hwt-payment__table td:first-child {
    padding-bottom: 0.375rem;
  }

  .hwt-payment__table td:last-child {
    padding-top: 0;
    padding-bottom: 1rem;
    font-size: 0.875rem;
  }

  .hwt-payment__table td:last-child::before {
    content: 'Conditions';
    display: block;
    margin-bottom: 0.375rem;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text-muted);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-payment__table tbody tr {
    transition: none;
  }
}

/* ==========================================================================
   HarvestWay Traders — Global Shipping & Logistics
   ========================================================================== */

.hwt-logistics {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--c-bg);
}

.hwt-logistics__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-logistics__header {
  max-width: 44rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.hwt-logistics__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--c-primary);
  line-height: 1.3;
}

.hwt-logistics__title {
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
}

.hwt-logistics__subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  font-weight: 800;
  color: var(--c-primary-deep);
}

.hwt-logistics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hwt-logistics__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  min-width: 0;
  padding: 1rem 1.125rem;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid rgba(21, 90, 50, 0.08);
  box-shadow: 0 4px 18px rgba(16, 42, 24, 0.04);
  transition:
    transform var(--dur-fast) var(--ease),
    box-shadow var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}

.hwt-logistics__item:hover {
  transform: translateY(-2px);
  border-color: rgba(30, 107, 58, 0.16);
  box-shadow: 0 10px 28px rgba(16, 42, 24, 0.07);
}

.hwt-logistics__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0.125rem;
  border-radius: 50%;
  background: rgba(30, 107, 58, 0.12);
  color: var(--c-primary);
}

.hwt-logistics__check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.hwt-logistics__text {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.05vw, 0.96875rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--c-primary-deep);
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (min-width: 640px) {
  .hwt-logistics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .hwt-logistics__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-logistics__item {
    transition: none;
  }

  .hwt-logistics__item:hover {
    transform: none;
  }
}

/* ==========================================================================
   HarvestWay Traders — Testimonials
   ========================================================================== */

.hwt-testimonials {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--c-bg);
  overflow: hidden;
}

.hwt-testimonials__header {
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-inline: var(--gutter);
  text-align: center;
}

.hwt-testimonials__eyebrow {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-testimonials__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-primary-deep);
}

.hwt-testimonials__subtitle {
  max-width: 46ch;
  margin-inline: auto;
  font-size: clamp(0.9375rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: var(--c-text-secondary);
}

.hwt-testimonials__slider-wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-testimonials__viewport {
  overflow: hidden;
}

.hwt-testimonials__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}

.hwt-testimonials__card {
  flex: 0 0 var(--hwt-testimonial-card-w, 100%);
  min-width: var(--hwt-testimonial-card-w, 100%);
}

.hwt-testimonials__card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: clamp(1.375rem, 2.5vw, 1.75rem);
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid var(--c-border-subtle);
  box-shadow: 0 10px 32px rgba(16, 42, 24, 0.06);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-testimonials__card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 42, 24, 0.1);
}

.hwt-testimonials__quote-icon {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  color: var(--c-accent);
  opacity: 0.9;
}

.hwt-testimonials__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.875rem;
  color: var(--c-accent);
}

.hwt-testimonials__stars svg {
  width: 1rem;
  height: 1rem;
}

.hwt-testimonials__quote {
  flex: 1;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--c-text-secondary);
}

.hwt-testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border-subtle);
}

.hwt-testimonials__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(30, 107, 58, 0.1);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--c-primary-deep);
  border: 2px solid rgba(30, 107, 58, 0.12);
}

.hwt-testimonials__meta {
  flex: 1;
  min-width: 0;
}

.hwt-testimonials__name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--c-primary-deep);
}

.hwt-testimonials__role {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--c-text-muted);
}

.hwt-testimonials__flag {
  flex-shrink: 0;
  font-size: 1.375rem;
  line-height: 1;
}

.hwt-testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.hwt-testimonials__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--c-primary-deep);
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.hwt-testimonials__nav-btn:hover:not(:disabled) {
  color: var(--c-accent);
  transform: scale(1.1);
}

.hwt-testimonials__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.hwt-testimonials__nav-btn svg {
  width: 2rem;
  height: 2rem;
}

@media (min-width: 640px) {
  .hwt-testimonials {
    --hwt-testimonial-card-w: calc((100% - 1.25rem) / 2);
  }
}

@media (min-width: 1024px) {
  .hwt-testimonials {
    --hwt-testimonial-card-w: calc((100% - 2.5rem) / 3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-testimonials__track { transition: none; }
  .hwt-testimonials__card-inner:hover,
  .hwt-testimonials__nav-btn:hover:not(:disabled) { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — FAQ section
   ========================================================================== */

.hwt-faq {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.hwt-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-faq__main {
  min-width: 0;
}

.hwt-faq__icon {
  display: block;
  width: 2.75rem;
  height: auto;
  margin-bottom: 0.875rem;
  color: var(--c-accent);
}

.hwt-faq__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-faq__title {
  max-width: 18ch;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.2vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-primary-deep);
}

.hwt-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hwt-faq__item {
  border-radius: var(--r-sm);
  overflow: hidden;
}

.hwt-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.125rem;
  background: var(--c-primary-deep);
  color: #fff;
  text-align: left;
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.35;
  border-radius: var(--r-sm);
  transition: background var(--dur-fast) var(--ease);
}

.hwt-faq__trigger:hover {
  background: var(--c-primary-hover);
}

.hwt-faq__item.is-open .hwt-faq__trigger {
  border-radius: var(--r-sm) var(--r-sm) 0 0;
}

.hwt-faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--c-accent);
}

.hwt-faq__toggle svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.hwt-faq__toggle-minus {
  opacity: 0;
  transform: scale(0.85);
}

.hwt-faq__item.is-open .hwt-faq__toggle-plus {
  opacity: 0;
  transform: scale(0.85);
}

.hwt-faq__item.is-open .hwt-faq__toggle-minus {
  opacity: 1;
  transform: scale(1);
}

.hwt-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
  background: #f5f3ee;
}

.hwt-faq__item.is-open .hwt-faq__panel {
  grid-template-rows: 1fr;
}

.hwt-faq__panel-inner {
  overflow: hidden;
}

.hwt-faq__answer {
  padding: 1rem 1.125rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-secondary);
}

.hwt-faq__aside {
  position: sticky;
  top: calc(var(--header-topbar-h) + var(--header-navbar-h) + 1.5rem);
}

.hwt-faq__card {
  border-radius: clamp(1rem, 2vw, 1.375rem);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(16, 42, 24, 0.12);
}

.hwt-faq__card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a2e22;
}

.hwt-faq__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hwt-faq__card-badge {
  position: absolute;
  right: 1rem;
  bottom: -1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-primary-deep);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.hwt-faq__card-badge svg {
  width: 1.375rem;
  height: 1.375rem;
}

.hwt-faq__card-body {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.5rem, 2.5vw, 2rem);
  background: var(--c-primary);
  text-align: center;
}

.hwt-faq__card-text {
  margin-bottom: 1.25rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}

.hwt-faq__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.4375rem 0.4375rem 0.4375rem 1.375rem;
  background: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-primary-deep);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-faq__card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hwt-faq__card-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-primary-deep);
}

.hwt-faq__card-cta-arrow svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 960px) {
  .hwt-faq__inner {
    grid-template-columns: 1fr;
  }

  .hwt-faq__title {
    max-width: none;
  }

  .hwt-faq__aside {
    position: static;
    max-width: 24rem;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-faq__panel { transition: none; }
  .hwt-faq__card-cta:hover { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — Blog / Latest News
   ========================================================================== */

.hwt-blog {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #fff;
}

.hwt-blog__header {
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-inline: var(--gutter);
  text-align: center;
}

.hwt-blog__label {
  margin-bottom: 0.625rem;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-blog__title {
  margin-bottom: 0.875rem;
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-primary-deep);
}

.hwt-blog__wheat {
  display: block;
  width: 2.25rem;
  height: auto;
  margin-inline: auto;
  color: var(--c-accent);
}

.hwt-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  list-style: none;
}

.hwt-blog__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hwt-blog__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  transition: transform var(--dur-fast) var(--ease);
}

.hwt-blog__link:hover {
  transform: translateY(-4px);
}

.hwt-blog__media {
  width: 100%;
  margin-bottom: 1.125rem;
  overflow: hidden;
  background: #eef2ee;
}

.hwt-blog__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.hwt-blog__link:hover .hwt-blog__media img {
  transform: scale(1.04);
}

.hwt-blog__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-blog__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.hwt-blog__meta-item svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
}

.hwt-blog__card-title {
  max-width: 22ch;
  margin-bottom: 0.875rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--c-primary-deep);
}

.hwt-blog__excerpt {
  max-width: 34ch;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hwt-blog__more {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur-fast) var(--ease);
}

.hwt-blog__link:hover .hwt-blog__more {
  color: var(--c-accent);
}

.hwt-blog__view-all {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

@media (max-width: 900px) {
  .hwt-blog__grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }

  .hwt-blog__card-title,
  .hwt-blog__excerpt {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-blog__link:hover,
  .hwt-blog__link:hover .hwt-blog__media img { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — Happy Farming CTA banner
   ========================================================================== */

.hwt-cta-banner {
  --hwt-cta-torn: 14px;
  position: relative;
  overflow: hidden;
  padding:
    calc(clamp(3.5rem, 7vw, 5rem) + var(--hwt-cta-torn))
    0
    calc(clamp(3.5rem, 7vw, 5rem) + var(--hwt-cta-torn));
  color: #fff;
}

.hwt-cta-banner::before,
.hwt-cta-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: var(--hwt-cta-torn);
  pointer-events: none;
  z-index: 4;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 14' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q30,12 60,4 T120,8 T180,3 T240,10 T300,5 T360,11 T420,4 T480,9 T540,3 T600,10 T660,5 T720,12 T780,4 T840,9 T900,3 T960,11 T1020,5 T1080,10 T1140,4 L1200,8 L1200,14 L0,14 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 14' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q30,12 60,4 T120,8 T180,3 T240,10 T300,5 T360,11 T420,4 T480,9 T540,3 T600,10 T660,5 T720,12 T780,4 T840,9 T900,3 T960,11 T1020,5 T1080,10 T1140,4 L1200,8 L1200,14 L0,14 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hwt-cta-banner::before {
  top: calc(-1 * var(--hwt-cta-torn) + 1px);
  background: #fff;
}

.hwt-cta-banner::after {
  bottom: calc(-1 * var(--hwt-cta-torn) + 1px);
  background: var(--c-bg-dark);
}

.hwt-cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hwt-cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hwt-cta-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 22, 14, 0.88) 0%, rgba(8, 22, 14, 0.62) 45%, rgba(8, 22, 14, 0.25) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hwt-cta-banner__leaf {
  position: absolute;
  left: clamp(-1rem, 2vw, 2rem);
  bottom: 8%;
  z-index: 2;
  width: min(220px, 28vw);
  color: rgba(123, 196, 58, 0.45);
  pointer-events: none;
}

.hwt-cta-banner__leaf svg {
  width: 100%;
  height: auto;
}

.hwt-cta-banner__inner {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-cta-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
  font-family: var(--font-script);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 600;
  color: var(--c-accent);
}

.hwt-cta-banner__sparkle {
  display: inline-flex;
  color: var(--c-accent);
}

.hwt-cta-banner__sparkle svg {
  width: 1.125rem;
  height: 1.125rem;
}

.hwt-cta-banner__title {
  max-width: 16ch;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hwt-cta-banner__desc {
  max-width: 42ch;
  margin-bottom: 1.75rem;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hwt-cta-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.4375rem 0.4375rem 0.4375rem 1.5rem;
  background: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--c-bg-dark);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-cta-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.hwt-cta-banner__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-primary-deep);
}

.hwt-cta-banner__cta-arrow svg {
  width: 1.0625rem;
  height: 1.0625rem;
}

@media (max-width: 767px) {
  .hwt-cta-banner__leaf {
    opacity: 0.35;
    width: 140px;
  }

  .hwt-cta-banner__title {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-cta-banner__cta:hover { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — Site footer
   ========================================================================== */

.hwt-footer {
  --hwt-footer-torn: 14px;
  position: relative;
  padding:
    calc(clamp(3rem, 6vw, 4.5rem) + var(--hwt-footer-torn))
    0
    clamp(1.5rem, 3vw, 2rem);
  background: var(--c-bg-dark);
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.hwt-footer::before {
  content: '';
  position: absolute;
  top: calc(-1 * var(--hwt-footer-torn) + 1px);
  left: 0;
  right: 0;
  height: var(--hwt-footer-torn);
  background: var(--c-bg-dark);
  transform: scaleY(-1);
  pointer-events: none;
  z-index: 2;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 14' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q30,12 60,4 T120,8 T180,3 T240,10 T300,5 T360,11 T420,4 T480,9 T540,3 T600,10 T660,5 T720,12 T780,4 T840,9 T900,3 T960,11 T1020,5 T1080,10 T1140,4 L1200,8 L1200,14 L0,14 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 14' preserveAspectRatio='none'%3E%3Cpath d='M0,0 Q30,12 60,4 T120,8 T180,3 T240,10 T300,5 T360,11 T420,4 T480,9 T540,3 T600,10 T660,5 T720,12 T780,4 T840,9 T900,3 T960,11 T1020,5 T1080,10 T1140,4 L1200,8 L1200,14 L0,14 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hwt-footer__decor {
  position: absolute;
  right: clamp(0.5rem, 4vw, 3rem);
  bottom: clamp(3rem, 8vw, 5rem);
  width: min(260px, 34vw);
  opacity: 0.08;
  color: #fff;
  pointer-events: none;
}

.hwt-footer__decor svg {
  width: 100%;
  height: auto;
}

.hwt-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.85fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hwt-footer__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hwt-footer__brand-logo img {
  width: auto;
  height: auto;
  max-width: min(320px, 100%);
  max-height: 96px;
  flex-shrink: 0;
  object-fit: contain;
}

.hwt-footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.2;
}

.hwt-footer__brand-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.hwt-footer__brand-text {
  max-width: 34ch;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.hwt-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.hwt-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-primary-deep);
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.hwt-footer__social-link:hover {
  transform: translateY(-2px);
  background: #e0c04a;
}

.hwt-footer__social-link svg {
  width: 1rem;
  height: 1rem;
}

.hwt-footer__heading {
  margin-bottom: 1.125rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 800;
  color: #fff;
}

.hwt-footer__heading::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 0.5rem;
  border-radius: var(--r-full);
  background: var(--c-accent);
}

.hwt-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
}

.hwt-footer__list a {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--dur-fast) var(--ease);
}

.hwt-footer__list a:hover {
  color: var(--c-accent);
}

.hwt-footer__list-item--all {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hwt-footer__list-item--all a {
  font-weight: 600;
  color: var(--c-accent);
}

.hwt-footer__list-item--all a:hover {
  color: #fff;
}

.hwt-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
}

.hwt-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.hwt-footer__contact-item a {
  color: inherit;
  transition: color var(--dur-fast) var(--ease);
}

.hwt-footer__contact-item a:hover {
  color: var(--c-accent);
}

.hwt-footer__contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  color: var(--c-accent);
}

.hwt-footer__contact-icon svg {
  width: 100%;
  height: 100%;
}

.hwt-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.hwt-footer__bottom p {
  margin: 0;
}

.hwt-footer__bottom p + p {
  margin-top: 0.5rem;
}

.hwt-footer__credit a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color var(--dur-fast) var(--ease);
}

.hwt-footer__credit a:hover {
  color: var(--c-accent);
}

/* Scroll to top */
.hwt-scroll-top {
  position: fixed;
  right: clamp(1.25rem, 3vw, 2rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  z-index: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--c-accent);
  color: var(--c-primary-deep);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity var(--dur-fast) var(--ease), visibility var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.hwt-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hwt-scroll-top:hover {
  background: #e0c04a;
}

.hwt-scroll-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Floating call (bottom center) */
.hwt-float-call {
  position: fixed;
  left: 50%;
  bottom: clamp(1.25rem, 3vw, 2rem);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(30, 107, 58, 0.45);
  transform: translateX(-50%);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.hwt-float-call:hover {
  background: var(--c-primary-hover);
  transform: translateX(-50%) scale(1.06);
  box-shadow: 0 8px 28px rgba(30, 107, 58, 0.55);
}

.hwt-float-call svg {
  width: 1.625rem;
  height: 1.625rem;
}

/* Floating WhatsApp (bottom left) */
.hwt-float-whatsapp,
.hwt-hero__whatsapp {
  position: fixed;
  bottom: clamp(1.25rem, 3vw, 2rem);
  left: clamp(1.25rem, 3vw, 2rem);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.hwt-float-whatsapp:hover,
.hwt-hero__whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

.hwt-float-whatsapp svg,
.hwt-hero__whatsapp svg {
  width: 1.625rem;
  height: 1.625rem;
}

@media (max-width: 1024px) {
  .hwt-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hwt-footer__grid {
    grid-template-columns: 1fr;
  }

  .hwt-scroll-top {
    bottom: calc(clamp(1.25rem, 3vw, 2rem) + 3.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hwt-footer__social-link:hover,
  .hwt-scroll-top.is-visible { transform: none; }
  .hwt-float-call:hover { transform: translateX(-50%); }
  .hwt-float-whatsapp:hover,
  .hwt-hero__whatsapp:hover { transform: none; }
}

/* ==========================================================================
   HarvestWay Traders — Final responsive & performance tuning
   ========================================================================== */

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
  min-width: 0;
}

h1, h2, h3, h4, p, li, blockquote {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

img:not(.hwt-logo-badge__img) {
  max-width: 100%;
  height: auto;
}

img[loading="lazy"] {
  content-visibility: auto;
}

/* Safe-area padding for notched devices */
.hwt-topbar__inner,
.hwt-navbar__inner,
.hwt-hero__inner,
.hwt-footer__inner,
.hwt-product-main__inner,
.hwt-blog-post-main__inner,
.hwt-blog__grid,
.hwt-blog-banner__inner {
  padding-left: max(var(--gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--gutter), env(safe-area-inset-right, 0px));
}

/* Touch-friendly controls */
.hwt-navbar__menu-btn,
.hwt-drawer__close,
.hwt-hero__slider-btn,
.hwt-hero__dot,
.hwt-products__nav-btn,
.hwt-scroll-top,
.hwt-float-call,
.hwt-float-whatsapp,
.hwt-hero__whatsapp,
.hwt-blog-post__back {
  min-width: 44px;
  min-height: 44px;
}

.hwt-hero__cta,
.hwt-cta-banner__cta,
.hwt-blog__view-all .btn {
  min-height: 44px;
}

/* Prevent horizontal overflow from wide grids */
.hwt-products__track,
.hwt-categories__grid,
.hwt-testimonials__track {
  max-width: 100%;
}

/* Blog article mobile */
@media (max-width: 767px) {
  .hwt-blog-post-main {
    padding: 1.5rem 0 2rem;
  }

  .hwt-blog-post__figure {
    margin-inline: calc(-1 * var(--gutter));
    border-radius: 0;
  }

  .hwt-blog-post__inline-figure {
    margin-inline: calc(-0.5 * var(--gutter));
  }

  .hwt-blog-post__prose h2 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
  }

  .hwt-blog-post__prose blockquote {
    padding: 1rem 1.125rem;
    font-size: 1.0625rem;
  }

  .hwt-blog-banner__title {
    font-size: clamp(1.625rem, 7vw, 2.25rem);
    max-width: none;
  }

  .hwt-blog-related .hwt-blog__grid {
    max-width: none;
    padding-inline: max(var(--gutter), env(safe-area-inset-left, 0px));
  }
}

/* Hero compact on small phones */
@media (max-width: 480px) {
  .hwt-hero {
    min-height: clamp(460px, 88vh, 720px);
  }

  .hwt-hero__title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .hwt-float-whatsapp,
  .hwt-hero__whatsapp {
    width: 3rem;
    height: 3rem;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
    left: max(1rem, env(safe-area-inset-left, 0px));
  }

  .hwt-scroll-top {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }

  .hwt-float-call {
    width: 3rem;
    height: 3rem;
    bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  }
}

/* FAQ / about stack tighter on mobile */
@media (max-width: 640px) {
  .hwt-faq__inner,
  .hwt-about__inner,
  .hwt-why__inner {
    gap: 1.5rem;
  }

  .hwt-product-banner__title {
    letter-spacing: 0.01em;
  }
}

/* Reduce motion-friendly scroll */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}