/* =========================================================================
   Brand-site marketing homepage.

   Design language: bold, warm, unpretentious. Typography does the heavy
   lifting — Anton for display, Inter for body. Colours come from the
   brand's palette via CSS custom properties set by brand-home.js.

   Sections alternate darker/lighter navy for visual rhythm.
   ========================================================================= */

:root {
  --brand-bg:        #131f3d;   /* deep navy — primary background */
  --brand-bg-alt:    #1c2b52;   /* slightly lighter navy — alternate sections */
  --brand-bg-panel:  #223466;   /* even lighter — card surfaces */
  --brand-fg:        #fafaf9;   /* off-white primary text */
  --brand-fg-muted:  #a8b0c7;   /* muted body copy */
  --brand-accent:    #ecac2f;   /* orange CTA */
  --brand-accent-fg: #131f3d;   /* dark text on orange = readable + punchy */
  --brand-accent-2:  #4bb8dc;   /* cyan secondary */
  --brand-border:    rgba(255,255,255,0.10);
  --brand-radius:    12px;
  --brand-radius-lg: 20px;
  --font-display:    "Anton", "Impact", "Arial Narrow Bold", sans-serif;
  --font-body:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--brand-bg);
  color: var(--brand-fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand-accent); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.85; }
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }
strong { font-weight: 700; }

/* -------------------------- BUTTONS -------------------------- */
.bh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none !important;
  border: 2px solid transparent;
  white-space: nowrap;
}
.bh-btn:hover { transform: translateY(-1px); opacity: 1 !important; }
.bh-btn-primary {
  background: var(--brand-accent);
  color: var(--brand-accent-fg) !important;
}
.bh-btn-primary:hover { filter: brightness(1.08); }
.bh-btn-ghost {
  background: transparent;
  color: var(--brand-fg) !important;
  border-color: rgba(255,255,255,0.35);
}
.bh-btn-ghost:hover {
  background: var(--brand-fg);
  color: var(--brand-bg) !important;
  border-color: var(--brand-fg);
}
.bh-btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* -------------------------- HEADER -------------------------- */
.bh-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 40px);
  background: rgba(19, 31, 61, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--brand-border);
}
.bh-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--brand-fg) !important;
  letter-spacing: 0.02em;
}
.bh-mark img { height: 38px; width: auto; }
.bh-nav { display: flex; gap: 10px; }
.bh-nav .bh-btn { padding: 8px 18px; font-size: 0.9rem; }

/* -------------------------- HERO -------------------------- */
.bh-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 90px) clamp(20px, 4vw, 60px);
  background: radial-gradient(ellipse at 50% 30%, var(--brand-bg-alt) 0%, var(--brand-bg) 70%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  /* Cap the mobile hero so it doesn't dominate the whole first fold —
     empty space with a wordmark isn't "premium", it's "sparse". Let
     the food photos below start to peek. */
  .bh-hero { min-height: min(80vh, 640px); padding-top: 32px; padding-bottom: 48px; }
}
.bh-hero-inner {
  max-width: 960px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.bh-hero-title {
  margin: 0 auto 20px;
  max-width: 720px;
}
.bh-hero-title img {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.bh-hero-title:not(:has(img)) {
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--brand-fg);
}
.bh-hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--brand-fg);
  margin: 0.4em 0 1.4em;
  letter-spacing: 0.02em;
}
.bh-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.bh-hero-meta {
  margin-top: 44px;
  font-size: 0.78rem;
  color: var(--brand-fg-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Visually hidden for accessible-name preservation on image titles */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* -------------------------- PROOF STRIP -------------------------- */
.bh-proof {
  background: var(--brand-bg-alt);
  padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.bh-proof-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.bh-proof-item { display: flex; flex-direction: column; gap: 4px; }
.bh-proof-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  color: var(--brand-accent);
  line-height: 1;
}
.bh-proof-label {
  font-size: 0.85rem;
  color: var(--brand-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  .bh-proof-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* -------------------------- SECTION HEADERS -------------------------- */
.bh-section-header {
  max-width: 900px;
  margin: 0 auto clamp(30px, 5vw, 60px);
  text-align: center;
  padding: 0 20px;
}
.bh-section-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--brand-fg);
  margin-bottom: 0.2em;
}
.bh-section-sub {
  font-size: 1.1rem;
  color: var(--brand-fg-muted);
  margin: 0;
}
.bh-section-sub-inline {
  color: var(--brand-accent);
  font-family: var(--font-display);
  display: inline;
}

/* -------------------------- FEATURED HITTERS -------------------------- */
.bh-featured {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 60px);
}
.bh-featured-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.bh-featured-card {
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.bh-featured-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-accent);
}
.bh-featured-image {
  aspect-ratio: 4 / 3;
  background: var(--brand-bg-panel);
  background-size: cover;
  background-position: center;
}
.bh-featured-body { padding: 20px 22px 22px; }
.bh-featured-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand-fg);
  margin: 0 0 8px;
  line-height: 1.1;
}
.bh-featured-desc {
  color: var(--brand-fg-muted);
  font-size: 0.92rem;
  margin: 0 0 14px;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bh-featured-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bh-featured-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--brand-accent);
}
.bh-featured-card .bh-btn { padding: 8px 18px; font-size: 0.9rem; }

/* -------------------------- SKELETONS ---------------------------
   Shimmer placeholders shown while the menu API is in flight.
   Gets replaced by real content once brand-home.js populates the grids. */
@keyframes bh-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.bh-skeleton { pointer-events: none; }
.bh-skel-block,
.bh-skel-line {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.10) 40%, rgba(255,255,255,0.04) 80%);
  background-size: 800px 100%;
  animation: bh-shimmer 1.6s ease-in-out infinite;
  border-radius: 6px;
}
.bh-skel-block { width: 100%; height: 100%; aspect-ratio: 4 / 3; }
.bh-skel-line  { height: 14px; margin: 10px 0; }
.bh-featured-card.bh-skeleton { border-color: transparent; }
.bh-featured-card.bh-skeleton .bh-featured-image { background: none; }

/* -------------------------- STORY -------------------------- */
.bh-story {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 60px);
  background: var(--brand-bg-alt);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.bh-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
