/* ============================================================
   VENTURE CAFÉ 3.0 — SITE DESIGN SYSTEM (responsive, multi-page)
   Extends the established house style: Montserrat + JetBrains Mono,
   the 90° "V" motif, the network gradient, per-café accent pair.
   ============================================================ */

:root {
  /* Brand */
  /* PRIMARY — this location's main accent (Cambridge = green) */
  --vc-green:        #95cd31;
  --vc-green-deep:   #7fb521;
  --vc-green-soft:   #eef6da;
  --vc-primary:      var(--vc-green);
  --vc-primary-deep: var(--vc-green-deep);
  --vc-primary-soft: var(--vc-green-soft);

  /* SECONDARY — set per site in WP settings. Example here: the complementary
     (opposite-on-the-wheel) of the lime primary → a vivid violet. */
  --vc-secondary:        #6d4fd6;
  --vc-secondary-deep:   #5436b8;
  --vc-secondary-soft:   #ece7fb;
  --vc-secondary-bright: #a892ff;   /* legible on dark backgrounds */

  /* accent-2 now maps to the site secondary (was a fixed orange) */
  --vc-accent-2:     var(--vc-secondary);
  --vc-accent-2-soft:var(--vc-secondary-soft);
  --vc-ink:          #1a1d21;
  --vc-ink-soft:     #4a4e54;
  --vc-mute:         #71767e;
  --vc-rule:         #e4e6ea;
  --vc-rule-soft:    #eef0f3;
  --vc-paper:        #ffffff;
  --vc-paper-warm:   #f2f3f5;
  --vc-white:        #ffffff;

  /* Network gradient — magenta → orange → lime → green → teal → violet */
  --vc-grad-1: #e63b78;
  --vc-grad-2: #f08c1a;
  --vc-grad-3: #c6d422;
  --vc-grad-4: #4faa3a;
  --vc-grad-5: #1e9fa3;
  --vc-grad-6: #6960b8;
  --vc-gradient: linear-gradient(90deg,
    var(--vc-grad-1) 0%, var(--vc-grad-2) 22%, var(--vc-grad-3) 44%,
    var(--vc-grad-4) 64%, var(--vc-grad-5) 84%, var(--vc-grad-6) 100%);

  /* The body frame line (top + footer). Local cafés: primary → secondary accent.
     The global site overrides this with the full network rainbow (body.vc-global). */
  --vc-frame-gradient: linear-gradient(90deg, var(--vc-primary) 0%, var(--vc-secondary) 100%);

  --vc-font-display: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --vc-font-body:    'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --vc-font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  --vc-radius-sm:   10px;
  --vc-radius-md:   18px;
  --vc-radius-lg:   28px;
  --vc-radius-xl:   40px;
  --vc-radius-pill: 999px;

  --vc-shadow-sm: 0 4px 14px rgba(26,29,33,0.05);
  --vc-shadow-md: 0 12px 34px rgba(26,29,33,0.08);
  --vc-shadow-lg: 0 30px 70px rgba(26,29,33,0.12);

  --vc-maxw: 1280px;
  --vc-pad-x: clamp(20px, 5vw, 72px);
  --vc-section-y: clamp(56px, 8vw, 116px);

  --vc-nav-h: 76px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--vc-font-body);
  font-weight: 400;
  color: var(--vc-ink);
  background: var(--vc-paper);
  line-height: 1.6;
  letter-spacing: 0.004em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;            /* never allow sideways scroll from a stray wide element (clip = sticky-safe) */
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
/* Long words / unbroken strings in big display type must never force overflow. */
.vc-display, .vc-h1, .vc-h2, .vc-h3, .vc-section-title { overflow-wrap: break-word; }

/* ── Accessibility ── */
:focus-visible {
  outline: 3px solid var(--vc-accent-2);
  outline-offset: 3px;
  border-radius: 4px;
}
.vc-skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--vc-ink); color: var(--vc-white);
  padding: 12px 20px; border-radius: var(--vc-radius-pill);
  font-family: var(--vc-font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none;
  transition: top 0.2s ease;
}
.vc-skip:focus { top: 12px; }
.vc-visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Layout ── */
.vc-container { max-width: var(--vc-maxw); margin: 0 auto; padding-inline: var(--vc-pad-x); }
.vc-section { padding-block: var(--vc-section-y); }
.vc-section-tight { padding-block: clamp(40px, 5vw, 72px); }
.vc-ink-bg { background: var(--vc-ink); color: var(--vc-paper); }
.vc-paper-warm-bg { background: var(--vc-paper-warm); }

