/* ============================================================
   The Butcher Shoppe — Homepage Body v3 (polish pass)
   Sections below the hero. Editorial, premium, conversion-focused.
   ============================================================ */

/* ---------- Trust Strip ---------- */
.trust-strip {
  position: relative;
  background: var(--charcoal);
  color: var(--bone);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-strip__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem var(--space-lg);
  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.78);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-strip__list li:last-child {
  border-right: none;
}

.trust-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 160, 86, 0.12);
  color: var(--amber);
  flex-shrink: 0;
}

.trust-strip__icon svg {
  width: 15px;
  height: 15px;
}

/* ---------- Products Showcase ---------- */
.products-showcase {
  background: var(--bone);
}

.products-showcase__header {
  max-width: 680px;
  margin-bottom: var(--space-xl);
}

.products-showcase__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-2xl);
  align-items: stretch;
  margin-bottom: var(--space-xl);
}

.products-showcase__hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 560px;
}

.products-showcase__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.products-showcase__hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12, 12, 12, 0.45) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.products-showcase__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--oxblood);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-md);
}

.products-showcase__categories {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.category-callout {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(12, 12, 12, 0.1);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out),
              transform 0.2s var(--ease-out);
}

.category-callout:first-child {
  border-top: 1px solid rgba(12, 12, 12, 0.1);
}

.category-callout::after {
  content: '→';
  margin-left: auto;
  font-family: var(--font-body);
  color: var(--ember);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s var(--ease-out),
              transform 0.2s var(--ease-out);
}

.category-callout:hover {
  color: var(--ember);
  border-color: rgba(201, 58, 58, 0.25);
  transform: translateX(4px);
}

.category-callout:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.category-callout .num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  min-width: 24px;
}

.products-showcase__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ---------- Shoppe Preview ---------- */
.shoppe-preview {
  position: relative;
  min-height: 80svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.shoppe-preview__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shoppe-preview__media > [data-parallax] {
  width: 100%;
  height: 100%;
}

.shoppe-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.85) contrast(1.1) brightness(0.55);
}

.shoppe-preview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 12, 12, 0.9) 0%,
    rgba(12, 12, 12, 0.65) 50%,
    rgba(12, 12, 12, 0.35) 100%
  );
  z-index: 1;
}

.shoppe-preview__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.shoppe-preview__content .section-title {
  color: var(--bone);
}

.shoppe-preview__content .body-large {
  color: rgba(250, 248, 245, 0.72);
}

.shoppe-preview__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.detail-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 160, 86, 0.12);
  color: var(--amber);
  margin-bottom: var(--space-sm);
}

.detail-card__icon svg {
  width: 15px;
  height: 15px;
}

.detail-card h3 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.35rem;
}

.detail-card p {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.62);
  line-height: 1.55;
}

/* ---------- Butcher Help ---------- */
.butcher-help {
  background: var(--ink);
  color: var(--bone);
}

.butcher-help__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.butcher-help__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 580px;
}

.butcher-help__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85) contrast(1.08) brightness(0.62);
}

.butcher-help__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 12, 0.2) 0%,
    rgba(12, 12, 12, 0.75) 100%
  );
  pointer-events: none;
}

.butcher-help__body {
  max-width: 540px;
}

.butcher-help__body .section-title {
  color: var(--bone);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
}

.butcher-help__body .body-large {
  color: rgba(250, 248, 245, 0.72);
}

.butcher-help__list {
  margin: var(--space-lg) 0 var(--space-xl);
}

.butcher-help__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: var(--space-sm);
  color: rgba(250, 248, 245, 0.75);
  font-size: 1.05rem;
  line-height: 1.55;
}

.butcher-help__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

/* ---------- Visit CTA ---------- */
.visit-cta {
  background: var(--charcoal);
  color: var(--bone);
}

.visit-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.visit-cta__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 520px;
}

.visit-cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.85) contrast(1.05) brightness(0.65);
}

.visit-cta__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(12, 12, 12, 0.6) 100%
  );
  pointer-events: none;
}

.visit-cta__body {
  max-width: 520px;
}

.visit-cta__body .section-title {
  color: var(--bone);
}

.visit-cta__body address {
  font-style: normal;
  margin: var(--space-md) 0 var(--space-sm);
}

.visit-cta__body address a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--amber);
  transition: color 0.2s;
}

.visit-cta__body address a:hover {
  color: var(--amber-light);
}

.visit-cta__hours {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin-bottom: var(--space-lg);
}

.visit-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.visit-cta__body .body-large {
  color: rgba(250, 248, 245, 0.65);
  margin-bottom: var(--space-lg);
}

.visit-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.visit-cta__links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  padding-bottom: 2px;
  border-bottom: 2px solid var(--amber);
  transition: color 0.2s, border-color 0.2s;
}

.visit-cta__links a:hover {
  color: var(--amber-light);
  border-color: var(--amber-light);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .trust-strip__list li {
    flex: 1 1 30%;
    justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-sm) var(--space-md);
  }

  .trust-strip__list li:last-child {
    border-bottom: none;
  }

  .products-showcase__grid,
  .butcher-help__grid,
  .visit-cta__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .products-showcase__hero {
    min-height: 420px;
  }

  .products-showcase__categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 var(--space-md);
  }

  .category-callout:first-child {
    border-top: none;
  }

  .butcher-help__visual,
  .visit-cta__visual {
    min-height: 420px;
  }

  .shoppe-preview__details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-strip__list li {
    flex: 1 1 45%;
    font-size: 0.7rem;
  }

  .products-showcase__hero {
    min-height: 320px;
  }

  .products-showcase__categories {
    grid-template-columns: 1fr;
  }

  .category-callout {
    padding: 0.95rem 0;
    font-size: 0.88rem;
  }

  .butcher-help__visual,
  .visit-cta__visual {
    min-height: 340px;
  }

  .butcher-help__body .section-title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .shoppe-preview {
    min-height: auto;
  }

  .shoppe-preview__overlay {
    background: linear-gradient(
      180deg,
      rgba(12, 12, 12, 0.9) 0%,
      rgba(12, 12, 12, 0.65) 100%
    );
  }

  .shoppe-preview__details {
    grid-template-columns: 1fr;
  }

  .visit-cta__actions .btn {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-callout {
    transition: none;
  }

  .category-callout:hover {
    transform: none;
  }

  .category-callout::after {
    opacity: 1;
    transform: none;
  }
}