.bh-story-copy .bh-section-title { text-align: left; margin-bottom: 24px; }
.bh-story-body {
  color: var(--brand-fg-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.bh-story-body p { margin: 0 0 1.2em; }
.bh-story-body p:last-child { margin-bottom: 0; }
.bh-story-body a { color: var(--brand-accent-2); border-bottom: 1px solid rgba(75,184,220,0.4); }
.bh-story-visual img {
  width: 100%;
  border-radius: var(--brand-radius-lg);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.3));
}
@media (max-width: 800px) {
  .bh-story-inner { grid-template-columns: 1fr; }
  .bh-story-visual { order: -1; }
}

/* -------------------------- LINEUP (full menu) -------------------------- */
.bh-lineup {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 60px);
}
.bh-lineup-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.bh-lineup-loading {
  text-align: center;
  color: var(--brand-fg-muted);
  grid-column: 1 / -1;
}
.bh-lineup-item {
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.bh-lineup-item:hover { transform: translateY(-2px); }
.bh-lineup-item-image {
  aspect-ratio: 1 / 1;
  background: var(--brand-bg-panel);
  background-size: cover;
  background-position: center;
}
.bh-lineup-item-body { padding: 12px 14px; }
.bh-lineup-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brand-fg);
  margin: 0 0 4px;
  line-height: 1.1;
}
.bh-lineup-item-price {
  color: var(--brand-accent);
  font-weight: 600;
  font-size: 0.95rem;
}
.bh-lineup-cta {
  text-align: center;
  margin-top: 50px;
}

/* -------------------------- GALLERY (Instagram-style) -------------------------- */
.bh-gallery {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 60px);
  background: var(--brand-bg-alt);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.bh-gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.bh-gallery-tile {
  aspect-ratio: 1 / 1;
  background-color: var(--brand-bg-panel);
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  transition: transform 0.2s ease;
  display: block;
}
.bh-gallery-tile:hover { transform: scale(1.03); }

