:root {
  --ink: #111827;
  --muted: #5b6573;
  --line: #e6e9ee;
  --bg: #ffffff;
  --wash: #f5f7fa;
  --card: #ffffff;
  --accent: #2563eb;
  --max: 1120px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
a:hover { color: var(--ink); }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
  font-family: Outfit, Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 5px var(--ink);
}
.nav { display: flex; gap: 1.25rem; font-size: 0.95rem; font-weight: 500; }
.nav a { color: var(--muted); text-decoration: none; }
.nav a:hover { color: var(--ink); }

.hero {
  padding: 5.5rem 0 3.5rem;
}
.hero h1 {
  font-family: Outfit, Inter, sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02;
  margin: 0 0 0.85rem;
}
.etymology {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.3rem;
}
.hero .lede {
  max-width: 38rem;
  color: var(--muted);
  margin: 0;
  font-size: 1.12rem;
}

.section { padding: 1rem 0 5rem; }
.section h2,
.more h2,
.product-head h1,
.page-hero h1,
.product-card h3,
.prose h2,
.footer-name {
  font-family: Outfit, Inter, sans-serif;
  letter-spacing: -0.03em;
}
.section h2 {
  font-weight: 600;
  font-size: 1.65rem;
  margin: 0 0 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem;
}
.product-card {
  background: var(--card);
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: #cfd6e0;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
  color: inherit;
}
.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--wash);
}
.product-card-body { padding: 1.05rem 1.1rem 1.2rem; }
.product-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-hero {
  padding: 3.4rem 0 0;
}
.page-hero h1 {
  font-weight: 600;
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.prose { padding: 1.4rem 0 4.5rem; max-width: 42rem; }
.prose h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 0.55rem;
}

.product-head { padding: 3.2rem 0 1.2rem; }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.7rem;
}
.kicker a { color: inherit; text-decoration: none; }
.product-head h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 1.08;
}
.subtitle { color: var(--muted); font-size: 1.12rem; margin: 0 0 1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; padding: 0; margin: 0; }
.tags li {
  background: var(--wash);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.btn {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 999px;
}
.btn:hover { background: #2563eb; color: #fff; }

.more {
  padding: 0 0 4.5rem;
}
.more h2 {
  margin: 2.4rem 0 1.1rem;
  font-size: 1.45rem;
  font-weight: 600;
}

.site-footer {
  background: var(--wash);
  color: var(--muted);
  padding: 2.4rem 0 1.4rem;
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.3rem;
}
.footer-name {
  color: var(--ink);
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.site-footer p { margin: 0.2rem 0; }
.copyright { color: #8b939e; font-size: 0.85rem; margin: 0 auto; }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 3.5rem; }
}
