.yellow-hero {
  min-height: 680px;
  padding: clamp(48px, 7vw, 96px) max(5vw, 24px);
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  gap: 6vw;
  align-items: center;
  background: radial-gradient(circle at 82% 18%, #fff0a4, transparent 30%),
    linear-gradient(135deg, #fffdf6, #fff2a6);
  color: #29210c;
}
.yellow-hero-copy {
  max-width: 760px;
}
.yellow-kicker,
.yellow-heading > p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 1000;
  color: #80600c;
}
.yellow-hero h1 {
  font: 700 clamp(3.4rem, 7vw, 7rem) / 0.89 var(--display);
  letter-spacing: -0.045em;
  margin: 18px 0 24px;
  color: #29210c;
}
.yellow-hero h1 em {
  color: #b77f00;
  font-weight: 500;
}
.yellow-hero-copy > p:not(.yellow-kicker) {
  max-width: 650px;
  color: #5f583f;
  font-size: 1.18rem;
}
.yellow-hero img {
  width: 100%;
  height: min(70vh, 700px);
  object-fit: cover;
  border-radius: 48% 48% 24px 24px;
  box-shadow: 0 24px 60px rgba(91, 72, 7, 0.18);
  background: #fbf7f4;
}
.yellow-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.yellow-primary,
.yellow-secondary {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
}
.yellow-primary {
  background: #29210c;
  color: #fff;
}
.yellow-secondary {
  border: 1px solid #29210c;
  color: #29210c;
}
.yellow-hero ul {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  color: #315746;
  font-weight: 800;
  font-size: 0.86rem;
}
.yellow-logistics {
  display: flex;
  justify-content: center;
  gap: 5vw;
  padding: 16px 5%;
  background: #315746;
  color: white;
  font-size: 0.88rem;
  font-weight: 800;
}
.yellow-collection {
  padding-block: 90px;
}
.yellow-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.yellow-heading h2 {
  margin: 9px 0 10px;
  font: 700 clamp(2.2rem, 4vw, 4rem) / 1 var(--display);
  color: #29210c;
}
.yellow-heading > span {
  color: #71694f;
}
.yellow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.yellow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e7dfc6;
  border-radius: 20px;
  background: #fff;
}
.yellow-card > i {
  position: absolute;
  z-index: 1;
  top: 13px;
  left: 13px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4cb28;
  font: 900 0.68rem var(--body);
  font-style: normal;
}
.yellow-card img {
  width: 100%;
  aspect-ratio: 1/1.04;
  object-fit: cover;
  background: #fbf7f4;
}
.yellow-card-body {
  padding: 17px;
}
.yellow-card small {
  color: #80600c;
  text-transform: uppercase;
  font-weight: 900;
}
.yellow-card h3 {
  margin: 6px 0 14px;
  font: 700 1.35rem var(--display);
}
.yellow-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.yellow-card-foot strong {
  font-size: 1.2rem;
}
.yellow-card-foot a {
  padding: 9px 13px;
  border-radius: 999px;
  background: #f4cb28;
  color: #29210c;
  text-decoration: none;
  font-weight: 900;
}
.yellow-more {
  text-align: center;
  margin-top: 30px;
}
.yellow-more a {
  color: #7a1e45;
  font-weight: 900;
}
.yellow-steps {
  padding: 76px 0;
  background: #f8e8a9;
}
.yellow-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.yellow-step-grid article {
  padding: 24px;
  border: 1px solid rgba(74, 56, 6, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}
.yellow-step-grid b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #29210c;
  color: white;
}
.yellow-step-grid h3 {
  margin: 14px 0 4px;
  font: 700 1.35rem var(--display);
}
.yellow-step-grid p {
  margin: 0;
  color: #625b44;
}
@media (max-width: 760px) {
  .yellow-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .yellow-hero img {
    order: -1;
    height: 330px;
  }
  .yellow-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }
  .yellow-hero ul,
  .yellow-logistics {
    flex-direction: column;
    gap: 7px;
  }
  .yellow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yellow-step-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .yellow-actions > * {
    width: 100%;
  }
  .yellow-grid {
    grid-template-columns: 1fr;
  }
}