/* -------------------------- VISIT -------------------------- */
.bh-visit {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 60px);
}
.bh-visit-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.bh-visit .bh-section-title {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}
.bh-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.bh-visit-block {
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius-lg);
  padding: 30px 26px;
}
.bh-visit-label {
  font-size: 0.85rem;
  color: var(--brand-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-weight: 700;
}
.bh-visit-text {
  color: var(--brand-fg);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (max-width: 640px) { .bh-visit-grid { grid-template-columns: 1fr; } }

/* -------------------------- THE KITCHENS (multi-venue grid) -------------
   Replaces the old "Come find us" section. 3-card layout of Teesside
   locations. "Coming soon" venues get a pill + subtly reduced emphasis. */
.bh-kitchens {
  padding: clamp(60px, 8vw, 120px) clamp(20px, 4vw, 60px);
  background: var(--brand-bg-alt);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}
.bh-kitchens-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.bh-kitchen-card {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.15s ease;
}
.bh-kitchen-card:hover { border-color: var(--brand-accent); }
.bh-kitchen-card--coming { opacity: 0.85; }
.bh-kitchen-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.bh-kitchen-city {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--brand-fg);
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1;
}
.bh-kitchen-pill {
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  white-space: nowrap;
}
.bh-kitchen-pill--coming {
  background: rgba(75,184,220,0.15);
  color: var(--brand-accent-2);
  border: 1px solid rgba(75,184,220,0.4);
}
.bh-kitchen-venue {
  color: var(--brand-fg-muted);
  font-size: 0.9rem;
  margin: 0;
}
.bh-kitchen-venue strong { color: var(--brand-fg); font-weight: 600; }
.bh-kitchen-addr {
  color: var(--brand-fg);
  font-size: 1rem;
  margin: 4px 0;
  line-height: 1.4;
}
.bh-kitchen-days {
  color: var(--brand-accent-2);
  font-size: 0.9rem;
  margin: 4px 0 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.bh-kitchen-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
  flex-wrap: wrap;
}
.bh-kitchen-actions .bh-btn { padding: 8px 18px; font-size: 0.88rem; }

/* -------------------------- COMING UP (events list) --------------------- */
.bh-events {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
  border-bottom: 1px solid var(--brand-border);
}
.bh-events-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.bh-event {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--brand-border);
  align-items: baseline;
}
.bh-event:last-child { border-bottom: 0; }
.bh-event > a {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.bh-event > a:hover { color: var(--brand-accent); }
.bh-event-when {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bh-event-date {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brand-accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.bh-event-time {
  color: var(--brand-fg-muted);
  font-size: 0.85rem;
}
.bh-event-what {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bh-event-title {
  font-size: 1.1rem;
  color: var(--brand-fg);
  font-weight: 700;
}
.bh-event-venue {
  color: var(--brand-fg-muted);
  font-size: 0.92rem;
}
.bh-event-notes {
  color: var(--brand-fg-muted);
  font-size: 0.85rem;
  font-style: italic;
}
@media (max-width: 560px) {
  .bh-event { grid-template-columns: 1fr; gap: 4px; }
  .bh-event-date { font-size: 1rem; }
}

/* -------------------------- PICKY STRIP (downgraded per audit #9) --------
   Full "Craving something else too?" section demoted DING inside its own
   homepage. This is now a single quiet line above the footer — a nod,
   not a hard sell. */
.bh-picky-strip {
  padding: 28px 20px 40px;
  text-align: center;
  color: var(--brand-fg-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--brand-border);
}
.bh-picky-strip a {
  color: var(--brand-accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(236,172,47,0.35);
}
.bh-picky-strip a:hover { border-bottom-color: var(--brand-accent); }

/* -------------------------- CROSS-PROMO (legacy, unused) -------------- */
.bh-crosspromo {
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
  text-align: center;
  background: linear-gradient(135deg, var(--brand-bg) 0%, var(--brand-bg-alt) 100%);
  border-top: 1px solid var(--brand-border);
}
.bh-crosspromo-inner {
  max-width: 680px;
  margin: 0 auto;
}
.bh-crosspromo-label {
  font-size: 0.85rem;
  color: var(--brand-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0 0 12px;
  font-weight: 700;
}
.bh-crosspromo-copy {
  color: var(--brand-fg-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* -------------------------- COOKIE NOTICE ------------------------------
   Minimal one-cookie declaration (UK GDPR + PECR compliant). Not a
   consent gate — we don't set anything requiring consent — just an
   acknowledgment. Dismissable, persisted in localStorage. */
.bh-consent {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  width: calc(100% - 24px);
  z-index: 40;
  background: var(--brand-bg-alt);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  color: var(--brand-fg-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
/* The `display: flex` above (author origin) beats the UA `[hidden] {
   display: none }` rule, so the hidden attribute alone never hid the
   banner — the Accept/OK button set banner.hidden = true but it stayed
   visible. This restores the hidden attribute for this component so
   both the initial hide and the click-to-dismiss work. */
.bh-consent[hidden] { display: none !important; }
.bh-consent-copy { margin: 0; flex: 1; }
.bh-consent-copy a { color: var(--brand-accent); }
.bh-consent .bh-btn { padding: 8px 20px; font-size: 0.85rem; flex-shrink: 0; }
@media (max-width: 640px) {
  /* Move above the sticky-order bar on mobile so both are visible */
  .bh-consent { bottom: 80px; }
}

/* -------------------------- STICKY ORDER (mobile only) -----------------
   Bottom-of-viewport CTA. Hidden on desktop where the header Order button
   is always visible. Ensures thumb-reach conversion on phones — biggest
   audit item for mobile UX. */
.bh-sticky-order {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 30;
  text-align: center;
  padding: 0;
}
.bh-sticky-order .bh-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-size: 1.05rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
@media (max-width: 640px) {
  .bh-sticky-order { display: block; }
  /* Add breathing room at the bottom of the page so the sticky bar
     doesn't cover the footer legal on last-scroll. */
  .bh-footer { padding-bottom: 100px; }
}

/* -------------------------- FOOTER -------------------------- */
.bh-footer {
  padding: 50px clamp(20px, 4vw, 40px) 40px;
  background: var(--brand-bg);
  border-top: 1px solid var(--brand-border);
}
.bh-footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--brand-fg-muted);
  font-size: 0.92rem;
}
.bh-footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}
.bh-footer-socials a {
  color: var(--brand-fg);
  border: 1px solid var(--brand-border);
  padding: 8px 18px;
  border-radius: 999px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.bh-footer-socials a:hover {
  border-color: var(--brand-accent);
  background: rgba(236,172,47,0.08);
}
.bh-footer-legal { margin: 0 0 6px; }
.bh-footer-legal a { color: var(--brand-fg); opacity: 0.85; }
.bh-footer-small { font-size: 0.82rem; opacity: 0.8; }

/* -------------------------- MOBILE TWEAKS -------------------------- */
@media (max-width: 640px) {
  .bh-header { padding: 12px 16px; }
  .bh-nav .bh-btn { padding: 6px 14px; font-size: 0.82rem; }
  .bh-hero { min-height: 80vh; padding: 40px 20px; }
  .bh-hero-actions { flex-direction: column; align-items: stretch; }
  .bh-hero-actions .bh-btn { justify-content: center; }
}

/* ============================================================================
   BRAND-HOME V2 (task #52, 2026-07-12)
   Dough Hands-inspired restraint. "Sell the customer, not the food."
   Small tucked mark. Tagline + photo collage hero. Locations lead.
   Photo-tile board. Compressed story. Warmer whitespace.
   Fully additive — the old classes still work for any page using them.
   ============================================================================ */

.bh-v2 {
  --brand-bg-v2:     var(--brand-bg,        #131f3d);
  --brand-fg-v2:     var(--brand-fg,        #ecac2f);
  --brand-accent-v2: var(--brand-accent,    #ecac2f);
  /* Text token — falls through to --brand-fg (which the JS sets from
     theme_color_text). Previously fell back to a hardcoded #fafaf9 which
     rendered as invisible near-white text on a white background. */
  --brand-text-v2:   var(--brand-fg,        #131f3d);
  /* Anton but restrained — 8vw not 15vw; Palace/ALD scale */
  --tagline-size:    clamp(3.2rem, 8vw, 7rem);
  --tagline-line:    0.9;
  /* Surface tokens — used for card overlays / borders. Default assumes
     dark bg (white overlays). Overridden inside .bh-light for light bg. */
  --surface-1:       rgba(255,255,255,0.04);
  --surface-1-hover: rgba(255,255,255,0.07);
  --surface-border:  rgba(255,255,255,0.08);
  --surface-strong:  rgba(255,255,255,0.16);
  --scrim:           linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  --skel-block:      rgba(255,255,255,0.05);
}
/* Light-mode overrides — applied when the DB brand row sets theme_color
   to a light value (bg-home.js adds .bh-light when theme_color_text is
   'black'). Inverts the card surface tints from white-on-dark to
   black-on-light so cards, borders and scrims read correctly on cream/
   white backgrounds. Nothing else needs changing — layout is identical. */
.bh-light {
  --surface-1:       rgba(0,0,0,0.035);
  --surface-1-hover: rgba(0,0,0,0.06);
  --surface-border:  rgba(0,0,0,0.10);
  --surface-strong:  rgba(0,0,0,0.20);
  --skel-block:      rgba(0,0,0,0.05);
}

/* Slim header — sits above content, small mark */
.bh-v2 .bh-header-slim {
  padding: 22px 32px;
  border-bottom: none;
  background: transparent;
}
.bh-v2 .bh-mark-small { font-size: 1.1rem; }
/* Tom 2026-07-15: header mark was way too small (28px). Bump to a
   readable presence but stay under the header padding. */
.bh-v2 .bh-mark-small img { max-height: 56px; }
@media (max-width: 640px) {
  .bh-v2 .bh-mark-small img { max-height: 44px; }
}

/* --- Hero V2: two columns on desktop, stacked on mobile ------------------ */

.bh-hero-v2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 120px) clamp(24px, 5vw, 72px) clamp(48px, 6vw, 96px);
  min-height: 82vh;
  background: var(--brand-bg-v2);
  color: var(--brand-text-v2);
}
.bh-hero-v2-copy { max-width: 640px; }
.bh-hero-v2-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.62;
  margin: 0 0 clamp(16px, 3vw, 32px);
}
.bh-hero-v2-tagline {
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: var(--tagline-size);
  line-height: var(--tagline-line);
  margin: 0 0 clamp(20px, 3vw, 36px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.bh-hero-v2-meta {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  opacity: 0.72;
  max-width: 46ch;
  line-height: 1.55;
  margin: 0 0 clamp(24px, 3vw, 40px);
}
.bh-hero-v2-actions { display: flex; gap: 12px; }

/* Collage — two staggered tiles on the right */
.bh-hero-v2-collage {
  position: relative;
  min-height: min(56vh, 560px);
}
.bh-hero-tile {
  position: absolute;
  background-size: cover;
  background-position: center;
  background-color: var(--skel-block);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.bh-hero-tile-a { top: 0; left: 4%; width: 62%; aspect-ratio: 3/4; }
.bh-hero-tile-b { bottom: 0; right: 0; width: 58%; aspect-ratio: 4/5; }

@media (max-width: 900px) {
  .bh-hero-v2 { grid-template-columns: 1fr; padding: 32px 20px 48px; min-height: auto; }
  .bh-hero-v2-collage { min-height: 340px; }
  .bh-hero-tile-a { width: 66%; }
  .bh-hero-tile-b { width: 62%; }
}

/* --- Locations ---------------------------------------------------------- */

.bh-locations {
  padding: clamp(48px, 6vw, 96px) clamp(24px, 5vw, 72px);
  background: var(--brand-bg-v2);
  color: var(--brand-text-v2);
}
.bh-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.bh-location-card {
  background: var(--surface-1);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  padding: 24px;
  color: var(--brand-text-v2);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.bh-location-card:hover { background: var(--surface-1-hover); border-color: var(--surface-strong); }
.bh-location-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.bh-location-card-addr { font-size: 0.92rem; opacity: 0.72; margin: 0 0 12px; }
.bh-location-card-hours { font-size: 0.85rem; opacity: 0.6; margin: 0 0 16px; }
.bh-location-card-status {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--surface-border);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bh-location-card-status[data-status="open"]      { background: rgba(52, 160, 52, 0.14); color: #2f7d2f; }
.bh-location-card-status[data-status="soon"]      { background: rgba(210, 152, 24, 0.14); color: #8a6410; }
.bh-location-card-status[data-status="closed"]    { background: var(--surface-1); color: var(--brand-text-v2); opacity: 0.55; }
.bh-light .bh-location-card-status[data-status="open"] { color: #2b6c2b; }

/* --- The Board (photo tile grid) --------------------------------------- */

.bh-board {
  padding: clamp(56px, 7vw, 112px) clamp(24px, 5vw, 72px);
  background: var(--brand-bg-v2);
  color: var(--brand-text-v2);
}
.bh-board-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(24px, 3vw, 40px);
  gap: 16px;
  flex-wrap: wrap;
}
.bh-board-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
}
.bh-btn-inline {
  font-family: 'Inter', sans-serif;
  color: var(--brand-text-v2);
  opacity: 0.75;
  text-decoration: none;
  font-size: 0.92rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.bh-btn-inline:hover { opacity: 1; }
.bh-board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(8px, 1vw, 16px);
}
.bh-board-tile {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-1);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: var(--brand-text-v2);
}
.bh-board-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 12px 12px;
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--scrim);
  color: #fff;
}
.bh-board-tile-price {
  position: absolute;
  top: 10px; right: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #fff;
}
/* Candid tile — decorative photo, no label / no price. Just a photo. */
.bh-board-tile-candid {
  cursor: default;
}

/* --- Kitchen strip (task #51 placeholder) ---------------------------- */

.bh-kitchen-strip {
  padding: clamp(40px, 5vw, 80px) clamp(24px, 5vw, 72px);
  background: var(--brand-bg-v2);
}
.bh-kitchen-strip-header { display: flex; align-items: baseline; gap: 16px; margin-bottom: 20px; }
.bh-kitchen-strip-note { font-size: 0.9rem; opacity: 0.55; margin: 0; color: var(--brand-text-v2); }
.bh-kitchen-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.bh-kitchen-strip-grid .bh-board-tile { aspect-ratio: 3/4; }

/* --- Story V2 (compressed) -------------------------------------------- */

.bh-story-v2 {
  padding: clamp(56px, 6vw, 96px) clamp(24px, 5vw, 72px);
  background: var(--brand-bg-v2);
  color: var(--brand-text-v2);
}
.bh-story-v2-inner { max-width: 640px; margin: 0 auto; }
.bh-story-v2-body { font-family: 'Inter', sans-serif; font-size: 1.05rem; line-height: 1.65; opacity: 0.82; }
.bh-story-v2-body p { margin: 0 0 1em; }
.bh-story-v2-body p:last-child { margin-bottom: 0; }

/* --- Smaller section title (used in Coming up) ----------------------- */

.bh-section-title-small {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

/* --- Footer V2 (smaller, quieter) ------------------------------------- */

.bh-footer-v2 {
  padding: 40px 24px;
  background: var(--brand-bg-v2);
  color: var(--brand-text-v2);
  border-top: 1px solid var(--surface-border);
}
.bh-footer-v2 .bh-footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.bh-footer-v2 .bh-footer-legal { font-size: 0.82rem; opacity: 0.55; }

/* --- Mobile refinements ---------------------------------------------- */

@media (max-width: 640px) {
  .bh-v2 .bh-header-slim { padding: 16px 20px; }
  .bh-v2 .bh-hero-v2-eyebrow { font-size: 0.72rem; }
  .bh-board-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================================
   BRAND-HOME V2.1 — Dough Hands direction (2026-07-13)
   Cream + orange, carousels, more space, less contrast, bolder CTAs.
   Applied ONLY inside .bh-light (light-mode brands), so the dark-mode
   brands (Mexi-Shan, Lucky Time etc.) keep their old rendering.
   ============================================================================ */

.bh-light .bh-hero-v2 {
  min-height: 88vh;
  padding: clamp(60px, 10vw, 140px) clamp(24px, 5vw, 72px);
}
.bh-light .bh-hero-v2-tagline {
  font-size: clamp(3.6rem, 10vw, 8.5rem);
  letter-spacing: -0.015em;
}
.bh-light .bh-btn-primary {
  /* Bigger, blockier CTA — Dough-Hands-scale. Orange from theme_color_2. */
  padding: 18px 34px;
  font-size: 1.05rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 700;
}
.bh-light .bh-btn-lg {
  padding: 22px 42px;
  font-size: 1.15rem;
}

/* --- Carousels (Dough Hands-style horizontal-snap strips) ------------ */

.bh-carousel-section {
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 7vw, 96px);
  background: var(--brand-bg-v2);
  color: var(--brand-text-v2);
}
.bh-carousel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 72px);
  margin-bottom: clamp(20px, 3vw, 36px);
}
.bh-carousel-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  font-weight: 600;
}
.bh-carousel {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding: 0 clamp(24px, 5vw, 72px) 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.bh-carousel::-webkit-scrollbar { display: none; }
.bh-carousel .bh-board-tile {
  flex: 0 0 clamp(240px, 32vw, 400px);
  scroll-snap-align: start;
  aspect-ratio: 4/5;
  min-width: 240px;
  /* Visible frame around the menu + "AT IT" carousel image tiles.
     A defined near-black ink at 0.45 alpha reads clearly on BOTH the
     DING cream bg and coloured brand bgs (e.g. Mexi-Shan red) — the
     old 1px var(--surface-border) hairline (~rgba(0,0,0,0.10)) was
     effectively invisible. */
  border: 2px solid rgba(0, 0, 0, 0.45);
}
/* Sharp corners on all images across light-mode (Tom 2026-07-15).
   Editorial / poster look — no soft radius. Applies to hero collage
   tiles, menu carousel tiles, kitchen carousel tiles. */
.bh-light .bh-board-tile,
.bh-light .bh-hero-tile,
.bh-light .bh-board-tile-candid {
  border-radius: 0;
}

/* Bigger Order block on the light-mode hero */
.bh-light .bh-hero-v2-actions .bh-btn-primary {
  min-width: 220px;
  justify-content: center;
}

/* --- Full-bleed hero (Tom 2026-07-15) ---------------------------------
   Kills the two-column hero collage. One candid image fills the
   viewport; WHITE tagline overlaid centre-left, bottom-anchored so
   the photo can breathe up top. Toy-camera aesthetic via a filter on
   a ::before layer (keeps the text crisp — filter would desaturate
   it otherwise). ::after supplies a dark gradient scrim so the copy
   is readable on any candid.
   Applies whenever the hero <section> also has .bh-hero-fullbleed —
   which brand-home.html now always sets. Overrides both the base
   grid layout and the .bh-light padding tweak. */
.bh-hero-fullbleed {
  display: block !important;
  grid-template-columns: none !important;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  padding: clamp(48px, 8vw, 120px) clamp(24px, 5vw, 72px);
  color: #fff !important;
  isolation: isolate;
  background: #0f2447; /* fallback tint under the image */
}
/* Default single-candid background layer — ALL NON-DING brand-homes.
   brand-home.js sets --hero-bg to the first candid. DING instead gets
   the marquee below (JS adds .bh-hero-marquee + populates the track and
   does NOT set --hero-bg, so this ::before stays transparent for DING). */
.bh-hero-fullbleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  /* toy-camera / disposable-camera feel: crushed blacks, muted
     saturation, hint of warmth. Subtle — don't turn it into a filter
     preset gimmick. */
  filter: contrast(1.06) saturate(0.9) sepia(0.05);
  z-index: 0;
}

/* Marquee hero (2026-07-24) — DING / properdings.com ONLY. Every rule
   here is scoped to .bh-hero-marquee, which brand-home.js adds to
   #brandHeroFullbleed for DING alone. A full-viewport horizontally
   auto-scrolling strip of the IRL candids (Broadwick-live / street-food
   energy). Track built + doubled by JS; CSS drives the seamless 0 → -50%
   loop. Header measured ~100px (sticky, slim) → hero fills to fold. */
.bh-hero-marquee { min-height: calc(100vh - 100px); padding: 0; overflow: hidden; }
/* Scoped with .bh-hero-marquee so it (a) affects DING only and (b)
   out-specifies `.bh-hero-fullbleed > * { position: relative; z-index: 2 }`
   — keeping the track the absolute, z-index:0 layer beneath scrim + copy. */
.bh-hero-marquee .bh-hero-marquee-track {
  position: absolute; inset: 0;
  display: flex;
  will-change: transform;
  animation: bh-hero-marquee-scroll var(--marquee-duration, 100s) linear infinite;
  /* same toy-camera / disposable-camera feel as the single-candid hero */
  filter: contrast(1.06) saturate(0.9) sepia(0.05);
  z-index: 0;
}
.bh-hero-marquee .bh-hero-marquee-tile {
  flex: 0 0 clamp(320px, 55vw, 900px);
  height: 100%;
  background-size: cover;
  background-position: center;
}
@keyframes bh-hero-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  /* Must match the .bh-hero-marquee-scoped specificity of the active
     animation rule above, or it won't win — leaves the track parked at
     translateX(0) so candid-1 shows statically. DING only. */
  .bh-hero-marquee .bh-hero-marquee-track { animation: none; }
}
/* Default scrim — ALL brand-homes (unchanged original). */
.bh-hero-fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.32) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Marquee scrim override — DING only. Darker at both ends: top for the
   slim header, bottom for the white MINCE IN A BUN tagline; lighter
   through the middle so the moving candids read. Equal specificity to
   the default scrim (0,1,1), so it must stay AFTER it in source. */
.bh-hero-marquee::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(0, 0, 0, 0.25) 20%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
}
.bh-hero-fullbleed > * {
  position: relative;
  z-index: 2;
}
.bh-hero-fullbleed .bh-hero-v2-copy {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 62vh;
}
.bh-hero-fullbleed .bh-hero-v2-eyebrow,
.bh-hero-fullbleed .bh-hero-v2-tagline,
.bh-hero-fullbleed .bh-hero-v2-meta {
  color: #fff !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.bh-hero-fullbleed .bh-hero-v2-eyebrow { opacity: 0.85 !important; }
.bh-hero-fullbleed .bh-hero-v2-meta    { opacity: 0.9  !important; }
/* Default height — ALL brand-homes (unchanged original). */
.bh-light .bh-hero-fullbleed { min-height: 92vh; }
/* DING marquee height override. Equal specificity (0,2,0) to the rule
   above, so it stays AFTER it; on DING (both classes present) it wins,
   non-DING keeps 92vh. Also beats the mobile .bh-hero-fullbleed 84vh
   rule below on specificity, so DING is calc() on mobile too. */
.bh-light .bh-hero-marquee { min-height: calc(100vh - 100px); }
@media (max-width: 640px) {
  .bh-hero-fullbleed { min-height: 84vh; padding: 32px 20px; }
  /* DING: keep the marquee edge-to-edge but preserve a copy gutter. */
  .bh-hero-marquee { padding: 32px 20px 0; }
  .bh-hero-fullbleed .bh-hero-v2-copy { min-height: 55vh; }
}

/* ============================================================================
   MEXI-SHAN "skater's scrapbook journal" hero (2026-07-24) — brand id 3 only.
   Every rule is gated on .bh-hero-scrapbook, which brand-home.js adds to
   #brandHeroFullbleed for Mexi-Shan alone (DING keeps the marquee; other
   brands keep the single-candid hero). Red #d20001 + black #0e0e0e zine page,
   yellow #FFC700 accents; transparent sticker PNGs scattered + tilted like a
   grip-tape collage. Self-contained: CSS gradients + inline SVG data-URIs
   only (CSP-safe, no external asset fetches). Collage is static — no load
   animation — so it's inherently reduced-motion friendly.
   ============================================================================ */
.bh-hero-scrapbook {
  min-height: calc(100vh - 100px);
  /* deep-red/black zine page: black base + two red spray glows, faint
     halftone dots + film-grain noise (inline SVG data-URIs). */
  background-color: #0e0e0e;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(210,0,1,0.60), transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(210,0,1,0.42), transparent 46%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat, no-repeat, repeat, repeat !important;
}
/* Sticker collage layer — sits behind the copy (z-index 0). Scoped with
   .bh-hero-scrapbook to out-specify `.bh-hero-fullbleed > * { z-index:2 }`. */
.bh-hero-scrapbook .bh-hero-scrapbook-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.bh-hero-scrapbook .bh-scrap-sticker {
  position: absolute;
  height: auto;
  filter: drop-shadow(3px 5px 6px rgba(0,0,0,0.55));
  -webkit-user-select: none;
  user-select: none;
}
/* Per-sticker placement — percentages keep the collage responsive; the
   section's overflow:hidden clips anything past the edge (no h-scroll). */
.bh-hero-scrapbook .scrap-wordmark {
  top: 6%; left: 50%;
  width: clamp(240px, 42vw, 560px);
  transform: translateX(-50%) rotate(-3deg);
  z-index: 2;
}
.bh-hero-scrapbook .scrap-chilli {
  top: 30%; left: 5%;
  width: clamp(84px, 12vw, 150px);
  transform: rotate(-13deg);
}
.bh-hero-scrapbook .scrap-skull {
  top: 23%; right: 6%;
  width: clamp(96px, 13vw, 178px);
  transform: rotate(9deg);
}
.bh-hero-scrapbook .scrap-sun {
  top: 51%; right: 7%;
  width: clamp(82px, 11vw, 150px);
  transform: rotate(-8deg);
}
.bh-hero-scrapbook .scrap-taco {
  top: 47%; left: 7%;
  width: clamp(92px, 12vw, 162px);
  transform: rotate(11deg);
}
/* Thrasher-flame block — a PERIPHERAL sticker (not the headline logo).
   Tucked top-left corner, smaller, jaunty angle. */
.bh-hero-scrapbook .scrap-thrasher {
  top: 3%; left: 2%;
  width: clamp(96px, 14vw, 210px);
  transform: rotate(-10deg);
}
/* Bottom scrim so the copy reads over the collage (over layer, under copy).
   Equal specificity to the default .bh-hero-fullbleed::after — kept AFTER it
   in source so it wins for the scrapbook hero. */
.bh-hero-scrapbook::after {
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 42%,
    rgba(0,0,0,0.55) 78%,
    rgba(0,0,0,0.80) 100%);
  z-index: 1;
}
/* Copy restyle — taped-label eyebrow, marker tagline, yellow CTA. */
.bh-hero-scrapbook .bh-hero-v2-eyebrow {
  display: inline-block;
  align-self: flex-start;
  background: #FFC700;
  color: #0e0e0e !important;
  opacity: 1 !important;
  padding: 5px 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transform: rotate(-2deg);
  box-shadow: 2px 3px 6px rgba(0,0,0,0.45);
  text-shadow: none;
}
.bh-hero-scrapbook .bh-hero-v2-tagline {
  /* Punchy SUB-headline beneath the blackletter MEXI-SHAN logo — deliberately
     smaller than the default giant display size so it doesn't fight the logo.
     One or two lines for the short "HOT LIKE MEXICO, SHAN LIKE 'ARTLEPOOL". */
  font-size: clamp(1.4rem, 3.6vw, 2.7rem) !important;
  line-height: 1 !important;
  color: #fff !important;
  text-shadow: 3px 3px 0 #d20001, 0 4px 18px rgba(0,0,0,0.65);
}
.bh-hero-scrapbook .bh-hero-v2-meta {
  color: #FFC700 !important;
  opacity: 1 !important;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0,0,0,0.75);
}
.bh-hero-scrapbook .bh-btn-primary {
  background: #FFC700;
  color: #0e0e0e;
  border: 3px solid #0e0e0e;
  box-shadow: 3px 4px 0 #0e0e0e;
  font-weight: 800;
}
.bh-hero-scrapbook .bh-btn-primary:hover { background: #ffd633; }
/* Optional physicality: gentle tilt on hover (desktop pointers only, never
   under prefers-reduced-motion). */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .bh-hero-scrapbook .bh-scrap-sticker { transition: transform 0.25s ease; }
  .bh-hero-scrapbook:hover .scrap-chilli { transform: rotate(-13deg) scale(1.06); }
  .bh-hero-scrapbook:hover .scrap-skull  { transform: rotate(9deg)   scale(1.06); }
  .bh-hero-scrapbook:hover .scrap-taco   { transform: rotate(11deg)  scale(1.06); }
}
/* Mobile: shrink + tuck stickers to the edges so the headline + Order button
   stay legible and nothing overflows horizontally. */
@media (max-width: 640px) {
  .bh-hero-scrapbook .scrap-wordmark { top: 5%; width: clamp(200px, 74vw, 330px); }
  .bh-hero-scrapbook .scrap-chilli { top: 23%; left: 1%; width: 74px; }
  .bh-hero-scrapbook .scrap-skull  { top: 19%; right: 1%; width: 84px; }
  .bh-hero-scrapbook .scrap-sun    { top: 39%; right: 2%; width: 70px; }
  .bh-hero-scrapbook .scrap-taco   { top: 41%; left: 2%; width: 78px; }
  .bh-hero-scrapbook .scrap-thrasher { top: 2%; left: 1%; width: 66px; }
}

/* --- Logo poster (Tom 2026-07-15) -------------------------------------
   Full-bleed white section between hero and locations displaying the
   three-DING-variants poster PNG (portrait aspect). Generous top +
   bottom padding so it reads as an intentional brand-mark moment,
   not a random image drop. Constrained max-width so the logos don't
   balloon on ultrawide screens. */
.bh-logo-poster {
  background: #ffffff;
  padding: clamp(56px, 8vw, 120px) clamp(24px, 5vw, 72px);
  display: flex;
  justify-content: center;
  align-items: center;
}
/* display:flex above defeats the UA [hidden] rule, so restore it — the
   section starts hidden and brand-home.js only reveals it for brands
   whose three-logos.png exists. */
.bh-logo-poster[hidden] { display: none !important; }
.bh-logo-poster-img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  /* subtle drop-shadow gives the logos a hint of the same handmade
     paper-poster feel as the brush-outline artwork itself */
  filter: drop-shadow(0 6px 24px rgba(15, 36, 71, 0.08));
}
@media (max-width: 640px) {
  .bh-logo-poster { padding: 48px 24px; }
  .bh-logo-poster-img { max-width: 78vw; }
}

/* --- Locations: vertical-only stack on light mode --------------------
   Tom 2026-07-15: kill the horizontal card grid. Full-width rows,
   hairline dividers. Carousels are the only allowed horizontal motion
   on the page. */
.bh-light .bh-locations {
  padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 72px);
}
.bh-light .bh-locations-grid {
  grid-template-columns: 1fr;
  gap: 0;
}
.bh-light .bh-location-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--surface-border);
  border-radius: 0;
  padding: 24px 0;
}
.bh-light .bh-location-card:hover {
  background: transparent;
  border-color: var(--surface-border);
}

/* Cookie notice — light-mode override */
.bh-light .bh-consent {
  background: #fff !important;
  color: var(--brand-fg-v2) !important;
  border: 1px solid var(--surface-border);
}
.bh-light .bh-consent .bh-consent-copy { color: var(--brand-fg-v2); }
.bh-light .bh-consent a { color: var(--brand-accent-v2); }

/* Footer on light — simpler, more air */
.bh-light .bh-footer-v2 {
  padding: 64px 24px;
  border-top: 1px solid var(--surface-border);
}

/* ============================================================================
   MEXI-SHAN below-hero cohesion + skate-parody "sticker slap" fold
   (2026-07-24) — brand id 3 ONLY. Every rule below is gated on
   body.is-mexishan, which brand-home.js adds in the isMexishan branch. This
   carries the hero's "skater's scrapbook" aesthetic down the whole page:
     • red/black zine background panels on the lower content sections + footer
     • the MENU / AT IT section headings restyled as yellow taped labels
       (matching the hero eyebrow)
     • a few tilted, drop-shadowed die-cut food-sticker accents tucked into
       section corners (decorative ::pseudo layers — pointer-events:none AND
       sat behind all content via a section stacking context, so they can
       never overlap or obscure carousel tiles / links)
     • a dedicated World Industries / Thrasher / Limp Bizkit parody-logo fold
       above the footer.
   Nothing here can touch DING / Lucky Time / Hot Club (they never get the
   is-mexishan class). Self-contained: CSS gradients + inline-SVG data-URIs +
   the existing die-cut PNG stickers only (CSP-safe).
   ============================================================================ */

/* Black page base so any seam between sections reads as zine black, not the
   flat brand red the shared template otherwise paints on <body>. */
body.is-mexishan { background: #0e0e0e; }

/* Reusable zine treatment on the lower content sections + footer. Subtler red
   spray glows than the hero (0.42 / 0.30 vs 0.60 / 0.42) so white body text and
   the carousel tiles stay legible. `z-index:0` makes each section its own
   stacking context: the food-sticker accent ::pseudo layers (z-index:-1) then
   paint ABOVE this zine bg but BEHIND every child (tiles, labels, links), so
   they decorate the empty margins and are auto-occluded by any content.
   `overflow:hidden` clips tilted stickers at the section edge → no h-scroll. */
body.is-mexishan .bh-carousel-section,
body.is-mexishan .bh-locations,
body.is-mexishan .bh-events,
body.is-mexishan .bh-footer-v2 {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-color: #0e0e0e;
  background-image:
    radial-gradient(circle at 14% 4%, rgba(210,0,1,0.42), transparent 40%),
    radial-gradient(circle at 88% 96%, rgba(210,0,1,0.30), transparent 46%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat, repeat;
}

/* Section headings → yellow taped label (matches the hero eyebrow). */
body.is-mexishan .bh-carousel-eyebrow {
  display: inline-block;
  background: #FFC700;
  color: #0e0e0e;
  opacity: 1;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  transform: rotate(-2deg);
  box-shadow: 2px 3px 6px rgba(0,0,0,0.5);
}
/* Smaller section titles (e.g. "Coming up") get the taped look too. */
body.is-mexishan .bh-section-title-small {
  display: inline-block;
  background: #FFC700;
  color: #0e0e0e;
  padding: 6px 16px;
  transform: rotate(-2deg);
  box-shadow: 2px 3px 6px rgba(0,0,0,0.5);
}
/* Inline "All →" link → yellow so it reads on the dark zine bg. */
body.is-mexishan .bh-btn-inline { color: #FFC700; opacity: 1; }

/* --- Food-sticker accents (decorative) ---------------------------------
   Two per section, tucked into opposite corners. z-index:-1 keeps each behind
   all content within the section's stacking context, so it can never cover a
   carousel tile, price, label or link — it only shows through the empty zine
   margins. pointer-events:none belt-and-braces. */
body.is-mexishan .bh-carousel-section::before,
body.is-mexishan .bh-carousel-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  filter: drop-shadow(3px 4px 5px rgba(0,0,0,0.55));
}
/* MENU section — chilli top-left (near the taped label), taco bottom-right. */
body.is-mexishan #brandMenuCarouselSection::before {
  width: clamp(72px, 9vw, 128px);
  height: clamp(72px, 9vw, 128px);
  top: 12px; left: 10px;
  background-image: url("/storefront/brand-icons/mexishan-sticker-chilli.png");
  transform: rotate(-15deg);
}
body.is-mexishan #brandMenuCarouselSection::after {
  width: clamp(84px, 10vw, 140px);
  height: clamp(84px, 10vw, 140px);
  bottom: 14px; right: 16px;
  background-image: url("/storefront/brand-icons/mexishan-sticker-taco.png");
  transform: rotate(12deg);
}
/* AT IT section — sun top-right, skull bottom-left. */
body.is-mexishan #brandKitchenCarouselSection::before {
  width: clamp(72px, 9vw, 128px);
  height: clamp(72px, 9vw, 128px);
  top: 12px; right: 14px;
  background-image: url("/storefront/brand-icons/mexishan-sticker-sun.png");
  transform: rotate(-9deg);
}
body.is-mexishan #brandKitchenCarouselSection::after {
  width: clamp(84px, 10vw, 138px);
  height: clamp(84px, 10vw, 138px);
  bottom: 14px; left: 14px;
  background-image: url("/storefront/brand-icons/mexishan-sticker-skull.png");
  transform: rotate(10deg);
}
/* Footer — one small skull accent, bottom-left gutter (behind the centred
   legal text). */
