:root {
  --ink: #1b2433;
  --muted: #5c6573;
  --paper: #f6f1e8;
  --card: #fffdf8;
  --line: #d9d1c3;
  --navy: #24385c;
  --navy-deep: #17263f;
  --sand: #e7dcc8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Serif 4", Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
.wrap { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
header {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 28px 0 18px; border-bottom: 1px solid var(--line);
}
.brand { font-size: 1.35rem; letter-spacing: 0.02em; color: var(--navy-deep); text-decoration: none; }
.brand em { font-style: italic; font-weight: 500; }
nav a { color: var(--muted); text-decoration: none; font-size: 0.95rem; }
nav a:hover { color: var(--navy); }
.hero { padding: 56px 0 36px; max-width: 36rem; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.hero p { margin-top: 14px; color: var(--muted); font-size: 1.08rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
  padding: 12px 0 72px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: var(--navy); }
.card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--sand); display: block; }
.card .body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card h2 { font-size: 1.05rem; font-weight: 600; line-height: 1.25; }
.card .cut { color: var(--muted); font-size: 0.88rem; }
.card .row { margin-top: auto; display: flex; justify-content: space-between; align-items: baseline; padding-top: 10px; }
.card .price { font-variant-numeric: tabular-nums; }
.card .go { font-size: 0.88rem; color: var(--navy); }
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 0.92rem;
}
footer p + p { margin-top: 8px; }
@media (max-width: 640px) {
  .wrap { width: calc(100% - 28px); }
  header { flex-direction: column; gap: 8px; }
}
