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

:root {
  --bg: #faf6ee;
  --surface: #ffffff;
  --ink: #17201b;
  --muted: #5d675f;
  --accent: #1f4d38;
  --accent-hover: #163a2a;
  --gold: #e8a820;
  --gold-soft: #f7e7c3;
  --line: #e3ddcd;
  --radius: 14px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; font-size: inherit; }
img { display: block; max-width: 100%; }

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

/* ---------- ANNOUNCE BAR ---------- */
.announce {
  background: var(--ink); color: var(--gold);
  text-align: center; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; padding: 8px 16px;
}

/* ---------- NAV ---------- */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--ink);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.nav-links a { position: relative; }
.nav-links a:hover { color: var(--accent); }
.cart-btn {
  background: var(--ink); color: var(--bg); border: none; border-radius: 999px;
  padding: 9px 18px; font-weight: 700; font-size: 13.5px;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.12s;
}
.cart-btn:hover { transform: translateY(-1px); }
.cart-count {
  background: var(--gold); color: var(--ink); border-radius: 999px;
  font-size: 11.5px; font-weight: 800; padding: 1px 7px; min-width: 19px; text-align: center;
}

/* ---------- HERO ---------- */
.hero { border-bottom: 1.5px solid var(--ink); background: var(--bg); overflow: hidden; }
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 72px 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.overline {
  display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--accent); margin-bottom: 18px;
  border: 1.5px solid var(--accent); border-radius: 999px; padding: 5px 14px;
}
.hero h1 { font-size: clamp(34px, 4.8vw, 56px); font-weight: 800; margin-bottom: 18px; }
.hero h1 .hl {
  color: var(--accent);
  background: linear-gradient(transparent 62%, var(--gold-soft) 62%);
  padding: 0 2px;
}
.sub { font-size: 17px; color: var(--muted); margin-bottom: 28px; max-width: 46ch; }
.hero-cta { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; }
.hero-points { list-style: none; display: grid; gap: 8px; }
.hero-points li { font-size: 14px; font-weight: 500; padding-left: 24px; position: relative; }
.hero-points li::before { content: "★"; position: absolute; left: 0; color: var(--gold); }
.hero-media { position: relative; }
.hero-media img, .hero-media video {
  border-radius: var(--radius); border: 1.5px solid var(--ink);
  width: 100%; display: block;
  box-shadow: 8px 8px 0 var(--gold);
}

.btn {
  display: inline-block; border: none; border-radius: 999px;
  padding: 14px 28px; font-weight: 700; font-size: 15px;
  transition: transform 0.12s, background 0.12s;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 3px 3px 0 var(--ink); }
.btn-primary:hover { background: var(--accent-hover); transform: translate(-1px, -1px); }
.btn-gold { background: var(--gold); color: var(--ink); box-shadow: 3px 3px 0 rgba(0,0,0,0.35); }
.btn-gold:hover { transform: translate(-1px, -1px); }
.btn.full { width: 100%; text-align: center; box-shadow: none; }
.btn:disabled { opacity: 0.55; cursor: wait; transform: none; }
.link-arrow { font-weight: 700; font-size: 15px; border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
.link-arrow:hover { border-color: var(--ink); }

/* ---------- TICKER ---------- */
.ticker {
  background: var(--accent); color: var(--bg); overflow: hidden;
  border-bottom: 1.5px solid var(--ink); padding: 10px 0;
}
.ticker-track { display: flex; white-space: nowrap; animation: ticker 28s linear infinite; }
.ticker-track span {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 0.14em; padding-right: 12px;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SECTIONS ---------- */
section { padding: 72px 0; }
.section-head { margin-bottom: 36px; max-width: 620px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 10px; }
.section-head p { color: var(--muted); font-size: 16px; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: -8px 0 40px; }
.chip {
  border: 1.5px solid var(--ink); border-radius: 999px; padding: 7px 16px;
  font-size: 13.5px; font-weight: 600; background: var(--surface);
}
.chip:nth-child(3n) { background: var(--gold-soft); }
.chip:last-child { background: var(--accent); color: #fff; border-color: var(--accent); }

/* HOW */
.how { border-bottom: 1.5px solid var(--ink); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--surface); border: 1.5px solid var(--ink);
  border-radius: var(--radius); padding: 26px;
  box-shadow: 5px 5px 0 var(--line);
  transition: transform 0.12s, box-shadow 0.12s;
}
.step:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--gold); }
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 34px; font-weight: 800;
  color: var(--gold); margin-bottom: 8px; line-height: 1;
}
.step h3 { font-size: 19px; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: 14px; }

