/* Vision Food Group — site styles
   One family (Bricolage Grotesque, variable, self-hosted), warm neutrals,
   amber as VFG's own accent; Crumbl pink and Dave's red only on brand elements. */

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/bricolage-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --ink: #17150f;
  --ink-2: #4f4a42;
  --ink-3: #6b655c;
  --paper: #ffffff;
  --paper-2: #f7f4ee;
  --paper-3: #efeae1;
  --line: #e4ded4;
  --line-dark: #2e2a23;
  --amber: #e39b1f;
  --amber-deep: #8f5c07;
  --amber-soft: #fbefd6;
  --crumbl: #f2b8c6;
  --crumbl-ink: #4a1f2e;
  --daves: #d7282f;
  --daves-ink: #ffffff;
  --font: "Bricolage Grotesque", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 6px;
  --shadow: 0 1px 2px rgba(23, 21, 15, .06), 0 8px 24px -12px rgba(23, 21, 15, .18);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--amber); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 2px; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -0.02em; text-wrap: balance; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }

/* Layout primitives */
.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.section { padding-block: clamp(56px, 8vw, 112px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: var(--paper); }
.stack { display: flex; flex-direction: column; gap: 16px; }
.stack--lg { gap: 28px; }
.measure { max-width: 62ch; }
.lede { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; color: var(--ink-2); font-weight: 400; }
.section--ink .lede { color: #cfc9be; }
.eyebrow { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--amber-deep); }
.section--ink .eyebrow { color: var(--amber); }
.h-display { font-size: clamp(40px, 6.2vw, 78px); font-weight: 800; letter-spacing: -0.03em; line-height: .98; }
.h-section { font-size: clamp(30px, 3.6vw, 46px); }
.h-sub { font-size: clamp(20px, 2vw, 26px); font-weight: 700; letter-spacing: -0.015em; }
.grid-2 { display: grid; gap: clamp(24px, 4vw, 56px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); align-items: start; }
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(28px, 4vw, 48px); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 999px; font-weight: 700; font-size: 15px; letter-spacing: -.005em; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, background-color .12s ease, border-color .12s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: #f0ab34; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #2a2620; }
.btn--ghost { border-color: currentColor; background: transparent; }
.btn--ghost:hover { border-color: var(--amber); }
.btn--sm { padding: 9px 14px; font-size: 14px; }
.btn .arrow { transition: transform .12s ease; }
.btn:hover .arrow { transform: translateX(2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(10px); -webkit-backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 68px; }
.brand-link { display: inline-flex; align-items: center; }
.brand-link img { height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; font-weight: 600; font-size: 15.5px; color: var(--ink-2); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--amber); }
.nav .btn { color: var(--ink); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { display: block; }
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px; display: none; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav a[aria-current="page"] { border-bottom-color: var(--line); color: var(--amber-deep); }
  .nav .btn { margin-top: 14px; justify-content: center; border-bottom: 0; }
}

/* Hero */
.hero { overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); min-height: min(82vh, 760px); background: var(--ink); color: var(--paper); }
.hero__copy { display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: clamp(48px, 7vw, 96px) var(--gutter) clamp(48px, 7vw, 96px) max(var(--gutter), calc((100vw - var(--max)) / 2)); position: relative; }
.hero__copy .eyebrow { color: var(--amber); }
.hero__copy .lede { max-width: 52ch; color: #d9d3c8; }
.hero__copy .btn--ghost { color: #fff; }
.hero__mark { position: absolute; right: -6%; bottom: -8%; width: clamp(220px, 32vw, 420px); opacity: .07; pointer-events: none; }
.hero__media { position: relative; min-height: 360px; }
.hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 55% 55%; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(23,21,15,.55) 0%, rgba(23,21,15,0) 30%); pointer-events: none; }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { min-height: 46vw; order: -1; }
  .hero__media::after { background: linear-gradient(180deg, rgba(23,21,15,0) 60%, rgba(23,21,15,.9) 100%); }
  .hero__copy { padding-top: 32px; }
}

