:root {
  color-scheme: dark;
  --black: #090909;
  --panel: #11110f;
  --gold: #c69b54;
  --cream: #f0e9db;
  --muted: #a59e91;
  --line: rgba(198, 155, 84, .22);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main { width: min(1220px, calc(100% - 48px)); margin: auto; padding: 92px 0 46px; }

header { max-width: 1080px; padding: 0 0 92px; }

.kicker, .label, .specs, .pick {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 28px 0 38px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 8.3vw, 7.7rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .9;
}

h1 em { color: var(--gold); font-weight: 400; }

.intro { max-width: 57ch; color: var(--muted); font-size: 1.12rem; line-height: 1.75; }

.recommendation {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 680px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.recommendation-copy { display: grid; align-content: center; padding: 72px 80px 72px 0; }

h2 {
  margin: 20px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1;
}

.recommendation-copy p, .production p, .reduction p { color: var(--muted); line-height: 1.75; }
.specs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.specs span { padding: 9px 12px; border: 1px solid var(--line); }

.hero-mark { display: grid; place-items: center; background: radial-gradient(circle, #191712 0, #0d0d0c 60%); }
.hero-mark img { width: min(72%, 510px); }

.comparison { padding: 104px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 50px; }
.section-heading h2 { margin-bottom: 0; text-align: right; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cards article { position: relative; padding: 36px; background: var(--panel); border: 1px solid transparent; }
.cards article.selected { border-color: var(--gold); }
.cards article > img { display: block; width: 76%; margin: 16px auto 34px; }
.cards article > div { display: flex; gap: 15px; align-items: baseline; border-top: 1px solid var(--line); padding-top: 22px; }
.cards h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; font-weight: 400; }
.cards article > div span { color: var(--gold); font-size: .75rem; }
.cards article > p { margin: 14px 0 0; color: var(--muted); font-size: .91rem; line-height: 1.65; }
.pick { position: absolute; top: 24px; right: 24px; }

.reduction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 92px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reduction > div:first-child { max-width: 52ch; }
.reduction-grid { display: flex; justify-content: center; gap: 54px; }
.reduction figure { display: grid; gap: 14px; place-items: center; margin: 0; color: var(--muted); }
.reduction figure img { width: 32px; height: 32px; object-fit: contain; }
.reduction .chosen { color: var(--gold); transform: scale(1.35); }
.reduction figcaption { font-size: .74rem; }

.production { max-width: 850px; padding: 104px 0; }
.production h2 { max-width: 16ch; }
.production p { max-width: 65ch; }

footer {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

footer p { margin-bottom: 0; }

@media (max-width: 760px) {
  main { width: min(100% - 28px, 600px); padding-top: 52px; }
  header { padding-bottom: 56px; }
  .recommendation, .reduction { grid-template-columns: 1fr; }
  .recommendation-copy { padding: 56px 12px; }
  .hero-mark { min-height: 430px; }
  .cards { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading h2 { text-align: left; }
  .reduction { gap: 48px; padding: 64px 12px; }
  .reduction-grid { gap: 42px; }
  footer { flex-direction: column; gap: 14px; }
}
