/* Right Start Foods — Lane A Sell-as-Is Product Lines */
:root {
  --cream: #F7F7F2;
  --cream-alt: #F2EDE3;
  --cream-soft: #F5E6E0;
  --red: #B72E28;
  --red-deep: #D3332B;
  --gold: #EDA734;
  --ink: #131313;
  --hero: #170202;
  --border: #C9C6BB;
  --muted: #6D4C41;
  --white: #ffffff;
  --face: #FFFCF5;
  --shadow: 0 10px 32px rgba(23, 2, 2, 0.07);
  --shadow-lg: 0 22px 56px rgba(23, 2, 2, 0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --radius-btn: 10px;
  --radius-hero: 32px;
  --max: 1120px;
  --font-display: "new-spirit", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red-deep); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--hero);
  padding: 0.6rem 1rem; z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ——— Nav ——— */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav .nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.65rem 1.25rem;
}
.brand-mark {
  display: flex; align-items: center; gap: 0.85rem;
  color: var(--hero); text-decoration: none; font-weight: 700;
}
.brand-mark .brand-logo { height: 48px; width: auto; display: block; flex-shrink: 0; }
.brand-mark .brand-text { display: none; }
.lane-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--hero); color: var(--cream); padding: 0.28rem 0.65rem; border-radius: 999px;
}
.lane-pill span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 0.15rem 1rem; list-style: none; margin: 0; padding: 0;
  flex-wrap: wrap; justify-content: flex-end;
}
.nav-links a {
  color: var(--ink); text-decoration: none; font-size: 0.88rem; font-weight: 500;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red); }
.nav-links .nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 0.45rem 0.9rem; border-radius: var(--radius-btn); font-weight: 700;
}
.nav-links .nav-cta:hover { background: var(--red-deep); }
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--border);
  border-radius: 8px; padding: 0.4rem 0.6rem; cursor: pointer; font-family: inherit;
}
@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.25rem; gap: 0.75rem;
  }
  .site-nav.open .nav-links { display: flex; }
}

/* ——— Banner ——— */
.lane-banner {
  background: var(--hero); color: var(--cream);
  text-align: center; padding: 0.55rem 1rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
}
.lane-banner a { color: var(--gold); font-weight: 700; text-decoration: none; }
.lane-banner a:hover { text-decoration: underline; }

/* ——— Layout ——— */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 3.5rem 0; }
.section-alt { background: var(--cream-alt); }
.eyebrow {
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 999px; margin-bottom: 0.85rem;
}
.eyebrow-dark { background: var(--hero); }
.eyebrow-gold { background: var(--gold); color: var(--hero); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--hero); margin: 0 0 0.75rem; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: 1.2rem; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 42rem; }
.gold-rule { width: 3.2rem; height: 4px; background: var(--gold); border: 0; margin: 0.85rem 0 1.25rem; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  padding: 0.7rem 1.2rem; border-radius: var(--radius-btn);
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-deep); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--red); color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.35); color: var(--cream); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-dark { background: var(--hero); color: var(--cream); }
.btn-dark:hover { background: #2a0a0a; color: var(--cream); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.25rem; }

/* ——— Hero ——— */
.hero {
  position: relative; overflow: hidden;
  background: var(--hero); color: var(--cream);
  border-radius: 0 0 var(--radius-hero) var(--radius-hero);
  margin: 0 0 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center;
  max-width: var(--max); margin: 0 auto; padding: 3rem 1.25rem 3.25rem;
}
.hero h1 { color: var(--cream); }
.hero .lead { color: var(--cream-soft); }
.hero-photo {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; background: #2a0a0a;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1rem 0 0.25rem;
}
@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 2.25rem; }
  .hero-photo { order: -1; max-height: 260px; }
}

/* ——— Chips ——— */
.chip {
  display: inline-flex; align-items: center;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.28rem 0.6rem; border-radius: 999px;
  background: rgba(237, 167, 52, 0.18); color: var(--gold); border: 1px solid rgba(237,167,52,0.35);
}
.chip-cream { background: rgba(247,247,242,0.12); color: var(--cream); border-color: rgba(247,247,242,0.25); }
.chip-red { background: rgba(183,46,40,0.12); color: var(--red); border-color: rgba(183,46,40,0.28); }
.chip-ink { background: var(--cream-alt); color: var(--ink); border-color: var(--border); }

/* ——— Why / buyers ——— */
.buyer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.buyer-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1.35rem 1.25rem; box-shadow: var(--shadow);
}
.buyer-card h3 { margin-bottom: 0.4rem; }
.buyer-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 760px) { .buyer-grid { grid-template-columns: 1fr; } }

/* ——— SKU grid ——— */
.sku-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem;
}
@media (max-width: 720px) { .sku-grid { grid-template-columns: 1fr; } }
.sku-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.sku-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sku-card.sku-lead { grid-column: 1 / -1; display: grid; grid-template-columns: 280px 1fr; }
@media (max-width: 720px) { .sku-card.sku-lead { grid-template-columns: 1fr; } }
.sku-photo { background: var(--cream-alt); aspect-ratio: 1; overflow: hidden; }
.sku-lead .sku-photo { aspect-ratio: auto; min-height: 220px; height: 100%; }
.sku-photo img { width: 100%; height: 100%; object-fit: cover; }
.sku-body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.sku-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem; font-weight: 700; color: var(--red); letter-spacing: 0.04em;
}
.sku-body h3 { font-size: 1.15rem; margin: 0; }
.sku-meta { font-size: 0.9rem; color: var(--muted); margin: 0; }
.sku-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: auto; padding-top: 0.5rem; }
.sku-note {
  margin-top: 1.25rem; padding: 1rem 1.15rem; border-left: 4px solid var(--gold);
  background: var(--face); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem; color: var(--muted);
}

