/* ============================================================
   ARROW FRESH — PATH A — MOBILE-FIRST DESIGN SYSTEM
   Primary: deep green (#006e2d). Built phone-first.
   ============================================================ */

:root {
  /* Brand */
  --primary:    #006e2d;
  --primary-d:  #00541f;
  --primary-l:  #5fa777;
  --accent:     #b85c1c;     /* terracotta — used sparingly */

  /* Neutrals */
  --dark:       #0f1b08;     /* near-black green */
  --dark-soft:  #2a3a1a;
  --ink:        #1f2a16;
  --ink-soft:   #3b4a2c;
  --muted:      #6b6a52;
  --rule:       #cdc6a4;
  --rule-soft:  #e3dab9;

  /* Paper / surfaces */
  --light:      #fefae0;
  --paper:      #f6efd9;
  --paper-warm: #efe4c2;
  --white:      #ffffff;

  /* Status */
  --green:      #4d6b32;
  --warn:       #b85c1c;

  /* Spacing (mobile baseline → desktop ceiling via clamp) */
  --pad-x:    clamp(20px, 5vw, 64px);
  --pad-y:    clamp(56px, 8vw, 110px);
  --gap-sm:   clamp(8px, 1.5vw, 12px);
  --gap-md:   clamp(16px, 2.5vw, 24px);
  --gap-lg:   clamp(28px, 5vw, 64px);

  /* Type ramp */
  --t-hero:   clamp(36px, 7.5vw, 84px);
  --t-h1:     clamp(32px, 6vw, 64px);
  --t-h2:     clamp(28px, 5vw, 56px);
  --t-h3:     clamp(22px, 3.5vw, 36px);
  --t-h4:     clamp(18px, 2.5vw, 24px);
  --t-body:   clamp(15px, 1.5vw, 17px);
  --t-small:  clamp(13px, 1.4vw, 14px);

  --maxw:     1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Lato', sans-serif;
  background: var(--light);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body { width: 100%; min-width: 0; }

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

.heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.0;
}
.heading b { font-weight: 600; color: var(--primary); }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary-d);
}
.eyebrow-light { color: rgba(255, 250, 220, 0.78); }

/* ============================================================
   NAVIGATION — sticky, hamburger below 900px
   ============================================================ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  gap: 12px;
}
.nav.on-light {
  background: var(--light);
  border-bottom: 1px solid var(--rule);
  position: sticky;
}
.nav.on-light .nav-link { color: var(--ink); text-shadow: none; }
.nav.on-light .nav-logo-text { color: var(--ink); }
.nav.on-light .hamburger span { background: var(--ink); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo img { height: 36px; width: auto; }
@media (min-width: 700px) {
  .nav-logo img { height: 42px; }
}

.nav-links {
  display: none;
  list-style: none;
  gap: clamp(20px, 3vw, 36px);
}
.nav-link {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.nav-link:hover, .nav-link.active { border-color: var(--primary-l); }
.nav-link.active { color: var(--primary-l); }

.grow-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background .2s ease;
}
.grow-btn:hover { background: var(--primary-d); }
.grow-btn.on-light { background: var(--primary); color: var(--white); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-right: -10px;
  z-index: 110;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mob-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 105;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 80px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mob-menu.open { transform: translateX(0); }
.mob-menu a {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: var(--light);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 250, 224, 0.12);
}
.mob-menu a.active { color: var(--primary-l); }
.mob-menu a.mob-menu-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  align-self: flex-start;
  border-bottom: none;
  min-height: 52px;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .grow-btn { display: inline-flex; }
  .hamburger { display: none; }
  .mob-menu { display: none; }
  .nav { padding: 24px var(--pad-x); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-height: 48px;
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn.solid    { background: var(--primary); color: var(--white); }
.btn.solid:hover { background: var(--primary-d); }
.btn.light    { background: var(--light); color: var(--dark); }
.btn.light:hover { background: var(--paper); }
.btn.dark     { background: var(--dark); color: var(--light); }
.btn.outline  { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn.outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn.outline-ink { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn.outline-ink:hover { background: var(--ink); color: var(--light); }

.btn-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-bottom: 1px solid currentColor;
  display: inline-block;
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: var(--pad-y) 0; }
.section.cream { background: var(--paper); }
.section.light { background: var(--light); }
.section.dark  { background: var(--dark); color: var(--light); }
.section.dark .heading b { color: var(--white); }

.section-head {
  margin-bottom: clamp(28px, 5vw, 56px);
}
.section-head h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: var(--t-h2);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 12px;
  margin-bottom: 14px;
}
.section-head h2 b { font-weight: 600; color: var(--primary); }
.section-head p {
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
}
@media (min-width: 900px) {
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--dark);
  }
  .section-head p { padding-bottom: 8px; }
}

/* ============================================================
   PAGE HEADER (non-home)
   ============================================================ */