/* ── Type ── */
.vc-display {
  font-family: var(--vc-font-display); font-weight: 800; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.02em;
  font-size: clamp(36px, 5.4vw, 74px);
}
.vc-h1 { font-family: var(--vc-font-display); font-weight: 800; text-transform: uppercase; line-height: 0.98; letter-spacing: -0.01em; font-size: clamp(34px, 5vw, 64px); margin: 0; }
.vc-h2 { font-family: var(--vc-font-display); font-weight: 800; text-transform: uppercase; line-height: 1; letter-spacing: -0.005em; font-size: clamp(28px, 3.6vw, 50px); margin: 0; }
.vc-h3 { font-family: var(--vc-font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.005em; font-size: clamp(18px, 1.6vw, 23px); line-height: 1.15; margin: 0; }
.vc-eyebrow {
  font-family: var(--vc-font-mono); font-weight: 500; text-transform: uppercase;
  font-size: 11px; letter-spacing: 0.22em; color: var(--vc-mute);
  display: inline-flex; align-items: center; gap: 10px;
}
.vc-eyebrow .dot { width: 6px; height: 6px; background: var(--vc-green); border-radius: 50%; flex: none; }
.vc-ink-bg .vc-eyebrow { color: rgba(255,255,255,0.55); }
.vc-mono { font-family: var(--vc-font-mono); }
.vc-lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--vc-ink-soft); text-wrap: pretty; }
.vc-ink-bg .vc-lead { color: rgba(255,255,255,0.74); }
.vc-body { font-size: 16px; line-height: 1.65; color: var(--vc-ink-soft); text-wrap: pretty; }
.vc-ink-bg .vc-body { color: rgba(255,255,255,0.72); }
.vc-allcaps { text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; }
.vc-accent { color: var(--vc-green-deep); }
.vc-accent-2-fg { color: var(--vc-secondary-bright); }
.vc-tnum { font-variant-numeric: tabular-nums; }

/* ── Gradient strip (body frame line: top of body + top of footer) ── */
.vc-grad-strip { height: 6px; background: var(--vc-frame-gradient); }
.vc-grad-strip-thick { height: 10px; }
/* For now, the global site also uses the primary→secondary accent gradient.
   To restore the network rainbow on global, re-enable:
   body.vc-global { --vc-frame-gradient: var(--vc-gradient); } */

/* ── Buttons ── */
.vc-btn {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 15px 26px; border-radius: var(--vc-radius-pill);
  font-family: var(--vc-font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.13em; text-transform: uppercase; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s;
}
.vc-btn:hover { transform: translateY(-2px); }
.vc-btn .arrow { transition: transform 0.2s; }
.vc-btn:hover .arrow { transform: translateX(4px); }
.vc-btn-primary { background: var(--vc-ink); color: var(--vc-paper); }
.vc-btn-primary:hover { background: var(--vc-green); color: var(--vc-ink); }
.vc-btn-accent { background: var(--vc-green); color: var(--vc-ink); }
.vc-btn-accent:hover { background: var(--vc-ink); color: var(--vc-green); }
.vc-btn-ghost { background: transparent; color: var(--vc-ink); border-color: var(--vc-ink); }
.vc-btn-ghost:hover { background: var(--vc-ink); color: var(--vc-paper); }
.vc-btn-light { background: var(--vc-white); color: var(--vc-ink); }
.vc-btn-light:hover { background: var(--vc-green); color: var(--vc-ink); }
.vc-ink-bg .vc-btn-ghost { color: var(--vc-paper); border-color: rgba(255,255,255,0.5); }
.vc-ink-bg .vc-btn-ghost:hover { background: var(--vc-paper); color: var(--vc-ink); border-color: var(--vc-paper); }
.vc-btn-sm { padding: 11px 18px; font-size: 11.5px; }
.vc-btn-text {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--vc-font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: 0.13em; text-transform: uppercase; text-decoration: none;
  color: inherit; border-bottom: 2px solid currentColor; padding-bottom: 3px;
  cursor: pointer; background: none; border-left: 0; border-right: 0; border-top: 0;
  transition: color 0.15s, gap 0.15s;
}
.vc-btn-text:hover { color: var(--vc-green-deep); gap: 13px; }
.vc-ink-bg .vc-btn-text:hover { color: var(--vc-green); }

/* ── Pills / chips ── */
.vc-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; border-radius: var(--vc-radius-pill);
  background: var(--vc-white); border: 1px solid var(--vc-rule);
  font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
}
.vc-pill-accent { background: var(--vc-green); border-color: var(--vc-green); color: var(--vc-ink); font-weight: 600; }
.vc-pill-ink { background: var(--vc-ink); color: var(--vc-paper); border-color: var(--vc-ink); }
.vc-pill-soft { background: var(--vc-green-soft); border-color: transparent; color: var(--vc-green-deep); font-weight: 600; }
.vc-pill-outline { background: transparent; border-color: var(--vc-green); color: var(--vc-green-deep); font-weight: 600; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--vc-grad-1); flex: none;
  box-shadow: 0 0 0 4px rgba(230,59,120,0.18); animation: vc-pulse 1.8s ease-in-out infinite;
}
@keyframes vc-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(230,59,120,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(230,59,120,0.04); }
}

/* ── Cards ── */
.vc-card { background: var(--vc-white); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-md); padding: 28px; }
.vc-card-lg { border-radius: var(--vc-radius-lg); padding: 36px; }
.vc-card-ink { background: var(--vc-ink); color: var(--vc-paper); border-color: var(--vc-ink); }
.vc-card-hover { transition: transform 0.16s ease, border-color 0.16s, box-shadow 0.16s; }
.vc-card-hover:hover { transform: translateY(-3px); border-color: var(--vc-ink); box-shadow: var(--vc-shadow-md); }

