:root {
  --paper: #f6f5f1;
  --ink: #1b1b18;
  --muted: #8a8a80;
  --line: #e2e0d8;
  --accent: #b45309;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 52rem; margin: 0 auto; padding: 2.5rem 1.5rem 3rem; }
header.top {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem; margin-bottom: 3rem;
  border-bottom: 1px solid var(--line); padding-bottom: 1.2rem;
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none;
}
.brand span { color: var(--accent); }
.crumb { color: var(--muted); font-size: .82rem; }
.crumb a { color: var(--muted); text-decoration: none; border-bottom: 1px solid transparent; }
.crumb a:hover { border-bottom-color: var(--muted); }
.crumb span { color: var(--ink); }

.hero { margin-bottom: 3rem; }
.hero h1 {
  font-family: Georgia, serif; font-size: 2.4rem; font-weight: normal;
  letter-spacing: -0.02em; line-height: 1.2;
}
.tagline, .page-desc {
  color: var(--muted); margin-top: .5rem; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em;
}
.page-title {
  font-family: Georgia, serif; font-size: 2rem; font-weight: normal;
  letter-spacing: -0.02em; margin-bottom: .3rem;
}

.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 1rem;
}
.card {
  display: block; padding: 1.4rem 1.3rem;
  border: 1px solid var(--line); border-radius: 6px;
  background: transparent; text-decoration: none; color: var(--ink);
  transition: border-color .15s, background .15s, transform .15s;
}
.card:hover { border-color: var(--accent); background: #fff; transform: translateY(-2px); }
.card-title { font-family: Georgia, serif; font-size: 1.15rem; }
.card-meta { color: var(--muted); font-size: .8rem; margin-top: .3rem; }
.card-accent {
  margin-top: .8rem; font-size: .9rem; color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.from-price {
  display: inline-block; margin: 1.2rem 0 1.8rem; padding: .35rem .9rem;
  border: 1px solid var(--accent); border-radius: 99px;
  color: var(--accent); font-size: .9rem; font-variant-numeric: tabular-nums;
}

table { width: 100%; border-collapse: collapse; font-size: .95rem; }
td { padding: .5rem .4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
tr.sep td.variant-head {
  padding-top: 1.3rem; border-bottom: none;
  font-family: Georgia, serif; font-size: 1.05rem;
}
td.variant { color: var(--muted); }
td.price { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
td.country { text-align: right; white-space: nowrap; color: var(--muted); font-size: .88rem; }

footer {
  margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .8rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
}
@media (max-width: 480px) {
  .wrap { padding-top: 1.8rem; }
  td.country { display: none; }
  .hero h1 { font-size: 1.9rem; }
}
