:root {
  --ink: #17140f;
  --ink-soft: #2a2620;
  --paper: #faf7f2;
  --paper-alt: #f1ebe1;
  --gold: #b08d57;
  --gold-light: #d9b878;
  --muted: #7a7268;
  --line: #e4dccd;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(23, 20, 15, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Georgia", "Iowan Old Style", serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 18px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 14px;
  font-family: Georgia, serif;
  border: 1px solid var(--gold);
}
.nav-links { display: flex; gap: 28px; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--ink-soft); }
.nav-links a:hover { color: var(--gold); }

/* Hero */
.hero {
  padding: 84px 24px 64px;
  text-align: center;
  background: radial-gradient(ellipse at top, var(--paper-alt) 0%, var(--paper) 60%);
}
.hero-eyebrow {
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 18px;
  font-weight: 400;
  line-height: 1.15;
}
.hero p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
}
.trust-row {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 28px;
}
.trust-row span { display: flex; align-items: center; gap: 6px; }

/* Product grid */
.section { padding: 56px 24px; }
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14.5px;
  margin-bottom: 44px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(23,20,15,0.12); }
.card-cover { aspect-ratio: 8 / 11; overflow: hidden; background: var(--ink); }
.card-cover img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-name { font-size: 17px; margin: 0; line-height: 1.3; }
.card-tagline {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.card-price { font-family: "Helvetica Neue", Arial, sans-serif; font-weight: 700; font-size: 16px; }

.btn {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: none;
  border-radius: 7px;
  padding: 10px 18px;
  cursor: pointer;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.15s ease;
}
.btn:hover { background: var(--gold); color: var(--ink); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* How it works */
.how {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 24px;
}
.how .section-title, .how .section-sub { color: var(--paper); }
.how .section-sub { color: #cfc7ba; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.how-step .num {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--gold-light); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-family: "Helvetica Neue", Arial, sans-serif; font-size: 14px;
}
.how-step h3 { font-size: 16px; font-weight: 400; margin: 0 0 8px; }
.how-step p { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 13.5px; color: #cfc7ba; margin: 0; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 36px 24px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  color: var(--muted);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }

/* Simple content pages */
.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.page h1 { font-size: 34px; font-weight: 400; }
.page h2 { font-size: 20px; font-weight: 600; font-family: "Helvetica Neue", Arial, sans-serif; margin-top: 36px; }
.page p, .page li { color: var(--ink-soft); font-family: "Helvetica Neue", Arial, sans-serif; font-size: 15px; }
.page .updated { color: var(--muted); font-family: "Helvetica Neue", Arial, sans-serif; font-size: 13px; }

.status-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  background: var(--white);
  max-width: 520px;
  margin: 40px auto;
}
.status-box .icon { font-size: 40px; margin-bottom: 12px; }

@media (max-width: 640px) {
  .nav-links { display: none; }
}