/* Stat strip */
.stats { border-bottom: 1px solid var(--line); }
.stats ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stats li { padding: 22px 0; display: flex; flex-direction: column; gap: 2px; border-right: 1px solid var(--line); padding-right: 20px; }
.stats li + li { padding-left: 24px; }
.stats li:last-child { border-right: 0; }
.stats .num { font-size: clamp(30px, 3.5vw, 44px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.stats .lbl { font-size: 14px; color: var(--ink-3); font-weight: 600; letter-spacing: .02em; }
@media (max-width: 640px) {
  .stats ul { grid-template-columns: 1fr 1fr; }
  .stats li:nth-child(2n) { border-right: 0; }
  .stats li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .stats li:nth-child(2n+1) { padding-left: 0; }
}

/* Brand panels */
.brands { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); }
.brand-panel { border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; box-shadow: var(--shadow); }
.brand-panel__media { aspect-ratio: 16 / 10; overflow: hidden; }
.brand-panel__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.brand-panel:hover .brand-panel__media img { transform: scale(1.03); }
.brand-panel__body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.brand-panel__body h3 { font-size: clamp(24px, 2.4vw, 32px); font-weight: 800; }
.brand-panel__body p { line-height: 1.5; }
.brand-panel__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 10px; font-weight: 700; }
.brand-panel--crumbl .brand-panel__body { background: var(--crumbl); color: var(--crumbl-ink); }
.brand-panel--daves .brand-panel__body { background: var(--daves); color: var(--daves-ink); }
.brand-panel .btn { border-color: currentColor; }
.brand-panel--daves .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.brand-panel--crumbl .btn--ghost:hover { border-color: var(--crumbl-ink); background: rgba(74,31,46,.08); }

