.recipes-hero {
  background: var(--color-yellow);
  padding: clamp(2rem, 5vw, 4rem) var(--section-pad-x);
}
.recipes-hero__row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
.recipes-hero__title { color: #0A0A0A; margin: 0; }
.recipes-hero__body {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(15px, 1vw + .5rem, 20px);
  color: #0A0A0A;
  max-width: 380px;
  margin: 0;
  line-height: 1.35;
}
@media (min-width: 900px) {
  .recipes-hero__row { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.recipe-section {
  padding: clamp(2.5rem, 6vw, 5.5rem) var(--section-pad-x);
  position: relative;
  overflow: hidden;
}
.recipe-section__bignum {
  position: absolute;
  top: -2.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 21.25rem);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.recipe-section--num-right .recipe-section__bignum { right: 1%; }
.recipe-section--num-left .recipe-section__bignum { left: 1%; }

.recipe-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .recipe-section__inner { grid-template-columns: .8fr 1fr; gap: 60px; }
  .recipe-section--img-right .recipe-section__media { order: 2; }
}

.recipe-section__media { display: flex; justify-content: center; }
.recipe-section__media img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: var(--radius-sm);
}

.recipe-section__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
}
.recipe-section__divider {
  height: 6px;
  width: 80px;
  border-radius: 4px;
  margin: 14px 0 18px;
}
.recipe-section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 1.2rem + 3vw, 3.625rem);
  line-height: .92;
  letter-spacing: -.03em;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.recipe-section__base {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}
.recipe-section__steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
}
.recipe-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.recipe-step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
  margin-top: 2px;
}
.recipe-step__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(14px, .8vw + .5rem, 17px);
  line-height: 1.35;
}
.recipe-section__tag-label {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 20px 0 10px;
}
.recipe-section__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.recipe-section__tagline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(16px, 1vw + .5rem, 20px);
  font-style: italic;
  margin-top: 24px;
  letter-spacing: -.01em;
}

.recipes-cta {
  background: var(--color-black);
  padding: clamp(2.5rem, 6vw, 5.625rem) var(--section-pad-x);
  text-align: center;
}
.recipes-cta__title { color: var(--color-white); margin: 0 0 26px; }