/* ── Dotted-leader stat rows ── */
.vc-stat-list { display: flex; flex-direction: column; }
.vc-stat-row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px dashed var(--vc-rule); }
.vc-ink-bg .vc-stat-row { border-color: rgba(255,255,255,0.16); }
.vc-stat-row .lbl { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vc-mute); display: inline-flex; align-items: center; gap: 10px; }
.vc-stat-ico { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; flex: none; }
.vc-stat-ico img { width: 100%; height: 100%; object-fit: contain; }
/* Inlined code icon (.vc-icon span + svg) fills the fixed box like the old <img>. */
.vc-stat-ico .vc-icon, .vc-stat-ico .vc-icon svg { width: 100%; height: 100%; }
.vc-ink-bg .vc-stat-row .lbl { color: rgba(255,255,255,0.55); }
.vc-stat-row .val { font-family: var(--vc-font-display); font-weight: 800; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

/* ── Big number ── */
.vc-bignum { font-family: var(--vc-font-display); font-weight: 900; line-height: 0.86; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; font-size: clamp(56px, 9vw, 120px); }
.vc-bignum-cap { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vc-mute); margin-top: 10px; }
.vc-bigstat-icon { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px; }

/* ── Section header ── */
.vc-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; margin-bottom: clamp(32px, 4vw, 54px); flex-wrap: wrap; }
.vc-section-head .left { max-width: 720px; }
.vc-section-head .right { flex: none; }
.vc-section-title { font-family: var(--vc-font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(30px, 4.2vw, 54px); line-height: 1; letter-spacing: -0.015em; margin: 14px 0 0; }
.vc-section-head .sub { margin-top: 18px; }

/* ── Image placeholder ── */
.vc-img { background: var(--vc-paper-warm); background-size: cover; background-position: center; border-radius: var(--vc-radius-md); overflow: hidden; position: relative; }
.vc-img-ph {
  background: repeating-linear-gradient(45deg, var(--vc-paper-warm) 0 9px, var(--vc-paper) 9px 18px);
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px;
  font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vc-mute);
}

/* ── Divider ── */
.vc-divider { height: 1px; background: var(--vc-rule); border: 0; }
.vc-ink-bg .vc-divider { background: rgba(255,255,255,0.12); }

