.price-band {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid rgba(30, 75, 52, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(30, 75, 52, 0.08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-card span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
}

.price-card strong {
  margin: 0.35rem 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  color: var(--deep);
}

.price-card small {
  color: var(--muted);
  font-weight: 700;
}

.price-band .button {
  align-self: center;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .price-band {
    grid-template-columns: 1fr 1fr;
  }

  .price-band .button {
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 640px) {
  .price-band {
    grid-template-columns: 1fr;
  }

  .price-band .button {
    grid-column: auto;
  }
}
