.gifts-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 6vw, 6rem);
  background: var(--paper);
}

.gifts-card {
  max-width: 980px;
  margin: auto;
  display: grid;
  grid-template-columns: minmax(210px, .65fr) 1.35fr;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  padding: clamp(2.5rem, 6vw, 5rem);
  border: 1px solid #d8cec0;
  background: linear-gradient(135deg, #fffdf8, #f0e5d7);
}

.gifts-copy .kicker { color: var(--clay); }
.gifts-copy h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.gifts-copy > p:not(.kicker) {
  max-width: 590px;
  margin-bottom: 2rem;
  color: var(--muted);
}

.gift-icon {
  position: relative;
  width: min(48vw, 210px);
  aspect-ratio: 1;
  margin: auto;
  border: 1px solid var(--clay);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.gift-icon::before {
  content: "";
  width: 92px;
  height: 72px;
  border: 2px solid var(--forest);
  background: var(--paper);
  box-shadow: inset 0 15px var(--cream);
}

.gift-icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 76px;
  background: var(--clay);
}

.gift-icon span {
  position: absolute;
  z-index: 1;
  top: 48px;
  width: 110px;
  height: 18px;
  border: 2px solid var(--forest);
  background: var(--paper);
}

.gift-icon span::before,
.gift-icon span::after {
  content: "";
  position: absolute;
  bottom: 14px;
  width: 34px;
  height: 25px;
  border: 2px solid var(--clay);
  border-radius: 50% 50% 0 50%;
}

.gift-icon span::before {
  right: 51%;
  transform: rotate(24deg);
}

.gift-icon span::after {
  left: 51%;
  transform: scaleX(-1) rotate(24deg);
}

@media (max-width: 760px) {
  .gifts-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gifts-copy > p:not(.kicker) { margin-inline: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .gifts-card { scroll-behavior: auto; }
}
