/* ── Tokens (spec §1) ── */
:root {
  --green-900: #1D3A20;
  --green-800: #27500A;
  --green-600: #3B6D11;
  --green-400: #639922;
  --green-200: #97C459;
  --green-100: #C0DD97;
  --green-50:  #EAF3DE;
  --amber-600: #BA7517;
  --amber-400: #EF9F27;
  --blue-400:  #378ADD;
  --blue-300:  #85B7EB;
  --coral-500: #D85A30;
  --teal-500:  #1D9E75;
  --warm-cream: #FAF6F0;
  --near-black: #1C1A15;
  --text-dark:  #1A2C12;

  --color-background-primary:   #ffffff;
  --color-background-secondary: #F4F2EE;
  --color-text-primary:    #1C1A15;
  --color-text-secondary:  #6A6760;
  --color-text-tertiary:   #9A9690;
  --color-border-secondary: #D5CFC4;
  --color-border-tertiary:  #E5DDD0;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   13px;
  --radius-pill: 20px;

  --content-max: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--color-text-primary);
  background: var(--color-background-primary);
  font-size: 13px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.15s ease;
  text-align: center;
  white-space: nowrap;
  color: #fff;
}
.btn-primary { background: var(--green-900); color: #fff; }
.btn-primary:hover { background: #14291B; }
.btn-block { display: flex; width: 100%; }
.btn-on-dark { background: #fff; color: var(--near-black); }
.btn-on-dark:hover { background: #f0eeea; }
.btn .ti { font-size: 16px; }

/* ── Nav (spec §3) ── */
.nav {
  background: var(--color-background-primary);
  border-bottom: 0.5px solid var(--color-border-tertiary);
}
.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 12px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--green-400);
}
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-login {
  font-size: 13px;
  color: var(--color-text-secondary);
}
.nav-login:hover { color: var(--color-text-primary); }
.nav-cta { padding: 8px 16px; font-size: 13px; }

/* ── Hero (spec §4) ── */
.hero {
  padding: 48px 32px 56px;
}
.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 44px;
  align-items: start;
}
.hero-generic .hero-inner {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  text-align: center;
}
.hero-generic .hero-left { text-align: center; }
.hero-generic .hero-headline { max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-generic .hero-cta { max-width: 360px; margin-left: auto; margin-right: auto; }
.hero-generic .hero-hook-generic { margin-left: auto; margin-right: auto; }

/* Variant 2 with inlined producers panel: widen the right column to fit
   two phone-shaped mockups side by side with matching heights. */
/* V2 hero with inline producers panel: narrow the left copy column so the
   right side hosts two equal-width phone-shaped panels comfortably. */
.hero-dual .hero-inner { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr); }
/* Flex (not grid) on the right side: the producers-panel partial emits
   <script> siblings which grid auto-placement was treating as extra cells,
   preventing the panel from stretching to row height. Flex ignores
   display:none items entirely. */
.hero-right-dual {
  display: flex;
  gap: 16px;
  align-items: stretch;
  min-height: 540px;
}
.hero-right-dual > .shop-frame,
.hero-right-dual > .producers-panel {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  width: auto;
  /* Identical floor on both items: with align-items: stretch the taller
     of the two pulls both up. Without this floor on the panel, its inner
     flex:1 body couldn't compute against a definite height and collapsed
     to its min-content. */
  min-height: 540px;
}
.hero-right-dual .shop-frame { display: flex; flex-direction: column; }
.hero-right-dual .supplier-list { flex: 1; overflow: hidden; }
.hero-left { color: var(--text-dark); }
.hero-identity {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.hero-logo-wrap { position: relative; width: 36px; height: 36px; flex-shrink: 0; }
.hero-logo-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; display: block; }
.hero-logo-fallback {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green-900); color: #fff;
  align-items: center; justify-content: center;
  font-size: 15px; font-weight: 500;
}
.hero-biz-name { font-size: 14px; font-weight: 500; color: #2C3E20; }
.hero-location-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.6);
  border: 0.5px solid rgba(80,80,40,0.15);
  font-size: 11px;
  color: var(--text-dark);
}
.hero-variant-2 .hero-location-pill { border-color: rgba(80,60,40,0.15); }
.hero-variant-3 .hero-location-pill { border-color: rgba(40,80,30,0.18); }
.hero-eyebrow {
  font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin: 0 0 12px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.18;
  margin: 0 0 18px;
  color: var(--text-dark);
}
.hero-hook {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.65;
  color: #2C3020;
  border-left: 3px solid var(--amber-600);
  border-radius: 0;
  padding: 0 0 0 14px;
  margin: 0 0 28px;
  background: transparent;
}
.hero-hook-generic {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0 0 28px;
  max-width: 540px;
  opacity: 0.85;
}
.hero-cta {
  padding: 12px 20px;
  border-radius: var(--radius-md);
}
.hero-cta-sub {
  font-size: 11px;
  margin: 10px 0 0;
  color: var(--color-text-secondary);
}
.hero-cta-sub.strong {
  font-weight: 500;
  color: var(--color-text-primary);
  margin-top: 3px;
}

