:root {
  --ink: #1c1917;
  --muted: #57534e;
  --line: #e7e5e4;
  --paper: #fafaf9;
  --bg: #fff;
  --accent: #b42318;
  --accent-dark: #91170e;
  --warn: #b45309;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(28, 25, 23, 0.06);
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #7f1d1d;
  color: #fff7ed;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
header.site {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky; top: 0; z-index: 20;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand { font-weight: 800; letter-spacing: -0.03em; font-size: 20px; color: var(--ink); text-decoration: none; }
.brand:hover { text-decoration: none; }
.links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; }
.links a { color: var(--ink); }
.cart-link { border: 1px solid var(--line); padding: 8px 12px; border-radius: 999px; }
.hero {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px;
  padding: 48px 0 36px; align-items: center;
}
.hero h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.12; margin: 0 0 12px; letter-spacing: -0.04em; }
.hero p { color: var(--muted); font-size: 18px; margin: 0 0 22px; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); margin: 0 0 10px; }
.shot {
  margin: 0; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(28, 25, 23, 0.12);
  background: #0f172a;
}
.shot img { width: 100%; height: auto; display: block; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow);
}
.feat img { width: 100%; height: 200px; object-fit: cover; object-position: top; background: #f5f5f4; }
.feat .body { padding: 14px 14px 16px; }
.feat h3 { margin: 0 0 6px; font-size: 16px; }
.scene {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: center;
}
.scene img {
  width: 100%; border-radius: 18px; border: 1px solid var(--line);
  box-shadow: var(--shadow); object-fit: cover; max-height: 360px;
}
.page-shot {
  width: 100%; border-radius: 16px; border: 1px solid var(--line);
  box-shadow: var(--shadow); margin: 0 0 28px; display: block;
}
.hero-card {
  background: linear-gradient(160deg, #fff7ed, #fff1e6 40%, #fff);
  border: 1px solid var(--line); border-radius: 24px; padding: 28px;
  box-shadow: var(--shadow); min-height: 260px;
}
.btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 12px 18px; border-radius: 999px; font-weight: 650; border: 0; cursor: pointer;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; }
.btn.ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff;
}
.card .pic {
  height: 180px; background: #f5f5f4 center/cover no-repeat;
}
.card .pic-img {
  width: 100%; height: 160px; object-fit: cover; object-position: top; display: block; background: #f5f5f4;
}
.card .body { padding: 14px 14px 16px; }
.card h3 { margin: 0 0 6px; font-size: 16px; }
.price { font-weight: 700; }
.muted { color: var(--muted); }
.section { padding: 12px 0 48px; }
.section h2 { letter-spacing: -0.03em; }
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 8px 0 36px; }
.trust div { border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; background: var(--paper); }
footer.site { border-top: 1px solid var(--line); background: #fafaf9; padding: 36px 0 48px; font-size: 14px; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 18px; }
.legal { margin-top: 28px; color: var(--muted); font-size: 12px; }
.page { padding: 36px 0 64px; }
.page h1 { margin-top: 0; letter-spacing: -0.03em; }
.prose { max-width: 720px; color: #44403c; }
.prose h2 { color: var(--ink); font-size: 18px; }
.form { display: grid; gap: 12px; max-width: 520px; }
input, textarea, select {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; font: inherit;
}
label { font-size: 13px; font-weight: 650; }
.row { display: flex; justify-content: space-between; gap: 12px; }
.notice {
  background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412;
  padding: 12px 14px; border-radius: 12px; font-size: 14px; margin: 16px 0;
}
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--line); }
.swatch { height: 220px; border-radius: 18px; background: #f5f5f4 center/cover; margin-bottom: 18px; }
@media (max-width: 860px) {
  .hero, .grid, .trust, .foot, .feat-grid, .scene { grid-template-columns: 1fr; }
  .links { display: none; }
  .feat img { height: 220px; }
}

/* policy pages */
.prose-page h2{margin-top:1.4rem;font-size:1.15rem}
.prose-page ol,.prose-page ul{padding-left:1.25rem;line-height:1.55}
.prose-page li{margin:.35rem 0}
.prose-page p{line-height:1.55}
.foot a{display:inline}
