/* ============================================================
   The Butcher Shoppe — Community / Pensacola Cooks polish
   Local cooking page warmth and clarity.
   Loaded after community.css.
   ============================================================ */

/* ---------- Hero meta line ---------- */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin-top: var(--space-lg);
}

.hero-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hero-meta__item svg {
  width: 14px;
  height: 14px;
  color: var(--amber);
  flex-shrink: 0;
}

/* ---------- Page-header accent bar ---------- */
.page-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(160px, 40%);
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  z-index: 2;
  opacity: 0.8;
}

/* ---------- Lifestyle cards ---------- */
.lifestyle-grid {
  counter-reset: lifestyle;
}

.lifestyle-card {
  position: relative;
  transition: transform 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out);
}

.lifestyle-card::before {
  counter-increment: lifestyle;
  content: counter(lifestyle, decimal-leading-zero);
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
  opacity: 0.7;
}

.lifestyle-card:hover,
.lifestyle-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.lifestyle-card:focus-within {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

/* ---------- Use-case preview visuals ---------- */
.community-cook .preview__visual,
.community-holiday .preview__visual,
.community-freezer .preview__visual,
.community-smoker .preview__visual {
  border: 1px solid rgba(12, 12, 12, 0.08);
}

/* ---------- Final CTA ---------- */
.cta-banner__actions {
  justify-content: center;
}

.cta-banner__actions .btn {
  min-width: 200px;
}

.cta-banner__actions .btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .lifestyle-card {
    transition: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero-meta {
    gap: var(--space-sm) var(--space-md);
    margin-top: var(--space-md);
  }

  .hero-meta__item {
    font-size: 0.7rem;
  }

  .cta-banner__actions .btn {
    min-width: auto;
    width: 100%;
  }
}