body.is-mexishan .bh-footer-v2::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(64px, 8vw, 104px);
  height: clamp(64px, 8vw, 104px);
  bottom: 10px; left: 12px;
  background-image: url("/storefront/brand-icons/mexishan-sticker-skull.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-8deg);
  pointer-events: none;
  filter: drop-shadow(3px 4px 5px rgba(0,0,0,0.55));
}

/* --- Skate-parody "sticker slap" fold (above the footer) ----------------
   Injected by brand-home.js (renderMexishanFold). Three parody-logo stickers
   slapped on a richer zine page, varied sizes, tilted, overlapping. The whole
   section is aria-hidden + pointer-events:none. overflow:hidden clips the
   tilted stickers at the edges so the page never scrolls sideways. */
body.is-mexishan .bh-msfold {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  padding: clamp(44px, 7vw, 96px) clamp(24px, 5vw, 72px);
  border-top: 3px solid #FFC700;
  background-color: #0e0e0e;
  background-image:
    radial-gradient(circle at 22% 18%, rgba(210,0,1,0.58), transparent 44%),
    radial-gradient(circle at 84% 88%, rgba(210,0,1,0.44), transparent 48%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat, repeat;
}
body.is-mexishan .bh-msfold-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  min-height: clamp(240px, 32vw, 380px);
}
body.is-mexishan .bh-msfold-sticker {
  position: absolute;
  height: auto;
  filter: drop-shadow(4px 6px 8px rgba(0,0,0,0.6));
  -webkit-user-select: none;
  user-select: none;
}
/* World Industries devil-head block — big, back layer, tilted left. */
body.is-mexishan .msf-world {
  width: clamp(190px, 32vw, 430px);
  top: 4%; left: 3%;
  transform: rotate(-6deg);
  z-index: 1;
}
/* Thrasher flame block — mid size, front layer, tilted right, overlapping. */
body.is-mexishan .msf-thrash {
  width: clamp(120px, 17vw, 230px);
  top: 34%; left: 41%;
  transform: rotate(7deg);
  z-index: 3;
}
/* Limp Bizkit wide wordmark — lower-right, gentle tilt. */
body.is-mexishan .msf-limp {
  width: clamp(220px, 40vw, 500px);
  bottom: 6%; right: 2%;
  transform: rotate(-3deg);
  z-index: 2;
}
/* Marker/taped caption. */
body.is-mexishan .bh-msfold-caption {
  position: absolute;
  bottom: 4%; left: 3%;
  background: #FFC700;
  color: #0e0e0e;
  font-family: 'Anton', 'Impact', sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  transform: rotate(-3deg);
  box-shadow: 2px 3px 6px rgba(0,0,0,0.5);
  z-index: 4;
}

/* Mobile: shrink accents + fold stickers, tuck to edges, keep clear of tiles;
   no horizontal overflow (sections clip). */
@media (max-width: 640px) {
  body.is-mexishan #brandMenuCarouselSection::before,
  body.is-mexishan #brandKitchenCarouselSection::before { width: 64px; height: 64px; top: 8px; }
  body.is-mexishan #brandMenuCarouselSection::after,
  body.is-mexishan #brandKitchenCarouselSection::after  { width: 70px; height: 70px; bottom: 10px; }
  body.is-mexishan .bh-msfold-inner { min-height: 300px; }
  body.is-mexishan .msf-world  { width: clamp(150px, 56vw, 240px); top: 2%; left: 2%; }
  body.is-mexishan .msf-thrash { width: clamp(96px, 30vw, 140px); top: 30%; left: 46%; }
  body.is-mexishan .msf-limp   { width: clamp(180px, 78vw, 320px); bottom: 8%; right: 1%; }
  body.is-mexishan .bh-msfold-caption { bottom: 2%; }
}

