/* ═══════════════════════════════════════════
   PROCESS SECTION – Brisket Yard
   ═══════════════════════════════════════════ */

/* ── Section wrapper ── */
.process-section {
  background: #161410;
  padding: 0;
  overflow: hidden;
}

/* ── Top part (label + heading + steps) ── */
.process-top {
  padding: 4rem 3rem 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Section label ── */
.process-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

/* ── Section heading ── */
.process-heading {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}

/* ── Description ── */
.process-desc {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 260px;
}

/* ── Explore button ── */
.btn-explore {
  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.6rem 1.4rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

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

/* ── Steps row ── */
.steps-row {
  display: flex;
  gap: 0;
  align-items: flex-start;
  height: 100%;
}

/* ── Single step ── */
.step-item {
  flex: 1;
  padding: 0 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-item:first-child {
  border-left: none;
  padding-left: 1.5rem;
}

/* ── Step icon ── */
.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.4rem;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

/* ── Step number ── */
.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

/* ── Step name ── */
.step-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

/* ── Step description ── */
.step-desc {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.65;
  margin: 0;
}

/* ── Left column divider ── */
.process-left-col {
  border-right: 1px solid rgba(255,255,255,0.08);
}

/* ── VIDEO STRIP ── */
.process-video {
  position: relative;
  height: 450px;
  background: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80') center 60% / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.process-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0.72);
}

.process-video-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* ── Play button ── */
.play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.play-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.play-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 4px; /* optical centre for triangle */
}

/* ── Watch label ── */
.video-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ccc;
  margin: 0;
}

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 991px) {
  .process-top { padding: 3rem 1.5rem 2.5rem; }
  .process-left-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; padding-bottom: 2rem; }
  .process-desc { max-width: 100%; }

  .steps-row { flex-wrap: wrap; gap: 1.5rem 0; }
  .step-item  { flex: 0 0 33.333%; border-left: none; padding: 0 1rem; }
  .step-item:not(:nth-child(3n+1)) { border-left: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 575px) {
  .step-item { flex: 0 0 50%; }
  .step-item:not(:nth-child(2n+1)) { border-left: 1px solid rgba(255,255,255,0.08); }
  .step-item:nth-child(3n+1) { border-left: none; }
  .process-video { height: 160px; }
}
