:root {
  color-scheme: dark;
  --bg: #0f0b0a;
  --panel: #18110f;
  --panel-soft: #211714;
  --text: #fff7ed;
  --muted: #d1bba8;
  --accent: #f28a2f;
  --accent-strong: #ffc273;
  --border: #4b3024;
  --focus: #ffd071;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(242, 138, 47, .22), transparent 35rem),
    radial-gradient(circle at 92% 20%, rgba(194, 59, 34, .12), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--accent-strong); }
a:hover { color: #fff; }
a:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(11, 13, 19, .86);
  backdrop-filter: blur(14px);
}

.header-inner,
.policy,
.site-footer {
  width: min(100% - 2rem, 900px);
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
}

.site-nav { display: flex; gap: 1rem; }
.site-nav a { color: var(--muted); font-weight: 650; text-decoration: none; }
.site-nav a[aria-current="page"] { color: #fff; }

.policy { padding: clamp(3rem, 8vw, 6rem) 0; }

.hero-art {
  margin: 0 0 clamp(2rem, 6vw, 4rem);
  overflow: hidden;
  border: 1px solid #6d3d23;
  border-radius: 1.15rem;
  background: #d85c17;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35), 0 0 50px rgba(242, 138, 47, .09);
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 .5rem;
  color: var(--accent-strong);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.35rem, 8vw, 4.5rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.lede {
  max-width: 68ch;
  margin: 1.5rem 0 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin: 0 0 2.5rem;
  color: var(--muted);
  font-size: .92rem;
}

.notice {
  margin: 2rem 0 3rem;
  padding: 1rem 1.15rem;
  border: 1px solid #764629;
  border-radius: .85rem;
  background: rgba(242, 138, 47, .09);
}

.bundle-section { padding-top: 0; border-top: 0; }
.bundle-intro { margin: 0 0 1.5rem; color: var(--muted); }
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.bundle-card {
  position: relative;
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 72% 15%, rgba(255, 191, 88, .28), transparent 5rem),
    linear-gradient(145deg, #2b1710, #17100f 70%);
}

.bundle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(125deg, transparent 0 18px, rgba(255, 165, 71, .035) 18px 19px);
  pointer-events: none;
}

.bundle-card.featured { border-color: #c66c2b; box-shadow: inset 0 0 0 1px rgba(255, 193, 115, .15); }
.bundle-label { color: var(--accent-strong); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.bundle-quantity { margin-top: .25rem; font-size: 1.5rem; line-height: 1.15; }
.bundle-price { margin-top: .65rem; color: var(--muted); font-variant-numeric: tabular-nums; }

.contents {
  margin: 2.5rem 0 3rem;
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--panel);
}

.contents h2 { margin-top: 0; font-size: 1rem; }
.contents ol { columns: 2; margin-bottom: 0; padding-left: 1.25rem; }
.contents li { break-inside: avoid; margin: .3rem 1rem .3rem 0; }

section {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 1.5rem;
}

h2 { margin: 0 0 .9rem; font-size: clamp(1.45rem, 4vw, 1.9rem); line-height: 1.2; }
h3 { margin: 1.5rem 0 .5rem; font-size: 1.08rem; }
p, li { max-width: 76ch; }
li + li { margin-top: .45rem; }
strong { color: #fff; }

.site-footer {
  padding: 1.75rem 0 3rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 640px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
  .site-nav { width: 100%; justify-content: space-between; }
  .contents ol { columns: 1; }
  .policy { padding-top: 2.5rem; }
  .bundle-grid { grid-template-columns: 1fr; }
  .bundle-card { min-height: 145px; }
}

@media print {
  :root { color-scheme: light; --bg: #fff; --text: #111; --muted: #444; --border: #ccc; }
  body { background: #fff; }
  .site-header { position: static; background: #fff; }
  .contents, .notice { background: #fff; }
  a { color: #111; text-decoration: underline; }
}
