:root {
  --bg: #f8f6f1;
  --bg-tint: #f1ede4;
  --surface: #ffffff;
  --border: #e6e2d8;
  --border-strong: #d4cfc1;
  --text: #14181f;
  --muted: #5b6573;
  --muted-soft: #8a93a3;
  --accent: #1f3a5f;
  --highlight: #0d7a93;
  --hover-bg: rgba(20, 24, 31, 0.04);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Source Serif 4", "Source Serif Pro", "Iowan Old Style", "Georgia", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
}
.skip-link:focus { left: 16px; top: 16px; background: var(--text); color: var(--bg); padding: 8px 12px; z-index: 100; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.15s;
}
.btn:hover { background: #163049; text-decoration: none; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-ghost { background: transparent; color: var(--accent); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--hover-bg); }

.hero {
  padding: 96px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--text);
}
.hero p.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

.products {
  padding: 80px 0;
}
.products h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.6px;
  margin: 0 0 8px;
}
.products .sub {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 40px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.product-card:hover { border-color: var(--accent); text-decoration: none; transform: translateY(-2px); }
.product-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: -0.4px;
}
.product-card .tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--highlight);
  font-weight: 600;
  margin-bottom: 14px;
}
.product-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.6;
  flex-grow: 1;
}
.product-card .meta {
  font-size: 12.5px;
  color: var(--muted-soft);
  font-family: var(--font);
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.product-card .meta span::before { content: "·"; margin-right: 12px; color: var(--border-strong); }
.product-card .meta span:first-child::before { content: ""; margin-right: 0; }
.product-card .visit {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-top: auto;
}
.product-card:hover .visit { text-decoration: underline; }

.about {
  background: var(--bg-tint);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.about h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
}
.about p { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 720px; }
.about .stats { display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.about .stat strong { display: block; font-family: var(--serif); font-size: 32px; color: var(--text); }
.about .stat span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  font-size: 13px;
  color: var(--muted);
}
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer a { color: var(--muted); margin-left: 18px; }
footer a:hover { color: var(--text); }

@media (max-width: 600px) {
  .hero { padding: 64px 0 48px; }
  footer .container { flex-direction: column; align-items: flex-start; }
  footer a { margin-left: 0; margin-right: 18px; }
}