/* ── Grids ── */
.vc-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2vw, 28px); }
.vc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.vc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.6vw, 24px); }
@media (max-width: 900px) {
  .vc-grid-3, .vc-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vc-grid-2, .vc-grid-3, .vc-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   NAV + LOCATION SWITCHER
   ============================================================ */
.vc-nav-wrap { position: sticky; top: 0; z-index: 100; }
/* Menu open → body is scroll-locked (overflow:hidden), which breaks position:sticky.
   Pin the header as fixed so it stays put instead of dropping out and leaving a gap. */
.vc-nav-wrap.is-menu-open { position: fixed; top: 0; left: 0; right: 0; }
.vc-topbar {
  background: var(--vc-ink); color: var(--vc-paper);
  font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.vc-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; }
.vc-topbar a { text-decoration: none; color: rgba(255,255,255,0.75); }
.vc-topbar a:hover { color: var(--vc-green); }
.vc-topbar .next { display: inline-flex; align-items: center; gap: 10px; overflow: hidden; }
.vc-topbar .next b { color: var(--vc-green); font-weight: 600; }
.vc-topbar .util { display: inline-flex; align-items: center; gap: 18px; flex: none; }

/* Top bar on phones: keep only the next-gathering line (truncated); the utility
   links (Global ↗, My Venture Café) move to the bottom of the menu panel. */
@media (max-width: 600px) {
  .vc-topbar { font-size: 10px; letter-spacing: 0.06em; }
  .vc-topbar-inner { gap: 10px; }
  .vc-topbar .next { flex: 1 1 auto; min-width: 0; }
  .vc-topbar .next > span:last-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .vc-topbar .util { display: none; }
}
/* After the first scroll, collapse the utility bar on mobile so only the compact
   logo + search + burger row stays sticky (toggled by chrome.js). */
@media (max-width: 1040px) {
  .vc-topbar { overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; max-height: 60px; }
  .vc-nav-wrap.is-scrolled .vc-topbar { max-height: 0; }
  .vc-nav-wrap.is-scrolled .vc-topbar-inner { padding-block: 0; }
}

.vc-nav { background: var(--vc-paper); border-bottom: 1px solid var(--vc-rule); }
.vc-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--vc-nav-h); }
.vc-nav-cta-icon { display: none; } /* desktop shows the text label, not the icon */
.vc-brand { display: flex; align-items: center; gap: 10px; flex: none; }
.vc-brand-logo { display: flex; align-items: center; text-decoration: none; }
.vc-brand-logo img { height: 25px; width: auto; }
.vc-brand-switch {
  appearance: none; background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border-radius: 8px;
  color: var(--vc-mute); font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.vc-brand-switch:hover { background: var(--vc-green-soft); color: var(--vc-green-deep); }
.vc-brand-globe { display: block; width: 20px; height: 20px; }
.vc-brand-switch .chev { transition: transform 0.2s ease; display: inline-block; font-size: 9px; }
.vc-brand-switch[aria-expanded="true"] .chev { transform: rotate(180deg); }

.vc-nav-links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.vc-nav-item { position: relative; }
.vc-nav-link {
  font-family: var(--vc-font-display); font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--vc-ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 0; cursor: pointer;
  background: none; border: 0;
}
.vc-nav-link .caret { font-size: 8px; opacity: 0.5; transition: transform 0.2s; }
.vc-nav-item.open .vc-nav-link .caret { transform: rotate(180deg); }
.vc-nav-link::after { content: ''; position: absolute; bottom: 4px; left: 0; height: 2px; width: 0; background: var(--vc-green); transition: width 0.2s ease; }
.vc-nav-link:hover::after, .vc-nav-item.open .vc-nav-link::after, .vc-nav-link.active::after { width: 100%; }
.vc-nav-cta {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; flex: none;
  background: var(--vc-green); color: var(--vc-ink); border-radius: var(--vc-radius-pill);
  font-family: var(--vc-font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; transition: background 0.2s, color 0.2s;
}
.vc-nav-cta:hover { background: var(--vc-ink); color: var(--vc-green); }
.vc-nav-icon-btn {
  appearance: none; background: none; border: 1px solid var(--vc-rule); cursor: pointer;
  width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: var(--vc-ink); transition: background 0.15s, border-color 0.15s;
}
.vc-nav-icon-btn:hover { background: var(--vc-white); border-color: var(--vc-ink); }

/* ---- Mobile bar (≤1040px): logo + a compact calendar-icon CTA + burger.
   Declared AFTER the nav base rules above so these overrides actually win. ---- */
@media (max-width: 1040px) {
  :root { --vc-nav-h: 64px; }
  .vc-nav-inner { gap: 8px; }
  .vc-brand-switch { display: none; }   /* globe moves into the menu panel */
  .vc-nav-icon-btn { display: none; }   /* search lives in the menu panel */
  .vc-brand-logo img { height: 20px; }  /* scale the logo down a touch */
  /* CTA → calendar-icon button (ink icon on green). */
  .vc-nav-cta { padding: 0; width: 44px; height: 44px; border-radius: 12px; justify-content: center; flex: none; }
  .vc-nav-cta-text { display: none; }
  .vc-nav-cta-icon { display: block; width: 24px; height: 24px; }
  .vc-burger { width: 44px; height: 44px; }
}

/* Mega menu */
.vc-mega {
  position: absolute; top: 100%; left: 0; margin-top: 6px; z-index: 120;
  background: var(--vc-white); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-lg);
  box-shadow: var(--vc-shadow-lg); padding: 32px 36px; min-width: 340px; max-width: min(1020px, 94vw);
  display: grid; grid-template-columns: repeat(var(--cols, 2), minmax(220px, 1fr)); gap: 28px 56px;
  /* hidden until the item is opened (JS hover/click) or focused (keyboard) */
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.16s;
}
/* invisible bridge across the 6px gap so the pointer can travel into the panel */
.vc-mega::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.vc-nav-item.open > .vc-mega,
.vc-nav-item:focus-within > .vc-mega {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s;
}
/* keep the right-hand items' panels inside the viewport */
.vc-nav-links > .vc-nav-item:nth-last-child(-n+2) > .vc-mega { left: auto; right: 0; }
@keyframes vc-fade-down { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.vc-mega-group h5 { font-family: var(--vc-font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vc-mute); margin: 0 0 14px; }
.vc-mega-group ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.vc-mega-group a { text-decoration: none; color: var(--vc-ink); font-size: 14.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: color 0.14s; }
.vc-mega-group a:hover { color: var(--vc-green-deep); }
/* Feature card spans its own full-width row beneath the link columns, laid out
   horizontally: text on the left, CTA on the right. */
.vc-mega-feature { grid-column: 1 / -1; background: var(--vc-ink); color: var(--vc-paper); border-radius: var(--vc-radius-md); padding: 22px 26px; display: flex; flex-direction: row; align-items: center; gap: 28px; justify-content: space-between; flex-wrap: wrap; text-decoration: none; position: relative; overflow: hidden; transition: transform 0.15s ease; }
.vc-mega-feature-text { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.vc-mega-feature .vc-mega-cta { align-self: center; flex: none; }
.vc-mega-feature:hover { transform: translateY(-2px); }
.vc-mega-feature::after { content: ""; position: absolute; right: -36px; bottom: -36px; width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle, var(--vc-secondary) 0%, transparent 70%); opacity: 0.4; z-index: 0; }
.vc-mega-feature > * { position: relative; z-index: 1; }
.vc-mega-feature h5 { color: var(--vc-secondary-bright); }
.vc-mega-feature p { margin: 0; font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.vc-mega-cta { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; background: var(--vc-secondary); color: #fff; padding: 10px 17px; border-radius: var(--vc-radius-pill); font-family: var(--vc-font-display); font-weight: 700; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; transition: gap 0.15s ease, background 0.15s ease; }
.vc-mega-feature:hover .vc-mega-cta { gap: 12px; background: var(--vc-secondary-deep); }

/* Location switcher dropdown */
.vc-loc-panel {
  position: absolute; top: 100%; left: 0; margin-top: 8px; z-index: 130;
  background: var(--vc-white); border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-lg);
  box-shadow: var(--vc-shadow-lg); padding: 26px 28px; width: min(720px, 86vw);
  animation: vc-fade-down 0.16s ease;
  /* Cap to the viewport so a long café list never runs off-screen; the head +
     search stay pinned and .vc-loc-regions scrolls inside (dvh accounts for the
     mobile browser chrome). */
  display: flex; flex-direction: column;
  max-height: min(78vh, calc(100dvh - 96px));
}
/* The panel toggles via the [hidden] attribute (JS flips locPanel.hidden). Our
   author `display:flex` above outranks the UA [hidden]{display:none}, so restore
   it explicitly or the panel is stuck open on load. */
.vc-loc-panel[hidden] { display: none; }
.vc-loc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.vc-loc-head h4 { font-family: var(--vc-font-display); font-weight: 800; text-transform: uppercase; font-size: 18px; margin: 0; letter-spacing: -0.005em; }
.vc-loc-search { position: relative; margin-bottom: 22px; }
.vc-loc-search input {
  width: 100%; padding: 12px 16px 12px 40px; border: 1px solid var(--vc-rule); border-radius: var(--vc-radius-pill);
  font-family: var(--vc-font-body); font-size: 14px; background: var(--vc-paper); color: var(--vc-ink);
}
.vc-loc-search input:focus { outline: none; border-color: var(--vc-green); background: var(--vc-white); }
.vc-loc-search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--vc-mute); }
.vc-loc-regions {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px 30px;
  /* Take the leftover panel height and scroll; min-height:0 lets a flex child
     actually shrink so the overflow engages. Slight right padding + margin keep
     the scrollbar off the content. */
  flex: 1 1 auto; min-height: 0; overflow-y: auto;
  padding-right: 6px; margin-right: -6px;
  overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
}
.vc-loc-region h5 { font-family: var(--vc-font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--vc-green-deep); margin: 0 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--vc-rule); }
.vc-loc-region ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.vc-loc-link {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; text-decoration: none;
  color: var(--vc-ink); font-size: 14px; font-weight: 500; padding: 6px 10px; border-radius: 8px; transition: background 0.13s, color 0.13s;
}
.vc-loc-link:hover { background: var(--vc-green-soft); color: var(--vc-green-deep); }
.vc-loc-link.is-current { color: var(--vc-green-deep); font-weight: 700; }
.vc-loc-link .ext { font-family: var(--vc-font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--vc-mute); opacity: 0; transition: opacity 0.13s; }
.vc-loc-link:hover .ext { opacity: 1; }
/* Connect programs hang off their parent café as a quiet, indented sub-list with a
   small mono label — secondary to the full cafés without needing per-row pills. */