/* Values */
.values { display: grid; gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.values li { background: var(--ink); padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 12px; }
.value-icon { display: block; width: 56px; height: 56px; background-color: var(--amber); -webkit-mask: var(--icon) center / contain no-repeat; mask: var(--icon) center / contain no-repeat; margin-bottom: 6px; }
@supports not (mask: url(x)) { .value-icon { background: var(--icon) center / contain no-repeat; filter: invert(1); } }
.values h3 { font-size: clamp(20px, 2vw, 26px); color: var(--amber); }
.values p { color: #d6d0c5; max-width: 40ch; }

/* Team preview + team page */
.team-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: 16px; }
.team-row li { display: flex; flex-direction: column; gap: 8px; }
.team-row img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); background: var(--paper-3); }
.team-row .name { font-weight: 700; font-size: 15.5px; line-height: 1.2; }
.team-row .title { font-size: 13.5px; color: var(--ink-3); line-height: 1.3; }
.person { display: grid; grid-template-columns: 180px 1fr; gap: clamp(20px, 3vw, 40px); padding-block: clamp(28px, 4vw, 44px); border-top: 1px solid var(--line); align-items: start; }
.person:last-child { border-bottom: 1px solid var(--line); }
.person img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); background: var(--paper-3); }
.person__body { display: flex; flex-direction: column; gap: 10px; }
.person__body h2 { font-size: clamp(22px, 2.4vw, 30px); }
.person__body .title { color: var(--amber-deep); font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.person__body p { max-width: 68ch; color: var(--ink-2); }
@media (max-width: 600px) { .person { grid-template-columns: 1fr; } .person img { max-width: 200px; } }

/* Locations */
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button { border: 1.5px solid var(--line); background: var(--paper); border-radius: 999px; padding: 8px 16px; font-weight: 700; font-size: 14px; cursor: pointer; color: var(--ink-2); }
.filters button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.loc-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.loc { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; background: var(--paper); }
.loc[hidden] { display: none; }
.loc__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-3); }
.loc__media img { width: 100%; height: 100%; object-fit: cover; }
.loc__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.loc__body h3 { font-size: 22px; }
.loc__addr { color: var(--ink-2); font-size: 15px; line-height: 1.4; font-style: normal; }
.loc__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 6px; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; width: fit-content; }
.chip--crumbl { background: var(--crumbl); color: var(--crumbl-ink); }
.chip--daves { background: var(--daves); color: #fff; }
.chip--soon { background: var(--amber-soft); color: var(--amber-deep); }
.loc-group { display: flex; flex-direction: column; gap: 22px; }
.loc-group + .loc-group { margin-top: clamp(40px, 5vw, 64px); }
.loc-group__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.loc-group__head .count { color: var(--ink-3); font-weight: 600; }

/* Growth band */
.band { background: var(--amber); color: var(--ink); }
.band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: clamp(32px, 4vw, 48px); }
.band h2 { font-size: clamp(24px, 2.8vw, 34px); max-width: 24ch; }
.band p { color: #4a3305; max-width: 48ch; }
.band .btn--ink:hover { background: #000; }

/* Forms */
.form { display: grid; gap: 18px; }
.form .row { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: 14px; }
.field .hint { font-size: 13px; color: var(--ink-3); }
.field input, .field select, .field textarea { font: inherit; font-size: 16px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius); background: var(--paper); color: var(--ink); width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-soft); }
.field textarea { min-height: 160px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.aside-card { background: var(--paper-2); border-radius: 10px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.aside-card h2, .aside-card h3 { font-size: 20px; letter-spacing: -.01em; }
.aside-card p, .aside-card li { color: var(--ink-2); font-size: 15.5px; }
.aside-card ul { display: flex; flex-direction: column; gap: 8px; }
.aside-card a { font-weight: 600; }

/* Careers */
.roles { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.roles li { border: 1px solid var(--line); border-radius: 10px; padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.roles h3 { font-size: 20px; }
.roles p { color: var(--ink-2); font-size: 15.5px; }
.checks { display: grid; gap: 12px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; color: var(--ink-2); }
.checks svg { margin-top: 3px; }

/* Page hero (interior pages) */
.page-hero { padding-block: clamp(44px, 6vw, 80px) clamp(28px, 4vw, 48px); border-bottom: 1px solid var(--line); }
.page-hero .stack { gap: 14px; }

/* Footer */
.site-footer { background: var(--ink); color: #cfc9be; padding-block: clamp(44px, 6vw, 72px) 32px; }
.site-footer .top { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); align-items: start; }
.site-footer .mark { display: flex; flex-direction: column; gap: 14px; }
.site-footer .mark img { width: 64px; }
.site-footer .mark p { font-size: 15px; max-width: 30ch; }
.site-footer h2 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer ul { display: flex; flex-direction: column; gap: 8px; }
.site-footer a { text-decoration: none; color: #cfc9be; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13.5px; color: #8f887c; }
.site-footer .bottom .brands-note { max-width: 60ch; }

/* Utilities */
.muted { color: var(--ink-3); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.tnum { font-variant-numeric: tabular-nums; }

/* Footer: brand social links */
.site-footer .follow li { display: flex; flex-wrap: wrap; gap: 6px 8px; align-items: baseline; }
.site-footer .follow-brand { color: #fff; font-weight: 700; min-width: 64px; }

/* Brand quick links under brand panels */
.brand-sub { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 18px; }
.brand-sub li { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; }
.brand-sub a { text-decoration: none; }
.brand-sub a:hover { text-decoration: underline; text-decoration-color: var(--amber); }

/* Timeline */
.timeline { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; border-left: 2px solid var(--line); margin-left: 6px; }
.timeline li { position: relative; padding: 0 0 22px 28px; display: grid; gap: 4px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 3px var(--paper); }
.timeline .tl__year { font-weight: 800; letter-spacing: -.01em; font-size: 15px; color: var(--amber-deep); text-transform: uppercase; }
.timeline p { color: var(--ink-2); max-width: 52ch; }

/* Press strip */
.press { display: grid; gap: 10px; }
.press a { display: grid; gap: 2px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: border-color .12s ease; }
.press a:hover { border-color: var(--amber); }
.press__outlet { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--ink-3); }
.press__title { font-weight: 600; line-height: 1.35; }

/* Location cards & pages */
.loc__title { text-decoration: none; }
.loc__title:hover { text-decoration: underline; text-decoration-color: var(--amber); }
.loc__hours { font-size: 13.5px; color: var(--ink-3); line-height: 1.4; }
a.loc__media { display: block; }
.crumbs { font-size: 14px; color: var(--ink-3); }
.crumbs a { text-decoration: none; color: var(--ink-2); }
.crumbs a:hover { text-decoration: underline; }
.loc-page__media img { border-radius: 10px; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.hours { border-collapse: collapse; font-size: 15.5px; }
.hours th, .hours td { text-align: left; padding: 6px 18px 6px 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours th { color: var(--ink-2); width: 120px; }
.hours td { font-variant-numeric: tabular-nums; }
.inline-list { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.inline-list a { font-weight: 600; }

/* Careers steps */
.steps-list { margin: 0; padding-left: 22px; display: grid; gap: 8px; color: var(--ink-2); }
.steps-list strong { color: var(--ink); }

/* Partner criteria */
.criteria-list { display: grid; gap: 18px; }
.criteria { border: 1px solid var(--line); border-radius: 10px; padding: 20px 22px; background: var(--paper); display: grid; gap: 12px; }
.criteria ul { display: grid; gap: 6px; padding-left: 18px; list-style: disc; color: var(--ink-2); font-size: 15.5px; }
.aside-card .inline-list { flex-direction: row; }
.site-footer .follow li { display: block; line-height: 1.7; }
.site-footer .follow-brand { display: inline-block; margin-right: 6px; }

/* Logo stand-in for coming-soon stores */
.loc__media--logo, .loc-page__media--logo { background: var(--daves); display: grid; place-items: center; }
.loc__media--logo img { width: 58%; height: auto; object-fit: contain; aspect-ratio: 1; padding: 6% 0; }
.loc-page__media--logo { aspect-ratio: 4 / 3; border-radius: 10px; }
.loc-page__media--logo img { width: 46%; height: auto; aspect-ratio: 1; object-fit: contain; border-radius: 0; }
/* Headshot framing */
.team-row img, .person img { border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(23,21,15,.06); }
