:root {
  color-scheme: dark;
  --ink: #171512;
  --cream: #fff3d6;
  --gold: #f0aa2c;
  --orange: #d85b22;
  --red: #b6281f;
}

* { box-sizing: border-box; }
html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 10% 5%, rgba(240, 170, 44, .24), transparent 28rem), linear-gradient(135deg, #231f19 0%, var(--ink) 60%, #0c0b09 100%);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .05;
  background-image: repeating-linear-gradient(90deg, transparent 0 7px, #fff 7px 8px);
}

.chooser-shell { position: relative; width: min(1100px, calc(100% - 40px)); margin: 0 auto; padding: 64px 0 32px; }
.chooser-heading { max-width: 760px; margin-bottom: 48px; }
.chooser-heading img { width: 249px; height: 111px; object-fit: contain; object-position: left center; mix-blend-mode: screen; }

.eyebrow, .choice-label {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin: 10px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.chooser-heading > p:last-child { max-width: 640px; margin: 0; color: #d7cdbb; font-size: 1.08rem; line-height: 1.65; }
.choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

.choice {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.choice:hover, .choice:focus-visible { border-color: var(--gold); box-shadow: 0 25px 70px rgba(0,0,0,.35); outline: none; transform: translateY(-5px); }
.choice-old { background: linear-gradient(rgba(255,204,102,.88), rgba(255,204,102,.92)), repeating-linear-gradient(0deg, #e12720 0 2px, transparent 2px 6px); color: #171512; }
.choice-new { background: radial-gradient(circle at 95% 5%, rgba(255,255,255,.16), transparent 35%), linear-gradient(145deg, var(--orange), var(--red)); }
.choice-number { align-self: flex-end; color: currentColor; font: italic 1rem Georgia, serif; opacity: .52; }
.choice-old .choice-label { color: var(--red); }
.choice-new .choice-label { color: #ffe0a2; }
.choice strong { display: block; margin: 16px 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; line-height: 1; }
.choice-copy { max-width: 430px; line-height: 1.55; opacity: .82; }
.choice-action { margin-top: auto; padding-top: 50px; font-size: .9rem; font-weight: 800; letter-spacing: .04em; }
.choice-action span { margin-left: 8px; transition: margin .2s ease; }
.choice:hover .choice-action span { margin-left: 14px; }
footer { padding-top: 28px; color: #8f8678; font-size: .8rem; text-align: center; }

@media (max-width: 720px) {
  .chooser-shell { padding-top: 36px; }
  .chooser-heading img { width: 200px; height: auto; }
  .choices { grid-template-columns: 1fr; }
  .choice { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) { .choice, .choice-action span { transition: none; } }