.vc-loc-connects { margin: 3px 0 4px 10px; padding-left: 12px; border-left: 1px solid var(--vc-rule); }
.vc-loc-connects-label { display: block; margin: 4px 0 2px; font-family: var(--vc-font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vc-mute); }
.vc-loc-connects ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.vc-loc-connects .vc-loc-link { font-size: 13px; padding: 4px 10px; }
.vc-loc-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--vc-rule); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* Backdrop for any open overlay */
.vc-overlay-back { position: fixed; inset: 0; z-index: 90; background: rgba(26,29,33,0.18); animation: vc-fade 0.16s ease; }
@keyframes vc-fade { from { opacity: 0; } to { opacity: 1; } }

/* Mobile nav */
.vc-burger { display: none; }
.vc-mobile-panel { display: none; }
@media (max-width: 1040px) {
  .vc-nav-links { display: none; }
  .vc-burger {
    display: inline-flex; align-items: center; justify-content: center; gap: 5px;
    width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--vc-rule); background: var(--vc-white); cursor: pointer; flex-direction: column;
  }
  .vc-burger span { display: block; width: 20px; height: 2px; background: var(--vc-ink); border-radius: 2px; }
  .vc-mobile-panel.open {
    display: block; position: fixed; inset: var(--vc-nav-h) 0 0 0; z-index: 95; background: var(--vc-paper);
    width: 100%; max-width: 100vw; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain;
    padding: 24px var(--vc-pad-x) 60px; animation: vc-fade 0.18s ease;
  }
  .vc-mobile-group { border-bottom: 1px solid var(--vc-rule); padding: 6px 0; }
  .vc-mobile-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  /* A parent row is a full-width toggle button — the whole row is the tap target,
     so navigating the menu (expanding) is the primary action. */
  button.vc-mobile-row { width: 100%; background: none; border: 0; padding: 0; cursor: pointer; text-align: left; font: inherit; }
  .vc-mobile-row > a,
  .vc-mobile-heading {
    font-family: var(--vc-font-display); font-weight: 800; text-transform: uppercase; font-size: 17px; letter-spacing: 0.02em;
    color: var(--vc-ink); text-decoration: none; padding: 12px 0; flex: 1; min-width: 0; overflow-wrap: break-word;
  }
  /* Circular chevron affordance — discrete, but a clear and easy tap target. */
  .vc-mobile-twirl {
    flex: none; width: 34px; height: 34px; border-radius: 50%;
    border: 1.5px solid var(--vc-rule); background: var(--vc-white); color: var(--vc-ink);
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease, background 0.2s, border-color 0.2s, color 0.2s;
  }
  .vc-mobile-twirl svg { width: 16px; height: 16px; display: block; transition: transform 0.2s ease; }
  button.vc-mobile-row:hover .vc-mobile-twirl,
  button.vc-mobile-row:focus-visible .vc-mobile-twirl { border-color: var(--vc-ink); }
  .vc-mobile-group.open .vc-mobile-twirl { background: var(--vc-ink); border-color: var(--vc-ink); color: var(--vc-paper); }
  .vc-mobile-group.open .vc-mobile-twirl svg { transform: rotate(180deg); }
  /* "Overview" — the parent page link, kept at the top of its submenu. */
  .vc-mobile-overview { color: var(--vc-ink); font-weight: 700; }
  .vc-mobile-sub { display: none; flex-direction: column; gap: 2px; padding: 2px 0 12px 4px; }
  .vc-mobile-group.open .vc-mobile-sub { display: flex; }
  .vc-mobile-label {
    font-family: var(--vc-font-mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--vc-mute); margin: 14px 0 4px;
  }
  .vc-mobile-sub a { color: var(--vc-ink-soft); text-decoration: none; font-size: 15px; padding: 7px 0; }
  /* A café's Connect programs — indented under it with a quiet mono sub-label. */
  .vc-mobile-connects { display: flex; flex-direction: column; gap: 2px; margin: 2px 0 4px 12px; padding-left: 12px; border-left: 1px solid var(--vc-rule); }
  .vc-mobile-connects-label { font-family: var(--vc-font-mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vc-mute); margin: 6px 0 2px; }
  .vc-mobile-connects a { font-size: 14px; padding: 5px 0; }
  /* Compact quick-actions row: "Attend Thursday" leads full-width, Search + (when
     present) Become a supporter share the row beneath it. */
  .vc-mobile-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
  .vc-mobile-actions .vc-btn { flex: 1 1 140px; justify-content: center; gap: 8px; }
  .vc-mobile-actions .vc-btn--wide { flex-basis: 100%; }
  .vc-mobile-ico { width: 18px; height: 18px; flex: none; }
  .vc-mobile-loc-title .vc-mobile-loc-ico { width: 20px; height: 20px; margin-right: 9px; vertical-align: -4px; }
  /* Utility links pinned at the foot of the panel */
  .vc-mobile-util { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--vc-rule); display: flex; flex-wrap: wrap; gap: 8px 24px; }
  .vc-mobile-util a {
    font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--vc-mute); text-decoration: none; padding: 8px 0;
  }
  .vc-mobile-util a:hover { color: var(--vc-green-deep); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.vc-footer { background: var(--vc-ink); color: var(--vc-paper); }
.vc-footer-top { padding-block: clamp(48px, 6vw, 80px); }
.vc-footer-cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 900px) { .vc-footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 560px) { .vc-footer-cols { grid-template-columns: 1fr; } }
.vc-footer-col h4 { font-family: var(--vc-font-display); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.14em; margin: 0 0 16px; color: var(--vc-green); }
.vc-footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vc-footer-col a { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; }
.vc-footer-col a:hover { color: var(--vc-green); }
.vc-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-block: 22px; border-top: 1px solid rgba(255,255,255,0.1); font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.vc-footer-legal a { color: rgba(255,255,255,0.5); text-decoration: none; }
.vc-footer-legal a:hover { color: var(--vc-green); }
/* Social icons, centred between the copyright and legal links. Icons are uploaded
   per site (Site Options → Site Footer → Social); upload light/white marks so they
   read on the dark footer. */