.hero-right { display: flex; align-items: flex-start; justify-content: center; }

/* ── Shop preview frame (spec §4.3) ── */
.shop-frame {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 13px;
  border: 0.5px solid rgba(0,0,0,0.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}
.shop-chrome {
  display: flex; align-items: center; gap: 4px;
  height: 30px;
  padding: 8px 12px;
  border-bottom: 0.5px solid rgba(0,0,0,0.05);
}
.shop-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #DDD0C4;
}
.shop-url {
  margin-left: 8px;
  font-size: 10px;
  color: var(--color-text-secondary);
  background: rgba(255,255,255,0.7);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

/* Shop header (avatar + business name + cart) */
.shop-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 0.5px solid rgba(0,0,0,0.06);
}
.shop-header-identity { display: flex; align-items: center; gap: 10px; min-width: 0; }
.shop-header-avatar {
  position: relative;
  width: 30px; height: 30px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.shop-header-avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.shop-header-avatar-initial {
  position: absolute; inset: 0;
  background: var(--green-900); color: #fff;
  align-items: center; justify-content: center;
  font-size: 13px; font-weight: 500;
}
.shop-header-name {
  font-size: 13px; font-weight: 500;
  color: var(--near-black);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.shop-header-cart {
  font-size: 18px;
  color: var(--near-black);
  flex-shrink: 0;
}

/* Collection panel (Order by … for collection on …) */
.shop-collection-panel {
  margin: 12px 12px 0;
  padding: 10px 12px;
  border: 1px solid var(--color-border-tertiary);
  border-radius: var(--radius-md);
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-text-primary);
  background: #fff;
}
.shop-collection-panel strong {
  font-weight: 500;
  color: var(--green-900);
}
/* Category chip row (between chrome and tile grid) */
.shop-chip-row {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 0.5px solid rgba(0,0,0,0.04);
}
.shop-chip-row::-webkit-scrollbar { display: none; }
.shop-chip {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: var(--radius-pill);
  background: var(--color-background-secondary);
  color: var(--color-text-secondary);
  white-space: nowrap;
}
.shop-chip-active {
  background: var(--green-900);
  color: #fff;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}
.shop-tile {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 0.5px solid var(--color-border-tertiary);
  display: flex;
  flex-direction: column;
}
.shop-tile-image {
  position: relative;
  height: 100px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #E5DDD0;
}
.shop-tile-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.shop-tile-meta {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-tile-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--near-black);
  line-height: 1.3;
}
.shop-tile-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--green-600);
  border-radius: var(--radius-pill);
  padding: 2px 4px;
  align-self: flex-start;
  gap: 6px;
}
.shop-tile-qty-btn {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-600);
  width: 16px;
  text-align: center;
  line-height: 1;
}
.shop-tile-qty-value {
  font-size: 11px;
  font-weight: 500;
  color: var(--green-600);
  min-width: 10px;
  text-align: center;
}
.shop-tile-ghost {
  background: #fafafa;
  border: 0.5px dashed #e2ddd2;
  min-height: 132px;
  opacity: 0.35;
}
.shop-tile-ghost .shop-tile-image,
.shop-tile-ghost .shop-tile-name,
.shop-tile-ghost .shop-tile-meta { display: none; }

/* Footer with +N more products and View basket */
.shop-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 0.5px solid var(--color-border-tertiary);
  padding: 10px 14px;
  min-height: 44px;
}
.shop-more-products {
  font-size: 11px;
  color: var(--color-text-secondary);
}
.shop-basket-btn {
  background: var(--green-900);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-md);
}
.shop-collection {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 0.5px solid var(--color-border-tertiary);
  padding: 7px 13px 10px;
}
.shop-collection-name {
  font-size: 10px;
  color: var(--color-text-secondary);
}
.shop-order-pill {
  background: var(--green-900);
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: var(--radius-md);
  font-weight: 500;
}

