/* ═══════════════════════════════════════════
   OUR STORY SECTION – Brisket Yard
   ═══════════════════════════════════════════ */

.story-section {
  position: relative;
  background: #0e0c09;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Background image (right side) ── */
.story-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
}

.story-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient: solid dark left → transparent right */
.story-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #0e0c09 0%,
    rgba(14,12,9,0.96) 15%,
    rgba(14,12,9,0.72) 42%,
    rgba(14,12,9,0.25) 72%,
    transparent 100%
  );
  z-index: 1;
}

/* ── Content ── */
.story-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.story-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.story-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 1.2rem;
}

.story-desc {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.82;
  max-width: 400px;
  margin-bottom: 0.8rem;
}

.story-desc:last-of-type {
  margin-bottom: 2rem;
}

.btn-story {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border: 2px solid var(--orange);
  padding: 0.65rem 1.5rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-story:hover {
  background: transparent;
  color: var(--orange);
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 991px) {
  .story-bg { width: 100%; }
  .story-bg::before {
    background: linear-gradient(
      to right,
      rgba(14,12,9,0.97) 0%,
      rgba(14,12,9,0.85) 55%,
      rgba(14,12,9,0.55) 100%
    );
  }
}

@media (max-width: 575px) {
  .story-inner  { padding: 3rem 0; }
  .story-desc   { max-width: 100%; }
}
