/* ==========================================================================
   Campbell's Pickles — static prototype
   All styling lives in this file.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  --cream: #f8f1e3;
  --cream-2: #fffaf0;
  --card: #fffaf2;
  --ink: #20242b;
  --muted: #4a4f5a;
  --navy: #15234a;
  --navy-deep: #101b3a;
  --hero: #0a1326;
  --accent: #c41e2a;
  --accent-strong: #a3151f;
  --gold: #ffce2e;
  --green: #2f7d31;
  --line: #ece1c9;
  --maxw: 1180px;
}

/* ---- Reset -------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: 'Libre Franklin', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
h1, h2, h3, p, ul { margin: 0; }
ul { list-style: none; padding: 0; }
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 3px solid #fff; outline-offset: 2px; box-shadow: 0 0 0 6px var(--navy); border-radius: 6px; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes twinkle { 0%,100% { opacity: .18; transform: scale(.8); } 50% { opacity: .9; transform: scale(1.15); } }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ---- Layout helpers ----------------------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding-block: clamp(60px, 8vw, 108px); position: relative; }
.section--cream { background: var(--cream); border-top: 1px solid rgba(27,42,85,.07); }
.section--cream2 { background: var(--cream-2); border-top: 1px solid rgba(27,42,85,.07); }
.section--navy { background: var(--navy); color: #fff; overflow: hidden; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px; font: 800 12px 'Libre Franklin'; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow .star { color: var(--gold); font-size: 14px; -webkit-text-stroke: .6px #d99e00; }
.eyebrow--green { color: var(--green); }
.eyebrow--red { color: var(--accent); }
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold .star { -webkit-text-stroke: 0; }

.title { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; line-height: .95; text-transform: uppercase; color: var(--navy); font-size: clamp(38px, 5.5vw, 64px); }
.title--light { color: #fff; }
.lead { margin: 18px 0 0; max-width: 54ch; font: 500 17px/1.55 'Libre Franklin'; color: var(--muted); }
.lead--light { color: rgba(255,255,255,.82); }

.prod-note { display: inline-flex; align-items: center; gap: 8px; font: 600 11px 'Courier New', monospace; letter-spacing: .02em; color: #8a7c5e; background: var(--cream-2); border: 1px dashed #cbbb98; border-radius: 8px; padding: 8px 12px; }
.prod-note--dark { color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); }

/* ---- Buttons ------------------------------------------------------------ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 16px 28px; font: 800 15px 'Libre Franklin'; letter-spacing: .05em; text-transform: uppercase; border: none; border-radius: 999px; cursor: pointer; text-decoration: none; transition: transform .12s, box-shadow .12s; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 5px 0 var(--accent-strong); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 0 var(--accent-strong); }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--accent-strong); }
.btn--outline { background: var(--cream-2); color: var(--navy); border: 2.5px solid var(--navy); box-shadow: 0 5px 0 rgba(21,35,74,.22); }
.btn--outline:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(21,35,74,.22); }
.btn--outline:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(21,35,74,.22); }
.btn--ghost { background: rgba(255,255,255,.06); color: #fff; border: 2.5px solid rgba(255,255,255,.55); box-shadow: 0 5px 0 rgba(0,0,0,.28); }
.btn--ghost:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,.28); border-color: #fff; }
.btn--ghost:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(0,0,0,.28); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 4px 0 rgba(21,35,74,.3); padding: 13px 22px; font-size: 13px; }
.btn--navy:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(21,35,74,.3); }
.btn--navy:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(21,35,74,.3); }
.btn--sm { padding: 15px 26px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---- Skip link ---------------------------------------------------------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 12px 0; font: 700 14px 'Libre Franklin'; text-decoration: none; }
.skip-link:focus { left: 0; }

/* ---- Announcement bar --------------------------------------------------- */
.announce { background: var(--navy); color: #fff; position: relative; z-index: 60; }
.announce__inner { max-width: var(--maxw); margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; text-align: center; }
.announce .star { color: var(--gold); font-size: 13px; }
.announce__text { font: 600 13px/1.35 'Libre Franklin'; letter-spacing: .01em; }
.announce__text strong { font-weight: 800; }
.announce__link { font: 800 12px 'Libre Franklin'; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 2px solid rgba(255,206,46,.4); padding-bottom: 1px; }

/* ---- Tricolor rule ------------------------------------------------------ */
.tricolor { height: 5px; background: linear-gradient(90deg, var(--navy) 0 33.33%, #fbf4e6 33.33% 66.66%, var(--accent) 66.66% 100%); }

/* ---- Header ------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(248,241,227,.92); backdrop-filter: saturate(1.3) blur(10px); -webkit-backdrop-filter: saturate(1.3) blur(10px); box-shadow: 0 2px 16px rgba(20,32,63,.09); border-bottom: 1px solid rgba(27,42,85,.1); }
.site-header__inner { max-width: var(--maxw); margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { height: 50px; width: auto; filter: drop-shadow(0 2px 3px rgba(0,0,0,.14)); }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name b { font-family: 'Anton', sans-serif; font-size: 21px; font-weight: 400; letter-spacing: .01em; color: var(--navy); text-transform: uppercase; }
.brand__name span { font: 700 9px 'Libre Franklin'; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-top: 3px; }

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop a { font: 700 14px 'Libre Franklin'; color: var(--ink); text-decoration: none; padding: 10px 14px; border-radius: 9px; }
.nav-desktop a:hover { background: rgba(27,42,85,.08); }
.nav-desktop a[aria-current="page"] { background: rgba(27, 42, 85, .1); }
.nav-group { display: flex; align-items: center; gap: 12px; }
.nav-cta { flex-shrink: 0; }

.nav-toggle { display: none; background: var(--navy); color: #fff; border: none; border-radius: 11px; width: 46px; height: 46px; font-size: 20px; cursor: pointer; align-items: center; justify-content: center; flex-shrink: 0; }

.mobile-nav { display: none; border-top: 1px solid rgba(27,42,85,.12); background: var(--cream); padding: 8px 24px 18px; flex-direction: column; }
.mobile-nav a { font: 700 17px 'Libre Franklin'; color: var(--ink); text-decoration: none; padding: 14px 6px; border-bottom: 1px solid rgba(27,42,85,.08); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a[aria-current="page"] { color: var(--accent); }
.mobile-nav .btn { border-bottom: none; margin-top: 12px; color: #fff; }
.mobile-nav .btn.btn--outline { color: var(--navy); }
.mobile-nav.open { display: flex; }

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--hero); color: #fff; isolation: isolate; display: flex; align-items: center; min-height: clamp(580px, 84vh, 880px); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; display: block; pointer-events: none; }
.hero__stars { position: absolute; inset: 0; z-index: 1; opacity: .45; background: radial-gradient(rgba(255,255,255,.18) 1.3px, transparent 1.7px) 0 0 / 36px 36px; -webkit-mask-image: linear-gradient(110deg, #000, transparent 62%); mask-image: linear-gradient(110deg, #000, transparent 62%); }
.hero__stripes { position: absolute; right: -12%; top: -12%; bottom: -12%; width: 60%; z-index: 1; opacity: .07; background: repeating-linear-gradient(8deg, var(--accent) 0 24px, transparent 24px 48px); }
.hero__overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(100deg, rgba(8,15,32,.95) 0%, rgba(8,15,32,.84) 42%, rgba(8,15,32,.5) 72%, rgba(8,15,32,.72) 100%); }
.hero__overlay2 { position: absolute; inset: 0; z-index: 2; background: linear-gradient(0deg, rgba(6,11,22,.85), transparent 30%); }
.hero__inner { position: relative; z-index: 4; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: clamp(40px, 6vw, 72px) 24px; }
.hero__grid { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(30px, 5vw, 64px); }
.hero__copy { flex: 1 1 440px; min-width: 300px; }
.hero__title { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(48px, 8vw, 108px); line-height: .9; letter-spacing: -.005em; text-transform: uppercase; color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,.55); }
.hero__title span { color: #7ec24a; }
.hero__lead { margin: 22px 0 0; max-width: 50ch; font: 500 clamp(16px,1.9vw,20px)/1.55 'Libre Franklin'; color: rgba(255,255,255,.85); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 30px 0 0; }
.hero__badges li { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 9px 15px; font: 800 12.5px 'Libre Franklin'; color: #fff; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--gold { color: var(--gold); font-size: 12px; width: auto; height: auto; border-radius: 0; }
.dot--red { background: #e0563f; }

.hero__art { flex: 1 1 380px; min-width: 288px; display: flex; justify-content: center; }
.hero__art-inner { position: relative; width: min(100%, 500px); }
.bunting { width: 82%; margin: 0 auto 12px; border-top: 2px solid rgba(255,255,255,.22); }
.bunting__row { display: flex; justify-content: space-between; padding: 0 2px; }
.bunting__row span { width: 0; height: 0; border-left: 10px solid transparent; border-right: 10px solid transparent; border-top: 17px solid #c41e2a; }
.bunting__row span:nth-child(3n+2) { border-top-color: #f3eee2; }
.bunting__row span:nth-child(3n) { border-top-color: #2a5fd0; }
.hero__glow { position: absolute; left: 50%; top: 15%; transform: translateX(-50%); width: 74%; aspect-ratio: 1/1; border-radius: 50%; background: radial-gradient(circle, rgba(126,194,74,.22), transparent 62%); z-index: 1; }
.hero__logo { position: relative; z-index: 2; display: block; width: 84%; margin: 0 auto; filter: drop-shadow(0 18px 26px rgba(0,0,0,.5)); animation: floaty 6s ease-in-out infinite; }
.hero__shelf { position: relative; z-index: 3; margin-top: -24px; display: flex; flex-direction: column; align-items: center; }
.hero__jars { display: flex; align-items: flex-end; justify-content: center; gap: 10px; position: relative; z-index: 2; }
.hero__jars img { width: auto; display: block; filter: drop-shadow(0 12px 10px rgba(0,0,0,.5)); }
.hero__jars img.side { height: 132px; }
.hero__jars img.center { height: 158px; filter: drop-shadow(0 14px 12px rgba(0,0,0,.55)); }
.hero__board { width: min(96%, 300px); height: 14px; border-radius: 3px; margin-top: -3px; background: linear-gradient(#3a2a18, #1d140b); box-shadow: 0 14px 26px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.07); }

/* ---- Section header row ------------------------------------------------- */
.head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 38px; }
.head-row__intro { max-width: 640px; }

/* ---- Flavors ------------------------------------------------------------ */
.flavor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 18px; }
.flavor-card { background: var(--card); border: 1.5px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 0 rgba(27,42,85,.05); transition: transform .14s, box-shadow .14s; }
.flavor-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(27,42,85,.14); }
.jar-tile { position: relative; aspect-ratio: .66; background: #0b1428; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 8px; }
.jar-tile img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.jar-tile .sampler-logo { width: 58%; height: auto; opacity: .96; }
.flavor-band { padding: 15px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.flavor-band h2, .flavor-band h3 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: 23px; color: #fff; text-transform: uppercase; letter-spacing: .01em; line-height: 1; }
.flavor-band .tag { font: 800 9px 'Libre Franklin'; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.24); padding: 5px 9px; border-radius: 999px; white-space: nowrap; }
.flavor-body { padding: 16px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.flavor-body p { margin: 0; font: 500 14.5px/1.5 'Libre Franklin'; color: var(--muted); }
.flavor-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; padding-top: 13px; border-top: 1px dashed #e3d7bd; }
.price { display: flex; align-items: baseline; gap: 6px; }
.price b { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 30px; color: var(--navy); line-height: 1; }
.price span { font: 600 11px 'Libre Franklin'; color: #8a8576; text-transform: uppercase; letter-spacing: .05em; }
.heat { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.heat__label { font: 700 9px 'Libre Franklin'; letter-spacing: .08em; text-transform: uppercase; color: #8a8576; }
.heat__bar { width: 74px; height: 6px; border-radius: 4px; background: var(--line); overflow: hidden; }
.heat__fill { height: 100%; border-radius: 4px; background: var(--accent); }
.heat__fill.h0 { width: 0; }
.heat__fill.h1 { width: 33.33%; }
.heat__fill.h2 { width: 66.67%; }
.heat__fill.h3 { width: 100%; }

/* per-flavor accent colours */
/* ---- Announcement banner (admin-managed) ---------------------------------- */
.cp-banner { background: var(--navy); border-bottom: 3px solid var(--gold); }
.cp-banner__inner { max-width: 1160px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center; }
.cp-banner__text { display: flex; flex-direction: column; gap: 2px; }
.cp-banner__text b { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 18px; letter-spacing: .02em; text-transform: uppercase; color: var(--gold); }
.cp-banner__text span { font: 600 13.5px/1.4 'Libre Franklin'; color: rgba(255,255,255,.92); }

/* ---- Shop filters + sort --------------------------------------------------- */
.shop-controls { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.shop-controls[hidden] { display: none; }
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 11px 16px; border: 1.5px solid var(--line); background: #fff; border-radius: 999px; font: 700 12.5px 'Libre Franklin'; color: var(--navy); cursor: pointer; transition: border-color .12s, background .12s; }
.chip:hover { border-color: var(--navy); }
.chip--on { background: var(--navy); border-color: var(--navy); color: #fff; }
.shop-sort { display: inline-flex; align-items: center; gap: 8px; font: 800 11px 'Libre Franklin'; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.shop-sort select { padding: 9px 12px; border: 2px solid #d9cdb3; border-radius: 10px; background: #fff; font: 600 13.5px 'Libre Franklin'; color: var(--ink); }

/* ---- Limited-time badges ----------------------------------------------------- */
.jar-tile .limited-ribbon { position: absolute; top: 10px; left: 10px; background: var(--gold); color: var(--navy); font: 800 10px 'Libre Franklin'; letter-spacing: .07em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,.35); }
.shop-remaining { font: 800 10px 'Libre Franklin'; letter-spacing: .06em; text-transform: uppercase; color: #a3151f; background: #fdecec; border: 1px solid #f3c9cc; border-radius: 999px; padding: 3px 9px; }

/* ---- Request cart -------------------------------------------------------------- */
.request-card { max-width: 640px; background: var(--cream-2); border: 1.5px solid var(--line); border-radius: 20px; padding: clamp(20px, 4vw, 30px); box-shadow: 0 18px 44px rgba(20, 32, 63, .12); }
.cart-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px dashed #e3d7bd; }
.cart-row__name { font: 600 14.5px 'Libre Franklin'; color: var(--ink); }
.cart-row__name b { font-weight: 800; color: var(--navy); }
.cart-row__controls { display: flex; align-items: center; gap: 8px; }
.cart-row__qty { min-width: 22px; text-align: center; font: 800 15px 'Libre Franklin'; color: var(--navy); }
.cart-qty-btn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; font: 800 16px/1 'Libre Franklin'; color: var(--navy); cursor: pointer; }
.cart-qty-btn:hover { border-color: var(--navy); }
.cart-remove { border: none; background: none; font-size: 22px; line-height: 1; color: var(--muted); cursor: pointer; padding: 6px 10px; }
.cart-remove:hover { color: #a3151f; }
#cart-items { margin-bottom: 18px; }
#request-form .msg--error { background: #fdecec; color: #a3151f; border: 1px solid #f3c9cc; margin-top: 14px; padding: 12px 15px; border-radius: 12px; font: 600 14px/1.45 'Libre Franklin'; }
#request-form .msg--error[hidden] { display: none; }
.request-success { text-align: center; padding: 12px 0 4px; }
.request-success h3 { margin: 10px 0 6px; font-family: 'Anton', sans-serif; font-weight: 400; font-size: 28px; text-transform: uppercase; color: var(--navy); }
.request-success p { margin: 0 0 16px; font: 500 15px/1.5 'Libre Franklin'; color: var(--muted); }
.cart-pill { position: fixed; right: 18px; bottom: 18px; z-index: 90; background: var(--accent); color: #fff; border: none; border-radius: 999px; padding: 13px 20px; font: 800 13px 'Libre Franklin'; letter-spacing: .03em; text-transform: uppercase; cursor: pointer; box-shadow: 0 10px 26px rgba(0,0,0,.3); }
.cart-pill:hover { background: var(--accent-strong, #a3151f); }
.cart-pill[hidden] { display: none; }

/* ---- Shop additions (reuses the approved flavor-card component) ---------- */
.shop-loading { grid-column: 1 / -1; margin: 0; padding: 26px 0; text-align: center; color: var(--muted); font: 600 15px 'Libre Franklin'; }
.shop-empty { max-width: 560px; margin: 8px auto 0; padding: 26px; text-align: center; background: var(--cream); border: 1.5px dashed #cbbb98; border-radius: 18px; }
.shop-empty p { margin: 0 0 16px; font: 600 15px/1.55 'Libre Franklin'; color: var(--muted); }
.shop-empty[hidden] { display: none; }
.shop-avail { display: flex; align-items: center; gap: 7px; font: 700 11px 'Libre Franklin'; letter-spacing: .05em; text-transform: uppercase; color: #1f7a24; }
.shop-avail__dot { width: 8px; height: 8px; border-radius: 50%; background: #2f7d31; flex-shrink: 0; }
.shop-featured { margin-left: auto; font: 800 10px 'Libre Franklin'; letter-spacing: .06em; text-transform: uppercase; color: #8a6d1a; background: #fdf3d7; border: 1px solid #ecd9a0; border-radius: 999px; padding: 3px 9px; }
.flavor-card .btn--block { text-align: center; }

.f-dill .flavor-band { background: #2f7d31; }
.f-spicy .flavor-band { background: #c41e2a; }
.f-bb .flavor-band { background: #e0a226; }
.f-ranch .flavor-band { background: #1b2a55; }
.f-sweet .flavor-band { background: #d8542a; }
.f-okra .flavor-band { background: #3a6b2e; }
.f-beans .flavor-band { background: #4f9d3a; }
.f-sampler .flavor-band { background: #7a8699; }

.flavor-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; }
.flavor-cta span { font: 500 14px 'Libre Franklin'; color: #6b6354; }

/* ---- Events ------------------------------------------------------------- */
.deco-star { position: absolute; animation: twinkle 6s ease-in-out infinite; }
.evt-grid { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(34px, 5vw, 72px); }
.evt-copy { flex: 1 1 380px; min-width: 300px; }
.evt-meta { display: grid; grid-template-columns: repeat(3, auto); gap: 26px; margin: 30px 0 0; justify-content: start; }
.evt-meta dt { font: 800 10px 'Libre Franklin'; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.evt-meta dd { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: 24px; color: #fff; text-transform: uppercase; }
.evt-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; }
.evt-tags span { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 9px 15px; font: 700 13px 'Libre Franklin'; color: #fff; }
.evt-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; }

.flyer-wrap { flex: 1 1 340px; min-width: 280px; display: flex; justify-content: center; }
.flyer { position: relative; max-width: 400px; width: 100%; }
.flyer__mascot { position: absolute; top: -42px; right: -8px; width: 128px; z-index: 3; filter: drop-shadow(0 12px 18px rgba(0,0,0,.45)); animation: floaty 7s ease-in-out infinite; }
.flyer__card { background: var(--cream-2); border-radius: 22px; overflow: hidden; box-shadow: 0 34px 64px rgba(0,0,0,.42); color: var(--ink); }
.flyer__top { background: var(--navy); padding: 26px 24px 22px; position: relative; overflow: hidden; }
.flyer__top::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.08), transparent 40%); }
.flyer__stars { display: flex; gap: 7px; color: var(--gold); font-size: 13px; letter-spacing: 2px; position: relative; }
.flyer__kicker { margin: 10px 0 0; font: 800 11px 'Libre Franklin'; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.8); position: relative; }
.flyer__date { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(52px, 9vw, 66px); line-height: .86; color: #fff; text-transform: uppercase; margin-top: 6px; position: relative; }
.flyer__date span { color: #ff5a4d; }
.flyer__stripe { height: 12px; background: repeating-linear-gradient(90deg, var(--accent) 0 22px, var(--cream-2) 22px 44px); }
.flyer__rows { padding: 22px 24px; display: flex; flex-direction: column; gap: 16px; }
.flyer__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.flyer__row--div { padding-bottom: 14px; border-bottom: 1px solid #eadfc6; }
.flyer__row dt, .flyer__row .k { font: 800 11px 'Libre Franklin'; letter-spacing: .1em; text-transform: uppercase; color: #8a7c5e; margin: 0; }
.flyer__row dd, .flyer__row .v { font: 700 17px 'Libre Franklin'; color: var(--navy); margin: 0; }

/* ---- Story -------------------------------------------------------------- */
.story-grid { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(34px, 5vw, 72px); }
.story-copy { flex: 1 1 400px; min-width: 300px; }
.story-copy p { margin: 22px 0 0; max-width: 56ch; font: 500 17px/1.65 'Libre Franklin'; color: var(--muted); }
.story-copy p + p { margin-top: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips span { display: inline-flex; align-items: center; gap: 8px; background: var(--cream-2); border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 16px; font: 800 13px 'Libre Franklin'; color: var(--navy); }
.chips .c-green { color: var(--green); }
.chips .c-red { color: var(--accent); }
.chips .c-navy { color: var(--navy); }
.story-media { flex: 1 1 320px; min-width: 280px; display: flex; justify-content: center; }
.story-media__frame { position: relative; width: 100%; max-width: 540px; }
.story-media img { display: block; width: 100%; height: auto; border-radius: 22px; border: 4px solid var(--cream-2); box-shadow: 0 22px 48px rgba(27,42,85,.22); }

/* ---- Store cards -------------------------------------------------------- */
.store-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
/* Events (navy section, 4 cards): cap at 2 columns so wide screens get a
   balanced 2×2 instead of 3 + 1 orphan. Wholesale (cream, 3 cards) unaffected. */
.section--navy .store-grid { max-width: 760px; margin-inline: auto; }
.store-card { background: var(--cream); border: 1.5px solid var(--line); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 0 rgba(27,42,85,.05); transition: transform .14s, box-shadow .14s; }
.store-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(27,42,85,.14); }
.store-card__top { height: 8px; }
.store-card__body { padding: 26px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.store-card__kicker { font: 800 11px 'Libre Franklin'; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.store-card h2, .store-card h3 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: 30px; text-transform: uppercase; color: var(--navy); line-height: 1; }
.store-card p { margin: 0; font: 500 15px/1.55 'Libre Franklin'; color: var(--muted); }
.store-card ul { display: flex; flex-direction: column; gap: 10px; }
.store-card li { display: flex; align-items: flex-start; gap: 10px; font: 600 14.5px/1.4 'Libre Franklin'; color: #3a3f4a; }
.store-card li::before { content: "\2713"; color: var(--green); font-weight: 800; flex-shrink: 0; }
.store-card .btn { margin-top: auto; align-self: flex-start; }
.s-markets .store-card__top { background: #1b2a55; } .s-markets .store-card__kicker { color: #1b2a55; }
.s-store .store-card__top { background: #c41e2a; } .s-store .store-card__kicker { color: #c41e2a; }
.s-gifts .store-card__top { background: #2f7d31; } .s-gifts .store-card__kicker { color: #2f7d31; }

/* ---- Contact ------------------------------------------------------------ */
.contact-grid { display: flex; flex-wrap: wrap; gap: clamp(34px, 5vw, 68px); align-items: flex-start; }
.contact-copy { flex: 1 1 360px; min-width: 300px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.contact-details .k { font: 800 10px 'Libre Franklin'; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.contact-details .v { font: 600 16px 'Libre Franklin'; color: #fff; }
.contact-details .v small { font: 600 12px 'Courier New', monospace; color: rgba(255,255,255,.5); }
.contact-form-wrap { flex: 1 1 380px; min-width: 300px; width: 100%; }
.form-card { background: var(--cream-2); border-radius: 24px; padding: clamp(22px, 3vw, 34px); box-shadow: 0 34px 64px rgba(0,0,0,.36); color: var(--ink); }
.form-card h2, .form-card h3 { margin: 0 0 22px; font-family: 'Anton', sans-serif; font-weight: 400; font-size: 28px; text-transform: uppercase; color: var(--navy); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field + .field, .form-row + .field { margin-top: 16px; }
.form-row { display: flex; flex-wrap: wrap; gap: 16px; }
.form-row .field { flex: 1 1 180px; margin-top: 0; }
.field label { font: 800 11px 'Libre Franklin'; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); }
.field input, .field select, .field textarea { font: 500 16px 'Libre Franklin'; padding: 13px 15px; border: 2px solid #d9cdb3; border-radius: 12px; background: #fff; color: var(--ink); outline: none; width: 100%; }
.field textarea { line-height: 1.5; resize: vertical; min-height: 96px; }
.field select { cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 4px rgba(21,35,74,.14); }
.form-card .btn { margin-top: 22px; }
.form-note { margin: 14px 0 0; text-align: center; font: 600 12px 'Courier New', monospace; color: #8a7c5e; }
.form-success { text-align: center; padding: 18px 6px 8px; }
.form-success__check { width: 72px; height: 72px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 36px; color: #fff; box-shadow: 0 8px 0 #246125; }
.form-success h2, .form-success h3 { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: 30px; text-transform: uppercase; color: var(--navy); }
.form-success p { margin: 14px auto 0; max-width: 40ch; font: 500 16px/1.6 'Libre Franklin'; color: var(--muted); }
[hidden] { display: none !important; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: #cdd6ea; }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(44px, 5vw, 64px) 24px 0; }
.footer-top { display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; }
.footer-brand { flex: 1 1 280px; max-width: 380px; }
.footer-brand__mark { display: flex; align-items: center; gap: 12px; }
.footer-brand__mark img { height: 58px; width: auto; }
.footer-brand__mark b { font-family: 'Anton', sans-serif; font-size: 22px; font-weight: 400; color: #fff; text-transform: uppercase; display: block; line-height: 1; }
.footer-brand__mark small { font: 700 9px 'Libre Franklin'; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 4px; display: block; }
.footer-brand p { margin: 18px 0 0; max-width: 42ch; font: 500 14.5px/1.6 'Libre Franklin'; color: #9aa6c4; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col b { font: 800 10px 'Libre Franklin'; letter-spacing: .14em; text-transform: uppercase; color: #6b7796; }
.footer-col a { font: 600 15px 'Libre Franklin'; color: #cdd6ea; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 44px; border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom span { font: 500 13px 'Libre Franklin'; color: #7e8aab; }
.footer-bottom .note { font: 600 12px 'Courier New', monospace; }
.footer-social { font: 500 13px 'Libre Franklin'; color: #7e8aab; }
.footer-social small { color: #6b7796; }
.footer-credit { font: 600 13px 'Libre Franklin'; color: #9aa6c4; }
.footer-credit strong { color: #cdd6ea; }

/* Simple content sections for the multi-page build (reuse existing tokens) */
.prose { max-width: 66ch; }
.prose p { margin: 18px 0 0; font: 500 17px/1.65 'Libre Franklin'; color: var(--muted); }
.prose p:first-child { margin-top: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.section-lead { max-width: 640px; margin-bottom: 38px; }

/* ---- Find the Pickle Stand (location card + map) ------------------------ */
.find__head { max-width: 640px; margin: 0 auto 34px; text-align: center; }
.find__head .eyebrow { justify-content: center; }
.find__head .lead { margin-left: auto; margin-right: auto; }

.find__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 22px; align-items: stretch; }
.find__grid:not([data-state="active"]) { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
.find__grid:not([data-state="active"]) .find__map { display: none; }
@media (max-width: 820px) { .find__grid { grid-template-columns: 1fr; } }
.find__card { display: flex; }
.find__card > .notice-card__inner { width: 100%; }
.find__map { display: flex; min-height: 320px; }
.find .cta-row { justify-content: center; }

/* location card */
.notice-card__inner { background: var(--navy); color: #fff; border-radius: 22px; overflow: hidden; box-shadow: 0 26px 54px rgba(20, 32, 63, .28); border: 1px solid rgba(255, 255, 255, .08); display: flex; flex-direction: column; }
.notice-card__ribbon { height: 12px; flex-shrink: 0; background: repeating-linear-gradient(90deg, var(--accent) 0 22px, #fbf4e6 22px 44px); }
.notice-card__pad { padding: clamp(24px, 3.4vw, 40px); }
.notice-card__stars { color: var(--gold); letter-spacing: 7px; font-size: 15px; margin-bottom: 12px; }
.notice-card__kicker { margin: 0 0 8px; font: 800 11px 'Libre Franklin'; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .7); }
.notice-card__event { margin: 0; font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(28px, 4.6vw, 44px); line-height: .95; text-transform: uppercase; color: #fff; }
.notice-card__meta { display: flex; flex-wrap: wrap; gap: 18px 40px; margin: 22px 0 0; }
.nc-meta { display: flex; flex-direction: column; gap: 5px; }
.nc-meta__label { font: 800 10px 'Libre Franklin'; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.nc-meta__value { font: 700 16px 'Libre Franklin'; color: #fff; }
.notice-card__where { display: flex; flex-direction: column; gap: 5px; margin: 20px 0 0; align-items: flex-start; }
.notice-card__place { font: 700 20px 'Libre Franklin'; color: #fff; }
.notice-card__address { display: inline-block; margin: 12px 0 0; font: 600 15px/1.5 'Libre Franklin'; color: rgba(255, 255, 255, .85); }
.notice-card__notes { margin: 12px 0 0; font: 500 14.5px/1.55 'Libre Franklin'; color: rgba(255, 255, 255, .7); white-space: pre-line; }
.notice-card__actions { margin-top: 26px; }
.notice-card__empty { margin: 0; padding: 8px 0; text-align: center; font: 600 17px/1.6 'Libre Franklin'; color: rgba(255, 255, 255, .88); }
.notice-card__loading { padding: 20px 0; text-align: center; font: 600 14px 'Libre Franklin'; color: rgba(255, 255, 255, .75); }
a.nc-link { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 206, 46, .85); text-decoration-thickness: 2px; text-underline-offset: 3px; transition: color .12s; }
a.nc-link:hover { color: var(--gold); }

/* map panel */
.find-map__frame { position: relative; display: flex; flex-direction: column; width: 100%; border-radius: 20px; overflow: hidden; border: 2px solid rgba(21, 35, 74, .16); box-shadow: 0 22px 48px rgba(20, 32, 63, .22); background: #0b1428; }
.find-map__ribbon { height: 10px; flex-shrink: 0; background: repeating-linear-gradient(90deg, var(--accent) 0 20px, #fbf4e6 20px 40px); }
.find-map__canvas { position: relative; flex: 1; min-height: 300px; }
.find-map__canvas iframe { display: block; border: 0; width: 100%; height: 100%; min-height: 300px; }
.find-map__badge { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: flex; align-items: center; gap: 10px; max-width: calc(100% - 28px); background: rgba(21, 35, 74, .96); color: #fff; border: 1.5px solid var(--gold); border-radius: 14px; padding: 8px 13px 8px 8px; box-shadow: 0 8px 22px rgba(0, 0, 0, .38); }
.find-map__badge-logo { width: 34px; height: 34px; border-radius: 50%; background: #fff; padding: 2px; flex-shrink: 0; }
.find-map__badge-txt b { display: block; font: 800 12.5px 'Libre Franklin'; }
.find-map__badge-txt span { display: block; font: 600 11px 'Libre Franklin'; color: rgba(255, 255, 255, .82); }

/* custom AdvancedMarkerElement pin — Campbell's Pickles logo badge */
.cp-pin { position: relative; transform: translateY(-11px); }
.cp-pin__badge {
  width: 58px; height: 58px; border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;                 /* white border */
  box-shadow: 0 0 0 2px var(--navy),      /* dark navy outline */
              0 7px 16px rgba(0, 0, 0, .45); /* subtle shadow */
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cp-pin__img { width: 100%; height: 100%; object-fit: contain; }
.cp-pin__point {
  position: absolute; left: 50%; bottom: -9px; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-top: 13px solid var(--navy);     /* navy tail so it reads as a pin */
  filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .3));
}
@media (max-width: 640px) {
  .cp-pin__badge { width: 48px; height: 48px; }
  .cp-pin__point { bottom: -8px; border-top-width: 11px; }
}

/* Google info window */
.cp-info { font-family: 'Libre Franklin', sans-serif; max-width: 220px; padding: 2px 4px; }
.cp-info__brand { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 17px; text-transform: uppercase; color: var(--navy); display: block; line-height: 1; }
.cp-info__where { display: block; margin-top: 6px; font: 700 13px 'Libre Franklin'; color: var(--ink); }
.cp-info__addr { display: block; margin-top: 2px; font: 500 12.5px/1.4 'Libre Franklin'; color: var(--muted); }
.cp-info__link { display: inline-block; margin-top: 8px; font: 800 12px 'Libre Franklin'; letter-spacing: .03em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.cp-info__link:hover { text-decoration: underline; }

/* ---- Prototype notes (native <details>) --------------------------------- */
.notes { position: fixed; right: 18px; bottom: 18px; z-index: 120; }
.notes__summary { list-style: none; display: inline-flex; align-items: center; gap: 9px; padding: 13px 18px; background: var(--navy); color: #fff; font: 800 13px 'Libre Franklin'; letter-spacing: .04em; text-transform: uppercase; border: 2px solid var(--gold); border-radius: 999px; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.notes__summary::-webkit-details-marker { display: none; }
.notes__summary .d { color: var(--gold); }
.notes__summary:hover { transform: translateY(-2px); }
.notes__panel { position: absolute; right: 0; bottom: 60px; width: min(360px, calc(100vw - 36px)); max-height: 72vh; overflow: auto; background: var(--cream-2); border: 1px solid #e6dcc6; border-radius: 18px; box-shadow: 0 30px 70px rgba(0,0,0,.4); color: var(--ink); }
.notes__head { position: sticky; top: 0; background: var(--navy); color: #fff; padding: 18px 20px; }
.notes__head b { font-family: 'Anton', sans-serif; font-size: 20px; font-weight: 400; text-transform: uppercase; }
.notes__head span { font: 500 12.5px/1.4 'Libre Franklin'; color: rgba(255,255,255,.75); margin-top: 4px; display: block; }
.notes__list { margin: 0; padding: 14px 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.notes__list li { display: flex; gap: 12px; padding: 13px 14px; background: var(--cream); border: 1px solid var(--line); border-radius: 12px; }
.notes__list li::before { content: "\25C6"; color: var(--accent); font-size: 14px; line-height: 1.4; flex-shrink: 0; }
.notes__list b { font: 800 14px 'Libre Franklin'; color: var(--navy); display: block; }
.notes__list p { margin: 3px 0 0; font: 500 13px/1.5 'Libre Franklin'; color: #5c5648; }

/* ---- FAQ page ------------------------------------------------------------ */
.faq-group { max-width: 860px; margin: 0 auto 34px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-cat { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: .5px; color: var(--navy); font-size: clamp(21px, 2.6vw, 27px); margin: 0 0 14px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; box-shadow: 0 6px 18px rgba(27,42,85,.06); overflow: hidden; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; cursor: pointer; list-style: none; font: 700 16px/1.45 'Libre Franklin', sans-serif; color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255,206,46,.12); }
.faq-item summary:focus-visible { outline: 3px solid var(--accent); outline-offset: -3px; border-radius: 14px; }
.faq-marker { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--navy); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font: 800 16px/1 'Libre Franklin', sans-serif; }
.faq-marker::before { content: "+"; }
.faq-item[open] .faq-marker::before { content: "\2212"; }
.faq-item[open] summary { border-bottom: 1px dashed var(--line); }
.faq-a { padding: 14px 18px 18px; }
.faq-a p { margin: 0; font: 500 15px/1.7 'Libre Franklin', sans-serif; color: var(--muted); }
.faq-star { color: var(--accent); }
.faq-more { max-width: 860px; margin: 34px auto 0; text-align: center; }
.faq-more .lead { margin-bottom: 14px; }
@media (max-width: 640px) {
  .faq-item summary { font-size: 15px; padding: 14px 14px; }
  .faq-a { padding: 12px 14px 16px; }
  .faq-a p { font-size: 14.5px; }
}

/* ---- Homepage compact CTA strip ------------------------------------------ */
.cta-strip { background: var(--navy); color: #fff; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.08); }
.cta-strip__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cta-strip__item h2 { font-family: 'Anton', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: .5px; font-size: 19px; margin: 0 0 8px; color: #fff; }
.cta-strip__item h2 .star { color: var(--gold); font-size: 14px; }
.cta-strip__item p { margin: 0 0 14px; font: 500 14px/1.6 'Libre Franklin', sans-serif; color: rgba(255,255,255,.78); }
.cta-strip__link { color: var(--gold); font-weight: 700; }
@media (max-width: 860px) {
  .cta-strip { padding: 30px 0; }
  .cta-strip__row { grid-template-columns: 1fr; gap: 22px; }
}

/* ---- Homepage combined brand + find-us section ---------------------------- */
.home-duo { padding-block: clamp(48px, 6vw, 84px); }
.home-duo__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(28px, 4.5vw, 60px); align-items: start; }
.home-duo__brand .cta-row { margin-top: 26px; }
.home-duo__find .title { font-size: clamp(24px, 2.6vw, 33px); }
.home-duo__find .lead { font-size: 15.5px; margin-bottom: 18px; }
.home-duo__find .find__grid:not([data-state="active"]) { max-width: none; margin-inline: 0; }
.home-duo__find .cta-row { margin-top: 18px; }
@media (max-width: 900px) {
  .home-duo__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- Hero background video ------------------------------------------------ */
/* Reduced motion: hide the moving video and show the still poster instead
   (the section background layers under the existing dark overlays). */
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero { background: var(--hero) url("/assets/img/pickles-hero-poster.jpg") center / cover no-repeat; }
}

/* Autoplay refused (hero-video-fallback set by the inline helper): show the
   poster as the hero background, same as the reduced-motion fallback. */
.hero-video-fallback .hero__video { display: none; }
.hero-video-fallback .hero { background: var(--hero) url("/assets/img/pickles-hero-poster.jpg") center / cover no-repeat; }