.vc-footer-social { display: inline-flex; align-items: center; gap: 16px; }
.vc-footer-social a { display: inline-flex; opacity: 0.72; transition: opacity 0.2s ease, transform 0.15s ease; }
.vc-footer-social a:hover { opacity: 1; transform: translateY(-1px); }
.vc-footer-social img { height: 18px; width: auto; display: block; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.vc-news-band { background: var(--vc-green); color: var(--vc-ink); }
.vc-news-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; padding-block: clamp(48px, 6vw, 80px); }
@media (max-width: 820px) { .vc-news-inner { grid-template-columns: 1fr; gap: 28px; } }
.vc-news-form { display: flex; background: var(--vc-white); border-radius: var(--vc-radius-pill); padding: 6px; border: 1.5px solid var(--vc-ink); }
.vc-news-form input { flex: 1; min-width: 0; border: none; outline: none; padding: 15px 22px; font-family: var(--vc-font-body); font-size: 15px; background: transparent; color: var(--vc-ink); }
.vc-news-form button { border: none; background: var(--vc-ink); color: var(--vc-paper); font-family: var(--vc-font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 24px; border-radius: var(--vc-radius-pill); cursor: pointer; white-space: nowrap; }
.vc-news-form button:hover { background: var(--vc-paper); color: var(--vc-ink); }
/* Phones: the email field + button must never exceed the screen. min-width:0 lets
   the input shrink; below 480px the row wraps so the field sits on its own line
   above a full-width button — always fits, no sideways scroll. */
.vc-news-form { max-width: 100%; }
@media (max-width: 480px) {
  .vc-news-form { flex-wrap: wrap; border-radius: var(--vc-radius-md); }
  .vc-news-form input { flex: 1 1 100%; text-align: center; }
  .vc-news-form button { flex: 1 1 100%; }
}
/* Footer variant: name fields + email/button pill + consent checkbox, stacked.
   Overrides the single-pill base so the form is a plain column of controls. */
.vc-news-form--full { flex-direction: column; gap: 12px; background: transparent; border: 0; padding: 0; border-radius: 0; }
.vc-news-form--full .vc-news-names { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vc-news-form--full .vc-news-names input {
  width: 100%; flex: none; border: 1.5px solid var(--vc-ink); border-radius: var(--vc-radius-pill);
  background: var(--vc-white); color: var(--vc-ink); outline: none;
  padding: 15px 22px; font-family: var(--vc-font-body); font-size: 15px;
}
.vc-news-form--full .vc-news-row {
  display: flex; background: var(--vc-white); border-radius: var(--vc-radius-pill);
  padding: 6px; border: 1.5px solid var(--vc-ink);
}
.vc-news-form--full .vc-news-row input { flex: 1; min-width: 0; border: none; outline: none; padding: 15px 22px; background: transparent; color: var(--vc-ink); font-family: var(--vc-font-body); font-size: 15px; }
.vc-news-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; color: rgba(26, 29, 33, 0.72); cursor: pointer; text-align: left; }
.vc-news-consent input[type="checkbox"] { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--vc-ink); cursor: pointer; }
.vc-news-consent a { color: var(--vc-ink); text-decoration: underline; }
/* Inline submit feedback (empty until the JS handler fills it). */
.vc-news-status { font-size: 13px; line-height: 1.5; min-height: 0; }
.vc-news-status:empty { display: none; }
.vc-news-status.is-busy { color: rgba(26, 29, 33, 0.6); }
.vc-news-status.is-success { color: var(--vc-ink); font-weight: 600; }
.vc-news-status.is-error { color: #b3261e; }
/* Dark blocks (e.g. the ink [campaign_signup]) need light consent text + links. */
.vc-block--ink .vc-news-consent { color: rgba(255, 255, 255, 0.72); }
.vc-block--ink .vc-news-consent a { color: var(--vc-green); }
.vc-block--ink .vc-news-status.is-busy { color: rgba(255, 255, 255, 0.7); }
.vc-block--ink .vc-news-status.is-success { color: #fff; }
.vc-block--ink .vc-news-status.is-error { color: #ff8a80; }
@media (max-width: 480px) {
  .vc-news-form--full .vc-news-names { grid-template-columns: 1fr; }
  .vc-news-form--full .vc-news-names input { text-align: center; }
  /* Stack the email field above a full-width button so the button can never
     crush or overlap the input on narrow screens. */
  .vc-news-form--full .vc-news-row { flex-wrap: wrap; gap: 6px; border-radius: var(--vc-radius-md); }
  .vc-news-form--full .vc-news-row input { flex: 1 1 100%; text-align: center; }
  .vc-news-form--full .vc-news-row button { flex: 1 1 100%; text-align: center; }
}

/* ============================================================
   PAGE HERO (interior pages) — dark, with the arrow chevron device
   ============================================================ */
.vc-pagehero { padding-block: clamp(54px, 6.5vw, 100px) clamp(42px, 5vw, 66px); position: relative; overflow: hidden; background: #232323; color: var(--vc-paper); isolation: isolate; }
.vc-pagehero > .vc-container { position: relative; z-index: 2; }
.vc-pagehero .vc-breadcrumb, .vc-pagehero .vc-breadcrumb a { color: rgba(255,255,255,0.5); }
.vc-pagehero .vc-breadcrumb a:hover { color: var(--vc-green); }
.vc-pagehero .vc-eyebrow { color: rgba(255,255,255,0.55); }
.vc-pagehero .vc-lead { color: rgba(255,255,255,0.8); }
.vc-pagehero .vc-arrow-top { background: #1a1a1a; }
.vc-pagehero .vc-arrow-bottom { background: #121212; }
.vc-breadcrumb { display: flex; align-items: center; gap: 9px; font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--vc-mute); margin-bottom: 24px; }
.vc-breadcrumb a { text-decoration: none; color: var(--vc-mute); }
.vc-breadcrumb a:hover { color: var(--vc-green-deep); }
.vc-breadcrumb .sep { opacity: 0.4; }

/* ── V wedge decorative ── */
.vc-wedge { display: block; }

/* ── Tag/category chips row ── */
.vc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.vc-chip {
  appearance: none; cursor: pointer; border: 1px solid var(--vc-rule); background: var(--vc-white);
  padding: 8px 15px; border-radius: var(--vc-radius-pill); font-family: var(--vc-font-mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vc-ink-soft);
  transition: all 0.14s ease; display: inline-flex; align-items: center; gap: 7px;
}
.vc-chip:hover { border-color: var(--vc-ink); color: var(--vc-ink); }
.vc-chip.active { background: var(--vc-ink); color: var(--vc-paper); border-color: var(--vc-ink); }
.vc-chip .swatch { width: 8px; height: 8px; border-radius: 50%; flex: none; }

/* ── Scroll reveal ── */
.vc-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1); }
.vc-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .vc-reveal { opacity: 1; transform: none; } }

/* ── Inputs (forms) ── */
.vc-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.vc-field label { font-family: var(--vc-font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--vc-ink-soft); font-weight: 500; }
.vc-field .req { color: var(--vc-grad-1); }
.vc-input, .vc-textarea, .vc-select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--vc-rule); border-radius: var(--vc-radius-sm);
  font-family: var(--vc-font-body); font-size: 15px; background: var(--vc-white); color: var(--vc-ink); transition: border-color 0.15s;
}
.vc-input:focus, .vc-textarea:focus, .vc-select:focus { outline: none; border-color: var(--vc-green); box-shadow: 0 0 0 3px var(--vc-green-soft); }
.vc-textarea { resize: vertical; min-height: 120px; }
.vc-help { font-size: 12.5px; color: var(--vc-mute); }

