:root {
  --ink: #232326;
  --soft: #6f6f74;
  --line: #d9d9dc;
  --paper: #fbfbf9;
  --accent: #2e4a3f;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

header.site {
  border-bottom: 1px solid var(--ink);
  padding: 20px 0;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 15px;
}
.brand span { color: var(--soft); font-weight: 400; }

nav.top { display: flex; gap: 22px; margin-top: 6px; }
nav.top a { color: var(--soft); text-decoration: none; font-size: 13.5px; }
nav.top a:hover { color: var(--ink); }

.hero { padding: 72px 0 56px; border-bottom: 1px solid var(--line); }
.kicker {
  font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--soft); margin-bottom: 14px;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1.12;
  font-weight: 700;
  max-width: 17ch;
}
.sub { max-width: 56ch; color: var(--soft); margin-top: 18px; font-size: 17px; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-block; padding: 12px 22px; font-size: 15px;
  text-decoration: none; border: 1px solid var(--ink);
}
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { background: var(--accent); border-color: var(--accent); }
.btn.ghost { color: var(--ink); background: transparent; }
.btn.ghost:hover { border-color: var(--accent); color: var(--accent); }

.section { padding: 56px 0; border-bottom: 1px solid var(--line); }
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px; margin-bottom: 22px;
}

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }

.card { border: 1px solid var(--line); padding: 22px; background: #fff; }
.card h3 { font-size: 16px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--soft); }
.card .tag {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; display: block;
}
.card a.dl { font-size: 14px; color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--ink); }
.card a.dl:hover { color: var(--accent); border-color: var(--accent); }

.product { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 32px; align-items: center; }
.price { font-family: Georgia, serif; font-size: 40px; margin: 10px 0 2px; }
.price small { font-size: 14px; color: var(--soft); font-family: inherit; }
.includes { list-style: none; margin-top: 14px; }
.includes li { padding: 7px 0 7px 24px; position: relative; font-size: 14.5px; border-bottom: 1px dashed var(--line); }
.includes li::before { content: "\2713"; position: absolute; left: 2px; color: var(--accent); }

.note { font-size: 13px; color: var(--soft); margin-top: 14px; }

footer.site { padding: 36px 0 60px; color: var(--soft); font-size: 13px; }
footer.site a { color: var(--soft); }
footer.site .cols { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; }

.page-head { padding: 56px 0 8px; }
.prose { max-width: 68ch; padding: 12px 0 64px; }
.prose h2 { font-size: 21px; margin-top: 30px; }
.prose p, .prose li { font-size: 15.5px; color: #3a3a3e; margin-top: 12px; }
.prose ul { padding-left: 22px; }
