.delivery-page {
  background: linear-gradient(180deg, #fff 0%, #fffaf7 58%, #fff 100%);
}

.delivery-hero {
  overflow: hidden;
  border-bottom: 1px solid #eadcd5;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 132, 128, .18), transparent 30%),
    linear-gradient(105deg, #fff 0%, #fff7f4 56%, #f4e2dc 100%);
}

.delivery-hero-grid {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}

.delivery-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #f5dad7;
  color: #bb6764;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.delivery-hero h1 {
  max-width: 720px;
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5.5vw, 70px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 500;
  color: #302b28;
}

.delivery-hero p {
  max-width: 640px;
  margin: 0;
  color: #403833;
  font-size: 19px;
}

.delivery-hero-card {
  border: 1px solid #eadcd5;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 60px rgba(79,48,35,.12);
  padding: 24px;
}

.delivery-hero-card img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #f4e7dd;
}

.delivery-hero-card b {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.delivery-hero-card span {
  color: #766b66;
}

.delivery-content {
  padding: 48px 0 72px;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.delivery-card,
.delivery-steps,
.delivery-note {
  border: 1px solid #eadcd5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(79,48,35,.07);
}

.delivery-card {
  padding: 24px;
}

.delivery-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f5dad7;
  color: #bb6764;
  margin-bottom: 18px;
}

.delivery-card h2,
.delivery-steps h2,
.delivery-note h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 500;
  color: #302b28;
}

.delivery-card p,
.delivery-card li,
.delivery-note p {
  color: #5f5550;
  line-height: 1.62;
}

.delivery-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.delivery-card li {
  position: relative;
  padding-left: 20px;
}

.delivery-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d88480;
}

.delivery-steps {
  padding: 28px;
  margin-bottom: 28px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-item {
  border: 1px solid #f0e2dc;
  border-radius: 12px;
  background: #fffaf7;
  padding: 18px;
}

.step-item span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #d88480;
  color: #fff;
  font-weight: 900;
  margin-bottom: 12px;
}

.step-item b {
  display: block;
  margin-bottom: 6px;
  color: #302b28;
}

.step-item p {
  margin: 0;
  color: #6f625d;
  line-height: 1.5;
}

.delivery-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(105deg, #fff, #fff7f4 60%, #f4dfdc);
}

.delivery-note p {
  max-width: 760px;
  margin: 0;
}

@media (max-width: 980px) {
  .delivery-hero-grid,
  .delivery-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .delivery-hero-card {
    max-width: 460px;
  }

  .delivery-note {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .delivery-hero-grid {
    padding: 34px 0;
    gap: 28px;
  }

  .delivery-hero p {
    font-size: 16px;
  }

  .delivery-card,
  .delivery-steps,
  .delivery-note {
    padding: 20px;
  }
}