/* ── Utility ── */
.vc-flex { display: flex; }
.vc-between { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.vc-stack { display: flex; flex-direction: column; }
.vc-gap-sm { gap: 12px; } .vc-gap-md { gap: 20px; } .vc-gap-lg { gap: 32px; }
.vc-wrap { flex-wrap: wrap; }
.vc-mt-sm { margin-top: 14px; } .vc-mt-md { margin-top: 26px; } .vc-mt-lg { margin-top: 44px; }
.vc-center { text-align: center; }
.vc-hide { display: none !important; }

/* ============================================================
   QUICK-SEARCH OVERLAY
   ============================================================ */
.vc-search-scrim { position: fixed; inset: 0; z-index: 200; background: rgba(20,22,26,0.55); backdrop-filter: blur(3px); display: flex; align-items: flex-start; justify-content: center; padding: clamp(60px, 12vh, 140px) 20px 20px; animation: vc-fade 0.16s ease; }
.vc-search-modal { width: min(640px, 100%); background: var(--vc-white); border-radius: var(--vc-radius-lg); box-shadow: var(--vc-shadow-lg); overflow: hidden; animation: vc-fade-down 0.18s ease; }
.vc-search-bar { display: flex; align-items: center; gap: 12px; padding: 16px 16px 16px 20px; border-bottom: 1px solid var(--vc-rule); }
.vc-search-bar input { flex: 1; min-width: 0; border: 0; outline: none; background: none; font-family: var(--vc-font-body); font-size: 17px; color: var(--vc-ink); }
.vc-search-go { flex: none; background: var(--vc-ink); color: var(--vc-paper); border: 0; border-radius: var(--vc-radius-pill); padding: 10px 18px; font-family: var(--vc-font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.15s, color 0.15s; }
.vc-search-go:hover { background: var(--vc-green); color: var(--vc-ink); }
.vc-search-x { flex: none; appearance: none; border: 0; background: none; color: var(--vc-mute); font-size: 15px; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; transition: background 0.15s; }
.vc-search-x:hover { background: var(--vc-paper-warm); color: var(--vc-ink); }
.vc-search-suggest { max-height: min(56vh, 460px); overflow-y: auto; padding: 8px; }
.vc-search-empty { padding: 22px 16px; display: flex; flex-direction: column; gap: 12px; }
.vc-search-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.vc-search-grouphead { font-family: var(--vc-font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vc-green-deep); padding: 14px 14px 6px; }
.vc-search-grouphead:first-child { padding-top: 6px; }
.vc-search-sug { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; padding: 11px 14px; border-radius: var(--vc-radius-sm); text-decoration: none; color: inherit; }
.vc-search-sug.active, .vc-search-sug:hover { background: var(--vc-green-soft); }
.vc-search-sug-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vc-search-sug-title { font-family: var(--vc-font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.005em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vc-search-sug-sub { font-size: 12.5px; color: var(--vc-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vc-search-all { width: 100%; margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 9px; background: none; border: 0; border-top: 1px solid var(--vc-rule); padding: 14px; font-family: var(--vc-font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--vc-green-deep); cursor: pointer; transition: gap 0.15s; }
.vc-search-all:hover { gap: 13px; }

/* ============================================================
   ACCESSIBILITY — keyboard focus visibility (design-neutral)
   Placed last so these win over the earlier `:focus{outline:none}` resets.
   Rings only show for keyboard users (:focus-visible), so the mouse design
   is unchanged.
   ============================================================ */
/* Skip-link target: focusable for the skip link, but no visible box around it. */
#main:focus { outline: none; }
/* Inputs that strip the outline must still signal keyboard focus with a ring. */
.vc-loc-search input:focus-visible,
.vc-search-bar input:focus-visible {
  outline: none; box-shadow: 0 0 0 3px var(--vc-primary-soft); border-radius: var(--vc-radius-sm);
}
/* Borderless inputs sit in a wrapper pill — ring the wrapper when focus is inside. */
.vc-news-form:focus-within { box-shadow: 0 0 0 3px var(--vc-secondary-soft); }
/* The stacked footer variant rings each pill rather than the whole form. */
.vc-news-form--full:focus-within { box-shadow: none; }
.vc-news-form--full .vc-news-names input:focus,
.vc-news-form--full .vc-news-row:focus-within { box-shadow: 0 0 0 3px var(--vc-secondary-soft); }
.vc-search-bar:focus-within { box-shadow: 0 0 0 3px var(--vc-primary-soft); }
/* Guarantee a strong, consistent focus ring on all actionable controls. */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--vc-accent-2); outline-offset: 2px;
}
