.price-list {
  background: var(--paper);
}

.price-list-heading {
  display: grid;
  gap: 2rem;
}

.price-list-heading .display-title {
  max-width: 48rem;
  margin-top: 0.75rem;
}

.price-list-intro {
  max-width: 48rem;
  margin-top: 1.75rem;
}

.price-status {
  display: flex;
  max-width: 28rem;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(35, 51, 42, 0.14);
  background: var(--limestone);
}

.price-status > svg {
  width: 1.15rem;
  flex: 0 0 auto;
  color: var(--olive);
}

.price-status strong,
.price-status small {
  display: block;
}

.price-status strong {
  color: var(--forest);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-status small {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.price-status--live {
  border-color: rgba(55, 117, 93, 0.3);
  background: #edf3ee;
}

.price-table-wrap {
  margin-top: 3rem;
}

.price-table,
.price-table tbody,
.price-table tr,
.price-table td {
  display: block;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead {
  display: none;
}

.price-table tr {
  margin-bottom: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: var(--limestone);
}

.price-table td {
  display: grid;
  padding: 0.5rem 0;
  align-items: center;
  grid-template-columns: minmax(7rem, 0.7fr) minmax(0, 1fr);
  gap: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-table td::before {
  color: var(--olive);
  content: attr(data-label);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-table td:first-child {
  color: var(--forest);
}

.price-date-range > span {
  margin-inline: 0.35rem;
  color: var(--clay);
}

.price-table strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.price-table-base {
  border-color: var(--forest) !important;
}

.price-period-note {
  display: flex;
  max-width: 52rem;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.7;
}

.price-period-note svg {
  width: 1rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  color: var(--clay);
}

.price-details {
  background: var(--limestone);
}

.price-detail-grid {
  display: grid;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.price-detail-card {
  display: grid;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
}

.price-detail-card > svg {
  width: 1.25rem;
  color: var(--clay);
}

.price-detail-card h3 {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.price-detail-card p {
  max-width: 34rem;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.price-terms {
  padding-block: 5.5rem;
  color: var(--paper);
  background: #18231d;
}

.price-terms-grid {
  display: grid;
  gap: 3rem;
}

.price-terms-copy h2 {
  max-width: 42rem;
  margin-top: 0.8rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.price-terms-copy > p:last-child {
  max-width: 40rem;
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.8;
}

.price-terms-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.price-terms-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.price-terms-list dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
}

.price-terms-list dd {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.page-prices .page-cta-inner p:not(.section-label) {
  max-width: 42rem;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  line-height: 1.7;
}

@media (min-width: 760px) {
  .price-list-heading {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.5fr);
    align-items: end;
    gap: 4rem;
  }

  .price-status {
    justify-self: end;
  }

  .price-table,
  .price-table tbody,
  .price-table thead,
  .price-table tr {
    display: table;
    width: 100%;
  }

  .price-table thead {
    display: table-header-group;
  }

  .price-table tbody {
    display: table-row-group;
  }

  .price-table tr {
    display: table-row;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .price-table th,
  .price-table td {
    display: table-cell;
    padding: 1.3rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .price-table th {
    color: var(--olive);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .price-table td::before {
    display: none;
  }

  .price-table th:nth-child(n + 2),
  .price-table td:nth-child(n + 2) {
    text-align: right;
  }

  .price-table-base td {
    background: rgba(238, 232, 220, 0.5);
  }

  .price-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-detail-card:nth-child(odd) {
    padding-right: 2rem;
  }

  .price-detail-card:nth-child(even) {
    padding-left: 2rem;
    border-left: 1px solid var(--line);
  }

  .price-terms-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
    align-items: start;
    gap: 8vw;
  }
}