/* ── Supplier order builder (Variant 2, spec §4.4) ── */
.supplier-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 0.5px solid rgba(0,0,0,0.05);
}
.supplier-header-title { font-size: 13px; font-weight: 500; }
.supplier-header-week { font-size: 10px; color: var(--color-text-secondary); margin-top: 1px; }
.supplier-pending-badge {
  background: var(--green-50);
  color: var(--green-600);
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.supplier-list { padding: 9px 10px; }
.supplier-empty {
  font-size: 12px;
  color: var(--color-text-tertiary);
  padding: 20px 6px;
  text-align: center;
}
.supplier-card {
  background: #fff;
  border-radius: 10px;
  border: 0.5px solid var(--color-border-tertiary);
  padding: 11px 12px;
  margin-bottom: 7px;
}
.supplier-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.supplier-card-name { font-size: 12px; font-weight: 500; color: var(--near-black); }
.supplier-draft-badge {
  background: #FEF0E4;
  color: var(--amber-600);
  font-size: 10px;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.supplier-line-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0;
}
.supplier-line-name { font-size: 11px; color: var(--color-text-secondary); }
.supplier-qty {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 22px;
  background: #F5F0E8;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-primary);
}
.supplier-send-btn {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  background: var(--green-900);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-md);
  margin-top: 8px;
}
.supplier-send-all {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--green-900);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: var(--radius-md);
  margin: 0 10px 10px;
}

/* ── Week bars (spec §5) ── */
.week-bars {
  background: var(--color-background-primary);
  padding: 56px 32px;
}
.week-inner { max-width: 640px; margin: 0 auto; }
.section-h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 28px;
  color: var(--color-text-primary);
  line-height: 1.18;
}
@media (max-width: 768px) {
  .section-h2 { font-size: 26px; }
}
.week-bar-list { display: flex; flex-direction: column; gap: 14px; }
.week-bar-row {
  display: grid;
  grid-template-columns: 220px 1fr 44px;
  gap: 18px;
  align-items: center;
}
.week-bar-label {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}
.week-bar-track {
  height: 14px;
  background: #F0EBE0;
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.week-bar-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  transition: width 0.4s ease;
}
.week-bar-coral { background: var(--amber-600); }   /* supplier ordering */
.week-bar-blue  { background: var(--blue-400); }    /* social/availability */
.week-bar-amber { background: var(--coral-500); }   /* order management */
.week-bar-teal  { background: var(--teal-500); }    /* actual selling */
.week-bar-hours {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  color: var(--color-text-primary);
  font-variant-numeric: tabular-nums;
}
.week-bar-hours-muted { color: var(--color-text-tertiary); }
.week-bars-summary {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-text-primary);
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 0.5px solid var(--color-border-tertiary);
  max-width: 560px;
}
.week-bars-summary strong { font-weight: 500; color: var(--green-900); }

@media (max-width: 768px) {
  .week-bars-summary { font-size: 18px; }
}

