:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f4ef;
  color: #1e2924;
}
* { box-sizing: border-box; }
body { margin: 0; }
main { width: min(72rem, calc(100% - 2rem)); margin: 0 auto; padding: 3rem 0 5rem; }
.hero { max-width: 52rem; margin-bottom: 2rem; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.05; }
h1 { margin: .25rem 0 1rem; font-size: clamp(2.5rem, 7vw, 5rem); }
h2 { margin: .25rem 0; font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.45rem; }
.eyebrow { margin: 0; color: #79502a; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
.notice { border-left: .35rem solid #9c6330; padding: .85rem 1rem; background: #fff8ec; }
.panel { margin-top: 1.25rem; padding: clamp(1rem, 3vw, 2rem); background: #fff; border: 1px solid #d6d7cf; border-radius: 1rem; box-shadow: 0 .6rem 2rem rgb(35 45 39 / 7%); }
.section-heading, .actions, .selection-grid, .legend { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.legend { justify-content: flex-start; margin: 1rem 0; }
.legend span { display: inline-flex; align-items: center; gap: .4rem; }
.legend i { width: 1rem; height: 1rem; border-radius: .2rem; border: 1px solid #65736a; }
.available-swatch { background: #e9f5ed; }
.blocked-swatch { background: #ecece8; }
.checkout-swatch { background: #fff2cc; }
.date-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(6.5rem, 1fr)); gap: .45rem; list-style: none; margin: 0; padding: 0; }
.date { width: 100%; min-height: 4.3rem; display: grid; gap: .15rem; justify-items: start; padding: .65rem; border: 1px solid #b8c0ba; border-radius: .55rem; background: #e9f5ed; color: #173c27; cursor: pointer; }
.date span { font-size: 1.2rem; font-weight: 800; }
.date small { font-size: .72rem; }
.date.blocked { background: #ecece8; color: #606560; }
.date.checkout-only { background: #fff2cc; color: #5f4600; }
.date.selected { outline: .22rem solid #173c27; outline-offset: .1rem; }
.date:disabled { cursor: not-allowed; opacity: .62; }
button, input { font: inherit; }
button { min-height: 2.75rem; border: 0; border-radius: 999px; padding: .7rem 1.15rem; background: #173c27; color: #fff; font-weight: 800; }
button.secondary { background: transparent; color: #173c27; border: 1px solid #173c27; }
button:disabled { opacity: .5; cursor: not-allowed; }
button:focus-visible, input:focus-visible { outline: .22rem solid #bd6b20; outline-offset: .18rem; }
.selection-grid { align-items: end; justify-content: flex-start; }
.selection-grid p, .selection-grid label { min-width: 12rem; display: grid; gap: .3rem; }
.selection-grid span, .selection-grid label { font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
input { min-height: 2.75rem; padding: .55rem; border: 1px solid #737d76; border-radius: .4rem; }
.actions { justify-content: flex-start; margin-top: 1rem; }
[role="alert"] { padding: .75rem; background: #fff0ed; color: #812414; border-radius: .4rem; font-weight: 700; }
#quote { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid #d6d7cf; }
#quote-lines { display: grid; gap: .5rem; }
#quote-lines div { display: flex; justify-content: space-between; gap: 1rem; }
#quote-lines dt { font-weight: 700; }
#quote-lines dd { margin: 0; text-align: right; }
@media (max-width: 40rem) {
  main { width: min(100% - 1rem, 72rem); padding-top: 1rem; }
  .date-grid { grid-template-columns: repeat(4, 1fr); }
  .date { padding: .45rem; }
}