/* ——— Formats ——— */
.format-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.format-card {
  background: var(--white); border-radius: var(--radius-sm); padding: 1.25rem;
  border: 1px solid var(--border);
}
.format-card h3 { font-size: 1.05rem; }
.format-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
@media (max-width: 760px) { .format-grid { grid-template-columns: 1fr; } }

/* ——— Bridge teaser ——— */
.bridge {
  background: var(--cream-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.6rem; display: grid; grid-template-columns: 1fr auto; gap: 1.25rem; align-items: center;
}
.bridge h3 { margin-bottom: 0.35rem; font-size: 1.15rem; }
.bridge p { margin: 0; color: var(--muted); font-size: 0.95rem; max-width: 40rem; }
@media (max-width: 700px) { .bridge { grid-template-columns: 1fr; } }

/* ——— Hub cards ——— */
.hub-hero {
  background: var(--hero); color: var(--cream); padding: 3.5rem 0 3rem;
  border-radius: 0 0 var(--radius-hero) var(--radius-hero);
}
.hub-hero h1 { color: var(--cream); }
.hub-hero .lead { color: var(--cream-soft); }
.hub-banner {
  background: var(--gold); color: var(--hero); text-align: center;
  padding: 0.75rem 1rem; font-weight: 700; font-size: 0.95rem;
}
.hub-banner a { color: var(--hero); }
.cat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
@media (max-width: 700px) { .cat-grid { grid-template-columns: 1fr; } }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 280px; display: flex; align-items: flex-end;
  text-decoration: none; color: var(--cream); box-shadow: var(--shadow-lg);
  background: var(--hero);
}
.cat-card.cat-lead { grid-column: 1 / -1; min-height: 340px; }
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55; transition: transform 0.4s var(--ease), opacity 0.3s;
}
.cat-card:hover img { transform: scale(1.04); opacity: 0.65; }
.cat-card-body {
  position: relative; z-index: 1; padding: 1.5rem 1.4rem;
  background: linear-gradient(transparent, rgba(23,2,2,0.88));
  width: 100%;
}
.cat-card-body h2 { color: var(--cream); margin-bottom: 0.3rem; font-size: 1.55rem; }
.cat-card-body p { margin: 0 0 0.65rem; color: var(--cream-soft); font-size: 0.95rem; }
.cat-skus { font-size: 0.78rem; font-weight: 600; color: var(--gold); letter-spacing: 0.02em; }

/* ——— CTA ——— */
.cta-section { background: var(--hero); color: var(--cream); padding: 3.5rem 0; }
.cta-section h2 { color: var(--cream); }
.cta-section .lead { color: var(--cream-soft); }
.route-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.75rem;
}
.route-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,198,187,0.25);
  border-radius: var(--radius-sm); padding: 1.25rem;
}
.route-card h3 { color: var(--cream); font-size: 1.05rem; }
.route-card .role { color: var(--gold); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.35rem; }
.route-card p { color: var(--cream-soft); font-size: 0.9rem; margin: 0 0 0.85rem; }
.route-card a { color: var(--gold); }
.inquiry-box {
  margin-top: 2rem; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm);
  padding: 1.35rem 1.4rem; border: 1px solid rgba(201,198,187,0.2);
}
.inquiry-box label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--cream-soft); margin-bottom: 0.35rem; }
.inquiry-box select, .inquiry-box textarea {
  width: 100%; font-family: inherit; font-size: 0.95rem;
  padding: 0.65rem 0.75rem; border-radius: 8px; border: 1px solid var(--border);
  background: var(--white); color: var(--ink); margin-bottom: 0.85rem;
}
.inquiry-route { font-size: 0.9rem; color: var(--cream-soft); margin: 0 0 0.85rem; }
@media (max-width: 760px) { .route-grid { grid-template-columns: 1fr; } }

/* ——— Footer ——— */
.site-footer {
  background: var(--cream-alt); border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem; font-size: 0.9rem; color: var(--muted);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem;
}
.footer-logos { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 0.85rem; }
.footer-logos img { height: 40px; width: auto; }
.footer-logos .gfs-logo { height: 32px; }
.site-footer h4 {
  font-family: var(--font-display); color: var(--hero); font-size: 1rem; margin: 0 0 0.6rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.35rem; }
.site-footer a { color: var(--red); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom {
  margin-top: 1.75rem; padding-top: 1.15rem; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between;
  font-size: 0.82rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ——— Sticky talk ——— */
.sticky-talk {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  background: var(--red); color: var(--white) !important; text-decoration: none;
  padding: 0.75rem 1.15rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
}
.sticky-talk:hover { background: var(--red-deep); color: var(--white) !important; }
@media (max-width: 640px) {
  .sticky-talk { left: 1rem; right: 1rem; text-align: center; border-radius: var(--radius-btn); }
}

/* ——— Reveal ——— */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ——— Two-col ——— */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.split-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }


/* ——— Denser nav for multi-channel ——— */
.nav-links {
  gap: 0.55rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (min-width: 1100px) {
  .nav-links { gap: 0.65rem; font-size: 0.84rem; }
}
.channel-group-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
