:root {
  --bg: #ffffff;
  --bg-elev: #fafafa;
  --border: #e5e5e5;
  --text: #0d0d0d;
  --text-dim: #525252;
  --text-muted: #8a8a8a;
  --accent: #0d0d0d;
  --max-width: 780px;
  --max-width-wide: 1100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.15s ease;
}
a:hover { text-decoration-color: var(--text); }

h1, h2, h3 {
  font-family: "Times New Roman", "Iowan Old Style", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(2.75rem, 6vw, 5rem); margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin: 3rem 0 1rem; }
h3 { font-size: 1.25rem; margin: 1.5rem 0 0.5rem; }

p { margin-bottom: 1rem; color: var(--text-dim); }
strong { color: var(--text); font-weight: 600; }

ul, ol { margin: 0.5rem 0 1.25rem 1.25rem; color: var(--text-dim); }
li { margin-bottom: 0.4rem; }

hr { border: none; border-top: 1px solid var(--border); margin: 4rem 0; }

/* ── Nav ─────────────────────────────────────────────────────────── */

.nav {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  position: sticky; top: 0; z-index: 10;
}

.nav-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  color: var(--text);
  text-decoration: none;
}

.brand svg { height: 22px; width: auto; }

.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 0.9rem; color: var(--text-dim); text-decoration: none; }
.nav-links a:hover { color: var(--text); }

/* ── Hero ────────────────────────────────────────────────────────── */

.hero {
  padding: 7rem 1.5rem 4rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.lede {
  font-size: 1.25rem;
  color: var(--text-dim);
  max-width: 600px;
  margin-top: 1.25rem;
}

/* ── Sections ────────────────────────────────────────────────────── */

main { padding: 0; }
.section { padding: 5rem 1.5rem; max-width: var(--max-width-wide); margin: 0 auto; }
.section.bordered { border-top: 1px solid var(--border); }

.section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-header h2 { margin: 0; }
.section-header .counter {
  font-family: "Times New Roman", Georgia, serif;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ── Product list ────────────────────────────────────────────────── */

.products { display: grid; gap: 0; }

.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}

.product:last-child { border-bottom: 1px solid var(--border); }
.product:hover { background-color: var(--bg-elev); text-decoration: none; }
.product:hover .product-title { text-decoration: underline; text-decoration-color: var(--text); }

.product-body { padding-left: 0.5rem; }

.product-title {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.75rem;
}

.product-desc { color: var(--text-dim); max-width: 520px; margin: 0; }

.product-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  padding-right: 1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.product:hover .product-arrow { transform: translateX(4px); color: var(--text); }

/* ── Legal pages ─────────────────────────────────────────────────── */

.legal-wrap { max-width: var(--max-width); margin: 0 auto; padding: 5rem 1.5rem 6rem; }
.legal h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.legal .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 3rem; }
.legal h2 { font-size: 1.35rem; }
.legal h3 { font-size: 1.05rem; }

.contact-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--bg-elev);
  margin: 2rem 0;
}
.contact-card p { margin-bottom: 0.25rem; color: var(--text); }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card .label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Footer ──────────────────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand { font-family: "Times New Roman", Georgia, serif; font-size: 1.1rem; }
.footer-address {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 280px;
}

.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; color: var(--text-dim); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 100%;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  h1 { font-size: 2.5rem; }
  .product { grid-template-columns: 1fr; }
  .product-arrow { display: none; }
  .product-title { font-size: 1.75rem; }
  .section { padding: 3rem 1.5rem; }
}
