:root {
  color-scheme: light;
  --ink: #161616;
  --muted: #676767;
  --line: #dedede;
  --paper: #ffffff;
  --soft: #f6f6f4;
  --accent: #0f766e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--line);
  padding: 20px clamp(18px, 4vw, 48px);
}

.site-footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  color: var(--muted);
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 12px;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(32px, 7vw, 72px) clamp(18px, 4vw, 48px);
}

.eyebrow {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--soft);
}

.card-body {
  padding: 18px;
}

.card h2,
.card h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.price,
.muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  background: var(--ink);
  color: var(--paper);
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.prose p {
  color: var(--muted);
}
