/* HarvestWay Traders — Blog pages stylesheet (lean bundle) */
/* 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 — 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 — Blog archive & single post pages
   ========================================================================== */

.hwt-blog-page,
.hwt-blog-post-page {
  background: var(--c-bg);
  --navbar-torn-h: 0px;
}

.hwt-blog-page .hwt-site-header,
.hwt-blog-post-page .hwt-site-header {
  box-shadow: 0 4px 24px rgba(16, 42, 24, 0.08);
}

.hwt-blog-page .hwt-navbar,
.hwt-blog-post-page .hwt-navbar {
  border-bottom: none;
}

/* ---- Page banner ---- */
.hwt-blog-banner {
  margin-top: calc(var(--header-topbar-h) + var(--header-navbar-h));
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--c-primary-deep) 0%, var(--c-primary) 55%, #2a8a4a 100%);
  color: #fff;
  text-align: center;
}

.hwt-blog-banner__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-blog-banner__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}

.hwt-blog-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  max-width: 22ch;
  margin-inline: auto;
}

.hwt-blog-banner__subtitle {
  margin-top: 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  opacity: 0.92;
}

/* ---- Archive ---- */
.hwt-blog-archive {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
}

.hwt-blog-archive .hwt-blog__grid {
  margin-top: 0;
}

/* ---- Single post ---- */
.hwt-blog-post-main {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hwt-blog-post-main__inner {
  max-width: 46rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hwt-blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-blog-post__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.hwt-blog-post__meta-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.hwt-blog-post__figure {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  overflow: hidden;
  border-radius: var(--r-md);
  background: #eef2ee;
}

.hwt-blog-post__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hwt-blog-post__prose {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--c-text);
}

.hwt-blog-post__prose p {
  margin-bottom: 1.25rem;
}

.hwt-blog-post__prose h2 {
  margin: 2.25rem 0 1rem;
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--c-primary-deep);
}

.hwt-blog-post__prose h3 {
  margin: 1.75rem 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-primary);
}

.hwt-blog-post__prose ul,
.hwt-blog-post__prose ol {
  margin: 0 0 1.5rem 1.25rem;
  padding-left: 0.5rem;
}

.hwt-blog-post__prose li {
  margin-bottom: 0.625rem;
  line-height: 1.75;
}

.hwt-blog-post__prose ul li {
  list-style: disc;
}

.hwt-blog-post__prose ol li {
  list-style: decimal;
}

.hwt-blog-post__prose blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--c-accent);
  background: #f3f8f4;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--font-script);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--c-primary-deep);
}

.hwt-blog-post__prose hr {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid #dde8de;
}

.hwt-blog-post__inline-figure {
  margin: 2rem 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: #eef2ee;
}

.hwt-blog-post__inline-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.hwt-blog-post__inline-figure figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  color: var(--c-text-muted);
  background: #f7faf7;
  border-top: 1px solid #e8efe8;
}

.hwt-blog-post__prose p:last-child {
  margin-bottom: 0;
}

.hwt-blog-post__prose a {
  color: var(--c-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hwt-blog-post__prose a:hover {
  color: var(--c-accent);
}

.hwt-blog-post__prose strong {
  color: var(--c-primary-deep);
}

.hwt-blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.hwt-blog-post__back svg {
  width: 1rem;
  height: 1rem;
}

.hwt-blog-post__back:hover {
  color: var(--c-accent);
}

/* ---- Related posts ---- */
.hwt-blog-related {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: #f7faf7;
}

.hwt-blog-related__head {
  max-width: var(--container);
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-inline: var(--gutter);
  text-align: center;
}

.hwt-blog-related__label {
  margin-bottom: 0.5rem;
  font-family: var(--font-script);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--c-primary);
}

.hwt-blog-related__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--c-primary-deep);
}

@media (max-width: 767px) {
  .hwt-blog-post__prose ul,
  .hwt-blog-post__prose ol {
    margin-left: 0.75rem;
  }

  .hwt-blog-post__meta {
    gap: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .hwt-blog-post-main__inner {
    padding-inline: max(0.875rem, env(safe-area-inset-left, 0px));
  }
}

@media (max-width: 640px) {
  .hwt-blog-banner__title {
    max-width: 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; }
}