/* ── Built for food (spec §6) ── */
.built-for-food {
  background: var(--green-900);
  padding: 48px 32px;
}
.bff-inner { max-width: var(--content-max); margin: 0 auto; }
.bff-h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 10px;
}
.bff-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 0 36px;
}
.bff-cards { display: flex; gap: 28px; }
.bff-card {
  flex: 1; min-width: 0;
  background: none;
  border-radius: 0;
  border-left: 3px solid var(--amber-400);
  padding: 0 0 0 20px;
}
.bff-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.bff-icon .ti { font-size: 17px; }
.bff-heading {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.35;
  min-height: 46px;
  margin-bottom: 8px;
}
.bff-body {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ── Pain selector (spec §7) ── */
.pain-selector {
  background: var(--warm-cream);
  padding: 40px 32px;
}
.pain-inner { max-width: 520px; margin: 0 auto; }
.pain-eyebrow {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7A6A58;
  margin: 0 0 12px;
}
.pain-sub {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: -22px 0 22px;  /* H2 owns 28px bottom; we want 6px between H2 and sub */
}
.pain-list { display: flex; flex-direction: column; gap: 6px; }
.pain-row {
  display: grid;
  grid-template-columns: 15px 1fr auto;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 13px;
  background: #fff;
  border: 0.5px solid var(--color-border-tertiary);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.pain-row:hover { border-color: var(--color-border-secondary); }
.pain-row.expanded {
  border: 1.5px solid var(--green-600);
  padding: 11px 12.5px; /* compensate for 1.5px border */
}
.pain-checkbox-wrap {
  position: relative;
  width: 15px; height: 15px;
  margin-top: 1px;
  display: inline-block;
}
.pain-checkbox-input {
  appearance: none;
  position: absolute; inset: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}
.pain-checkbox-visual {
  position: absolute; inset: 0;
  border-radius: 3px;
  border: 1.5px solid var(--color-border-secondary);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.pain-checkbox-tick {
  font-size: 10px;
  color: #fff;
  display: none;
}
.pain-checkbox-input:checked + .pain-checkbox-visual {
  background: var(--green-800);
  border-color: var(--green-800);
}
.pain-checkbox-input:checked + .pain-checkbox-visual .pain-checkbox-tick {
  display: block;
}
.pain-row-main { min-width: 0; }
.pain-row-label { font-size: 13px; font-weight: 500; color: var(--color-text-primary); line-height: 1.4; }
.pain-row-detail {
  font-size: 12px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
}
.pain-row.expanded .pain-row-detail {
  max-height: 240px;
  opacity: 1;
  margin-top: 8px;
}
.pain-row-badge {
  font-size: 10px;
  color: var(--color-text-tertiary);
  background: var(--color-background-secondary);
  padding: 2px 7px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}
.pain-cta-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--color-border-tertiary);
  text-align: center;
}
.pain-cta {
  padding: 13px 20px;
}
.pain-cta-sub {
  font-size: 11px;
  color: var(--color-text-secondary);
  margin: 8px 0 0;
}
.pain-cta-sub.strong {
  font-weight: 500;
  color: var(--color-text-primary);
  margin-top: 3px;
}

/* ── Producers panel (used inside V2 hero AND in standalone section) ── */
.producers {
  background: var(--color-background-secondary);
  padding: 48px 32px;
}
.producers-inner { max-width: 520px; margin: 0 auto; }

.producers-panel {
  background: #fff;
  border-radius: 13px;
  border: 0.5px solid rgba(0,0,0,0.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 440px;
}
.producers-panel-header {
  background: #fff;
  padding: 14px 16px;
  flex: 0 0 auto;
  border-bottom: 0.5px solid var(--color-border-tertiary);
}
.producers-panel-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin: 0;
}
.producers-panel-body {
  flex: 1;
  min-height: 0;
  position: relative;
}
/* Absolute-fill so the Google Maps embed physically fills the panel body
   on init — avoids the flex/height chain measuring before the map renders. */
.producers-panel-body .producers-map,
.producers-panel-body .producers-list-inside {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
}
.producers-panel-body .producers-list-inside {
  overflow-y: auto;
}
/* Standalone min-height on the panel is fine; in the dual hero context
   the floor comes from .hero-right-dual > * above (540px) which both items
   share, so the rule is intentionally not overridden here. */
.producers-list-inside {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.producers-list-row-inside {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border-bottom: 0.5px solid var(--color-border-tertiary);
}
.producers-list-row-inside:last-child { border-bottom: none; }
.producers-list-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.producers-list-avatar .ti { font-size: 14px; color: var(--green-800); }
.producers-list-meta { min-width: 0; }
.producers-list-name { font-size: 12.5px; font-weight: 500; color: var(--color-text-primary); }
.producers-list-type { font-size: 10.5px; color: var(--color-text-secondary); margin-top: 1px; }

/* ── Footer (spec §9) ── */
.footer-cta {
  background: var(--near-black);
  padding: 52px 32px;
  text-align: center;
}
.footer-cta-inner { max-width: 560px; margin: 0 auto; }
.footer-eyebrow {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28);
  margin: 0 0 12px;
}
.footer-cta-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 25px;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.footer-cta-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 6px;
}
.footer-cta-sub-light {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  margin: 0 0 26px;
}
.footer-cta-btn {
  padding: 12px 22px;
  font-size: 14px;
}

/* ── Dual preview (generic page only) ── */
.dual-preview {
  background: var(--color-background-primary);
  padding: 64px 32px;
}
.dual-preview-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.dual-eyebrow {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-secondary);
  margin: 0 0 12px;
}
.dual-h2 {
  max-width: 640px;
  margin: 0 auto 16px;
}
.dual-sub {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 44px;
}
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.dual-card { display: flex; flex-direction: column; gap: 14px; align-items: center; }
.dual-card-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.dual-mock {
  width: 100%;
  max-width: 360px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-inner { padding: 12px 18px; }
  .hero { padding: 32px 18px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline { font-size: 26px; }
  .bff-cards { flex-direction: column; gap: 24px; }
  .built-for-food, .pain-selector, .producers, .footer-cta { padding: 40px 18px; }
  .week-bars { padding: 32px 18px; }
  .bff-h2 { font-size: 28px; }
  .producers-panel { min-height: 380px; }
  /* V2 hero stacks vertically on mobile so both panels remain visible. */
  .hero-dual .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-right-dual {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
  }
  .hero-right-dual .producers-panel { height: auto; min-height: 380px; }
  .hero-right-dual .shop-frame { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero-right-dual > .producers-panel { max-width: 420px; margin: 0 auto; }
  .week-bar-row { grid-template-columns: 1fr; gap: 4px; }
  .week-bar-label { max-width: none; }
  .week-bar-hours { text-align: left; }
  .dual-preview { padding: 40px 18px; }
  .dual-grid { grid-template-columns: 1fr; gap: 32px; }
}