/* SETUP */
.setup { border-bottom: 1.5px solid var(--ink); background: var(--surface); }
.setup-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.setup-steps { list-style: none; counter-reset: setup; display: grid; gap: 20px; }
.setup-steps li {
  counter-increment: setup; position: relative; padding-left: 52px;
  font-size: 15px; color: var(--muted);
}
.setup-steps li strong { color: var(--ink); display: block; margin-bottom: 2px; font-weight: 700; font-size: 16px; }
.setup-steps li::before {
  content: counter(setup, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px; font-weight: 800; color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.setup-note {
  margin-top: 24px; font-size: 14px; font-weight: 500;
  border-left: 3px solid var(--gold); padding-left: 14px;
}

/* SHOP */
.shop { border-bottom: 1.5px solid var(--ink); }
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.product {
  background: var(--surface); border: 1.5px solid var(--ink);
  border-radius: var(--radius); padding: 24px; position: relative;
  box-shadow: 6px 6px 0 var(--line);
}
.badge {
  position: absolute; top: -14px; right: 22px; z-index: 2;
  font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink); background: var(--gold); border: 1.5px solid var(--ink);
  padding: 5px 12px; border-radius: 999px;
}
.product-photo {
  width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; background: #fff;
  border-radius: 8px; margin-bottom: 10px; border: 1.5px solid var(--ink);
}
.product-photo.contain { object-fit: contain; }
.thumb-row { display: flex; gap: 8px; margin-bottom: 18px; }
.thumb {
  width: 54px; height: 42px; padding: 0; border: 1.5px solid var(--line);
  border-radius: 6px; overflow: hidden; background: #fff; flex-shrink: 0; opacity: 0.7;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.selected { border-color: var(--ink); opacity: 1; }
.product h3 { font-size: 22px; margin-bottom: 5px; }
.product-desc { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.price-line { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.price-line span { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: var(--muted); }
.deal {
  display: inline-block; font-size: 12.5px; color: var(--ink); font-weight: 700;
  background: var(--gold-soft); border-radius: 6px; padding: 4px 10px; margin-bottom: 16px;
}

.option-group { margin-bottom: 18px; }
.option-group > label {
  display: block; font-size: 11.5px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--muted); margin-bottom: 9px;
}
.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pack {
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 10px 4px; text-align: center; display: flex; flex-direction: column; gap: 2px;
  transition: all 0.1s;
}
.pack:hover { border-color: var(--ink); }
.pack strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 800; }
.pack span { font-size: 12.5px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.pack em { font-style: normal; font-size: 10.5px; color: var(--muted); }
.pack.selected { border-color: var(--ink); background: var(--gold-soft); box-shadow: 2px 2px 0 var(--ink); }

.qty-row { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--ink);
  background: var(--surface); font-size: 17px; font-weight: 700; color: var(--ink);
}
.qty-btn:hover { background: var(--gold-soft); }
.qty-row input {
  width: 66px; height: 38px; text-align: center; font-size: 15px; font-weight: 700;
  border: 1.5px solid var(--ink); border-radius: 10px; font-family: inherit;
  background: var(--surface); font-variant-numeric: tabular-nums;
}
.qty-row input:focus { outline: none; background: var(--gold-soft); }

/* FAQ */
.faq { border-bottom: 1.5px solid var(--ink); }
.faq .section-head { margin-bottom: 18px; }
.faq details { border-bottom: 1.5px solid var(--line); }
.faq summary {
  font-weight: 700; cursor: pointer; font-size: 16px; padding: 18px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 24px; font-weight: 700; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); padding: 0 0 18px; font-size: 14.5px; max-width: 62ch; }

/* CTA BAND */
.cta-band {
  background: var(--accent); color: #fff; text-align: center;
  padding: 80px 0; border-bottom: 1.5px solid var(--ink);
}
.cta-band h2 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; margin-bottom: 28px; }
.cta-note { margin-top: 18px; font-size: 13.5px; color: #bcd2c5; }

/* FOOTER */
footer { background: var(--ink); color: #a9b2aa; padding: 40px 0; }
.footer-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 13px;
}
.footer-inner strong { color: var(--bg); }
footer .logo { color: var(--bg); }
footer .logo span { color: var(--gold); }
.footer-links a { margin-left: 18px; text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { color: #fff; }
.footer-fine { width: 100%; font-size: 12px; opacity: 0.7; }

/* ---------- CART DRAWER ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(23, 32, 27, 0.5); z-index: 90;
  opacity: 0; pointer-events: none; transition: opacity 0.18s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: -430px; width: min(400px, 94vw); height: 100%;
  background: var(--bg); z-index: 100; display: flex; flex-direction: column;
  transition: right 0.22s ease; border-left: 1.5px solid var(--ink);
}
.cart-drawer.open { right: 0; }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; border-bottom: 1.5px solid var(--ink);
}
.cart-head h3 { font-size: 18px; }
.cart-head button { background: none; border: none; font-size: 17px; color: var(--muted); }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 22px; }
.cart-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 15px 0; border-bottom: 1.5px solid var(--line); }
.cart-item-name { font-weight: 700; font-size: 14.5px; }
.cart-item-meta { font-size: 12.5px; color: var(--muted); }
.cart-item-price { font-weight: 800; white-space: nowrap; font-size: 14.5px; font-variant-numeric: tabular-nums; }
.cart-remove { background: none; border: none; color: var(--muted); font-size: 12.5px; padding: 0; text-decoration: underline; }
.cart-remove:hover { color: #a33; }
.cart-empty { text-align: center; color: var(--muted); padding: 44px 0; font-size: 14px; }
.cart-foot { padding: 18px 22px; border-top: 1.5px solid var(--ink); background: var(--surface); }
.cart-line { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-bottom: 6px; font-variant-numeric: tabular-nums; }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 800; margin: 8px 0 14px; padding-top: 10px; border-top: 1.5px solid var(--line); font-variant-numeric: tabular-nums; }
.cart-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ---------- LEGAL PAGES ---------- */
.legal { max-width: 680px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-size: 30px; margin-bottom: 6px; }
.legal-updated { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.legal h2 { font-size: 18px; margin: 30px 0 8px; }
.legal p { color: var(--muted); margin-bottom: 12px; font-size: 14.5px; }
.legal p strong { color: var(--ink); }
.legal ul { color: var(--muted); padding-left: 20px; margin-bottom: 12px; font-size: 14.5px; }
.legal li { margin-bottom: 5px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; padding: 44px 24px; gap: 36px; }
  .hero-media img, .hero-media video { box-shadow: 5px 5px 0 var(--gold); }
  .steps { grid-template-columns: 1fr; }
  .setup-grid { grid-template-columns: 1fr; gap: 28px; }
  .products { grid-template-columns: 1fr; }
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 16px; }
  .nav-links a[href="#how"], .nav-links a[href="#setup"] { display: none; }
}

/* deal strikethroughs */
.pack s { font-size: 10.5px; color: var(--muted); text-decoration: line-through; }
.pack .save { color: #b0451f; font-weight: 800; font-size: 10px; letter-spacing: 0.04em; }
.deal s { color: var(--muted); font-weight: 500; margin-right: 2px; }

/* personality layer */
::selection { background: var(--gold); color: var(--ink); }

.toast {
  position: absolute; top: -18px; left: -22px;
  background: #fff; border: 1.5px solid var(--ink); border-radius: 12px;
  padding: 10px 16px; font-size: 13px; font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-3deg);
  animation: toast-bob 3.2s ease-in-out infinite;
}
.toast-stars { color: var(--gold); margin-right: 8px; letter-spacing: 1px; }
.toast-time { color: var(--muted); font-weight: 500; font-size: 11.5px; margin-left: 8px; }
@keyframes toast-bob { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-6px); } }

.sticker {
  position: absolute; bottom: -24px; right: -18px;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--gold); border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 17px;
  line-height: 1.05; color: var(--ink);
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.stats { padding: 0; border-bottom: 1.5px solid var(--ink); background: var(--surface); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 26px 18px; text-align: center; border-left: 1.5px solid var(--line); }
.stat:first-child { border-left: none; }
.stat strong {
  display: block; font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--accent);
}
.stat span { font-size: 12.5px; color: var(--muted); font-weight: 500; }

.badge { transform: rotate(3deg); }

.footer-word {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(56px, 11vw, 150px); line-height: 1; text-align: center;
  color: transparent; -webkit-text-stroke: 1.5px #3a453d;
  user-select: none; margin-bottom: 28px; white-space: nowrap; overflow: hidden;
}

@media (max-width: 880px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-top: 1.5px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
  .toast { left: -6px; }
  .sticker { right: -6px; }
}