.page-header {
  position: relative;
  min-height: 420px;
  width: 100%;
  overflow: hidden;
  background: #0a0e07;
}
@media (min-width: 900px) {
  .page-header { min-height: 520px; }
}
.page-header video,
.page-header img.bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-header-overlay {
  position: absolute; inset: 0;
  /* Strong scrim at top for nav legibility, stronger gradient at bottom for hero copy */
  background:
    linear-gradient(180deg,
      rgba(10, 14, 7, 0.78) 0%,
      rgba(10, 14, 7, 0.45) 12%,
      rgba(10, 14, 7, 0) 24%,
      rgba(10, 14, 7, 0) 45%,
      rgba(10, 14, 7, 0.55) 75%,
      rgba(10, 14, 7, 0.92) 100%);
}
.page-header-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 var(--pad-x) clamp(40px, 6vw, 64px);
}
.page-header-eyebrow {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.page-header h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  color: var(--white);
  font-size: var(--t-h1);
  line-height: 1.05;
  max-width: 900px;
  letter-spacing: -0.015em;
}
.page-header h1 b { font-weight: 700; color: var(--white); }
.page-header p {
  margin-top: 18px;
  color: rgba(255,255,255,0.95);
  font-size: var(--t-body);
  line-height: 1.55;
  max-width: 580px;
}

/* ============================================================
   STAT STRIP — homepage marquee numbers
   ============================================================ */
.stats-strip {
  background: var(--dark);
  color: var(--light);
  padding: clamp(32px, 5vw, 56px) var(--pad-x);
  border-top: 1px solid rgba(255, 250, 224, 0.1);
  border-bottom: 1px solid rgba(255, 250, 224, 0.1);
}
.stats-strip-eb {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 22px;
  text-align: center;
}
.stats-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 700px) {
  .stats-strip-grid { grid-template-columns: repeat(4, 1fr); }
}
.stats-strip-cell {
  padding: clamp(20px, 3vw, 32px) 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 250, 224, 0.08);
  border-bottom: 1px solid rgba(255, 250, 224, 0.08);
}
.stats-strip-cell:nth-child(2n) { border-right: none; }
.stats-strip-cell:nth-last-child(-n+2) { border-bottom: none; }
@media (min-width: 700px) {
  .stats-strip-cell { border-bottom: none; }
  .stats-strip-cell:nth-child(2n) { border-right: 1px solid rgba(255, 250, 224, 0.08); }
  .stats-strip-cell:last-child { border-right: none; }
}
.stats-strip-num {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.95;
  color: var(--light);
  letter-spacing: -0.02em;
}
.stats-strip-num .u {
  font-size: 0.4em;
  color: var(--primary-l);
  font-weight: 400;
  margin-left: 2px;
  letter-spacing: 0;
}
.stats-strip-label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254, 250, 224, 0.6);
  font-weight: 700;
  line-height: 1.4;
}

/* ============================================================
   STOCKED AT
   ============================================================ */
.stocked {
  background: var(--light);
  padding: var(--pad-y) 0;
}
.stocked-head {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 var(--pad-x);
}
.stocked-head h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  margin-top: 12px;
  letter-spacing: -0.01em;
}
.stocked-head h2 b { font-weight: 600; color: var(--primary); }
.stocked-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 40px) var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 700px) {
  .stocked-logos { grid-template-columns: repeat(5, 1fr); }
}
.stocked-logos > a {
  display: block;
  text-align: center;
  padding: 6px;
}
.stocked-logos img {
  max-width: 100%;
  max-height: 44px;
  margin: 0 auto;
  display: block;
  filter: grayscale(0.85) brightness(0.5);
  opacity: 0.75;
  transition: all .3s ease;
}
.stocked-logos a:hover img { filter: none; opacity: 1; }

/* ============================================================
   PARTNER CTA
   ============================================================ */
.partner {
  background: var(--dark);
  color: var(--light);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.partner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(95, 167, 119, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
}
.partner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .partner-inner {
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: center;
  }
}
.partner h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.0;
  color: var(--light);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.partner h2 b { font-weight: 600; color: var(--white); }
.partner-lead {
  font-size: var(--t-body);
  line-height: 1.55;
  color: rgba(254, 250, 224, 0.78);
  margin-bottom: 28px;
  max-width: 540px;
}
.partner-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.partner-aside {
  padding-top: 28px;
  border-top: 1px solid rgba(254, 250, 224, 0.18);
}
@media (min-width: 900px) {
  .partner-aside {
    border-top: none;
    border-left: 1px solid rgba(254, 250, 224, 0.15);
    padding-top: 0;
    padding-left: 40px;
  }
}
.partner-aside-eb {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin-bottom: 14px;
}
.partner-aside h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.3vw, 22px);
  line-height: 1.3;
  color: var(--light);
  margin-bottom: 18px;
}
.partner-aside-items { list-style: none; }
.partner-aside-items li {
  padding: 11px 0;
  border-top: 1px solid rgba(254, 250, 224, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  color: rgba(254, 250, 224, 0.78);
}
.partner-aside-items li b { color: var(--light); font-weight: 400; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--dark);
  color: var(--light);
  padding: clamp(40px, 6vw, 60px) var(--pad-x) clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(254, 250, 224, 0.12);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(254, 250, 224, 0.12);
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 700px) {
  .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.foot-brand img { height: 30px; margin-bottom: 18px; }
.foot-brand p { font-size: 14px; color: rgba(254, 250, 224, 0.6); line-height: 1.55; max-width: 320px; }
.foot-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-l);
  margin-bottom: 16px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 9px; }
.foot-col a {
  color: var(--light);
  font-size: 14px;
  opacity: 0.8;
}
.foot-col a:hover { opacity: 1; color: var(--primary-l); }
.foot-bot {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 12px;
  color: rgba(254, 250, 224, 0.5);
}
@media (min-width: 700px) {
  .foot-bot { flex-direction: row; align-items: center; }
}
